├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── phan.yml ├── .gitignore ├── .settings ├── .gitignore ├── .jsdtscope ├── org.eclipse.php.core.prefs ├── org.eclipse.wst.jsdt.ui.prefs ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.wst.jsdt.ui.superType.name └── org.eclipse.wst.validation.prefs ├── .travis.yml ├── .tx └── config ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── dev ├── build │ ├── .cvsignore │ ├── .gitignore │ ├── README.txt │ ├── makepack-AWStats.conf │ ├── makepack-Alumni.conf │ ├── makepack-BilledOnOrders.conf │ ├── makepack-BitTorrent.conf │ ├── makepack-ConcatPdf.conf │ ├── makepack-EcoTaxDeee.conf │ ├── makepack-FacturXUtil.conf │ ├── makepack-FileManager.conf │ ├── makepack-Google.conf │ ├── makepack-HelloAsso.conf │ ├── makepack-IPPhone.conf │ ├── makepack-Memcached.conf │ ├── makepack-Monitoring.conf │ ├── makepack-NumberWords.conf │ ├── makepack-NumberingPack.conf │ ├── makepack-OpenStreetMap.conf │ ├── makepack-Ovh.conf │ ├── makepack-PHPSysInfo.conf │ ├── makepack-PayplugDolicloud.conf │ ├── makepack-PiBarcode.conf │ ├── makepack-SaftPt.conf │ ├── makepack-Scanner.conf │ ├── makepack-SelectBank.conf │ ├── makepack-SkinColorEditor.conf │ ├── makepack-SubmitEveryWhere.conf │ ├── makepack-TawkTo.conf │ ├── makepack-TvaCerfa.conf │ ├── makepack-ZipAutoFillFr.conf │ ├── makepack-dolibarrtheme.pl │ └── tgz │ │ └── tar_exclude.txt ├── tools │ ├── fixdosfiles.sh │ ├── phan │ │ ├── .baseline.txt.swp │ │ ├── README.md │ │ ├── baseline.txt │ │ ├── config.php │ │ └── stubs │ │ │ ├── Core.phan_php │ │ │ ├── FFI.phan_php │ │ │ ├── PDO.phan_php │ │ │ ├── Phar.phan_php │ │ │ ├── README.md │ │ │ ├── Reflection.phan_php │ │ │ ├── SPL.phan_php │ │ │ ├── SimpleXML.phan_php │ │ │ ├── apc.phan_php │ │ │ ├── apcu.phan_php │ │ │ ├── ast.phan_php │ │ │ ├── bcmath.phan_php │ │ │ ├── calendar.phan_php │ │ │ ├── ctype.phan_php │ │ │ ├── curl.phan_php │ │ │ ├── date.phan_php │ │ │ ├── dolibarr.php.disabled │ │ │ ├── dom.phan_php │ │ │ ├── exif.phan_php │ │ │ ├── fileinfo.phan_php │ │ │ ├── filter.phan_php │ │ │ ├── ftp.phan_php │ │ │ ├── gd.phan_php │ │ │ ├── gettext.phan_php │ │ │ ├── hash.phan_php │ │ │ ├── iconv.phan_php │ │ │ ├── igbinary.phan_php │ │ │ ├── intl.phan_php │ │ │ ├── json.phan_php │ │ │ ├── libxml.phan_php │ │ │ ├── mailparse.phan_php │ │ │ ├── mbstring.phan_php │ │ │ ├── mcrypt.phan_php │ │ │ ├── memcached.phan_php │ │ │ ├── mongodb.phan_php │ │ │ ├── mysqli.phan_php │ │ │ ├── mysqlnd.phan_php │ │ │ ├── openssl.phan_php │ │ │ ├── pcntl.phan_php │ │ │ ├── pcre.phan_php │ │ │ ├── pdo_mysql.phan_php │ │ │ ├── pdo_sqlite.phan_php │ │ │ ├── posix.phan_php │ │ │ ├── random.phan_php │ │ │ ├── readline.phan_php │ │ │ ├── redis.phan_php │ │ │ ├── session.phan_php │ │ │ ├── shmop.phan_php │ │ │ ├── soap.phan_php │ │ │ ├── sockets.phan_php │ │ │ ├── sodium.phan_php │ │ │ ├── sqlite3.phan_php │ │ │ ├── standard.phan_php │ │ │ ├── sysvmsg.phan_php │ │ │ ├── sysvsem.phan_php │ │ │ ├── sysvshm.phan_php │ │ │ ├── tokenizer.phan_php │ │ │ ├── xdebug.phan_php │ │ │ ├── xml.phan_php │ │ │ ├── xmlreader.phan_php │ │ │ ├── xmlwriter.phan_php │ │ │ ├── xsl.phan_php │ │ │ ├── yaml.phan_php │ │ │ ├── zip.phan_php │ │ │ └── zlib.phan_php │ └── rector │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── rector.php │ │ └── src │ │ └── Renaming │ │ ├── EmptyGlobalToFunction.php │ │ ├── GlobalToFunction.php │ │ └── UserRightsToFunction.php └── translation │ ├── README │ ├── sanity_check_en_langfiles.php │ ├── strip_language_file.php │ ├── txpull.sh │ └── txpush.sh └── htdocs ├── .gitignore ├── aidocparser └── dev │ └── spec.txt ├── alumni ├── .gitignore ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── setup.php │ └── survey_extrafields.php ├── alumniindex.php ├── build │ └── makepack-alumni.conf ├── class │ ├── actions_alumni.class.php │ └── survey.class.php ├── core │ └── modules │ │ ├── mailings │ │ └── mailing_alumni_selector1.modules.php │ │ └── modAlumni.class.php ├── doctemplates │ └── websites │ │ └── website_template_alumni │ │ └── README.md ├── img │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png ├── langs │ ├── ca_ES │ │ └── alumni.lang │ ├── de_AT │ │ └── alumni.lang │ ├── de_CH │ │ └── alumni.lang │ ├── de_DE │ │ └── alumni.lang │ ├── en_US │ │ └── alumni.lang │ ├── es_ES │ │ └── alumni.lang │ ├── fr_BE │ │ └── alumni.lang │ ├── fr_FR │ │ └── alumni.lang │ ├── it_IT │ │ └── alumni.lang │ ├── nl_NL │ │ └── alumni.lang │ ├── no_NO │ │ └── alumni.lang │ ├── pt_BR │ │ └── alumni.lang │ ├── pt_PT │ │ └── alumni.lang │ ├── ro_RO │ │ └── alumni.lang │ ├── ru_RU │ │ └── alumni.lang │ └── uk_UA │ │ └── alumni.lang ├── lib │ ├── alumni.lib.php │ └── alumni_survey.lib.php ├── modulebuilder.txt ├── sql │ ├── dolibarr_allversions.sql │ ├── llx_alumni_survey.key.sql │ ├── llx_alumni_survey.sql │ ├── llx_alumni_survey_extrafields.key.sql │ └── llx_alumni_survey_extrafields.sql ├── survey_agenda.php ├── survey_card.php ├── survey_document.php ├── survey_list.php └── survey_note.php ├── awstats ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── awstats.php ├── core │ └── modules │ │ └── modAWStats.class.php ├── css │ └── awstats.css.php ├── gpl-3.0.html ├── images │ ├── awstats.png │ ├── awstats_screen.png │ ├── he.png │ ├── hh.png │ ├── hk.png │ ├── hp.png │ ├── ht.png │ ├── hu.png │ ├── hv.png │ ├── hx.png │ ├── jawstats_screen.png │ ├── menu2.png │ └── object_awstats.png ├── img │ ├── awstats.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_awstats.png │ ├── screen_shot_awstats.jpg │ └── screen_shot_awstats_2.png ├── index.php ├── langs │ ├── ca_ES │ │ └── awstats.lang │ ├── de_AT │ │ └── awstats.lang │ ├── de_CH │ │ └── awstats.lang │ ├── de_DE │ │ └── awstats.lang │ ├── en_US │ │ └── awstats.lang │ ├── es_ES │ │ └── awstats.lang │ ├── fr_BE │ │ └── awstats.lang │ ├── fr_FR │ │ └── awstats.lang │ ├── it_IT │ │ └── awstats.lang │ ├── nl_NL │ │ └── awstats.lang │ ├── no_NO │ │ └── awstats.lang │ ├── pt_BR │ │ └── awstats.lang │ ├── pt_PT │ │ └── awstats.lang │ ├── ro_RO │ │ └── awstats.lang │ ├── ru_RU │ │ └── awstats.lang │ └── uk_UA │ │ └── awstats.lang └── lib │ └── awstats.lib.php ├── billedonorders ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── billedonorders.php ├── class │ └── actions_billedonorders.class.php ├── core │ └── modules │ │ └── modBilledOnOrders.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── screenshot_orderlist_1.png │ └── screenshot_setup_1.png └── langs │ ├── ca_ES │ └── billedonorders.lang │ ├── de_AT │ └── billedonorders.lang │ ├── de_CH │ └── billedonorders.lang │ ├── de_DE │ └── billedonorders.lang │ ├── en_US │ └── billedonorders.lang │ ├── es_ES │ └── billedonorders.lang │ ├── fr_BE │ └── billedonorders.lang │ ├── fr_FR │ └── billedonorders.lang │ ├── it_IT │ └── billedonorders.lang │ ├── nl_NL │ └── billedonorders.lang │ ├── no_NO │ └── billedonorders.lang │ ├── pt_BR │ └── billedonorders.lang │ ├── pt_PT │ └── billedonorders.lang │ ├── ro_RO │ └── billedonorders.lang │ ├── ru_RU │ └── billedonorders.lang │ └── uk_UA │ └── billedonorders.lang ├── bittorrent ├── BDecode.php ├── BEncode.php ├── COPYING ├── DumpTorrentCGI.php ├── admin.php ├── announce.php ├── batch_upload.php ├── config.php ├── core │ └── modules │ │ └── modBitTorrent.class.php ├── deleter.php ├── dltorrent.php ├── docs │ ├── BEncode-API.txt │ ├── ChangeLog.txt │ ├── LICENSE.txt │ ├── help.html │ ├── imgs │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ └── 5.gif │ ├── index.php │ ├── old_phpbttracker_readme.txt │ └── webseed-spec.txt ├── edit_database.php ├── editconfig.php ├── funcsv2.php ├── images │ ├── add.png │ ├── admin.png │ ├── batch_upload.png │ ├── bittorrent_logo.png │ ├── check.png │ ├── color.png │ ├── database.png │ ├── delete.png │ ├── dolicloud_logo.png │ ├── download.png │ ├── edit.png │ ├── help.png │ ├── important.png │ ├── index.php │ ├── install.png │ ├── lock.png │ ├── logout.png │ ├── rss-logo.png │ ├── stats.png │ ├── torrent.png │ └── userstats.png ├── img │ ├── bittorrent.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_bittorrent.png │ └── screen_shot_bittorrent.jpg ├── index.php ├── newtorrents.php ├── pre.inc.php ├── rss_generator.php ├── sanity.php ├── sanity_no_output.php ├── scrape.php ├── seed.php ├── sha1lib.php ├── sql │ ├── llx_bt_namemap.sql │ ├── llx_bt_speedlimit.sql │ ├── llx_bt_summary.sql │ ├── llx_bt_timestamps.sql │ └── llx_bt_webseedfiles.sql ├── statistics.php ├── torrent_functions.php ├── tracker.php └── uploadstats.php ├── captureserver ├── .editorconfig ├── .gitattributes ├── .gitignore ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ └── makepack-captureserver.conf ├── captureserver_card.php ├── captureserver_list.php ├── class │ └── captureserver.class.php ├── core │ ├── includes │ │ └── php-datadogstatsd │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── example.php │ │ │ └── expandedExample.php │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ ├── BatchedDogStatsd.php │ │ │ └── DogStatsd.php │ │ │ └── tests │ │ │ ├── TestHelpers │ │ │ ├── CurlSpy.php │ │ │ ├── CurlSpyTestCase.php │ │ │ ├── SocketSpy.php │ │ │ └── SocketSpyTestCase.php │ │ │ ├── UnitTests │ │ │ ├── BatchedDogStatsdTest.php │ │ │ └── DogStatsd │ │ │ │ ├── CurlTest.php │ │ │ │ └── SocketsTest.php │ │ │ ├── curl_and_error_log_function_stubs.php │ │ │ ├── mt_rand_function_stubs.php │ │ │ └── socket_function_stubs.php │ └── modules │ │ └── modCaptureServer.class.php ├── img │ ├── captureserver.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── gfdl.png │ ├── gplv3.png │ └── object_captureserver.png ├── index.php ├── langs │ ├── en_US │ │ └── captureserver.lang │ └── fr_FR │ │ └── captureserver.lang ├── lib │ ├── captureserver.lib.php │ └── captureserver_captureserver.lib.php ├── modulebuilder.txt ├── phpdoc.dist.xml ├── public │ └── index.php └── sql │ ├── llx_captureserver_captureserver.key.sql │ └── llx_captureserver_captureserver.sql ├── concatpdf ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── concatpdf.php ├── class │ └── actions_concatpdf.class.php ├── core │ └── modules │ │ └── modConcatPdf.class.php ├── img │ ├── concatpdf.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_concatpdf.png │ ├── screen_shot_concatpdf.png │ └── screen_shot_concatpdf_2.png ├── langs │ ├── ca_ES │ │ └── concatpdf.lang │ ├── de_AT │ │ └── concatpdf.lang │ ├── de_CH │ │ └── concatpdf.lang │ ├── de_DE │ │ └── concatpdf.lang │ ├── en_US │ │ └── concatpdf.lang │ ├── es_ES │ │ └── concatpdf.lang │ ├── fr_BE │ │ └── concatpdf.lang │ ├── fr_FR │ │ └── concatpdf.lang │ ├── it_IT │ │ └── concatpdf.lang │ ├── nl_NL │ │ └── concatpdf.lang │ ├── no_NO │ │ └── concatpdf.lang │ ├── pt_BR │ │ └── concatpdf.lang │ ├── pt_PT │ │ └── concatpdf.lang │ ├── ro_RO │ │ └── concatpdf.lang │ ├── ru_RU │ │ └── concatpdf.lang │ └── uk_UA │ │ └── concatpdf.lang └── test │ ├── My_PDF_To_Add.pdf │ └── My_PDF_To_Add_2.pdf ├── des_fr ├── COPYING └── index.php ├── discussion ├── .gitignore ├── .tx │ └── config ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── channel_extrafields.php │ ├── message_extrafields.php │ └── setup.php ├── ajax │ ├── channel_messagemanager.php │ └── channelevent_source.php ├── build │ └── makepack-discussion.conf ├── channel_agenda.php ├── channel_card.php ├── channel_contact.php ├── channel_document.php ├── channel_list.php ├── channel_messages.php ├── channel_note.php ├── class │ ├── actions_discussion.class.php │ ├── channel.class.php │ └── message.class.php ├── core │ └── modules │ │ ├── discussion │ │ ├── mod_channel_advanced.php │ │ ├── mod_channel_standard.php │ │ └── modules_channel.php │ │ └── modDiscussion.class.php ├── discussionindex.php ├── img │ ├── README.md │ └── object_channel.png ├── langs │ └── en_US │ │ └── discussion.lang ├── lib │ ├── discussion.lib.php │ ├── discussion_channel.lib.php │ └── discussion_message.lib.php ├── message_card.php ├── message_document.php ├── message_list.php ├── modulebuilder.txt └── sql │ ├── dolibarr_allversions.sql │ ├── llx_discussion_channel.key.sql │ ├── llx_discussion_channel.sql │ ├── llx_discussion_channel_extrafields.key.sql │ ├── llx_discussion_channel_extrafields.sql │ ├── llx_discussion_message.key.sql │ ├── llx_discussion_message.sql │ ├── llx_discussion_message_extrafields.key.sql │ └── llx_discussion_message_extrafields.sql ├── dolicloud ├── COPYING ├── ChangeLog.md ├── README.md ├── class │ └── actions_dolicloud.class.php ├── core │ ├── modules │ │ └── modDoliCloud.class.php │ └── triggers │ │ └── interface_50_modDoliCloud_DoliCloudSynchro.class.php └── scripts │ └── statsemailings.php ├── ecotaxdeee ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── index.php │ └── setup.php ├── class │ ├── actions_ecotaxdeee.class.php │ └── ecotaxdeee.class.php ├── core │ ├── modules │ │ └── modEcoTaxDeee.class.php │ └── triggers │ │ └── interface_50_modEcotaxdeee_Ecotaxdeee.class.php ├── doc │ └── Example invoice weee.pdf ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── ecotax_logo.png │ ├── ecotax_logo.svg │ ├── ecotax_screen_shot_1.png │ └── object_ecotax.png ├── langs │ ├── ca_ES │ │ └── ecotaxdeee.lang │ ├── de_AT │ │ └── ecotaxdeee.lang │ ├── de_CH │ │ └── ecotaxdeee.lang │ ├── de_DE │ │ └── ecotaxdeee.lang │ ├── en_US │ │ └── ecotaxdeee.lang │ ├── es_ES │ │ └── ecotaxdeee.lang │ ├── fr_BE │ │ └── ecotaxdeee.lang │ ├── fr_FR │ │ └── ecotaxdeee.lang │ ├── it_IT │ │ └── ecotaxdeee.lang │ ├── nl_NL │ │ └── ecotaxdeee.lang │ ├── no_NO │ │ └── ecotaxdeee.lang │ ├── pt_BR │ │ └── ecotaxdeee.lang │ ├── pt_PT │ │ └── ecotaxdeee.lang │ ├── ro_RO │ │ └── ecotaxdeee.lang │ ├── ru_RU │ │ └── ecotaxdeee.lang │ └── uk_UA │ │ └── ecotaxdeee.lang ├── lib │ └── ecotaxdeee.lib.php ├── modulebuilder.txt └── sql │ └── llx_ecotaxdeee.sql ├── externalbackup ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── externalbackup.php ├── core │ └── modules │ │ └── modExternalBackup.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── externalbackup.png │ └── object_externalbackup.png └── langs │ ├── en_US │ └── externalbackup.lang │ └── fr_FR │ └── externalbackup.lang ├── facturxutil ├── .editorconfig ├── .gitattributes ├── .gitignore ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── class │ └── actions_facturx.class.php ├── composer.json ├── composer.lock ├── core │ └── modules │ │ └── modFacturXUtil.class.php ├── doc │ ├── 1. FACTUR-X 1.0.06 2022 03 01 FR VF.pdf │ ├── 2. FACTUR-X_extension_schema_exemple.xmp.txt │ ├── 3. FACTUR-X 1.0.06 - 2022 03 01 - FR VF.xlsx │ ├── 3. FACTUR-X 1.0.06 Technical-Appendix.pdf │ ├── 4. FACTUR-X_1.0.06_XSD_SCHEMATRON - 2022 03 01 │ │ ├── .DS_Store │ │ ├── 0. Factur-X_1.0.06_MINIMUM_XSD │ │ │ ├── .DS_Store │ │ │ ├── FACTUR-X_MINIMUM.xsd │ │ │ ├── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ ├── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ ├── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── Schematron │ │ │ │ ├── .DS_Store │ │ │ │ ├── FACTUR-X_MINIMUM.sch │ │ │ │ └── FACTUR-X_MINIMUM_codedb.xml │ │ ├── 1. Factur-X_1.0.06_BASIC-WL_XSD │ │ │ ├── .DS_Store │ │ │ ├── FACTUR-X_BASIC-WL.xsd │ │ │ ├── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ ├── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ ├── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── Schematron │ │ │ │ ├── .DS_Store │ │ │ │ ├── FACTUR-X_BASIC-WL.sch │ │ │ │ └── FACTUR-X_BASIC-WL_codedb.xml │ │ ├── 2. Factur-X_1.0.06_BASIC_XSD │ │ │ ├── .DS_Store │ │ │ ├── FACTUR-X_BASIC.xsd │ │ │ ├── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ ├── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ ├── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── Schematron │ │ │ │ ├── .DS_Store │ │ │ │ ├── EN16931-CII-validation-preprocessed.sch │ │ │ │ └── EN16931-CII-validation.xslt │ │ ├── 3. Factur-X_1.0.06_EN16931_XSD │ │ │ ├── .DS_Store │ │ │ ├── FACTUR-X_EN16931.xsd │ │ │ ├── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ ├── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ ├── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── Schematron │ │ │ │ ├── .DS_Store │ │ │ │ ├── EN16931-CII-validation-preprocessed.sch │ │ │ │ └── EN16931-CII-validation.xslt │ │ ├── 4. Factur-X_1.0.06_EXTENDED_XSD │ │ │ ├── .DS_Store │ │ │ ├── FACTUR-X_EXTENDED.xsd │ │ │ ├── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ ├── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ ├── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── Schematron │ │ │ │ ├── .DS_Store │ │ │ │ ├── FACTUR-X_EXTENDED.sch │ │ │ │ └── FACTUR-X_EXTENDED_codedb.xml │ │ └── 5. CII D16B uncoupled_XSD │ │ │ ├── .DS_Store │ │ │ └── uncefact │ │ │ ├── .DS_Store │ │ │ ├── codelist │ │ │ └── standard │ │ │ │ ├── EDIFICAS-EU_AccountingAccountType_D11A.xsd │ │ │ │ ├── EDIFICAS-EU_AccountingAmountType_D11A.xsd │ │ │ │ ├── ISO_ISO3AlphaCurrencyCode_2012-08-31.xsd │ │ │ │ ├── UNECE_ActionCode_D16A.xsd │ │ │ │ ├── UNECE_AdjustmentReasonDescriptionCode_D16A.xsd │ │ │ │ ├── UNECE_AllowanceChargeIdentificationCode_D16A.xsd │ │ │ │ ├── UNECE_AllowanceChargeReasonCode_D16A.xsd │ │ │ │ ├── UNECE_AutomaticDataCaptureMethodCode_D16A.xsd │ │ │ │ ├── UNECE_CargoOperationalCategoryCode_D16A.xsd │ │ │ │ ├── UNECE_CargoTypeCode_1996Rev2Final.xsd │ │ │ │ ├── UNECE_CommodityIdentificationCode_D16A.xsd │ │ │ │ ├── UNECE_CommunicationMeansTypeCode_D16A.xsd │ │ │ │ ├── UNECE_ContactFunctionCode_D16A.xsd │ │ │ │ ├── UNECE_DeliveryTermsCode_2010.xsd │ │ │ │ ├── UNECE_DimensionTypeCode_D16A.xsd │ │ │ │ ├── UNECE_DocumentNameCode_Accounting_D16A.xsd │ │ │ │ ├── UNECE_DocumentNameCode_D16A.xsd │ │ │ │ ├── UNECE_DocumentStatusCode_D16A.xsd │ │ │ │ ├── UNECE_DutyTaxFeeTypeCode_D16A.xsd │ │ │ │ ├── UNECE_DutyorTaxorFeeCategoryCode_D16A.xsd │ │ │ │ ├── UNECE_EquipmentSizeTypeDescriptionCode_D16A.xsd │ │ │ │ ├── UNECE_EventTimeReferenceCodePaymentTermsEvent_D16A.xsd │ │ │ │ ├── UNECE_EventTimeReferenceCode_D16A.xsd │ │ │ │ ├── UNECE_FreightChargeQuantityUnitBasisCode_D16A.xsd │ │ │ │ ├── UNECE_FreightChargeTariffCode_D16A.xsd │ │ │ │ ├── UNECE_GoodsTypeCode_D16A.xsd │ │ │ │ ├── UNECE_GoodsTypeExtensionCode_D16A.xsd │ │ │ │ ├── UNECE_MeasurementUnitCommonCodeLinear_4.xsd │ │ │ │ ├── UNECE_MeasurementUnitCommonCodeVolume_4.xsd │ │ │ │ ├── UNECE_MeasurementUnitCommonCodeWeight_4.xsd │ │ │ │ ├── UNECE_MessageFunctionCode_D16A.xsd │ │ │ │ ├── UNECE_PackageTypeCode_2006.xsd │ │ │ │ ├── UNECE_PackagingMarkingCode_D16A.xsd │ │ │ │ ├── UNECE_PartyRoleCode_ChargePaying_D16A.xsd │ │ │ │ ├── UNECE_PartyRoleCode_D16A.xsd │ │ │ │ ├── UNECE_PaymentGuaranteeMeansCode_D16A.xsd │ │ │ │ ├── UNECE_PaymentMeansChannelCode_D16A.xsd │ │ │ │ ├── UNECE_PaymentMeansCode_D16A.xsd │ │ │ │ ├── UNECE_PaymentTermsTypeCode_D16A.xsd │ │ │ │ ├── UNECE_PriceTypeCode_D16A.xsd │ │ │ │ ├── UNECE_ReferenceTypeCode_D16A.xsd │ │ │ │ ├── UNECE_TimePointFormatCode_D16A.xsd │ │ │ │ ├── UNECE_TransportEquipmentCategoryCode_D16A.xsd │ │ │ │ ├── UNECE_TransportEquipmentFullnessCode_D16A.xsd │ │ │ │ ├── UNECE_TransportMeansTypeCode_2007.xsd │ │ │ │ ├── UNECE_TransportModeCode_2.xsd │ │ │ │ └── UNECE_TransportMovementStageCode_D16A.xsd │ │ │ ├── data │ │ │ ├── .DS_Store │ │ │ └── standard │ │ │ │ ├── CrossIndustryInvoice_100pD16B.xsd │ │ │ │ ├── CrossIndustryInvoice_QualifiedDataType_100pD16B.xsd │ │ │ │ ├── CrossIndustryInvoice_ReusableAggregateBusinessInformationEntity_100pD16B.xsd │ │ │ │ └── CrossIndustryInvoice_UnqualifiedDataType_100pD16B.xsd │ │ │ └── identifierlist │ │ │ └── standard │ │ │ ├── ISO_ISOTwo-letterCountryCode_SecondEdition2006.xsd │ │ │ ├── UNECE_FreightCostCode_4.xsd │ │ │ └── UNECE_PaymentTermsDescriptionIdentifier_D16A.xsd │ ├── 5. FACTUR-X 1.0.06 - Examples │ │ ├── .DS_Store │ │ ├── _Factur-X-ZUGFeRD 2.2 examples │ │ │ ├── .DS_Store │ │ │ ├── BASIC WL │ │ │ │ └── BASIC-WL_Einfach.pdf │ │ │ ├── BASIC │ │ │ │ ├── BASIC_Einfach.pdf │ │ │ │ ├── BASIC_Rechnungskorrektur.pdf │ │ │ │ └── BASIC_Taxifahrt.pdf │ │ │ ├── EN16931 │ │ │ │ ├── EN16931_1_Teilrechnung.pdf │ │ │ │ ├── EN16931_2_Teilrechnung.pdf │ │ │ │ ├── EN16931_AbweichenderZahlungsempf.pdf │ │ │ │ ├── EN16931_Betriebskostenabrechnung.pdf │ │ │ │ ├── EN16931_Einfach.pdf │ │ │ │ ├── EN16931_Einfach_DueDate.pdf │ │ │ │ ├── EN16931_Einfach_negativePaymentDue.pdf │ │ │ │ ├── EN16931_Elektron.pdf │ │ │ │ ├── EN16931_ElektronischeAdresse.pdf │ │ │ │ ├── EN16931_Gutschrift.pdf │ │ │ │ ├── EN16931_Haftpflichtversicherung_Versicherungssteuer.pdf │ │ │ │ ├── EN16931_Innergemeinschaftliche_Lieferungen.pdf │ │ │ │ ├── EN16931_Kraftfahrversicherung_Bruttopreise.pdf │ │ │ │ ├── EN16931_Miete.pdf │ │ │ │ ├── EN16931_OEPNV.pdf │ │ │ │ ├── EN16931_Physiotherapeut.pdf │ │ │ │ ├── EN16931_Rabatte.pdf │ │ │ │ ├── EN16931_RechnungsUebertragung.pdf │ │ │ │ ├── EN16931_Rechnungskorrektur.pdf │ │ │ │ ├── EN16931_Reisekostenabrechnung.pdf │ │ │ │ ├── EN16931_SEPA_Prenotification.pdf │ │ │ │ └── EN16931_Sachversicherung_berechneter_Steuersatz.pdf │ │ │ ├── EXTENDED │ │ │ │ ├── EXTENDED_Fremdwaehrung.pdf │ │ │ │ ├── EXTENDED_InnergemeinschLieferungMehrereBestellungen.pdf │ │ │ │ ├── EXTENDED_Kostenrechnung.pdf │ │ │ │ ├── EXTENDED_Rechnungskorrektur.pdf │ │ │ │ └── EXTENDED_Warenrechnung.pdf │ │ │ ├── MINIMUM │ │ │ │ ├── MINIMUM_Buchungshilfe.pdf │ │ │ │ └── MINIMUM_Rechnung.pdf │ │ │ └── XRECHNUNG │ │ │ │ ├── XRECHNUNG_Betriebskostenabrechnung.pdf │ │ │ │ ├── XRECHNUNG_Einfach.pdf │ │ │ │ ├── XRECHNUNG_Elektron.pdf │ │ │ │ └── XRECHNUNG_Reisekostenabrechnung.pdf │ │ ├── _Factur-X1.0.06-Exemples_AdL │ │ │ ├── .DS_Store │ │ │ ├── Avoir_FR_type380_BASIC.pdf │ │ │ ├── Avoir_FR_type380_BASICWL.pdf │ │ │ ├── Avoir_FR_type380_EN16931.pdf │ │ │ ├── Avoir_FR_type380_EXTENDED.pdf │ │ │ ├── Avoir_FR_type380_MINIMUM.pdf │ │ │ ├── Avoir_FR_type381_BASIC.pdf │ │ │ ├── Avoir_FR_type381_BASICWL.pdf │ │ │ ├── Avoir_FR_type381_EN16931.pdf │ │ │ ├── Avoir_FR_type381_EXTENDED.pdf │ │ │ ├── Avoir_FR_type381_MINIMUM.pdf │ │ │ ├── Facture_DOM_BASIC.pdf │ │ │ ├── Facture_DOM_BASICWL.pdf │ │ │ ├── Facture_DOM_EN16931.pdf │ │ │ ├── Facture_DOM_EXTENDED.pdf │ │ │ ├── Facture_DOM_MINIMUM.pdf │ │ │ ├── Facture_FR_BASIC.pdf │ │ │ ├── Facture_FR_BASICWL.pdf │ │ │ ├── Facture_FR_EN16931.pdf │ │ │ ├── Facture_FR_EXTENDED.pdf │ │ │ ├── Facture_FR_MINIMUM.pdf │ │ │ ├── Facture_UE_BASIC.pdf │ │ │ ├── Facture_UE_BASICWL.pdf │ │ │ ├── Facture_UE_EN16931.pdf │ │ │ ├── Facture_UE_EXTENDED.pdf │ │ │ ├── Facture_UE_MINIMUM.pdf │ │ │ └── README.txt │ │ └── _Factur-X1.0.06-Exemples_CS │ │ │ ├── .DS_Store │ │ │ ├── 0.MINIMUM │ │ │ ├── .DS_Store │ │ │ ├── Facture_F20220023-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220024-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220025-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220026-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220027-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220028-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220029-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── Facture_F20220030-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ └── Facture_F20220031-LE_FOURNISSEUR-POUR-LE_CLIENT_MINIMUM.pdf │ │ │ ├── 1.BASIC WL │ │ │ ├── .DS_Store │ │ │ ├── Facture_F20220023-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220024-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220025-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220026-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220027-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220028-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220029-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── Facture_F20220030-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ └── Facture_F20220031-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC_WL.pdf │ │ │ ├── 2.BASIC │ │ │ ├── .DS_Store │ │ │ ├── Facture_F20220023-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220024-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220025-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220026-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220027-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220028-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220029-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── Facture_F20220030-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ └── Facture_F20220031-LE_FOURNISSEUR-POUR-LE_CLIENT_BASIC.pdf │ │ │ ├── 3.EN16931 │ │ │ ├── .DS_Store │ │ │ ├── Facture_F20220023-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220024-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220025-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220026-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220027-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220028-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220029-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ ├── Facture_F20220030-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ └── Facture_F20220031-LE_FOURNISSEUR-POUR-LE_CLIENT_EN_16931.pdf │ │ │ └── 4.EXTENDED │ │ │ ├── .DS_Store │ │ │ ├── Facture_F20220023-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220024-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220025-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220026-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220027-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220028-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220029-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ ├── Facture_F20220030-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ │ │ └── Facture_F20220031-LE_FOURNISSEUR-POUR-LE_CLIENT_EXTENDED.pdf │ ├── 6. FACTUR-X profile logo stamps │ │ ├── Factur-x basic wl.png │ │ ├── Factur-x basic.png │ │ ├── Factur-x en 16931.png │ │ ├── Factur-x extended.png │ │ └── Factur-x minimum.png │ └── Specifications.asciidoc ├── facturxutilindex.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── facturxutil.png │ ├── gfdl.png │ ├── gplv3.png │ └── object_facturxutil.png ├── includes │ ├── atgp │ │ └── factur-x │ │ │ ├── .gitignore │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── img │ │ │ ├── Factur-x_basic.jpg │ │ │ ├── Factur-x_basic_wl.jpg │ │ │ ├── Factur-x_en16931.jpg │ │ │ ├── Factur-x_extended.jpg │ │ │ └── Factur-x_minimum.jpg │ │ │ ├── src │ │ │ ├── Facturx.php │ │ │ └── Fpdi │ │ │ │ ├── FdpiFacturx.php │ │ │ │ └── icc │ │ │ │ └── sRGB2014.icc │ │ │ ├── tests │ │ │ └── index.php │ │ │ ├── xmp │ │ │ └── Factur-X_extension_schema.xmp │ │ │ └── xsd │ │ │ ├── factur-x │ │ │ ├── basic-wl │ │ │ │ ├── FACTUR-X_BASIC-WL.xsd │ │ │ │ ├── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ │ ├── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ │ └── FACTUR-X_BASIC-WL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ ├── basic │ │ │ │ ├── FACTUR-X_BASIC.xsd │ │ │ │ ├── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ │ ├── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ │ └── FACTUR-X_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ ├── en16931 │ │ │ │ ├── FACTUR-X_EN16931.xsd │ │ │ │ ├── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ │ ├── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ │ └── FACTUR-X_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ ├── extended │ │ │ │ ├── FACTUR-X_EXTENDED.xsd │ │ │ │ ├── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ │ ├── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ │ └── FACTUR-X_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── minimum │ │ │ │ ├── FACTUR-X_MINIMUM.xsd │ │ │ │ ├── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd │ │ │ │ ├── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd │ │ │ │ └── FACTUR-X_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd │ │ │ └── zugferd │ │ │ ├── ZUGFeRD1p0.xsd │ │ │ ├── ZUGFeRD1p0_urn_un_unece_uncefact_data_standard_QualifiedDataType_12.xsd │ │ │ ├── ZUGFeRD1p0_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_12.xsd │ │ │ └── ZUGFeRD1p0_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_15.xsd │ ├── autoload.php │ ├── autoloader.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ ├── setasign │ │ ├── fpdf │ │ │ ├── FAQ.htm │ │ │ ├── README.md │ │ │ ├── changelog.htm │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ │ ├── __construct.htm │ │ │ │ ├── acceptpagebreak.htm │ │ │ │ ├── addfont.htm │ │ │ │ ├── addlink.htm │ │ │ │ ├── addpage.htm │ │ │ │ ├── aliasnbpages.htm │ │ │ │ ├── cell.htm │ │ │ │ ├── close.htm │ │ │ │ ├── error.htm │ │ │ │ ├── footer.htm │ │ │ │ ├── getpageheight.htm │ │ │ │ ├── getpagewidth.htm │ │ │ │ ├── getstringwidth.htm │ │ │ │ ├── getx.htm │ │ │ │ ├── gety.htm │ │ │ │ ├── header.htm │ │ │ │ ├── image.htm │ │ │ │ ├── index.htm │ │ │ │ ├── line.htm │ │ │ │ ├── link.htm │ │ │ │ ├── ln.htm │ │ │ │ ├── multicell.htm │ │ │ │ ├── output.htm │ │ │ │ ├── pageno.htm │ │ │ │ ├── rect.htm │ │ │ │ ├── setauthor.htm │ │ │ │ ├── setautopagebreak.htm │ │ │ │ ├── setcompression.htm │ │ │ │ ├── setcreator.htm │ │ │ │ ├── setdisplaymode.htm │ │ │ │ ├── setdrawcolor.htm │ │ │ │ ├── setfillcolor.htm │ │ │ │ ├── setfont.htm │ │ │ │ ├── setfontsize.htm │ │ │ │ ├── setkeywords.htm │ │ │ │ ├── setleftmargin.htm │ │ │ │ ├── setlinewidth.htm │ │ │ │ ├── setlink.htm │ │ │ │ ├── setmargins.htm │ │ │ │ ├── setrightmargin.htm │ │ │ │ ├── setsubject.htm │ │ │ │ ├── settextcolor.htm │ │ │ │ ├── settitle.htm │ │ │ │ ├── settopmargin.htm │ │ │ │ ├── setx.htm │ │ │ │ ├── setxy.htm │ │ │ │ ├── sety.htm │ │ │ │ ├── text.htm │ │ │ │ └── write.htm │ │ │ ├── font │ │ │ │ ├── courier.php │ │ │ │ ├── courierb.php │ │ │ │ ├── courierbi.php │ │ │ │ ├── courieri.php │ │ │ │ ├── helvetica.php │ │ │ │ ├── helveticab.php │ │ │ │ ├── helveticabi.php │ │ │ │ ├── helveticai.php │ │ │ │ ├── symbol.php │ │ │ │ ├── times.php │ │ │ │ ├── timesb.php │ │ │ │ ├── timesbi.php │ │ │ │ ├── timesi.php │ │ │ │ └── zapfdingbats.php │ │ │ ├── fpdf.css │ │ │ ├── fpdf.php │ │ │ ├── install.txt │ │ │ ├── license.txt │ │ │ ├── makefont │ │ │ │ ├── cp1250.map │ │ │ │ ├── cp1251.map │ │ │ │ ├── cp1252.map │ │ │ │ ├── cp1253.map │ │ │ │ ├── cp1254.map │ │ │ │ ├── cp1255.map │ │ │ │ ├── cp1257.map │ │ │ │ ├── cp1258.map │ │ │ │ ├── cp874.map │ │ │ │ ├── iso-8859-1.map │ │ │ │ ├── iso-8859-11.map │ │ │ │ ├── iso-8859-15.map │ │ │ │ ├── iso-8859-16.map │ │ │ │ ├── iso-8859-2.map │ │ │ │ ├── iso-8859-4.map │ │ │ │ ├── iso-8859-5.map │ │ │ │ ├── iso-8859-7.map │ │ │ │ ├── iso-8859-9.map │ │ │ │ ├── koi8-r.map │ │ │ │ ├── koi8-u.map │ │ │ │ ├── makefont.php │ │ │ │ └── ttfparser.php │ │ │ └── tutorial │ │ │ │ ├── 20k_c1.txt │ │ │ │ ├── 20k_c2.txt │ │ │ │ ├── CevicheOne-Regular-Licence.txt │ │ │ │ ├── CevicheOne-Regular.php │ │ │ │ ├── CevicheOne-Regular.ttf │ │ │ │ ├── CevicheOne-Regular.z │ │ │ │ ├── countries.txt │ │ │ │ ├── index.htm │ │ │ │ ├── logo.png │ │ │ │ ├── makefont.php │ │ │ │ ├── tuto1.htm │ │ │ │ ├── tuto1.php │ │ │ │ ├── tuto2.htm │ │ │ │ ├── tuto2.php │ │ │ │ ├── tuto3.htm │ │ │ │ ├── tuto3.php │ │ │ │ ├── tuto4.htm │ │ │ │ ├── tuto4.php │ │ │ │ ├── tuto5.htm │ │ │ │ ├── tuto5.php │ │ │ │ ├── tuto6.htm │ │ │ │ ├── tuto6.php │ │ │ │ ├── tuto7.htm │ │ │ │ └── tuto7.php │ │ ├── fpdi-fpdf │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── composer.json │ │ └── fpdi │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── FpdfTpl.php │ │ │ ├── FpdfTplTrait.php │ │ │ ├── FpdfTrait.php │ │ │ ├── Fpdi.php │ │ │ ├── FpdiException.php │ │ │ ├── FpdiTrait.php │ │ │ ├── GraphicsState.php │ │ │ ├── Math │ │ │ ├── Matrix.php │ │ │ └── Vector.php │ │ │ ├── PdfParser │ │ │ ├── CrossReference │ │ │ │ ├── AbstractReader.php │ │ │ │ ├── CrossReference.php │ │ │ │ ├── CrossReferenceException.php │ │ │ │ ├── FixedReader.php │ │ │ │ ├── LineReader.php │ │ │ │ └── ReaderInterface.php │ │ │ ├── Filter │ │ │ │ ├── Ascii85.php │ │ │ │ ├── Ascii85Exception.php │ │ │ │ ├── AsciiHex.php │ │ │ │ ├── FilterException.php │ │ │ │ ├── FilterInterface.php │ │ │ │ ├── Flate.php │ │ │ │ ├── FlateException.php │ │ │ │ ├── Lzw.php │ │ │ │ └── LzwException.php │ │ │ ├── PdfParser.php │ │ │ ├── PdfParserException.php │ │ │ ├── StreamReader.php │ │ │ ├── Tokenizer.php │ │ │ └── Type │ │ │ │ ├── PdfArray.php │ │ │ │ ├── PdfBoolean.php │ │ │ │ ├── PdfDictionary.php │ │ │ │ ├── PdfHexString.php │ │ │ │ ├── PdfIndirectObject.php │ │ │ │ ├── PdfIndirectObjectReference.php │ │ │ │ ├── PdfName.php │ │ │ │ ├── PdfNull.php │ │ │ │ ├── PdfNumeric.php │ │ │ │ ├── PdfStream.php │ │ │ │ ├── PdfString.php │ │ │ │ ├── PdfToken.php │ │ │ │ ├── PdfType.php │ │ │ │ └── PdfTypeException.php │ │ │ ├── PdfReader │ │ │ ├── DataStructure │ │ │ │ └── Rectangle.php │ │ │ ├── Page.php │ │ │ ├── PageBoundaries.php │ │ │ ├── PdfReader.php │ │ │ └── PdfReaderException.php │ │ │ ├── Tcpdf │ │ │ └── Fpdi.php │ │ │ ├── TcpdfFpdi.php │ │ │ ├── Tfpdf │ │ │ ├── FpdfTpl.php │ │ │ └── Fpdi.php │ │ │ └── autoload.php │ ├── smalot │ │ └── pdfparser │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── coding-standards.yml │ │ │ │ └── continuous-integration.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── alt_autoload.php-dist │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Smalot │ │ │ └── PdfParser │ │ │ ├── Config.php │ │ │ ├── Document.php │ │ │ ├── Element.php │ │ │ ├── Element │ │ │ ├── ElementArray.php │ │ │ ├── ElementBoolean.php │ │ │ ├── ElementDate.php │ │ │ ├── ElementHexa.php │ │ │ ├── ElementMissing.php │ │ │ ├── ElementName.php │ │ │ ├── ElementNull.php │ │ │ ├── ElementNumeric.php │ │ │ ├── ElementString.php │ │ │ ├── ElementStruct.php │ │ │ └── ElementXRef.php │ │ │ ├── Encoding.php │ │ │ ├── Encoding │ │ │ ├── ISOLatin1Encoding.php │ │ │ ├── ISOLatin9Encoding.php │ │ │ ├── MacRomanEncoding.php │ │ │ ├── PostScriptGlyphs.php │ │ │ ├── StandardEncoding.php │ │ │ └── WinAnsiEncoding.php │ │ │ ├── Font.php │ │ │ ├── Font │ │ │ ├── FontCIDFontType0.php │ │ │ ├── FontCIDFontType2.php │ │ │ ├── FontTrueType.php │ │ │ ├── FontType0.php │ │ │ ├── FontType1.php │ │ │ └── FontType3.php │ │ │ ├── Header.php │ │ │ ├── PDFObject.php │ │ │ ├── Page.php │ │ │ ├── Pages.php │ │ │ ├── Parser.php │ │ │ ├── RawData │ │ │ ├── FilterHelper.php │ │ │ └── RawDataParser.php │ │ │ └── XObject │ │ │ ├── Form.php │ │ │ └── Image.php │ └── symfony │ │ └── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ └── unidata │ │ │ ├── caseFolding.php │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json ├── index.php ├── langs │ ├── en_US │ │ └── facturxutil.lang │ └── fr_FR │ │ └── facturx.lang ├── lib │ └── facturxutil.lib.php ├── modulebuilder.txt └── styles.css ├── filemanager ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── filemanager.php ├── ajaxFileTree.php ├── ajaxfileactions.php ├── ajaxfileuploader.php ├── ajaxshowpreview.php ├── class │ └── filemanagerroots.class.php ├── core │ └── modules │ │ └── modFileManager.class.php ├── css │ └── filemanager.css.php ├── document.php ├── images │ ├── close.png │ ├── document-delete.png │ ├── document-new.png │ ├── edit-copy.png │ ├── edit-cut.png │ ├── edittoolbar.png │ ├── folder-delete.png │ ├── folder-new.png │ ├── imagen_archivo.png │ ├── imagen_arriba.png │ ├── imagen_carpeta.png │ ├── imagen_carpeta2.png │ ├── imagen_configurar.png │ ├── imagen_copiar.png │ ├── imagen_cortar.png │ ├── imagen_eliminarArchivos.png │ ├── imagen_mas.png │ ├── imagen_menos.png │ ├── imagen_pegar.png │ ├── imagen_refrescar.png │ ├── imagen_renombrar.png │ ├── imagen_tree.png │ ├── list-add.png │ ├── media-floppy.png │ ├── minimize.png │ ├── newdir.png │ ├── newfile.png │ ├── newfiletoolbar.png │ ├── resize.png │ ├── save.png │ ├── view-fullscreen.png │ └── view-refresh.png ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_filemanager.png │ ├── screen_shot_filemanager.png │ └── screen_shot_filemanager_2.png ├── includes │ ├── geshi │ │ ├── contrib │ │ │ ├── aliased.php │ │ │ ├── cssgen.php │ │ │ ├── cssgen2.php │ │ │ ├── example.php │ │ │ └── langcheck.php │ │ ├── docs │ │ │ ├── BUGS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── api │ │ │ │ ├── __filesource │ │ │ │ │ └── fsource_geshi_core_geshi.php.html │ │ │ │ ├── blank.html │ │ │ │ ├── classtrees_geshi.html │ │ │ │ ├── elementindex.html │ │ │ │ ├── elementindex_geshi.html │ │ │ │ ├── errors.html │ │ │ │ ├── geshi │ │ │ │ │ └── core │ │ │ │ │ │ ├── GeSHi.html │ │ │ │ │ │ └── _geshi.php.html │ │ │ │ ├── index.html │ │ │ │ ├── li_geshi.html │ │ │ │ ├── media │ │ │ │ │ ├── banner.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── AbstractClass.png │ │ │ │ │ │ ├── AbstractClass_logo.png │ │ │ │ │ │ ├── AbstractMethod.png │ │ │ │ │ │ ├── AbstractPrivateClass.png │ │ │ │ │ │ ├── AbstractPrivateClass_logo.png │ │ │ │ │ │ ├── AbstractPrivateMethod.png │ │ │ │ │ │ ├── Class.png │ │ │ │ │ │ ├── Class_logo.png │ │ │ │ │ │ ├── Constant.png │ │ │ │ │ │ ├── Constructor.png │ │ │ │ │ │ ├── Destructor.png │ │ │ │ │ │ ├── Function.png │ │ │ │ │ │ ├── Global.png │ │ │ │ │ │ ├── I.png │ │ │ │ │ │ ├── Index.png │ │ │ │ │ │ ├── Interface.png │ │ │ │ │ │ ├── Interface_logo.png │ │ │ │ │ │ ├── L.png │ │ │ │ │ │ ├── Lminus.png │ │ │ │ │ │ ├── Lplus.png │ │ │ │ │ │ ├── Method.png │ │ │ │ │ │ ├── Page.png │ │ │ │ │ │ ├── Page_logo.png │ │ │ │ │ │ ├── PrivateClass.png │ │ │ │ │ │ ├── PrivateClass_logo.png │ │ │ │ │ │ ├── PrivateMethod.png │ │ │ │ │ │ ├── PrivateVariable.png │ │ │ │ │ │ ├── StaticMethod.png │ │ │ │ │ │ ├── StaticVariable.png │ │ │ │ │ │ ├── T.png │ │ │ │ │ │ ├── Tminus.png │ │ │ │ │ │ ├── Tplus.png │ │ │ │ │ │ ├── Variable.png │ │ │ │ │ │ ├── blank.png │ │ │ │ │ │ ├── class_folder.png │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── file.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── function_folder.png │ │ │ │ │ │ ├── next_button.png │ │ │ │ │ │ ├── next_button_disabled.png │ │ │ │ │ │ ├── package.png │ │ │ │ │ │ ├── package_folder.png │ │ │ │ │ │ ├── previous_button.png │ │ │ │ │ │ ├── previous_button_disabled.png │ │ │ │ │ │ ├── private_class_logo.png │ │ │ │ │ │ ├── tutorial.png │ │ │ │ │ │ ├── tutorial_folder.png │ │ │ │ │ │ └── up_button.png │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── packages.html │ │ │ │ └── todolist.html │ │ │ ├── geshi-doc.html │ │ │ ├── geshi-doc.txt │ │ │ └── phpdoc.ini │ │ ├── geshi.php │ │ └── geshi │ │ │ ├── 4cs.php │ │ │ ├── abap.php │ │ │ ├── actionscript.php │ │ │ ├── actionscript3.php │ │ │ ├── ada.php │ │ │ ├── apache.php │ │ │ ├── applescript.php │ │ │ ├── apt_sources.php │ │ │ ├── asm.php │ │ │ ├── asp.php │ │ │ ├── autoconf.php │ │ │ ├── autohotkey.php │ │ │ ├── autoit.php │ │ │ ├── avisynth.php │ │ │ ├── awk.php │ │ │ ├── bash.php │ │ │ ├── basic4gl.php │ │ │ ├── bf.php │ │ │ ├── bibtex.php │ │ │ ├── blitzbasic.php │ │ │ ├── bnf.php │ │ │ ├── boo.php │ │ │ ├── c.php │ │ │ ├── c_mac.php │ │ │ ├── caddcl.php │ │ │ ├── cadlisp.php │ │ │ ├── cfdg.php │ │ │ ├── cfm.php │ │ │ ├── chaiscript.php │ │ │ ├── cil.php │ │ │ ├── clojure.php │ │ │ ├── cmake.php │ │ │ ├── cobol.php │ │ │ ├── cpp-qt.php │ │ │ ├── cpp.php │ │ │ ├── csharp.php │ │ │ ├── css.php │ │ │ ├── cuesheet.php │ │ │ ├── d.php │ │ │ ├── dcs.php │ │ │ ├── delphi.php │ │ │ ├── diff.php │ │ │ ├── div.php │ │ │ ├── dos.php │ │ │ ├── dot.php │ │ │ ├── ecmascript.php │ │ │ ├── eiffel.php │ │ │ ├── email.php │ │ │ ├── erlang.php │ │ │ ├── fo.php │ │ │ ├── fortran.php │ │ │ ├── freebasic.php │ │ │ ├── fsharp.php │ │ │ ├── gambas.php │ │ │ ├── gdb.php │ │ │ ├── genero.php │ │ │ ├── genie.php │ │ │ ├── gettext.php │ │ │ ├── glsl.php │ │ │ ├── gml.php │ │ │ ├── gnuplot.php │ │ │ ├── groovy.php │ │ │ ├── gwbasic.php │ │ │ ├── haskell.php │ │ │ ├── hicest.php │ │ │ ├── hq9plus.php │ │ │ ├── html4strict.php │ │ │ ├── icon.php │ │ │ ├── idl.php │ │ │ ├── ini.php │ │ │ ├── inno.php │ │ │ ├── intercal.php │ │ │ ├── io.php │ │ │ ├── j.php │ │ │ ├── java.php │ │ │ ├── java5.php │ │ │ ├── javascript.php │ │ │ ├── jquery.php │ │ │ ├── kixtart.php │ │ │ ├── klonec.php │ │ │ ├── klonecpp.php │ │ │ ├── latex.php │ │ │ ├── lisp.php │ │ │ ├── locobasic.php │ │ │ ├── logtalk.php │ │ │ ├── lolcode.php │ │ │ ├── lotusformulas.php │ │ │ ├── lotusscript.php │ │ │ ├── lscript.php │ │ │ ├── lsl2.php │ │ │ ├── lua.php │ │ │ ├── m68k.php │ │ │ ├── magiksf.php │ │ │ ├── make.php │ │ │ ├── mapbasic.php │ │ │ ├── matlab.php │ │ │ ├── mirc.php │ │ │ ├── mmix.php │ │ │ ├── modula2.php │ │ │ ├── modula3.php │ │ │ ├── mpasm.php │ │ │ ├── mxml.php │ │ │ ├── mysql.php │ │ │ ├── newlisp.php │ │ │ ├── nsis.php │ │ │ ├── oberon2.php │ │ │ ├── objc.php │ │ │ ├── ocaml-brief.php │ │ │ ├── ocaml.php │ │ │ ├── oobas.php │ │ │ ├── oracle11.php │ │ │ ├── oracle8.php │ │ │ ├── oxygene.php │ │ │ ├── oz.php │ │ │ ├── pascal.php │ │ │ ├── pcre.php │ │ │ ├── per.php │ │ │ ├── perl.php │ │ │ ├── perl6.php │ │ │ ├── pf.php │ │ │ ├── php-brief.php │ │ │ ├── php.php │ │ │ ├── pic16.php │ │ │ ├── pike.php │ │ │ ├── pixelbender.php │ │ │ ├── plsql.php │ │ │ ├── postgresql.php │ │ │ ├── povray.php │ │ │ ├── powerbuilder.php │ │ │ ├── powershell.php │ │ │ ├── progress.php │ │ │ ├── prolog.php │ │ │ ├── properties.php │ │ │ ├── providex.php │ │ │ ├── purebasic.php │ │ │ ├── python.php │ │ │ ├── q.php │ │ │ ├── qbasic.php │ │ │ ├── rails.php │ │ │ ├── rebol.php │ │ │ ├── reg.php │ │ │ ├── robots.php │ │ │ ├── rpmspec.php │ │ │ ├── rsplus.php │ │ │ ├── ruby.php │ │ │ ├── sas.php │ │ │ ├── scala.php │ │ │ ├── scheme.php │ │ │ ├── scilab.php │ │ │ ├── sdlbasic.php │ │ │ ├── smalltalk.php │ │ │ ├── smarty.php │ │ │ ├── sql.php │ │ │ ├── systemverilog.php │ │ │ ├── tcl.php │ │ │ ├── teraterm.php │ │ │ ├── text.php │ │ │ ├── thinbasic.php │ │ │ ├── tsql.php │ │ │ ├── typoscript.php │ │ │ ├── unicon.php │ │ │ ├── vala.php │ │ │ ├── vb.php │ │ │ ├── vbnet.php │ │ │ ├── verilog.php │ │ │ ├── vhdl.php │ │ │ ├── vim.php │ │ │ ├── visualfoxpro.php │ │ │ ├── visualprolog.php │ │ │ ├── whitespace.php │ │ │ ├── whois.php │ │ │ ├── winbatch.php │ │ │ ├── xbasic.php │ │ │ ├── xml.php │ │ │ ├── xorg_conf.php │ │ │ ├── xpp.php │ │ │ └── z80.php │ ├── jquery │ │ └── plugins │ │ │ └── layout │ │ │ ├── jquery.layout.js │ │ │ └── jquery.layout.min.js │ └── jqueryFileTree │ │ ├── connectors │ │ ├── jqueryFileTree.asp │ │ ├── jqueryFileTree.aspx │ │ ├── jqueryFileTree.cf │ │ ├── jqueryFileTree.jsp │ │ ├── jqueryFileTree.php │ │ ├── jqueryFileTree.pl │ │ ├── jqueryFileTree.py │ │ ├── jqueryFileTree.rb │ │ ├── jqueryFileTree_huck.lasso │ │ └── jqueryFileTree_sabourdin.lasso │ │ ├── images │ │ ├── application.png │ │ ├── code.png │ │ ├── css.png │ │ ├── db.png │ │ ├── directory.png │ │ ├── doc.png │ │ ├── file.png │ │ ├── film.png │ │ ├── flash.png │ │ ├── folder_open.png │ │ ├── html.png │ │ ├── java.png │ │ ├── linux.png │ │ ├── music.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── picture.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── ruby.png │ │ ├── script.png │ │ ├── spinner.gif │ │ ├── txt.png │ │ ├── xls.png │ │ └── zip.png │ │ ├── jqueryFileTree.css │ │ └── jqueryFileTree.js ├── index.php ├── langs │ ├── ca_ES │ │ └── filemanager.lang │ ├── de_AT │ │ └── filemanager.lang │ ├── de_CH │ │ └── filemanager.lang │ ├── de_DE │ │ └── filemanager.lang │ ├── en_US │ │ └── filemanager.lang │ ├── es_ES │ │ └── filemanager.lang │ ├── fr_BE │ │ └── filemanager.lang │ ├── fr_FR │ │ └── filemanager.lang │ ├── it_IT │ │ └── filemanager.lang │ ├── nl_NL │ │ └── filemanager.lang │ ├── no_NO │ │ └── filemanager.lang │ ├── pt_BR │ │ └── filemanager.lang │ ├── pt_PT │ │ └── filemanager.lang │ ├── ro_RO │ │ └── filemanager.lang │ ├── ru_RU │ │ └── filemanager.lang │ └── uk_UA │ │ └── filemanager.lang ├── sql │ ├── llx_filemanager_roots.key.sql │ └── llx_filemanager_roots.sql └── viewimage.php ├── form ├── COPYING ├── ChangeLog.md ├── README.md ├── core │ └── modules │ │ └── modForm.class.php └── sql │ ├── llx_surveys_answers.sql │ ├── llx_surveys_answers_summary.key.sql │ ├── llx_surveys_answers_summary.sql │ └── llx_surveys_questions.sql ├── google ├── COPYING ├── COPYRIGHT ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── google.php │ ├── google_ad.php │ ├── google_an.php │ ├── google_calsync.php │ ├── google_calsync_user.php │ ├── google_contactsync.php │ ├── google_gmaps.php │ ├── google_other.php │ └── test.php ├── class │ ├── actions_google.class.php │ ├── gcontacts.class.php │ └── googlemaps.class.php ├── core │ ├── boxes │ │ └── box_googlemaps.php │ ├── modules │ │ ├── modGoogle.class.php │ │ └── security │ │ │ └── captcha │ │ │ └── modCaptchaGoogle.class.php │ └── triggers │ │ ├── interface_50_modGoogle_GoogleCalendarSynchro.class.php │ │ └── interface_51_modGoogle_GoogleContactSynchro.class.php ├── gmaps.php ├── gmaps_all.php ├── gpl-3.0.html ├── images │ ├── blue-dot.png │ ├── conv30.png │ ├── conv40.png │ ├── conv50.png │ ├── green-dot.png │ ├── heart30.png │ ├── heart40.png │ ├── heart50.png │ ├── m1.png │ ├── m2.png │ ├── m3.png │ ├── m4.png │ ├── m5.png │ ├── people35.png │ ├── people45.png │ ├── people55.png │ ├── pin.png │ ├── red-dot.png │ ├── stcomm-1.png │ ├── stcomm0.png │ ├── stcomm1.png │ ├── stcomm2.png │ ├── stcomm3.png │ └── stcomm4.png ├── img │ ├── doc_readme_screen_shot_google_map.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── google.png │ ├── google_logo.png │ ├── object_google.png │ ├── screen_shot_google_address.png │ ├── screen_shot_google_box.png │ ├── screen_shot_google_setup_1.png │ ├── screen_shot_google_setup_2.png │ ├── screen_shot_google_setup_3.png │ ├── screen_shot_google_setup_4.png │ └── screen_shot_google_view_agenda.png ├── includes │ ├── GoogleMapAPIv3.class.php │ ├── google-api-php-client │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ │ ├── AccessToken │ │ │ │ ├── Revoke.php │ │ │ │ └── Verify.php │ │ │ ├── AuthHandler │ │ │ │ ├── AuthHandlerFactory.php │ │ │ │ ├── Guzzle5AuthHandler.php │ │ │ │ ├── Guzzle6AuthHandler.php │ │ │ │ └── Guzzle7AuthHandler.php │ │ │ ├── Client.php │ │ │ ├── Collection.php │ │ │ ├── Exception.php │ │ │ ├── Http │ │ │ │ ├── Batch.php │ │ │ │ ├── MediaFileUpload.php │ │ │ │ └── REST.php │ │ │ ├── Model.php │ │ │ ├── Service.php │ │ │ ├── Service │ │ │ │ ├── Exception.php │ │ │ │ ├── README.md │ │ │ │ └── Resource.php │ │ │ ├── Task │ │ │ │ ├── Composer.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Retryable.php │ │ │ │ └── Runner.php │ │ │ ├── Utils │ │ │ │ └── UriTemplate.php │ │ │ └── aliases.php │ │ └── vendor │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── InstalledVersions.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_files.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ ├── installed.json │ │ │ ├── installed.php │ │ │ └── platform_check.php │ │ │ ├── dealerdirect │ │ │ └── phpcodesniffer-composer-installer │ │ │ │ ├── .remarkrc │ │ │ │ ├── .yamllint │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── Plugin.php │ │ │ ├── doctrine │ │ │ └── instantiator │ │ │ │ ├── .gitignore │ │ │ │ ├── .scrutinizer.yml │ │ │ │ ├── .travis.install.sh │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpmd.xml.dist │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ └── Doctrine │ │ │ │ │ └── Instantiator │ │ │ │ │ ├── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ └── UnexpectedValueException.php │ │ │ │ │ ├── Instantiator.php │ │ │ │ │ └── InstantiatorInterface.php │ │ │ │ └── tests │ │ │ │ └── DoctrineTest │ │ │ │ ├── InstantiatorPerformance │ │ │ │ └── InstantiatorPerformanceEvent.php │ │ │ │ ├── InstantiatorTest │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidArgumentExceptionTest.php │ │ │ │ │ └── UnexpectedValueExceptionTest.php │ │ │ │ └── InstantiatorTest.php │ │ │ │ └── InstantiatorTestAsset │ │ │ │ ├── AbstractClassAsset.php │ │ │ │ ├── ArrayObjectAsset.php │ │ │ │ ├── ExceptionAsset.php │ │ │ │ ├── FinalExceptionAsset.php │ │ │ │ ├── PharAsset.php │ │ │ │ ├── PharExceptionAsset.php │ │ │ │ ├── SerializableArrayObjectAsset.php │ │ │ │ ├── SimpleSerializableAsset.php │ │ │ │ ├── SimpleTraitAsset.php │ │ │ │ ├── UnCloneableAsset.php │ │ │ │ ├── UnserializeExceptionArrayObjectAsset.php │ │ │ │ ├── WakeUpNoticesAsset.php │ │ │ │ └── XMLReaderAsset.php │ │ │ ├── firebase │ │ │ └── php-jwt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── BeforeValidException.php │ │ │ │ ├── ExpiredException.php │ │ │ │ ├── JWK.php │ │ │ │ ├── JWT.php │ │ │ │ └── SignatureInvalidException.php │ │ │ ├── google │ │ │ ├── apiclient-services │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── src │ │ │ │ │ └── Google │ │ │ │ │ │ └── Service │ │ │ │ │ │ ├── AIPlatformNotebooks.php │ │ │ │ │ │ ├── AIPlatformNotebooks │ │ │ │ │ │ ├── AcceleratorConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ContainerImage.php │ │ │ │ │ │ ├── Disk.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GuestOsFeature.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── IsInstanceUpgradeableResponse.php │ │ │ │ │ │ ├── ListEnvironmentsResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── NotebooksEmpty.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── RegisterInstanceRequest.php │ │ │ │ │ │ ├── ReportInstanceInfoRequest.php │ │ │ │ │ │ ├── ResetInstanceRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsEnvironments.php │ │ │ │ │ │ │ ├── ProjectsLocationsInstances.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SetInstanceAcceleratorRequest.php │ │ │ │ │ │ ├── SetInstanceLabelsRequest.php │ │ │ │ │ │ ├── SetInstanceMachineTypeRequest.php │ │ │ │ │ │ ├── StartInstanceRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StopInstanceRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UpgradeHistoryEntry.php │ │ │ │ │ │ ├── UpgradeInstanceInternalRequest.php │ │ │ │ │ │ ├── UpgradeInstanceRequest.php │ │ │ │ │ │ └── VmImage.php │ │ │ │ │ │ ├── AbusiveExperienceReport.php │ │ │ │ │ │ ├── AbusiveExperienceReport │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Sites.php │ │ │ │ │ │ │ └── ViolatingSites.php │ │ │ │ │ │ ├── SiteSummaryResponse.php │ │ │ │ │ │ └── ViolatingSitesResponse.php │ │ │ │ │ │ ├── Acceleratedmobilepageurl.php │ │ │ │ │ │ ├── Acceleratedmobilepageurl │ │ │ │ │ │ ├── AmpUrl.php │ │ │ │ │ │ ├── AmpUrlError.php │ │ │ │ │ │ ├── BatchGetAmpUrlsRequest.php │ │ │ │ │ │ ├── BatchGetAmpUrlsResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── AmpUrls.php │ │ │ │ │ │ ├── AccessApproval.php │ │ │ │ │ │ ├── AccessApproval │ │ │ │ │ │ ├── AccessApprovalSettings.php │ │ │ │ │ │ ├── AccessLocations.php │ │ │ │ │ │ ├── AccessReason.php │ │ │ │ │ │ ├── AccessapprovalEmpty.php │ │ │ │ │ │ ├── ApprovalRequest.php │ │ │ │ │ │ ├── ApproveApprovalRequestMessage.php │ │ │ │ │ │ ├── ApproveDecision.php │ │ │ │ │ │ ├── DismissApprovalRequestMessage.php │ │ │ │ │ │ ├── DismissDecision.php │ │ │ │ │ │ ├── EnrolledService.php │ │ │ │ │ │ ├── ListApprovalRequestsResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Folders.php │ │ │ │ │ │ │ ├── FoldersApprovalRequests.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsApprovalRequests.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ProjectsApprovalRequests.php │ │ │ │ │ │ └── ResourceProperties.php │ │ │ │ │ │ ├── AccessContextManager.php │ │ │ │ │ │ ├── AccessContextManager │ │ │ │ │ │ ├── AccessLevel.php │ │ │ │ │ │ ├── AccessPolicy.php │ │ │ │ │ │ ├── AccesscontextmanagerEmpty.php │ │ │ │ │ │ ├── BasicLevel.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CommitServicePerimetersRequest.php │ │ │ │ │ │ ├── CommitServicePerimetersResponse.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── CustomLevel.php │ │ │ │ │ │ ├── DevicePolicy.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GcpUserAccessBinding.php │ │ │ │ │ │ ├── ListAccessLevelsResponse.php │ │ │ │ │ │ ├── ListAccessPoliciesResponse.php │ │ │ │ │ │ ├── ListGcpUserAccessBindingsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListServicePerimetersResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OsConstraint.php │ │ │ │ │ │ ├── ReplaceAccessLevelsRequest.php │ │ │ │ │ │ ├── ReplaceAccessLevelsResponse.php │ │ │ │ │ │ ├── ReplaceServicePerimetersRequest.php │ │ │ │ │ │ ├── ReplaceServicePerimetersResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AccessPolicies.php │ │ │ │ │ │ │ ├── AccessPoliciesAccessLevels.php │ │ │ │ │ │ │ ├── AccessPoliciesServicePerimeters.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ └── OrganizationsGcpUserAccessBindings.php │ │ │ │ │ │ ├── ServicePerimeter.php │ │ │ │ │ │ ├── ServicePerimeterConfig.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ └── VpcAccessibleServices.php │ │ │ │ │ │ ├── AdExchangeBuyer.php │ │ │ │ │ │ ├── AdExchangeBuyer │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AccountBidderLocation.php │ │ │ │ │ │ ├── AccountsList.php │ │ │ │ │ │ ├── AddOrderDealsRequest.php │ │ │ │ │ │ ├── AddOrderDealsResponse.php │ │ │ │ │ │ ├── AddOrderNotesRequest.php │ │ │ │ │ │ ├── AddOrderNotesResponse.php │ │ │ │ │ │ ├── BillingInfo.php │ │ │ │ │ │ ├── BillingInfoList.php │ │ │ │ │ │ ├── Budget.php │ │ │ │ │ │ ├── Buyer.php │ │ │ │ │ │ ├── ContactInformation.php │ │ │ │ │ │ ├── CreateOrdersRequest.php │ │ │ │ │ │ ├── CreateOrdersResponse.php │ │ │ │ │ │ ├── Creative.php │ │ │ │ │ │ ├── CreativeAdTechnologyProviders.php │ │ │ │ │ │ ├── CreativeCorrections.php │ │ │ │ │ │ ├── CreativeCorrectionsContexts.php │ │ │ │ │ │ ├── CreativeDealIds.php │ │ │ │ │ │ ├── CreativeDealIdsDealStatuses.php │ │ │ │ │ │ ├── CreativeFilteringReasons.php │ │ │ │ │ │ ├── CreativeFilteringReasonsReasons.php │ │ │ │ │ │ ├── CreativeNativeAd.php │ │ │ │ │ │ ├── CreativeNativeAdAppIcon.php │ │ │ │ │ │ ├── CreativeNativeAdImage.php │ │ │ │ │ │ ├── CreativeNativeAdLogo.php │ │ │ │ │ │ ├── CreativeServingRestrictions.php │ │ │ │ │ │ ├── CreativeServingRestrictionsContexts.php │ │ │ │ │ │ ├── CreativeServingRestrictionsDisapprovalReasons.php │ │ │ │ │ │ ├── CreativesList.php │ │ │ │ │ │ ├── DealServingMetadata.php │ │ │ │ │ │ ├── DealServingMetadataDealPauseStatus.php │ │ │ │ │ │ ├── DealTerms.php │ │ │ │ │ │ ├── DealTermsGuaranteedFixedPriceTerms.php │ │ │ │ │ │ ├── DealTermsGuaranteedFixedPriceTermsBillingInfo.php │ │ │ │ │ │ ├── DealTermsNonGuaranteedAuctionTerms.php │ │ │ │ │ │ ├── DealTermsNonGuaranteedFixedPriceTerms.php │ │ │ │ │ │ ├── DealTermsRubiconNonGuaranteedTerms.php │ │ │ │ │ │ ├── DeleteOrderDealsRequest.php │ │ │ │ │ │ ├── DeleteOrderDealsResponse.php │ │ │ │ │ │ ├── DeliveryControl.php │ │ │ │ │ │ ├── DeliveryControlFrequencyCap.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DimensionDimensionValue.php │ │ │ │ │ │ ├── EditAllOrderDealsRequest.php │ │ │ │ │ │ ├── EditAllOrderDealsResponse.php │ │ │ │ │ │ ├── GetOffersResponse.php │ │ │ │ │ │ ├── GetOrderDealsResponse.php │ │ │ │ │ │ ├── GetOrderNotesResponse.php │ │ │ │ │ │ ├── GetOrdersResponse.php │ │ │ │ │ │ ├── GetPublisherProfilesByAccountIdResponse.php │ │ │ │ │ │ ├── MarketplaceDeal.php │ │ │ │ │ │ ├── MarketplaceDealParty.php │ │ │ │ │ │ ├── MarketplaceLabel.php │ │ │ │ │ │ ├── MarketplaceNote.php │ │ │ │ │ │ ├── MobileApplication.php │ │ │ │ │ │ ├── PerformanceReport.php │ │ │ │ │ │ ├── PerformanceReportList.php │ │ │ │ │ │ ├── PretargetingConfig.php │ │ │ │ │ │ ├── PretargetingConfigDimensions.php │ │ │ │ │ │ ├── PretargetingConfigExcludedPlacements.php │ │ │ │ │ │ ├── PretargetingConfigList.php │ │ │ │ │ │ ├── PretargetingConfigPlacements.php │ │ │ │ │ │ ├── PretargetingConfigVideoPlayerSizes.php │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ ├── PricePerBuyer.php │ │ │ │ │ │ ├── PrivateData.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── Proposal.php │ │ │ │ │ │ ├── PublisherProfileApiProto.php │ │ │ │ │ │ ├── PublisherProvidedForecast.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── BillingInfo.php │ │ │ │ │ │ │ ├── Budget.php │ │ │ │ │ │ │ ├── Creatives.php │ │ │ │ │ │ │ ├── Marketplacedeals.php │ │ │ │ │ │ │ ├── Marketplacenotes.php │ │ │ │ │ │ │ ├── Marketplaceprivateauction.php │ │ │ │ │ │ │ ├── PerformanceReport.php │ │ │ │ │ │ │ ├── PretargetingConfig.php │ │ │ │ │ │ │ ├── Products.php │ │ │ │ │ │ │ ├── Proposals.php │ │ │ │ │ │ │ └── Pubprofiles.php │ │ │ │ │ │ ├── Seller.php │ │ │ │ │ │ ├── SharedTargeting.php │ │ │ │ │ │ ├── TargetingValue.php │ │ │ │ │ │ ├── TargetingValueCreativeSize.php │ │ │ │ │ │ ├── TargetingValueDayPartTargeting.php │ │ │ │ │ │ ├── TargetingValueDayPartTargetingDayPart.php │ │ │ │ │ │ ├── TargetingValueDemogAgeCriteria.php │ │ │ │ │ │ ├── TargetingValueDemogGenderCriteria.php │ │ │ │ │ │ ├── TargetingValueRequestPlatformTargeting.php │ │ │ │ │ │ ├── TargetingValueSize.php │ │ │ │ │ │ └── UpdatePrivateAuctionProposalRequest.php │ │ │ │ │ │ ├── AdExchangeBuyerII.php │ │ │ │ │ │ ├── AdExchangeBuyerII │ │ │ │ │ │ ├── AbsoluteDateRange.php │ │ │ │ │ │ ├── AcceptProposalRequest.php │ │ │ │ │ │ ├── AdSize.php │ │ │ │ │ │ ├── AdTechnologyProviders.php │ │ │ │ │ │ ├── AddDealAssociationRequest.php │ │ │ │ │ │ ├── AddNoteRequest.php │ │ │ │ │ │ ├── Adexchangebuyer2Empty.php │ │ │ │ │ │ ├── AppContext.php │ │ │ │ │ │ ├── AuctionContext.php │ │ │ │ │ │ ├── BidMetricsRow.php │ │ │ │ │ │ ├── BidResponseWithoutBidsStatusRow.php │ │ │ │ │ │ ├── Buyer.php │ │ │ │ │ │ ├── CalloutStatusRow.php │ │ │ │ │ │ ├── CancelNegotiationRequest.php │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ ├── ClientUser.php │ │ │ │ │ │ ├── ClientUserInvitation.php │ │ │ │ │ │ ├── CompleteSetupRequest.php │ │ │ │ │ │ ├── ContactInformation.php │ │ │ │ │ │ ├── Correction.php │ │ │ │ │ │ ├── Creative.php │ │ │ │ │ │ ├── CreativeDealAssociation.php │ │ │ │ │ │ ├── CreativeRestrictions.php │ │ │ │ │ │ ├── CreativeSize.php │ │ │ │ │ │ ├── CreativeSpecification.php │ │ │ │ │ │ ├── CreativeStatusRow.php │ │ │ │ │ │ ├── CriteriaTargeting.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DayPart.php │ │ │ │ │ │ ├── DayPartTargeting.php │ │ │ │ │ │ ├── Deal.php │ │ │ │ │ │ ├── DealPauseStatus.php │ │ │ │ │ │ ├── DealServingMetadata.php │ │ │ │ │ │ ├── DealTerms.php │ │ │ │ │ │ ├── DeliveryControl.php │ │ │ │ │ │ ├── Disapproval.php │ │ │ │ │ │ ├── FilterSet.php │ │ │ │ │ │ ├── FilteredBidCreativeRow.php │ │ │ │ │ │ ├── FilteredBidDetailRow.php │ │ │ │ │ │ ├── FirstPartyMobileApplicationTargeting.php │ │ │ │ │ │ ├── FrequencyCap.php │ │ │ │ │ │ ├── GuaranteedFixedPriceTerms.php │ │ │ │ │ │ ├── HtmlContent.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImpressionMetricsRow.php │ │ │ │ │ │ ├── InventorySizeTargeting.php │ │ │ │ │ │ ├── ListBidMetricsResponse.php │ │ │ │ │ │ ├── ListBidResponseErrorsResponse.php │ │ │ │ │ │ ├── ListBidResponsesWithoutBidsResponse.php │ │ │ │ │ │ ├── ListClientUserInvitationsResponse.php │ │ │ │ │ │ ├── ListClientUsersResponse.php │ │ │ │ │ │ ├── ListClientsResponse.php │ │ │ │ │ │ ├── ListCreativeStatusBreakdownByCreativeResponse.php │ │ │ │ │ │ ├── ListCreativeStatusBreakdownByDetailResponse.php │ │ │ │ │ │ ├── ListCreativesResponse.php │ │ │ │ │ │ ├── ListDealAssociationsResponse.php │ │ │ │ │ │ ├── ListFilterSetsResponse.php │ │ │ │ │ │ ├── ListFilteredBidRequestsResponse.php │ │ │ │ │ │ ├── ListFilteredBidsResponse.php │ │ │ │ │ │ ├── ListImpressionMetricsResponse.php │ │ │ │ │ │ ├── ListLosingBidsResponse.php │ │ │ │ │ │ ├── ListNonBillableWinningBidsResponse.php │ │ │ │ │ │ ├── ListProductsResponse.php │ │ │ │ │ │ ├── ListProposalsResponse.php │ │ │ │ │ │ ├── ListPublisherProfilesResponse.php │ │ │ │ │ │ ├── LocationContext.php │ │ │ │ │ │ ├── MarketplaceTargeting.php │ │ │ │ │ │ ├── MetricValue.php │ │ │ │ │ │ ├── MobileApplicationTargeting.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── NativeContent.php │ │ │ │ │ │ ├── NonBillableWinningBidStatusRow.php │ │ │ │ │ │ ├── NonGuaranteedAuctionTerms.php │ │ │ │ │ │ ├── NonGuaranteedFixedPriceTerms.php │ │ │ │ │ │ ├── Note.php │ │ │ │ │ │ ├── OperatingSystemTargeting.php │ │ │ │ │ │ ├── PauseProposalRequest.php │ │ │ │ │ │ ├── PlacementTargeting.php │ │ │ │ │ │ ├── PlatformContext.php │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ ├── PricePerBuyer.php │ │ │ │ │ │ ├── PrivateData.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── Proposal.php │ │ │ │ │ │ ├── PublisherProfile.php │ │ │ │ │ │ ├── PublisherProfileMobileApplication.php │ │ │ │ │ │ ├── RealtimeTimeRange.php │ │ │ │ │ │ ├── RelativeDateRange.php │ │ │ │ │ │ ├── RemoveDealAssociationRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsClients.php │ │ │ │ │ │ │ ├── AccountsClientsInvitations.php │ │ │ │ │ │ │ ├── AccountsClientsUsers.php │ │ │ │ │ │ │ ├── AccountsCreatives.php │ │ │ │ │ │ │ ├── AccountsCreativesDealAssociations.php │ │ │ │ │ │ │ ├── AccountsFinalizedProposals.php │ │ │ │ │ │ │ ├── AccountsProducts.php │ │ │ │ │ │ │ ├── AccountsProposals.php │ │ │ │ │ │ │ ├── AccountsPublisherProfiles.php │ │ │ │ │ │ │ ├── Bidders.php │ │ │ │ │ │ │ ├── BiddersAccounts.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSets.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsBidMetrics.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsBidResponseErrors.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsBidResponsesWithoutBids.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsFilteredBidRequests.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsFilteredBids.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsFilteredBidsCreatives.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsFilteredBidsDetails.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsImpressionMetrics.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsLosingBids.php │ │ │ │ │ │ │ ├── BiddersAccountsFilterSetsNonBillableWinningBids.php │ │ │ │ │ │ │ ├── BiddersFilterSets.php │ │ │ │ │ │ │ ├── BiddersFilterSetsBidMetrics.php │ │ │ │ │ │ │ ├── BiddersFilterSetsBidResponseErrors.php │ │ │ │ │ │ │ ├── BiddersFilterSetsBidResponsesWithoutBids.php │ │ │ │ │ │ │ ├── BiddersFilterSetsFilteredBidRequests.php │ │ │ │ │ │ │ ├── BiddersFilterSetsFilteredBids.php │ │ │ │ │ │ │ ├── BiddersFilterSetsFilteredBidsCreatives.php │ │ │ │ │ │ │ ├── BiddersFilterSetsFilteredBidsDetails.php │ │ │ │ │ │ │ ├── BiddersFilterSetsImpressionMetrics.php │ │ │ │ │ │ │ ├── BiddersFilterSetsLosingBids.php │ │ │ │ │ │ │ └── BiddersFilterSetsNonBillableWinningBids.php │ │ │ │ │ │ ├── ResumeProposalRequest.php │ │ │ │ │ │ ├── RowDimensions.php │ │ │ │ │ │ ├── SecurityContext.php │ │ │ │ │ │ ├── Seller.php │ │ │ │ │ │ ├── ServingContext.php │ │ │ │ │ │ ├── ServingRestriction.php │ │ │ │ │ │ ├── Size.php │ │ │ │ │ │ ├── StopWatchingCreativeRequest.php │ │ │ │ │ │ ├── TargetingCriteria.php │ │ │ │ │ │ ├── TargetingValue.php │ │ │ │ │ │ ├── TechnologyTargeting.php │ │ │ │ │ │ ├── TimeInterval.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── UrlTargeting.php │ │ │ │ │ │ ├── VideoContent.php │ │ │ │ │ │ ├── VideoTargeting.php │ │ │ │ │ │ └── WatchCreativeRequest.php │ │ │ │ │ │ ├── AdExchangeSeller.php │ │ │ │ │ │ ├── AdExchangeSeller │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ ├── AdClient.php │ │ │ │ │ │ ├── AdClients.php │ │ │ │ │ │ ├── Alert.php │ │ │ │ │ │ ├── Alerts.php │ │ │ │ │ │ ├── CustomChannel.php │ │ │ │ │ │ ├── CustomChannelTargetingInfo.php │ │ │ │ │ │ ├── CustomChannels.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── PreferredDeal.php │ │ │ │ │ │ ├── PreferredDeals.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportHeaders.php │ │ │ │ │ │ ├── ReportingMetadataEntry.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsAdclients.php │ │ │ │ │ │ │ ├── AccountsAlerts.php │ │ │ │ │ │ │ ├── AccountsCustomchannels.php │ │ │ │ │ │ │ ├── AccountsMetadata.php │ │ │ │ │ │ │ ├── AccountsMetadataDimensions.php │ │ │ │ │ │ │ ├── AccountsMetadataMetrics.php │ │ │ │ │ │ │ ├── AccountsPreferreddeals.php │ │ │ │ │ │ │ ├── AccountsReports.php │ │ │ │ │ │ │ ├── AccountsReportsSaved.php │ │ │ │ │ │ │ └── AccountsUrlchannels.php │ │ │ │ │ │ ├── SavedReport.php │ │ │ │ │ │ ├── SavedReports.php │ │ │ │ │ │ ├── UrlChannel.php │ │ │ │ │ │ └── UrlChannels.php │ │ │ │ │ │ ├── AdExperienceReport.php │ │ │ │ │ │ ├── AdExperienceReport │ │ │ │ │ │ ├── PlatformSummary.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Sites.php │ │ │ │ │ │ │ └── ViolatingSites.php │ │ │ │ │ │ ├── SiteSummaryResponse.php │ │ │ │ │ │ └── ViolatingSitesResponse.php │ │ │ │ │ │ ├── AdMob.php │ │ │ │ │ │ ├── AdMob │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── GenerateMediationReportRequest.php │ │ │ │ │ │ ├── GenerateMediationReportResponse.php │ │ │ │ │ │ ├── GenerateNetworkReportRequest.php │ │ │ │ │ │ ├── GenerateNetworkReportResponse.php │ │ │ │ │ │ ├── ListPublisherAccountsResponse.php │ │ │ │ │ │ ├── LocalizationSettings.php │ │ │ │ │ │ ├── MediationReportSpec.php │ │ │ │ │ │ ├── MediationReportSpecDimensionFilter.php │ │ │ │ │ │ ├── MediationReportSpecSortCondition.php │ │ │ │ │ │ ├── NetworkReportSpec.php │ │ │ │ │ │ ├── NetworkReportSpecDimensionFilter.php │ │ │ │ │ │ ├── NetworkReportSpecSortCondition.php │ │ │ │ │ │ ├── PublisherAccount.php │ │ │ │ │ │ ├── ReportFooter.php │ │ │ │ │ │ ├── ReportHeader.php │ │ │ │ │ │ ├── ReportRow.php │ │ │ │ │ │ ├── ReportRowDimensionValue.php │ │ │ │ │ │ ├── ReportRowMetricValue.php │ │ │ │ │ │ ├── ReportWarning.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsMediationReport.php │ │ │ │ │ │ │ └── AccountsNetworkReport.php │ │ │ │ │ │ └── StringList.php │ │ │ │ │ │ ├── AdSense.php │ │ │ │ │ │ ├── AdSense │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ ├── AdClient.php │ │ │ │ │ │ ├── AdClients.php │ │ │ │ │ │ ├── AdCode.php │ │ │ │ │ │ ├── AdStyle.php │ │ │ │ │ │ ├── AdStyleColors.php │ │ │ │ │ │ ├── AdStyleFont.php │ │ │ │ │ │ ├── AdUnit.php │ │ │ │ │ │ ├── AdUnitContentAdsSettings.php │ │ │ │ │ │ ├── AdUnitContentAdsSettingsBackupOption.php │ │ │ │ │ │ ├── AdUnitFeedAdsSettings.php │ │ │ │ │ │ ├── AdUnitMobileContentAdsSettings.php │ │ │ │ │ │ ├── AdUnits.php │ │ │ │ │ │ ├── AdsenseReportsGenerateResponse.php │ │ │ │ │ │ ├── AdsenseReportsGenerateResponseHeaders.php │ │ │ │ │ │ ├── Alert.php │ │ │ │ │ │ ├── Alerts.php │ │ │ │ │ │ ├── CustomChannel.php │ │ │ │ │ │ ├── CustomChannelTargetingInfo.php │ │ │ │ │ │ ├── CustomChannels.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── Payment.php │ │ │ │ │ │ ├── Payments.php │ │ │ │ │ │ ├── ReportingMetadataEntry.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsAdclients.php │ │ │ │ │ │ │ ├── AccountsAdunits.php │ │ │ │ │ │ │ ├── AccountsAdunitsCustomchannels.php │ │ │ │ │ │ │ ├── AccountsAlerts.php │ │ │ │ │ │ │ ├── AccountsCustomchannels.php │ │ │ │ │ │ │ ├── AccountsCustomchannelsAdunits.php │ │ │ │ │ │ │ ├── AccountsPayments.php │ │ │ │ │ │ │ ├── AccountsReports.php │ │ │ │ │ │ │ ├── AccountsReportsSaved.php │ │ │ │ │ │ │ ├── AccountsSavedadstyles.php │ │ │ │ │ │ │ ├── AccountsUrlchannels.php │ │ │ │ │ │ │ ├── Adclients.php │ │ │ │ │ │ │ ├── Adunits.php │ │ │ │ │ │ │ ├── AdunitsCustomchannels.php │ │ │ │ │ │ │ ├── Alerts.php │ │ │ │ │ │ │ ├── Customchannels.php │ │ │ │ │ │ │ ├── CustomchannelsAdunits.php │ │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ │ ├── MetadataDimensions.php │ │ │ │ │ │ │ ├── MetadataMetrics.php │ │ │ │ │ │ │ ├── Payments.php │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ ├── ReportsSaved.php │ │ │ │ │ │ │ ├── Savedadstyles.php │ │ │ │ │ │ │ └── Urlchannels.php │ │ │ │ │ │ ├── SavedAdStyle.php │ │ │ │ │ │ ├── SavedAdStyles.php │ │ │ │ │ │ ├── SavedReport.php │ │ │ │ │ │ ├── SavedReports.php │ │ │ │ │ │ ├── UrlChannel.php │ │ │ │ │ │ └── UrlChannels.php │ │ │ │ │ │ ├── AdSenseHost.php │ │ │ │ │ │ ├── AdSenseHost │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ ├── AdClient.php │ │ │ │ │ │ ├── AdClients.php │ │ │ │ │ │ ├── AdCode.php │ │ │ │ │ │ ├── AdStyle.php │ │ │ │ │ │ ├── AdStyleColors.php │ │ │ │ │ │ ├── AdStyleFont.php │ │ │ │ │ │ ├── AdUnit.php │ │ │ │ │ │ ├── AdUnitContentAdsSettings.php │ │ │ │ │ │ ├── AdUnitContentAdsSettingsBackupOption.php │ │ │ │ │ │ ├── AdUnitMobileContentAdsSettings.php │ │ │ │ │ │ ├── AdUnits.php │ │ │ │ │ │ ├── AssociationSession.php │ │ │ │ │ │ ├── CustomChannel.php │ │ │ │ │ │ ├── CustomChannels.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportHeaders.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsAdclients.php │ │ │ │ │ │ │ ├── AccountsAdunits.php │ │ │ │ │ │ │ ├── AccountsReports.php │ │ │ │ │ │ │ ├── Adclients.php │ │ │ │ │ │ │ ├── Associationsessions.php │ │ │ │ │ │ │ ├── Customchannels.php │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ └── Urlchannels.php │ │ │ │ │ │ ├── UrlChannel.php │ │ │ │ │ │ └── UrlChannels.php │ │ │ │ │ │ ├── AlertCenter.php │ │ │ │ │ │ ├── AlertCenter │ │ │ │ │ │ ├── AccountWarning.php │ │ │ │ │ │ ├── ActivityRule.php │ │ │ │ │ │ ├── Alert.php │ │ │ │ │ │ ├── AlertFeedback.php │ │ │ │ │ │ ├── AlertMetadata.php │ │ │ │ │ │ ├── AlertcenterEmpty.php │ │ │ │ │ │ ├── AppMakerSqlSetupNotification.php │ │ │ │ │ │ ├── Attachment.php │ │ │ │ │ │ ├── BadWhitelist.php │ │ │ │ │ │ ├── BatchDeleteAlertsRequest.php │ │ │ │ │ │ ├── BatchDeleteAlertsResponse.php │ │ │ │ │ │ ├── BatchUndeleteAlertsRequest.php │ │ │ │ │ │ ├── BatchUndeleteAlertsResponse.php │ │ │ │ │ │ ├── CloudPubsubTopic.php │ │ │ │ │ │ ├── Csv.php │ │ │ │ │ │ ├── CsvRow.php │ │ │ │ │ │ ├── DeviceCompromised.php │ │ │ │ │ │ ├── DeviceCompromisedSecurityDetail.php │ │ │ │ │ │ ├── DlpRuleViolation.php │ │ │ │ │ │ ├── DomainId.php │ │ │ │ │ │ ├── DomainWideTakeoutInitiated.php │ │ │ │ │ │ ├── GmailMessageInfo.php │ │ │ │ │ │ ├── GoogleOperations.php │ │ │ │ │ │ ├── ListAlertFeedbackResponse.php │ │ │ │ │ │ ├── ListAlertsResponse.php │ │ │ │ │ │ ├── LoginDetails.php │ │ │ │ │ │ ├── MailPhishing.php │ │ │ │ │ │ ├── MaliciousEntity.php │ │ │ │ │ │ ├── MatchInfo.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── PhishingSpike.php │ │ │ │ │ │ ├── PredefinedDetectorInfo.php │ │ │ │ │ │ ├── RequestInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Alerts.php │ │ │ │ │ │ │ ├── AlertsFeedback.php │ │ │ │ │ │ │ └── V1beta1.php │ │ │ │ │ │ ├── ResourceInfo.php │ │ │ │ │ │ ├── RuleInfo.php │ │ │ │ │ │ ├── RuleViolationInfo.php │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ ├── StateSponsoredAttack.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SuspiciousActivity.php │ │ │ │ │ │ ├── SuspiciousActivitySecurityDetail.php │ │ │ │ │ │ ├── UndeleteAlertRequest.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ └── UserDefinedDetectorInfo.php │ │ │ │ │ │ ├── Analytics.php │ │ │ │ │ │ ├── Analytics │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AccountChildLink.php │ │ │ │ │ │ ├── AccountPermissions.php │ │ │ │ │ │ ├── AccountRef.php │ │ │ │ │ │ ├── AccountSummaries.php │ │ │ │ │ │ ├── AccountSummary.php │ │ │ │ │ │ ├── AccountTicket.php │ │ │ │ │ │ ├── AccountTreeRequest.php │ │ │ │ │ │ ├── AccountTreeResponse.php │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ ├── AdWordsAccount.php │ │ │ │ │ │ ├── AnalyticsDataimportDeleteUploadDataRequest.php │ │ │ │ │ │ ├── Column.php │ │ │ │ │ │ ├── Columns.php │ │ │ │ │ │ ├── CustomDataSource.php │ │ │ │ │ │ ├── CustomDataSourceChildLink.php │ │ │ │ │ │ ├── CustomDataSourceParentLink.php │ │ │ │ │ │ ├── CustomDataSources.php │ │ │ │ │ │ ├── CustomDimension.php │ │ │ │ │ │ ├── CustomDimensionParentLink.php │ │ │ │ │ │ ├── CustomDimensions.php │ │ │ │ │ │ ├── CustomMetric.php │ │ │ │ │ │ ├── CustomMetricParentLink.php │ │ │ │ │ │ ├── CustomMetrics.php │ │ │ │ │ │ ├── EntityAdWordsLink.php │ │ │ │ │ │ ├── EntityAdWordsLinkEntity.php │ │ │ │ │ │ ├── EntityAdWordsLinks.php │ │ │ │ │ │ ├── EntityUserLink.php │ │ │ │ │ │ ├── EntityUserLinkEntity.php │ │ │ │ │ │ ├── EntityUserLinkPermissions.php │ │ │ │ │ │ ├── EntityUserLinks.php │ │ │ │ │ │ ├── Experiment.php │ │ │ │ │ │ ├── ExperimentParentLink.php │ │ │ │ │ │ ├── ExperimentVariations.php │ │ │ │ │ │ ├── Experiments.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── FilterAdvancedDetails.php │ │ │ │ │ │ ├── FilterExpression.php │ │ │ │ │ │ ├── FilterLowercaseDetails.php │ │ │ │ │ │ ├── FilterParentLink.php │ │ │ │ │ │ ├── FilterRef.php │ │ │ │ │ │ ├── FilterSearchAndReplaceDetails.php │ │ │ │ │ │ ├── FilterUppercaseDetails.php │ │ │ │ │ │ ├── Filters.php │ │ │ │ │ │ ├── GaData.php │ │ │ │ │ │ ├── GaDataColumnHeaders.php │ │ │ │ │ │ ├── GaDataDataTable.php │ │ │ │ │ │ ├── GaDataDataTableCols.php │ │ │ │ │ │ ├── GaDataDataTableRows.php │ │ │ │ │ │ ├── GaDataDataTableRowsC.php │ │ │ │ │ │ ├── GaDataProfileInfo.php │ │ │ │ │ │ ├── GaDataQuery.php │ │ │ │ │ │ ├── Goal.php │ │ │ │ │ │ ├── GoalEventDetails.php │ │ │ │ │ │ ├── GoalEventDetailsEventConditions.php │ │ │ │ │ │ ├── GoalParentLink.php │ │ │ │ │ │ ├── GoalUrlDestinationDetails.php │ │ │ │ │ │ ├── GoalUrlDestinationDetailsSteps.php │ │ │ │ │ │ ├── GoalVisitNumPagesDetails.php │ │ │ │ │ │ ├── GoalVisitTimeOnSiteDetails.php │ │ │ │ │ │ ├── Goals.php │ │ │ │ │ │ ├── HashClientIdRequest.php │ │ │ │ │ │ ├── HashClientIdResponse.php │ │ │ │ │ │ ├── IncludeConditions.php │ │ │ │ │ │ ├── LinkedForeignAccount.php │ │ │ │ │ │ ├── McfData.php │ │ │ │ │ │ ├── McfDataColumnHeaders.php │ │ │ │ │ │ ├── McfDataProfileInfo.php │ │ │ │ │ │ ├── McfDataQuery.php │ │ │ │ │ │ ├── McfDataRows.php │ │ │ │ │ │ ├── McfDataRowsConversionPathValue.php │ │ │ │ │ │ ├── Profile.php │ │ │ │ │ │ ├── ProfileChildLink.php │ │ │ │ │ │ ├── ProfileFilterLink.php │ │ │ │ │ │ ├── ProfileFilterLinks.php │ │ │ │ │ │ ├── ProfileParentLink.php │ │ │ │ │ │ ├── ProfilePermissions.php │ │ │ │ │ │ ├── ProfileRef.php │ │ │ │ │ │ ├── ProfileSummary.php │ │ │ │ │ │ ├── Profiles.php │ │ │ │ │ │ ├── RealtimeData.php │ │ │ │ │ │ ├── RealtimeDataColumnHeaders.php │ │ │ │ │ │ ├── RealtimeDataProfileInfo.php │ │ │ │ │ │ ├── RealtimeDataQuery.php │ │ │ │ │ │ ├── RemarketingAudience.php │ │ │ │ │ │ ├── RemarketingAudienceAudienceDefinition.php │ │ │ │ │ │ ├── RemarketingAudienceStateBasedAudienceDefinition.php │ │ │ │ │ │ ├── RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php │ │ │ │ │ │ ├── RemarketingAudiences.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Data.php │ │ │ │ │ │ │ ├── DataGa.php │ │ │ │ │ │ │ ├── DataMcf.php │ │ │ │ │ │ │ ├── DataRealtime.php │ │ │ │ │ │ │ ├── Management.php │ │ │ │ │ │ │ ├── ManagementAccountSummaries.php │ │ │ │ │ │ │ ├── ManagementAccountUserLinks.php │ │ │ │ │ │ │ ├── ManagementAccounts.php │ │ │ │ │ │ │ ├── ManagementClientId.php │ │ │ │ │ │ │ ├── ManagementCustomDataSources.php │ │ │ │ │ │ │ ├── ManagementCustomDimensions.php │ │ │ │ │ │ │ ├── ManagementCustomMetrics.php │ │ │ │ │ │ │ ├── ManagementExperiments.php │ │ │ │ │ │ │ ├── ManagementFilters.php │ │ │ │ │ │ │ ├── ManagementGoals.php │ │ │ │ │ │ │ ├── ManagementProfileFilterLinks.php │ │ │ │ │ │ │ ├── ManagementProfileUserLinks.php │ │ │ │ │ │ │ ├── ManagementProfiles.php │ │ │ │ │ │ │ ├── ManagementRemarketingAudience.php │ │ │ │ │ │ │ ├── ManagementSegments.php │ │ │ │ │ │ │ ├── ManagementUnsampledReports.php │ │ │ │ │ │ │ ├── ManagementUploads.php │ │ │ │ │ │ │ ├── ManagementWebPropertyAdWordsLinks.php │ │ │ │ │ │ │ ├── ManagementWebproperties.php │ │ │ │ │ │ │ ├── ManagementWebpropertyUserLinks.php │ │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ │ ├── MetadataColumns.php │ │ │ │ │ │ │ ├── Provisioning.php │ │ │ │ │ │ │ ├── UserDeletion.php │ │ │ │ │ │ │ └── UserDeletionUserDeletionRequest.php │ │ │ │ │ │ ├── Segment.php │ │ │ │ │ │ ├── Segments.php │ │ │ │ │ │ ├── UnsampledReport.php │ │ │ │ │ │ ├── UnsampledReportCloudStorageDownloadDetails.php │ │ │ │ │ │ ├── UnsampledReportDriveDownloadDetails.php │ │ │ │ │ │ ├── UnsampledReports.php │ │ │ │ │ │ ├── Upload.php │ │ │ │ │ │ ├── Uploads.php │ │ │ │ │ │ ├── UserDeletionRequest.php │ │ │ │ │ │ ├── UserDeletionRequestId.php │ │ │ │ │ │ ├── UserRef.php │ │ │ │ │ │ ├── WebPropertyRef.php │ │ │ │ │ │ ├── WebPropertySummary.php │ │ │ │ │ │ ├── Webproperties.php │ │ │ │ │ │ ├── Webproperty.php │ │ │ │ │ │ ├── WebpropertyChildLink.php │ │ │ │ │ │ ├── WebpropertyParentLink.php │ │ │ │ │ │ └── WebpropertyPermissions.php │ │ │ │ │ │ ├── AnalyticsData.php │ │ │ │ │ │ ├── AnalyticsData │ │ │ │ │ │ ├── BatchRunPivotReportsRequest.php │ │ │ │ │ │ ├── BatchRunPivotReportsResponse.php │ │ │ │ │ │ ├── BatchRunReportsRequest.php │ │ │ │ │ │ ├── BatchRunReportsResponse.php │ │ │ │ │ │ ├── BetweenFilter.php │ │ │ │ │ │ ├── CaseExpression.php │ │ │ │ │ │ ├── Cohort.php │ │ │ │ │ │ ├── CohortReportSettings.php │ │ │ │ │ │ ├── CohortSpec.php │ │ │ │ │ │ ├── CohortsRange.php │ │ │ │ │ │ ├── ConcatenateExpression.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DimensionExpression.php │ │ │ │ │ │ ├── DimensionHeader.php │ │ │ │ │ │ ├── DimensionMetadata.php │ │ │ │ │ │ ├── DimensionOrderBy.php │ │ │ │ │ │ ├── DimensionValue.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── FilterExpression.php │ │ │ │ │ │ ├── FilterExpressionList.php │ │ │ │ │ │ ├── InListFilter.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── MetricHeader.php │ │ │ │ │ │ ├── MetricMetadata.php │ │ │ │ │ │ ├── MetricOrderBy.php │ │ │ │ │ │ ├── MetricValue.php │ │ │ │ │ │ ├── NumericFilter.php │ │ │ │ │ │ ├── NumericValue.php │ │ │ │ │ │ ├── OrderBy.php │ │ │ │ │ │ ├── Pivot.php │ │ │ │ │ │ ├── PivotDimensionHeader.php │ │ │ │ │ │ ├── PivotHeader.php │ │ │ │ │ │ ├── PivotOrderBy.php │ │ │ │ │ │ ├── PivotSelection.php │ │ │ │ │ │ ├── PropertyQuota.php │ │ │ │ │ │ ├── QuotaStatus.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Properties.php │ │ │ │ │ │ │ └── V1alpha.php │ │ │ │ │ │ ├── ResponseMetaData.php │ │ │ │ │ │ ├── Row.php │ │ │ │ │ │ ├── RunPivotReportRequest.php │ │ │ │ │ │ ├── RunPivotReportResponse.php │ │ │ │ │ │ ├── RunRealtimeReportRequest.php │ │ │ │ │ │ ├── RunRealtimeReportResponse.php │ │ │ │ │ │ ├── RunReportRequest.php │ │ │ │ │ │ ├── RunReportResponse.php │ │ │ │ │ │ └── StringFilter.php │ │ │ │ │ │ ├── AnalyticsReporting.php │ │ │ │ │ │ ├── AnalyticsReporting │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── Cohort.php │ │ │ │ │ │ ├── CohortGroup.php │ │ │ │ │ │ ├── ColumnHeader.php │ │ │ │ │ │ ├── CustomDimension.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── DateRangeValues.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DimensionFilter.php │ │ │ │ │ │ ├── DimensionFilterClause.php │ │ │ │ │ │ ├── DynamicSegment.php │ │ │ │ │ │ ├── EcommerceData.php │ │ │ │ │ │ ├── EventData.php │ │ │ │ │ │ ├── GetReportsRequest.php │ │ │ │ │ │ ├── GetReportsResponse.php │ │ │ │ │ │ ├── GoalData.php │ │ │ │ │ │ ├── GoalSetData.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── MetricFilter.php │ │ │ │ │ │ ├── MetricFilterClause.php │ │ │ │ │ │ ├── MetricHeader.php │ │ │ │ │ │ ├── MetricHeaderEntry.php │ │ │ │ │ │ ├── OrFiltersForSegment.php │ │ │ │ │ │ ├── OrderBy.php │ │ │ │ │ │ ├── PageviewData.php │ │ │ │ │ │ ├── Pivot.php │ │ │ │ │ │ ├── PivotHeader.php │ │ │ │ │ │ ├── PivotHeaderEntry.php │ │ │ │ │ │ ├── PivotValueRegion.php │ │ │ │ │ │ ├── ProductData.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportData.php │ │ │ │ │ │ ├── ReportRequest.php │ │ │ │ │ │ ├── ReportRow.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ └── UserActivity.php │ │ │ │ │ │ ├── ResourceQuotasRemaining.php │ │ │ │ │ │ ├── ScreenviewData.php │ │ │ │ │ │ ├── SearchUserActivityRequest.php │ │ │ │ │ │ ├── SearchUserActivityResponse.php │ │ │ │ │ │ ├── Segment.php │ │ │ │ │ │ ├── SegmentDefinition.php │ │ │ │ │ │ ├── SegmentDimensionFilter.php │ │ │ │ │ │ ├── SegmentFilter.php │ │ │ │ │ │ ├── SegmentFilterClause.php │ │ │ │ │ │ ├── SegmentMetricFilter.php │ │ │ │ │ │ ├── SegmentSequenceStep.php │ │ │ │ │ │ ├── SequenceSegment.php │ │ │ │ │ │ ├── SimpleSegment.php │ │ │ │ │ │ ├── TransactionData.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ └── UserActivitySession.php │ │ │ │ │ │ ├── AndroidEnterprise.php │ │ │ │ │ │ ├── AndroidEnterprise │ │ │ │ │ │ ├── Administrator.php │ │ │ │ │ │ ├── AdministratorWebToken.php │ │ │ │ │ │ ├── AdministratorWebTokenSpec.php │ │ │ │ │ │ ├── AdministratorWebTokenSpecManagedConfigurations.php │ │ │ │ │ │ ├── AdministratorWebTokenSpecPlaySearch.php │ │ │ │ │ │ ├── AdministratorWebTokenSpecPrivateApps.php │ │ │ │ │ │ ├── AdministratorWebTokenSpecStoreBuilder.php │ │ │ │ │ │ ├── AdministratorWebTokenSpecWebApps.php │ │ │ │ │ │ ├── AppRestrictionsSchema.php │ │ │ │ │ │ ├── AppRestrictionsSchemaChangeEvent.php │ │ │ │ │ │ ├── AppRestrictionsSchemaRestriction.php │ │ │ │ │ │ ├── AppRestrictionsSchemaRestrictionRestrictionValue.php │ │ │ │ │ │ ├── AppState.php │ │ │ │ │ │ ├── AppUpdateEvent.php │ │ │ │ │ │ ├── AppVersion.php │ │ │ │ │ │ ├── ApprovalUrlInfo.php │ │ │ │ │ │ ├── AuthenticationToken.php │ │ │ │ │ │ ├── AutoInstallConstraint.php │ │ │ │ │ │ ├── AutoInstallPolicy.php │ │ │ │ │ │ ├── ConfigurationVariables.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── DeviceReport.php │ │ │ │ │ │ ├── DeviceReportUpdateEvent.php │ │ │ │ │ │ ├── DeviceState.php │ │ │ │ │ │ ├── DevicesListResponse.php │ │ │ │ │ │ ├── Enterprise.php │ │ │ │ │ │ ├── EnterpriseAccount.php │ │ │ │ │ │ ├── EnterprisesListResponse.php │ │ │ │ │ │ ├── EnterprisesSendTestPushNotificationResponse.php │ │ │ │ │ │ ├── Entitlement.php │ │ │ │ │ │ ├── EntitlementsListResponse.php │ │ │ │ │ │ ├── GroupLicense.php │ │ │ │ │ │ ├── GroupLicenseUsersListResponse.php │ │ │ │ │ │ ├── GroupLicensesListResponse.php │ │ │ │ │ │ ├── Install.php │ │ │ │ │ │ ├── InstallFailureEvent.php │ │ │ │ │ │ ├── InstallsListResponse.php │ │ │ │ │ │ ├── KeyedAppState.php │ │ │ │ │ │ ├── LocalizedText.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── ManagedConfiguration.php │ │ │ │ │ │ ├── ManagedConfigurationsForDeviceListResponse.php │ │ │ │ │ │ ├── ManagedConfigurationsForUserListResponse.php │ │ │ │ │ │ ├── ManagedConfigurationsSettings.php │ │ │ │ │ │ ├── ManagedConfigurationsSettingsListResponse.php │ │ │ │ │ │ ├── ManagedProperty.php │ │ │ │ │ │ ├── ManagedPropertyBundle.php │ │ │ │ │ │ ├── NewDeviceEvent.php │ │ │ │ │ │ ├── NewPermissionsEvent.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── NotificationSet.php │ │ │ │ │ │ ├── PageInfo.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── ProductApprovalEvent.php │ │ │ │ │ │ ├── ProductAvailabilityChangeEvent.php │ │ │ │ │ │ ├── ProductPermission.php │ │ │ │ │ │ ├── ProductPermissions.php │ │ │ │ │ │ ├── ProductPolicy.php │ │ │ │ │ │ ├── ProductSet.php │ │ │ │ │ │ ├── ProductSigningCertificate.php │ │ │ │ │ │ ├── ProductVisibility.php │ │ │ │ │ │ ├── ProductsApproveRequest.php │ │ │ │ │ │ ├── ProductsGenerateApprovalUrlResponse.php │ │ │ │ │ │ ├── ProductsListResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Devices.php │ │ │ │ │ │ │ ├── Enterprises.php │ │ │ │ │ │ │ ├── Entitlements.php │ │ │ │ │ │ │ ├── Grouplicenses.php │ │ │ │ │ │ │ ├── Grouplicenseusers.php │ │ │ │ │ │ │ ├── Installs.php │ │ │ │ │ │ │ ├── Managedconfigurationsfordevice.php │ │ │ │ │ │ │ ├── Managedconfigurationsforuser.php │ │ │ │ │ │ │ ├── Managedconfigurationssettings.php │ │ │ │ │ │ │ ├── Permissions.php │ │ │ │ │ │ │ ├── Products.php │ │ │ │ │ │ │ ├── Serviceaccountkeys.php │ │ │ │ │ │ │ ├── Storelayoutclusters.php │ │ │ │ │ │ │ ├── Storelayoutpages.php │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ └── Webapps.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── ServiceAccountKey.php │ │ │ │ │ │ ├── ServiceAccountKeysListResponse.php │ │ │ │ │ │ ├── SignupInfo.php │ │ │ │ │ │ ├── StoreCluster.php │ │ │ │ │ │ ├── StoreLayout.php │ │ │ │ │ │ ├── StoreLayoutClustersListResponse.php │ │ │ │ │ │ ├── StoreLayoutPagesListResponse.php │ │ │ │ │ │ ├── StorePage.php │ │ │ │ │ │ ├── TokenPagination.php │ │ │ │ │ │ ├── TrackInfo.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UsersListResponse.php │ │ │ │ │ │ ├── VariableSet.php │ │ │ │ │ │ ├── WebApp.php │ │ │ │ │ │ ├── WebAppIcon.php │ │ │ │ │ │ └── WebAppsListResponse.php │ │ │ │ │ │ ├── AndroidManagement.php │ │ │ │ │ │ ├── AndroidManagement │ │ │ │ │ │ ├── AdvancedSecurityOverrides.php │ │ │ │ │ │ ├── AlwaysOnVpnPackage.php │ │ │ │ │ │ ├── AndroidmanagementEmpty.php │ │ │ │ │ │ ├── ApiLevelCondition.php │ │ │ │ │ │ ├── AppTrackInfo.php │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── ApplicationEvent.php │ │ │ │ │ │ ├── ApplicationPermission.php │ │ │ │ │ │ ├── ApplicationPolicy.php │ │ │ │ │ │ ├── ApplicationReport.php │ │ │ │ │ │ ├── ApplicationReportingSettings.php │ │ │ │ │ │ ├── BlockAction.php │ │ │ │ │ │ ├── ChoosePrivateKeyRule.php │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── CommonCriteriaModeInfo.php │ │ │ │ │ │ ├── ComplianceRule.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── DeviceSettings.php │ │ │ │ │ │ ├── Display.php │ │ │ │ │ │ ├── EnrollmentToken.php │ │ │ │ │ │ ├── Enterprise.php │ │ │ │ │ │ ├── ExternalData.php │ │ │ │ │ │ ├── FreezePeriod.php │ │ │ │ │ │ ├── HardwareInfo.php │ │ │ │ │ │ ├── HardwareStatus.php │ │ │ │ │ │ ├── KeyedAppState.php │ │ │ │ │ │ ├── KioskCustomization.php │ │ │ │ │ │ ├── LaunchAppAction.php │ │ │ │ │ │ ├── ListDevicesResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListPoliciesResponse.php │ │ │ │ │ │ ├── ListWebAppsResponse.php │ │ │ │ │ │ ├── ManagedConfigurationTemplate.php │ │ │ │ │ │ ├── ManagedProperty.php │ │ │ │ │ │ ├── ManagedPropertyEntry.php │ │ │ │ │ │ ├── MemoryEvent.php │ │ │ │ │ │ ├── MemoryInfo.php │ │ │ │ │ │ ├── NetworkInfo.php │ │ │ │ │ │ ├── NonComplianceDetail.php │ │ │ │ │ │ ├── NonComplianceDetailCondition.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PackageNameList.php │ │ │ │ │ │ ├── PasswordRequirements.php │ │ │ │ │ │ ├── PermissionGrant.php │ │ │ │ │ │ ├── PersistentPreferredActivity.php │ │ │ │ │ │ ├── PersonalApplicationPolicy.php │ │ │ │ │ │ ├── PersonalUsagePolicies.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyEnforcementRule.php │ │ │ │ │ │ ├── PostureDetail.php │ │ │ │ │ │ ├── PowerManagementEvent.php │ │ │ │ │ │ ├── ProxyInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Enterprises.php │ │ │ │ │ │ │ ├── EnterprisesApplications.php │ │ │ │ │ │ │ ├── EnterprisesDevices.php │ │ │ │ │ │ │ ├── EnterprisesDevicesOperations.php │ │ │ │ │ │ │ ├── EnterprisesEnrollmentTokens.php │ │ │ │ │ │ │ ├── EnterprisesPolicies.php │ │ │ │ │ │ │ ├── EnterprisesWebApps.php │ │ │ │ │ │ │ ├── EnterprisesWebTokens.php │ │ │ │ │ │ │ └── SignupUrls.php │ │ │ │ │ │ ├── SecurityPosture.php │ │ │ │ │ │ ├── SetupAction.php │ │ │ │ │ │ ├── SigninDetail.php │ │ │ │ │ │ ├── SignupUrl.php │ │ │ │ │ │ ├── SoftwareInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StatusReportingSettings.php │ │ │ │ │ │ ├── SystemUpdate.php │ │ │ │ │ │ ├── SystemUpdateInfo.php │ │ │ │ │ │ ├── TermsAndConditions.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserFacingMessage.php │ │ │ │ │ │ ├── WebApp.php │ │ │ │ │ │ ├── WebAppIcon.php │ │ │ │ │ │ ├── WebToken.php │ │ │ │ │ │ └── WipeAction.php │ │ │ │ │ │ ├── AndroidProvisioningPartner.php │ │ │ │ │ │ ├── AndroidProvisioningPartner │ │ │ │ │ │ ├── AndroiddeviceprovisioningEmpty.php │ │ │ │ │ │ ├── ClaimDeviceRequest.php │ │ │ │ │ │ ├── ClaimDeviceResponse.php │ │ │ │ │ │ ├── ClaimDevicesRequest.php │ │ │ │ │ │ ├── Company.php │ │ │ │ │ │ ├── Configuration.php │ │ │ │ │ │ ├── CreateCustomerRequest.php │ │ │ │ │ │ ├── CustomerApplyConfigurationRequest.php │ │ │ │ │ │ ├── CustomerListConfigurationsResponse.php │ │ │ │ │ │ ├── CustomerListCustomersResponse.php │ │ │ │ │ │ ├── CustomerListDevicesResponse.php │ │ │ │ │ │ ├── CustomerListDpcsResponse.php │ │ │ │ │ │ ├── CustomerRemoveConfigurationRequest.php │ │ │ │ │ │ ├── CustomerUnclaimDeviceRequest.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── DeviceClaim.php │ │ │ │ │ │ ├── DeviceIdentifier.php │ │ │ │ │ │ ├── DeviceMetadata.php │ │ │ │ │ │ ├── DeviceReference.php │ │ │ │ │ │ ├── DevicesLongRunningOperationMetadata.php │ │ │ │ │ │ ├── DevicesLongRunningOperationResponse.php │ │ │ │ │ │ ├── Dpc.php │ │ │ │ │ │ ├── FindDevicesByDeviceIdentifierRequest.php │ │ │ │ │ │ ├── FindDevicesByDeviceIdentifierResponse.php │ │ │ │ │ │ ├── FindDevicesByOwnerRequest.php │ │ │ │ │ │ ├── FindDevicesByOwnerResponse.php │ │ │ │ │ │ ├── ListCustomersResponse.php │ │ │ │ │ │ ├── ListVendorCustomersResponse.php │ │ │ │ │ │ ├── ListVendorsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationPerDevice.php │ │ │ │ │ │ ├── PartnerClaim.php │ │ │ │ │ │ ├── PartnerUnclaim.php │ │ │ │ │ │ ├── PerDeviceStatusInBatch.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Customers.php │ │ │ │ │ │ │ ├── CustomersConfigurations.php │ │ │ │ │ │ │ ├── CustomersDevices.php │ │ │ │ │ │ │ ├── CustomersDpcs.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Partners.php │ │ │ │ │ │ │ ├── PartnersCustomers.php │ │ │ │ │ │ │ ├── PartnersDevices.php │ │ │ │ │ │ │ ├── PartnersVendors.php │ │ │ │ │ │ │ └── PartnersVendorsCustomers.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── UnclaimDeviceRequest.php │ │ │ │ │ │ ├── UnclaimDevicesRequest.php │ │ │ │ │ │ ├── UpdateDeviceMetadataInBatchRequest.php │ │ │ │ │ │ ├── UpdateDeviceMetadataRequest.php │ │ │ │ │ │ └── UpdateMetadataArguments.php │ │ │ │ │ │ ├── AndroidPublisher.php │ │ │ │ │ │ ├── AndroidPublisher │ │ │ │ │ │ ├── Apk.php │ │ │ │ │ │ ├── ApkBinary.php │ │ │ │ │ │ ├── ApksAddExternallyHostedRequest.php │ │ │ │ │ │ ├── ApksAddExternallyHostedResponse.php │ │ │ │ │ │ ├── ApksListResponse.php │ │ │ │ │ │ ├── AppDetails.php │ │ │ │ │ │ ├── AppEdit.php │ │ │ │ │ │ ├── Bundle.php │ │ │ │ │ │ ├── BundlesListResponse.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CountryTargeting.php │ │ │ │ │ │ ├── DeobfuscationFile.php │ │ │ │ │ │ ├── DeobfuscationFilesUploadResponse.php │ │ │ │ │ │ ├── DeveloperComment.php │ │ │ │ │ │ ├── DeviceMetadata.php │ │ │ │ │ │ ├── DeviceSpec.php │ │ │ │ │ │ ├── ExpansionFile.php │ │ │ │ │ │ ├── ExpansionFilesUploadResponse.php │ │ │ │ │ │ ├── ExternallyHostedApk.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImagesDeleteAllResponse.php │ │ │ │ │ │ ├── ImagesListResponse.php │ │ │ │ │ │ ├── ImagesUploadResponse.php │ │ │ │ │ │ ├── InAppProduct.php │ │ │ │ │ │ ├── InAppProductListing.php │ │ │ │ │ │ ├── InappproductsListResponse.php │ │ │ │ │ │ ├── InternalAppSharingArtifact.php │ │ │ │ │ │ ├── IntroductoryPriceInfo.php │ │ │ │ │ │ ├── Listing.php │ │ │ │ │ │ ├── ListingsListResponse.php │ │ │ │ │ │ ├── LocalizedText.php │ │ │ │ │ │ ├── PageInfo.php │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ ├── ProductPurchase.php │ │ │ │ │ │ ├── ProductPurchasesAcknowledgeRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Edits.php │ │ │ │ │ │ │ ├── EditsApks.php │ │ │ │ │ │ │ ├── EditsBundles.php │ │ │ │ │ │ │ ├── EditsDeobfuscationfiles.php │ │ │ │ │ │ │ ├── EditsDetails.php │ │ │ │ │ │ │ ├── EditsExpansionfiles.php │ │ │ │ │ │ │ ├── EditsImages.php │ │ │ │ │ │ │ ├── EditsListings.php │ │ │ │ │ │ │ ├── EditsTesters.php │ │ │ │ │ │ │ ├── EditsTracks.php │ │ │ │ │ │ │ ├── Inappproducts.php │ │ │ │ │ │ │ ├── Internalappsharingartifacts.php │ │ │ │ │ │ │ ├── Orders.php │ │ │ │ │ │ │ ├── Purchases.php │ │ │ │ │ │ │ ├── PurchasesProducts.php │ │ │ │ │ │ │ ├── PurchasesSubscriptions.php │ │ │ │ │ │ │ ├── PurchasesVoidedpurchases.php │ │ │ │ │ │ │ ├── Reviews.php │ │ │ │ │ │ │ ├── Systemapks.php │ │ │ │ │ │ │ └── SystemapksVariants.php │ │ │ │ │ │ ├── Review.php │ │ │ │ │ │ ├── ReviewReplyResult.php │ │ │ │ │ │ ├── ReviewsListResponse.php │ │ │ │ │ │ ├── ReviewsReplyRequest.php │ │ │ │ │ │ ├── ReviewsReplyResponse.php │ │ │ │ │ │ ├── SubscriptionCancelSurveyResult.php │ │ │ │ │ │ ├── SubscriptionDeferralInfo.php │ │ │ │ │ │ ├── SubscriptionPriceChange.php │ │ │ │ │ │ ├── SubscriptionPurchase.php │ │ │ │ │ │ ├── SubscriptionPurchasesAcknowledgeRequest.php │ │ │ │ │ │ ├── SubscriptionPurchasesDeferRequest.php │ │ │ │ │ │ ├── SubscriptionPurchasesDeferResponse.php │ │ │ │ │ │ ├── SystemApksListResponse.php │ │ │ │ │ │ ├── Testers.php │ │ │ │ │ │ ├── Timestamp.php │ │ │ │ │ │ ├── TokenPagination.php │ │ │ │ │ │ ├── Track.php │ │ │ │ │ │ ├── TrackRelease.php │ │ │ │ │ │ ├── TracksListResponse.php │ │ │ │ │ │ ├── UserComment.php │ │ │ │ │ │ ├── UsesPermission.php │ │ │ │ │ │ ├── Variant.php │ │ │ │ │ │ ├── VoidedPurchase.php │ │ │ │ │ │ └── VoidedPurchasesListResponse.php │ │ │ │ │ │ ├── Apigateway.php │ │ │ │ │ │ ├── Apigateway │ │ │ │ │ │ ├── ApigatewayApi.php │ │ │ │ │ │ ├── ApigatewayApiConfig.php │ │ │ │ │ │ ├── ApigatewayApiConfigFile.php │ │ │ │ │ │ ├── ApigatewayApiConfigGrpcServiceDefinition.php │ │ │ │ │ │ ├── ApigatewayApiConfigOpenApiDocument.php │ │ │ │ │ │ ├── ApigatewayAuditConfig.php │ │ │ │ │ │ ├── ApigatewayAuditLogConfig.php │ │ │ │ │ │ ├── ApigatewayBackendConfig.php │ │ │ │ │ │ ├── ApigatewayBinding.php │ │ │ │ │ │ ├── ApigatewayCancelOperationRequest.php │ │ │ │ │ │ ├── ApigatewayEmpty.php │ │ │ │ │ │ ├── ApigatewayExpr.php │ │ │ │ │ │ ├── ApigatewayGateway.php │ │ │ │ │ │ ├── ApigatewayGatewayConfig.php │ │ │ │ │ │ ├── ApigatewayListApiConfigsResponse.php │ │ │ │ │ │ ├── ApigatewayListApisResponse.php │ │ │ │ │ │ ├── ApigatewayListGatewaysResponse.php │ │ │ │ │ │ ├── ApigatewayListLocationsResponse.php │ │ │ │ │ │ ├── ApigatewayListOperationsResponse.php │ │ │ │ │ │ ├── ApigatewayLocation.php │ │ │ │ │ │ ├── ApigatewayOperation.php │ │ │ │ │ │ ├── ApigatewayOperationMetadata.php │ │ │ │ │ │ ├── ApigatewayOperationMetadataDiagnostic.php │ │ │ │ │ │ ├── ApigatewayPolicy.php │ │ │ │ │ │ ├── ApigatewaySetIamPolicyRequest.php │ │ │ │ │ │ ├── ApigatewayStatus.php │ │ │ │ │ │ ├── ApigatewayTestIamPermissionsRequest.php │ │ │ │ │ │ ├── ApigatewayTestIamPermissionsResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsApis.php │ │ │ │ │ │ │ ├── ProjectsLocationsApisConfigs.php │ │ │ │ │ │ │ ├── ProjectsLocationsGateways.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── Apigee.php │ │ │ │ │ │ ├── Apigee │ │ │ │ │ │ ├── GoogleApiHttpBody.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Access.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AccessGet.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AccessRemove.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AccessSet.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Alias.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AliasRevisionConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiCategory.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiCategoryData.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiProduct.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiProductRef.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiProxy.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiProxyRevision.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ApiResponseWrapper.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1App.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AsyncQuery.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AsyncQueryResult.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1AsyncQueryResultView.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Attribute.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Attributes.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CanaryEvaluation.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CanaryEvaluationMetricLabels.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CertInfo.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Certificate.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CommonNameConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ConfigVersion.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Credential.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CustomReport.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1CustomReportMetric.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DataCollector.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DataCollectorConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Datastore.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DatastoreConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DateRange.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DebugMask.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DebugSession.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DebugSessionTransaction.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeleteCustomReportResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Deployment.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeploymentChangeReport.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeploymentChangeReportRoutingChange.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeploymentConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Developer.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeveloperApp.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DeveloperAppKey.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1DimensionMetric.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1EntityMetadata.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Environment.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1EnvironmentConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1EnvironmentGroup.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1EnvironmentGroupAttachment.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1EnvironmentGroupConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Export.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ExportRequest.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1FlowHook.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1FlowHookConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1GetSyncAuthorizationRequest.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1IngressConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Instance.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1InstanceAttachment.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatus.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1KeyAliasReference.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1KeyValueMap.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Keystore.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1KeystoreConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListApiCategoriesResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListApiProductsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListApiProxiesResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListAppsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListAsyncQueriesResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListCustomReportsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListDataCollectorsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListDatastoresResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListDebugSessionsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListDeploymentsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListDeveloperAppsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListEnvironmentGroupsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListEnvironmentResourcesResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListExportsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListHybridIssuersResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListInstanceAttachmentsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListInstancesResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListOfDevelopersResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListOrganizationsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ListSharedFlowsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Metadata.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Metric.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Operation.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OperationConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OperationGroup.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OptimizedStats.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OptimizedStatsNode.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OptimizedStatsResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Organization.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1OrganizationProjectMapping.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1PodStatus.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Point.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Properties.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Property.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ProvisionOrganizationRequest.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Query.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1QueryMetadata.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1QueryMetric.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Quota.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Reference.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ReferenceConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ReportInstanceStatusRequest.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ReportInstanceStatusResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ReportProperty.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ResourceConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ResourceFile.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ResourceFiles.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ResourceStatus.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Result.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1RevisionStatus.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1RoutingRule.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1RuntimeTraceConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1RuntimeTraceConfigOverride.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1RuntimeTraceSamplingConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Schema.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1SchemaSchemaElement.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1SchemaSchemaProperty.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1ServiceIssuersMapping.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Session.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1SharedFlow.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1SharedFlowRevision.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Stats.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1StatsEnvironmentStats.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1StatsHostStats.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1Subscription.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1SyncAuthorization.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TargetServer.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TargetServerConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TestDatastoreResponse.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TlsInfo.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TlsInfoCommonName.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1TlsInfoConfig.php │ │ │ │ │ │ ├── GoogleCloudApigeeV1UpdateError.php │ │ │ │ │ │ ├── GoogleIamV1AuditConfig.php │ │ │ │ │ │ ├── GoogleIamV1AuditLogConfig.php │ │ │ │ │ │ ├── GoogleIamV1Binding.php │ │ │ │ │ │ ├── GoogleIamV1Policy.php │ │ │ │ │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcPreconditionFailure.php │ │ │ │ │ │ ├── GoogleRpcPreconditionFailureViolation.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeExpr.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Hybrid.php │ │ │ │ │ │ │ ├── HybridIssuers.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsAnalytics.php │ │ │ │ │ │ │ ├── OrganizationsAnalyticsDatastores.php │ │ │ │ │ │ │ ├── OrganizationsApiproducts.php │ │ │ │ │ │ │ ├── OrganizationsApiproductsAttributes.php │ │ │ │ │ │ │ ├── OrganizationsApis.php │ │ │ │ │ │ │ ├── OrganizationsApisDeployments.php │ │ │ │ │ │ │ ├── OrganizationsApisKeyvaluemaps.php │ │ │ │ │ │ │ ├── OrganizationsApisRevisions.php │ │ │ │ │ │ │ ├── OrganizationsApisRevisionsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsApps.php │ │ │ │ │ │ │ ├── OrganizationsDatacollectors.php │ │ │ │ │ │ │ ├── OrganizationsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsDevelopers.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersApps.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersAppsAttributes.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersAppsKeys.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersAppsKeysApiproducts.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersAppsKeysCreate.php │ │ │ │ │ │ │ ├── OrganizationsDevelopersAttributes.php │ │ │ │ │ │ │ ├── OrganizationsEnvgroups.php │ │ │ │ │ │ │ ├── OrganizationsEnvgroupsAttachments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsAnalytics.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsAnalyticsAdmin.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsAnalyticsExports.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApis.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApisDeployments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApisRevisions.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApisRevisionsDebugsessions.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApisRevisionsDebugsessionsData.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsApisRevisionsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsCaches.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsFlowhooks.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsKeystores.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsKeystoresAliases.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsKeyvaluemaps.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsOptimizedStats.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsQueries.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsReferences.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsResourcefiles.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsSharedflows.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsSharedflowsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsSharedflowsRevisions.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsStats.php │ │ │ │ │ │ │ ├── OrganizationsEnvironmentsTargetservers.php │ │ │ │ │ │ │ ├── OrganizationsHostQueries.php │ │ │ │ │ │ │ ├── OrganizationsHostStats.php │ │ │ │ │ │ │ ├── OrganizationsInstances.php │ │ │ │ │ │ │ ├── OrganizationsInstancesAttachments.php │ │ │ │ │ │ │ ├── OrganizationsInstancesCanaryevaluations.php │ │ │ │ │ │ │ ├── OrganizationsKeyvaluemaps.php │ │ │ │ │ │ │ ├── OrganizationsOperations.php │ │ │ │ │ │ │ ├── OrganizationsOptimizedHostStats.php │ │ │ │ │ │ │ ├── OrganizationsReports.php │ │ │ │ │ │ │ ├── OrganizationsSharedflows.php │ │ │ │ │ │ │ ├── OrganizationsSharedflowsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsSharedflowsRevisions.php │ │ │ │ │ │ │ ├── OrganizationsSharedflowsRevisionsDeployments.php │ │ │ │ │ │ │ ├── OrganizationsSites.php │ │ │ │ │ │ │ ├── OrganizationsSitesApicategories.php │ │ │ │ │ │ │ └── Projects.php │ │ │ │ │ │ ├── AppState.php │ │ │ │ │ │ ├── AppState │ │ │ │ │ │ ├── GetResponse.php │ │ │ │ │ │ ├── ListResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── States.php │ │ │ │ │ │ ├── UpdateRequest.php │ │ │ │ │ │ └── WriteResult.php │ │ │ │ │ │ ├── Appengine.php │ │ │ │ │ │ ├── Appengine │ │ │ │ │ │ ├── ApiConfigHandler.php │ │ │ │ │ │ ├── ApiEndpointHandler.php │ │ │ │ │ │ ├── AppengineEmpty.php │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── AuthorizedCertificate.php │ │ │ │ │ │ ├── AuthorizedDomain.php │ │ │ │ │ │ ├── AutomaticScaling.php │ │ │ │ │ │ ├── BasicScaling.php │ │ │ │ │ │ ├── BatchUpdateIngressRulesRequest.php │ │ │ │ │ │ ├── BatchUpdateIngressRulesResponse.php │ │ │ │ │ │ ├── CertificateRawData.php │ │ │ │ │ │ ├── CloudBuildOptions.php │ │ │ │ │ │ ├── ContainerInfo.php │ │ │ │ │ │ ├── CpuUtilization.php │ │ │ │ │ │ ├── CreateVersionMetadataV1.php │ │ │ │ │ │ ├── CreateVersionMetadataV1Alpha.php │ │ │ │ │ │ ├── CreateVersionMetadataV1Beta.php │ │ │ │ │ │ ├── DebugInstanceRequest.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── DiskUtilization.php │ │ │ │ │ │ ├── DomainMapping.php │ │ │ │ │ │ ├── EndpointsApiService.php │ │ │ │ │ │ ├── Entrypoint.php │ │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ │ ├── FeatureSettings.php │ │ │ │ │ │ ├── FileInfo.php │ │ │ │ │ │ ├── FirewallRule.php │ │ │ │ │ │ ├── HealthCheck.php │ │ │ │ │ │ ├── IdentityAwareProxy.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── Library.php │ │ │ │ │ │ ├── ListAuthorizedCertificatesResponse.php │ │ │ │ │ │ ├── ListAuthorizedDomainsResponse.php │ │ │ │ │ │ ├── ListDomainMappingsResponse.php │ │ │ │ │ │ ├── ListIngressRulesResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── ListVersionsResponse.php │ │ │ │ │ │ ├── LivenessCheck.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationMetadata.php │ │ │ │ │ │ ├── ManagedCertificate.php │ │ │ │ │ │ ├── ManualScaling.php │ │ │ │ │ │ ├── Network.php │ │ │ │ │ │ ├── NetworkSettings.php │ │ │ │ │ │ ├── NetworkUtilization.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadataV1.php │ │ │ │ │ │ ├── OperationMetadataV1Alpha.php │ │ │ │ │ │ ├── OperationMetadataV1Beta.php │ │ │ │ │ │ ├── ReadinessCheck.php │ │ │ │ │ │ ├── RepairApplicationRequest.php │ │ │ │ │ │ ├── RequestUtilization.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Apps.php │ │ │ │ │ │ │ ├── AppsAuthorizedCertificates.php │ │ │ │ │ │ │ ├── AppsAuthorizedDomains.php │ │ │ │ │ │ │ ├── AppsDomainMappings.php │ │ │ │ │ │ │ ├── AppsFirewall.php │ │ │ │ │ │ │ ├── AppsFirewallIngressRules.php │ │ │ │ │ │ │ ├── AppsLocations.php │ │ │ │ │ │ │ ├── AppsOperations.php │ │ │ │ │ │ │ ├── AppsServices.php │ │ │ │ │ │ │ ├── AppsServicesVersions.php │ │ │ │ │ │ │ └── AppsServicesVersionsInstances.php │ │ │ │ │ │ ├── ResourceRecord.php │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ ├── ScriptHandler.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── SslSettings.php │ │ │ │ │ │ ├── StandardSchedulerSettings.php │ │ │ │ │ │ ├── StaticFilesHandler.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TrafficSplit.php │ │ │ │ │ │ ├── UrlDispatchRule.php │ │ │ │ │ │ ├── UrlMap.php │ │ │ │ │ │ ├── Version.php │ │ │ │ │ │ ├── Volume.php │ │ │ │ │ │ ├── VpcAccessConnector.php │ │ │ │ │ │ └── ZipInfo.php │ │ │ │ │ │ ├── Appsactivity.php │ │ │ │ │ │ ├── Appsactivity │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── AppsactivityParent.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── ListActivitiesResponse.php │ │ │ │ │ │ ├── Move.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── PermissionChange.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── Rename.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Activities.php │ │ │ │ │ │ ├── Target.php │ │ │ │ │ │ └── User.php │ │ │ │ │ │ ├── Area120Tables.php │ │ │ │ │ │ ├── Area120Tables │ │ │ │ │ │ ├── Area120tablesEmpty.php │ │ │ │ │ │ ├── BatchCreateRowsRequest.php │ │ │ │ │ │ ├── BatchCreateRowsResponse.php │ │ │ │ │ │ ├── BatchUpdateRowsRequest.php │ │ │ │ │ │ ├── BatchUpdateRowsResponse.php │ │ │ │ │ │ ├── ColumnDescription.php │ │ │ │ │ │ ├── CreateRowRequest.php │ │ │ │ │ │ ├── LabeledItem.php │ │ │ │ │ │ ├── ListRowsResponse.php │ │ │ │ │ │ ├── ListTablesResponse.php │ │ │ │ │ │ ├── ListWorkspacesResponse.php │ │ │ │ │ │ ├── LookupDetails.php │ │ │ │ │ │ ├── RelationshipDetails.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Tables.php │ │ │ │ │ │ │ ├── TablesRows.php │ │ │ │ │ │ │ └── Workspaces.php │ │ │ │ │ │ ├── Row.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── UpdateRowRequest.php │ │ │ │ │ │ └── Workspace.php │ │ │ │ │ │ ├── ArtifactRegistry.php │ │ │ │ │ │ ├── ArtifactRegistry │ │ │ │ │ │ ├── ArtifactregistryEmpty.php │ │ │ │ │ │ ├── ArtifactregistryFile.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo.php │ │ │ │ │ │ ├── GoogleDevtoolsArtifactregistryV1alpha1GcsSource.php │ │ │ │ │ │ ├── GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse.php │ │ │ │ │ │ ├── GoogleDevtoolsArtifactregistryV1alpha1Package.php │ │ │ │ │ │ ├── Hash.php │ │ │ │ │ │ ├── ListFilesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListPackagesResponse.php │ │ │ │ │ │ ├── ListRepositoriesResponse.php │ │ │ │ │ │ ├── ListTagsResponse.php │ │ │ │ │ │ ├── ListVersionsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Package.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Repository.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsRepositories.php │ │ │ │ │ │ │ ├── ProjectsLocationsRepositoriesFiles.php │ │ │ │ │ │ │ ├── ProjectsLocationsRepositoriesPackages.php │ │ │ │ │ │ │ ├── ProjectsLocationsRepositoriesPackagesTags.php │ │ │ │ │ │ │ └── ProjectsLocationsRepositoriesPackagesVersions.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Tag.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ └── Version.php │ │ │ │ │ │ ├── Assuredworkloads.php │ │ │ │ │ │ ├── Assuredworkloads │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1CreateWorkloadOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1ListWorkloadsResponse.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1Workload.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadKMSSettings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadResourceInfo.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1Workload.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadCJISSettings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampHighSettings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampModerateSettings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadIL4Settings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadKMSSettings.php │ │ │ │ │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsLocations.php │ │ │ │ │ │ │ ├── OrganizationsLocationsOperations.php │ │ │ │ │ │ │ └── OrganizationsLocationsWorkloads.php │ │ │ │ │ │ ├── Autoscaler.php │ │ │ │ │ │ ├── Autoscaler │ │ │ │ │ │ ├── Autoscaler.php │ │ │ │ │ │ ├── AutoscalerListResponse.php │ │ │ │ │ │ ├── AutoscalingPolicy.php │ │ │ │ │ │ ├── AutoscalingPolicyCpuUtilization.php │ │ │ │ │ │ ├── AutoscalingPolicyCustomMetricUtilization.php │ │ │ │ │ │ ├── AutoscalingPolicyLoadBalancingUtilization.php │ │ │ │ │ │ ├── DeprecationStatus.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationList.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Autoscalers.php │ │ │ │ │ │ │ ├── ZoneOperations.php │ │ │ │ │ │ │ └── Zones.php │ │ │ │ │ │ ├── Zone.php │ │ │ │ │ │ └── ZoneList.php │ │ │ │ │ │ ├── BigQueryConnectionService.php │ │ │ │ │ │ ├── BigQueryConnectionService │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── BigqueryconnectionEmpty.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CloudSqlCredential.php │ │ │ │ │ │ ├── CloudSqlProperties.php │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── ConnectionCredential.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── ListConnectionsResponse.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ └── ProjectsLocationsConnections.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── BigQueryDataTransfer.php │ │ │ │ │ │ ├── BigQueryDataTransfer │ │ │ │ │ │ ├── BigquerydatatransferEmpty.php │ │ │ │ │ │ ├── CheckValidCredsRequest.php │ │ │ │ │ │ ├── CheckValidCredsResponse.php │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ ├── DataSourceParameter.php │ │ │ │ │ │ ├── EmailPreferences.php │ │ │ │ │ │ ├── ListDataSourcesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListTransferConfigsResponse.php │ │ │ │ │ │ ├── ListTransferLogsResponse.php │ │ │ │ │ │ ├── ListTransferRunsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsDataSources.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsDataSources.php │ │ │ │ │ │ │ ├── ProjectsLocationsTransferConfigs.php │ │ │ │ │ │ │ ├── ProjectsLocationsTransferConfigsRuns.php │ │ │ │ │ │ │ ├── ProjectsLocationsTransferConfigsRunsTransferLogs.php │ │ │ │ │ │ │ ├── ProjectsTransferConfigs.php │ │ │ │ │ │ │ ├── ProjectsTransferConfigsRuns.php │ │ │ │ │ │ │ └── ProjectsTransferConfigsRunsTransferLogs.php │ │ │ │ │ │ ├── ScheduleOptions.php │ │ │ │ │ │ ├── ScheduleTransferRunsRequest.php │ │ │ │ │ │ ├── ScheduleTransferRunsResponse.php │ │ │ │ │ │ ├── StartManualTransferRunsRequest.php │ │ │ │ │ │ ├── StartManualTransferRunsResponse.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeRange.php │ │ │ │ │ │ ├── TransferConfig.php │ │ │ │ │ │ ├── TransferMessage.php │ │ │ │ │ │ └── TransferRun.php │ │ │ │ │ │ ├── BigQueryReservation.php │ │ │ │ │ │ ├── BigQueryReservation │ │ │ │ │ │ ├── Assignment.php │ │ │ │ │ │ ├── BiReservation.php │ │ │ │ │ │ ├── BigqueryreservationEmpty.php │ │ │ │ │ │ ├── CapacityCommitment.php │ │ │ │ │ │ ├── CreateSlotPoolMetadata.php │ │ │ │ │ │ ├── ListAssignmentsResponse.php │ │ │ │ │ │ ├── ListCapacityCommitmentsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListReservationsResponse.php │ │ │ │ │ │ ├── MergeCapacityCommitmentsRequest.php │ │ │ │ │ │ ├── MoveAssignmentRequest.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Reservation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsCapacityCommitments.php │ │ │ │ │ │ │ ├── ProjectsLocationsReservations.php │ │ │ │ │ │ │ └── ProjectsLocationsReservationsAssignments.php │ │ │ │ │ │ ├── SearchAllAssignmentsResponse.php │ │ │ │ │ │ ├── SearchAssignmentsResponse.php │ │ │ │ │ │ ├── SplitCapacityCommitmentRequest.php │ │ │ │ │ │ ├── SplitCapacityCommitmentResponse.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── Bigquery.php │ │ │ │ │ │ ├── Bigquery │ │ │ │ │ │ ├── AggregateClassificationMetrics.php │ │ │ │ │ │ ├── Argument.php │ │ │ │ │ │ ├── ArimaCoefficients.php │ │ │ │ │ │ ├── ArimaFittingMetrics.php │ │ │ │ │ │ ├── ArimaForecastingMetrics.php │ │ │ │ │ │ ├── ArimaModelInfo.php │ │ │ │ │ │ ├── ArimaOrder.php │ │ │ │ │ │ ├── ArimaResult.php │ │ │ │ │ │ ├── ArimaSingleModelForecastingMetrics.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── BigQueryModelTraining.php │ │ │ │ │ │ ├── BigtableColumn.php │ │ │ │ │ │ ├── BigtableColumnFamily.php │ │ │ │ │ │ ├── BigtableOptions.php │ │ │ │ │ │ ├── BinaryClassificationMetrics.php │ │ │ │ │ │ ├── BinaryConfusionMatrix.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── BqmlIterationResult.php │ │ │ │ │ │ ├── BqmlTrainingRun.php │ │ │ │ │ │ ├── BqmlTrainingRunTrainingOptions.php │ │ │ │ │ │ ├── CategoricalValue.php │ │ │ │ │ │ ├── CategoryCount.php │ │ │ │ │ │ ├── Cluster.php │ │ │ │ │ │ ├── ClusterInfo.php │ │ │ │ │ │ ├── Clustering.php │ │ │ │ │ │ ├── ClusteringMetrics.php │ │ │ │ │ │ ├── ConfusionMatrix.php │ │ │ │ │ │ ├── ConnectionProperty.php │ │ │ │ │ │ ├── CsvOptions.php │ │ │ │ │ │ ├── DataSplitResult.php │ │ │ │ │ │ ├── Dataset.php │ │ │ │ │ │ ├── DatasetAccess.php │ │ │ │ │ │ ├── DatasetList.php │ │ │ │ │ │ ├── DatasetListDatasets.php │ │ │ │ │ │ ├── DatasetReference.php │ │ │ │ │ │ ├── DestinationTableProperties.php │ │ │ │ │ │ ├── EncryptionConfiguration.php │ │ │ │ │ │ ├── Entry.php │ │ │ │ │ │ ├── ErrorProto.php │ │ │ │ │ │ ├── EvaluationMetrics.php │ │ │ │ │ │ ├── ExplainQueryStage.php │ │ │ │ │ │ ├── ExplainQueryStep.php │ │ │ │ │ │ ├── Explanation.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ExternalDataConfiguration.php │ │ │ │ │ │ ├── FeatureValue.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── GetQueryResultsResponse.php │ │ │ │ │ │ ├── GetServiceAccountResponse.php │ │ │ │ │ │ ├── GlobalExplanation.php │ │ │ │ │ │ ├── GoogleSheetsOptions.php │ │ │ │ │ │ ├── HivePartitioningOptions.php │ │ │ │ │ │ ├── IterationResult.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobCancelResponse.php │ │ │ │ │ │ ├── JobConfiguration.php │ │ │ │ │ │ ├── JobConfigurationExtract.php │ │ │ │ │ │ ├── JobConfigurationLoad.php │ │ │ │ │ │ ├── JobConfigurationQuery.php │ │ │ │ │ │ ├── JobConfigurationTableCopy.php │ │ │ │ │ │ ├── JobList.php │ │ │ │ │ │ ├── JobListJobs.php │ │ │ │ │ │ ├── JobReference.php │ │ │ │ │ │ ├── JobStatistics.php │ │ │ │ │ │ ├── JobStatistics2.php │ │ │ │ │ │ ├── JobStatistics2ReservationUsage.php │ │ │ │ │ │ ├── JobStatistics3.php │ │ │ │ │ │ ├── JobStatistics4.php │ │ │ │ │ │ ├── JobStatisticsReservationUsage.php │ │ │ │ │ │ ├── JobStatus.php │ │ │ │ │ │ ├── ListModelsResponse.php │ │ │ │ │ │ ├── ListRoutinesResponse.php │ │ │ │ │ │ ├── ListRowAccessPoliciesResponse.php │ │ │ │ │ │ ├── LocationMetadata.php │ │ │ │ │ │ ├── MaterializedViewDefinition.php │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ ├── ModelDefinition.php │ │ │ │ │ │ ├── ModelDefinitionModelOptions.php │ │ │ │ │ │ ├── ModelReference.php │ │ │ │ │ │ ├── MultiClassClassificationMetrics.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ProjectList.php │ │ │ │ │ │ ├── ProjectListProjects.php │ │ │ │ │ │ ├── ProjectReference.php │ │ │ │ │ │ ├── QueryParameter.php │ │ │ │ │ │ ├── QueryParameterType.php │ │ │ │ │ │ ├── QueryParameterTypeStructTypes.php │ │ │ │ │ │ ├── QueryParameterValue.php │ │ │ │ │ │ ├── QueryRequest.php │ │ │ │ │ │ ├── QueryResponse.php │ │ │ │ │ │ ├── QueryTimelineSample.php │ │ │ │ │ │ ├── RangePartitioning.php │ │ │ │ │ │ ├── RangePartitioningRange.php │ │ │ │ │ │ ├── RankingMetrics.php │ │ │ │ │ │ ├── RegressionMetrics.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Datasets.php │ │ │ │ │ │ │ ├── Jobs.php │ │ │ │ │ │ │ ├── Models.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── Routines.php │ │ │ │ │ │ │ ├── RowAccessPolicies.php │ │ │ │ │ │ │ ├── Tabledata.php │ │ │ │ │ │ │ └── Tables.php │ │ │ │ │ │ ├── Routine.php │ │ │ │ │ │ ├── RoutineReference.php │ │ │ │ │ │ ├── Row.php │ │ │ │ │ │ ├── RowAccessPolicy.php │ │ │ │ │ │ ├── RowAccessPolicyReference.php │ │ │ │ │ │ ├── RowLevelSecurityStatistics.php │ │ │ │ │ │ ├── ScriptStackFrame.php │ │ │ │ │ │ ├── ScriptStatistics.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SnapshotDefinition.php │ │ │ │ │ │ ├── StandardSqlDataType.php │ │ │ │ │ │ ├── StandardSqlField.php │ │ │ │ │ │ ├── StandardSqlStructType.php │ │ │ │ │ │ ├── Streamingbuffer.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TableCell.php │ │ │ │ │ │ ├── TableDataInsertAllRequest.php │ │ │ │ │ │ ├── TableDataInsertAllRequestRows.php │ │ │ │ │ │ ├── TableDataInsertAllResponse.php │ │ │ │ │ │ ├── TableDataInsertAllResponseInsertErrors.php │ │ │ │ │ │ ├── TableDataList.php │ │ │ │ │ │ ├── TableFieldSchema.php │ │ │ │ │ │ ├── TableFieldSchemaCategories.php │ │ │ │ │ │ ├── TableFieldSchemaPolicyTags.php │ │ │ │ │ │ ├── TableList.php │ │ │ │ │ │ ├── TableListTables.php │ │ │ │ │ │ ├── TableListTablesView.php │ │ │ │ │ │ ├── TableReference.php │ │ │ │ │ │ ├── TableRow.php │ │ │ │ │ │ ├── TableSchema.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── TimePartitioning.php │ │ │ │ │ │ ├── TrainingOptions.php │ │ │ │ │ │ ├── TrainingRun.php │ │ │ │ │ │ ├── TransactionInfo.php │ │ │ │ │ │ ├── UserDefinedFunctionResource.php │ │ │ │ │ │ └── ViewDefinition.php │ │ │ │ │ │ ├── BigtableAdmin.php │ │ │ │ │ │ ├── BigtableAdmin │ │ │ │ │ │ ├── AppProfile.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Backup.php │ │ │ │ │ │ ├── BackupInfo.php │ │ │ │ │ │ ├── BigtableadminEmpty.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CheckConsistencyRequest.php │ │ │ │ │ │ ├── CheckConsistencyResponse.php │ │ │ │ │ │ ├── Cluster.php │ │ │ │ │ │ ├── ClusterState.php │ │ │ │ │ │ ├── ColumnFamily.php │ │ │ │ │ │ ├── CreateBackupMetadata.php │ │ │ │ │ │ ├── CreateClusterMetadata.php │ │ │ │ │ │ ├── CreateClusterRequest.php │ │ │ │ │ │ ├── CreateInstanceMetadata.php │ │ │ │ │ │ ├── CreateInstanceRequest.php │ │ │ │ │ │ ├── CreateTableRequest.php │ │ │ │ │ │ ├── DropRowRangeRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FailureTrace.php │ │ │ │ │ │ ├── Frame.php │ │ │ │ │ │ ├── GcRule.php │ │ │ │ │ │ ├── GenerateConsistencyTokenRequest.php │ │ │ │ │ │ ├── GenerateConsistencyTokenResponse.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── Intersection.php │ │ │ │ │ │ ├── ListAppProfilesResponse.php │ │ │ │ │ │ ├── ListBackupsResponse.php │ │ │ │ │ │ ├── ListClustersResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListTablesResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Modification.php │ │ │ │ │ │ ├── ModifyColumnFamiliesRequest.php │ │ │ │ │ │ ├── MultiClusterRoutingUseAny.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationProgress.php │ │ │ │ │ │ ├── OptimizeRestoredTableMetadata.php │ │ │ │ │ │ ├── PartialUpdateInstanceRequest.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── OperationsProjects.php │ │ │ │ │ │ │ ├── OperationsProjectsOperations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsInstances.php │ │ │ │ │ │ │ ├── ProjectsInstancesAppProfiles.php │ │ │ │ │ │ │ ├── ProjectsInstancesClusters.php │ │ │ │ │ │ │ ├── ProjectsInstancesClustersBackups.php │ │ │ │ │ │ │ ├── ProjectsInstancesTables.php │ │ │ │ │ │ │ └── ProjectsLocations.php │ │ │ │ │ │ ├── RestoreInfo.php │ │ │ │ │ │ ├── RestoreTableMetadata.php │ │ │ │ │ │ ├── RestoreTableRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SingleClusterRouting.php │ │ │ │ │ │ ├── Split.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TableProgress.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Union.php │ │ │ │ │ │ ├── UpdateAppProfileMetadata.php │ │ │ │ │ │ ├── UpdateClusterMetadata.php │ │ │ │ │ │ └── UpdateInstanceMetadata.php │ │ │ │ │ │ ├── BinaryAuthorization.php │ │ │ │ │ │ ├── BinaryAuthorization │ │ │ │ │ │ ├── AdmissionRule.php │ │ │ │ │ │ ├── AdmissionWhitelistPattern.php │ │ │ │ │ │ ├── AttestationOccurrence.php │ │ │ │ │ │ ├── Attestor.php │ │ │ │ │ │ ├── AttestorPublicKey.php │ │ │ │ │ │ ├── BinaryauthorizationEmpty.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── IamPolicy.php │ │ │ │ │ │ ├── Jwt.php │ │ │ │ │ │ ├── ListAttestorsResponse.php │ │ │ │ │ │ ├── PkixPublicKey.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAttestors.php │ │ │ │ │ │ │ └── ProjectsPolicy.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Signature.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UserOwnedGrafeasNote.php │ │ │ │ │ │ ├── ValidateAttestationOccurrenceRequest.php │ │ │ │ │ │ └── ValidateAttestationOccurrenceResponse.php │ │ │ │ │ │ ├── Blogger.php │ │ │ │ │ │ ├── Blogger │ │ │ │ │ │ ├── Blog.php │ │ │ │ │ │ ├── BlogList.php │ │ │ │ │ │ ├── BlogLocale.php │ │ │ │ │ │ ├── BlogPages.php │ │ │ │ │ │ ├── BlogPerUserInfo.php │ │ │ │ │ │ ├── BlogPosts.php │ │ │ │ │ │ ├── BlogUserInfo.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CommentAuthor.php │ │ │ │ │ │ ├── CommentAuthorImage.php │ │ │ │ │ │ ├── CommentBlog.php │ │ │ │ │ │ ├── CommentInReplyTo.php │ │ │ │ │ │ ├── CommentList.php │ │ │ │ │ │ ├── CommentPost.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── PageAuthor.php │ │ │ │ │ │ ├── PageAuthorImage.php │ │ │ │ │ │ ├── PageBlog.php │ │ │ │ │ │ ├── PageList.php │ │ │ │ │ │ ├── Pageviews.php │ │ │ │ │ │ ├── PageviewsCounts.php │ │ │ │ │ │ ├── Post.php │ │ │ │ │ │ ├── PostAuthor.php │ │ │ │ │ │ ├── PostAuthorImage.php │ │ │ │ │ │ ├── PostBlog.php │ │ │ │ │ │ ├── PostImages.php │ │ │ │ │ │ ├── PostList.php │ │ │ │ │ │ ├── PostLocation.php │ │ │ │ │ │ ├── PostPerUserInfo.php │ │ │ │ │ │ ├── PostReplies.php │ │ │ │ │ │ ├── PostUserInfo.php │ │ │ │ │ │ ├── PostUserInfosList.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── BlogUserInfos.php │ │ │ │ │ │ │ ├── Blogs.php │ │ │ │ │ │ │ ├── Comments.php │ │ │ │ │ │ │ ├── PageViews.php │ │ │ │ │ │ │ ├── Pages.php │ │ │ │ │ │ │ ├── PostUserInfos.php │ │ │ │ │ │ │ ├── Posts.php │ │ │ │ │ │ │ └── Users.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserBlogs.php │ │ │ │ │ │ └── UserLocale.php │ │ │ │ │ │ ├── Books.php │ │ │ │ │ │ ├── Books │ │ │ │ │ │ ├── Annotation.php │ │ │ │ │ │ ├── AnnotationClientVersionRanges.php │ │ │ │ │ │ ├── AnnotationCurrentVersionRanges.php │ │ │ │ │ │ ├── AnnotationLayerSummary.php │ │ │ │ │ │ ├── Annotations.php │ │ │ │ │ │ ├── AnnotationsSummary.php │ │ │ │ │ │ ├── AnnotationsSummaryLayers.php │ │ │ │ │ │ ├── Annotationsdata.php │ │ │ │ │ │ ├── BooksAnnotationsRange.php │ │ │ │ │ │ ├── BooksCloudloadingResource.php │ │ │ │ │ │ ├── BooksEmpty.php │ │ │ │ │ │ ├── BooksVolumesRecommendedRateResponse.php │ │ │ │ │ │ ├── Bookshelf.php │ │ │ │ │ │ ├── Bookshelves.php │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ ├── CategoryItems.php │ │ │ │ │ │ ├── ConcurrentAccessRestriction.php │ │ │ │ │ │ ├── DictionaryAnnotationdata.php │ │ │ │ │ │ ├── Dictlayerdata.php │ │ │ │ │ │ ├── DictlayerdataCommon.php │ │ │ │ │ │ ├── DictlayerdataDict.php │ │ │ │ │ │ ├── DictlayerdataDictSource.php │ │ │ │ │ │ ├── DictlayerdataDictWords.php │ │ │ │ │ │ ├── DictlayerdataDictWordsDerivatives.php │ │ │ │ │ │ ├── DictlayerdataDictWordsDerivativesSource.php │ │ │ │ │ │ ├── DictlayerdataDictWordsExamples.php │ │ │ │ │ │ ├── DictlayerdataDictWordsExamplesSource.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSenses.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesConjugations.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesDefinitions.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesDefinitionsExamples.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesDefinitionsExamplesSource.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesSource.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesSynonyms.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSensesSynonymsSource.php │ │ │ │ │ │ ├── DictlayerdataDictWordsSource.php │ │ │ │ │ │ ├── Discoveryclusters.php │ │ │ │ │ │ ├── DiscoveryclustersClusters.php │ │ │ │ │ │ ├── DiscoveryclustersClustersBannerWithContentContainer.php │ │ │ │ │ │ ├── DownloadAccessRestriction.php │ │ │ │ │ │ ├── DownloadAccesses.php │ │ │ │ │ │ ├── FamilyInfo.php │ │ │ │ │ │ ├── FamilyInfoMembership.php │ │ │ │ │ │ ├── GeoAnnotationdata.php │ │ │ │ │ │ ├── Geolayerdata.php │ │ │ │ │ │ ├── GeolayerdataCommon.php │ │ │ │ │ │ ├── GeolayerdataGeo.php │ │ │ │ │ │ ├── GeolayerdataGeoViewport.php │ │ │ │ │ │ ├── GeolayerdataGeoViewportHi.php │ │ │ │ │ │ ├── GeolayerdataGeoViewportLo.php │ │ │ │ │ │ ├── Layersummaries.php │ │ │ │ │ │ ├── Layersummary.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── MetadataItems.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── Offers.php │ │ │ │ │ │ ├── OffersItems.php │ │ │ │ │ │ ├── OffersItemsItems.php │ │ │ │ │ │ ├── ReadingPosition.php │ │ │ │ │ │ ├── RequestAccessData.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Bookshelves.php │ │ │ │ │ │ │ ├── BookshelvesVolumes.php │ │ │ │ │ │ │ ├── Cloudloading.php │ │ │ │ │ │ │ ├── Dictionary.php │ │ │ │ │ │ │ ├── Familysharing.php │ │ │ │ │ │ │ ├── Layers.php │ │ │ │ │ │ │ ├── LayersAnnotationData.php │ │ │ │ │ │ │ ├── LayersVolumeAnnotations.php │ │ │ │ │ │ │ ├── Myconfig.php │ │ │ │ │ │ │ ├── Mylibrary.php │ │ │ │ │ │ │ ├── MylibraryAnnotations.php │ │ │ │ │ │ │ ├── MylibraryBookshelves.php │ │ │ │ │ │ │ ├── MylibraryBookshelvesVolumes.php │ │ │ │ │ │ │ ├── MylibraryReadingpositions.php │ │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ │ ├── Onboarding.php │ │ │ │ │ │ │ ├── Personalizedstream.php │ │ │ │ │ │ │ ├── Promooffer.php │ │ │ │ │ │ │ ├── Series.php │ │ │ │ │ │ │ ├── SeriesMembership.php │ │ │ │ │ │ │ ├── Volumes.php │ │ │ │ │ │ │ ├── VolumesAssociated.php │ │ │ │ │ │ │ ├── VolumesMybooks.php │ │ │ │ │ │ │ ├── VolumesRecommended.php │ │ │ │ │ │ │ └── VolumesUseruploaded.php │ │ │ │ │ │ ├── Review.php │ │ │ │ │ │ ├── ReviewAuthor.php │ │ │ │ │ │ ├── ReviewSource.php │ │ │ │ │ │ ├── Series.php │ │ │ │ │ │ ├── SeriesSeries.php │ │ │ │ │ │ ├── SeriesSeriesSeriesSubscriptionReleaseInfo.php │ │ │ │ │ │ ├── SeriesSeriesSeriesSubscriptionReleaseInfoCurrentReleaseInfo.php │ │ │ │ │ │ ├── SeriesSeriesSeriesSubscriptionReleaseInfoNextReleaseInfo.php │ │ │ │ │ │ ├── Seriesmembership.php │ │ │ │ │ │ ├── Usersettings.php │ │ │ │ │ │ ├── UsersettingsNotesExport.php │ │ │ │ │ │ ├── UsersettingsNotification.php │ │ │ │ │ │ ├── UsersettingsNotificationMatchMyInterests.php │ │ │ │ │ │ ├── UsersettingsNotificationMoreFromAuthors.php │ │ │ │ │ │ ├── UsersettingsNotificationMoreFromSeries.php │ │ │ │ │ │ ├── UsersettingsNotificationPriceDrop.php │ │ │ │ │ │ ├── UsersettingsNotificationRewardExpirations.php │ │ │ │ │ │ ├── Volume.php │ │ │ │ │ │ ├── Volume2.php │ │ │ │ │ │ ├── VolumeAccessInfo.php │ │ │ │ │ │ ├── VolumeAccessInfoEpub.php │ │ │ │ │ │ ├── VolumeAccessInfoPdf.php │ │ │ │ │ │ ├── VolumeLayerInfo.php │ │ │ │ │ │ ├── VolumeLayerInfoLayers.php │ │ │ │ │ │ ├── VolumeRecommendedInfo.php │ │ │ │ │ │ ├── VolumeSaleInfo.php │ │ │ │ │ │ ├── VolumeSaleInfoListPrice.php │ │ │ │ │ │ ├── VolumeSaleInfoOffers.php │ │ │ │ │ │ ├── VolumeSaleInfoOffersListPrice.php │ │ │ │ │ │ ├── VolumeSaleInfoOffersRentalDuration.php │ │ │ │ │ │ ├── VolumeSaleInfoOffersRetailPrice.php │ │ │ │ │ │ ├── VolumeSaleInfoRetailPrice.php │ │ │ │ │ │ ├── VolumeSearchInfo.php │ │ │ │ │ │ ├── VolumeUserInfo.php │ │ │ │ │ │ ├── VolumeUserInfoCopy.php │ │ │ │ │ │ ├── VolumeUserInfoFamilySharing.php │ │ │ │ │ │ ├── VolumeUserInfoRentalPeriod.php │ │ │ │ │ │ ├── VolumeUserInfoUserUploadedVolumeInfo.php │ │ │ │ │ │ ├── VolumeVolumeInfo.php │ │ │ │ │ │ ├── VolumeVolumeInfoDimensions.php │ │ │ │ │ │ ├── VolumeVolumeInfoImageLinks.php │ │ │ │ │ │ ├── VolumeVolumeInfoIndustryIdentifiers.php │ │ │ │ │ │ ├── VolumeVolumeInfoPanelizationSummary.php │ │ │ │ │ │ ├── VolumeVolumeInfoReadingModes.php │ │ │ │ │ │ ├── Volumeannotation.php │ │ │ │ │ │ ├── VolumeannotationContentRanges.php │ │ │ │ │ │ ├── Volumeannotations.php │ │ │ │ │ │ ├── Volumes.php │ │ │ │ │ │ ├── Volumeseriesinfo.php │ │ │ │ │ │ ├── VolumeseriesinfoVolumeSeries.php │ │ │ │ │ │ └── VolumeseriesinfoVolumeSeriesIssue.php │ │ │ │ │ │ ├── Calendar.php │ │ │ │ │ │ ├── Calendar │ │ │ │ │ │ ├── Acl.php │ │ │ │ │ │ ├── AclRule.php │ │ │ │ │ │ ├── AclRuleScope.php │ │ │ │ │ │ ├── Calendar.php │ │ │ │ │ │ ├── CalendarList.php │ │ │ │ │ │ ├── CalendarListEntry.php │ │ │ │ │ │ ├── CalendarListEntryNotificationSettings.php │ │ │ │ │ │ ├── CalendarNotification.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── ColorDefinition.php │ │ │ │ │ │ ├── Colors.php │ │ │ │ │ │ ├── ConferenceData.php │ │ │ │ │ │ ├── ConferenceParameters.php │ │ │ │ │ │ ├── ConferenceParametersAddOnParameters.php │ │ │ │ │ │ ├── ConferenceProperties.php │ │ │ │ │ │ ├── ConferenceRequestStatus.php │ │ │ │ │ │ ├── ConferenceSolution.php │ │ │ │ │ │ ├── ConferenceSolutionKey.php │ │ │ │ │ │ ├── CreateConferenceRequest.php │ │ │ │ │ │ ├── EntryPoint.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── EventAttachment.php │ │ │ │ │ │ ├── EventAttendee.php │ │ │ │ │ │ ├── EventCreator.php │ │ │ │ │ │ ├── EventDateTime.php │ │ │ │ │ │ ├── EventExtendedProperties.php │ │ │ │ │ │ ├── EventGadget.php │ │ │ │ │ │ ├── EventOrganizer.php │ │ │ │ │ │ ├── EventReminder.php │ │ │ │ │ │ ├── EventReminders.php │ │ │ │ │ │ ├── EventSource.php │ │ │ │ │ │ ├── Events.php │ │ │ │ │ │ ├── FreeBusyCalendar.php │ │ │ │ │ │ ├── FreeBusyGroup.php │ │ │ │ │ │ ├── FreeBusyRequest.php │ │ │ │ │ │ ├── FreeBusyRequestItem.php │ │ │ │ │ │ ├── FreeBusyResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Acl.php │ │ │ │ │ │ │ ├── CalendarList.php │ │ │ │ │ │ │ ├── Calendars.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── Colors.php │ │ │ │ │ │ │ ├── Events.php │ │ │ │ │ │ │ ├── Freebusy.php │ │ │ │ │ │ │ └── Settings.php │ │ │ │ │ │ ├── Setting.php │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ └── TimePeriod.php │ │ │ │ │ │ ├── CertificateAuthorityService.php │ │ │ │ │ │ ├── CertificateAuthorityService │ │ │ │ │ │ ├── AccessUrls.php │ │ │ │ │ │ ├── ActivateCertificateAuthorityRequest.php │ │ │ │ │ │ ├── AllowedConfigList.php │ │ │ │ │ │ ├── AllowedSubjectAltNames.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CaOptions.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Certificate.php │ │ │ │ │ │ ├── CertificateAuthority.php │ │ │ │ │ │ ├── CertificateAuthorityPolicy.php │ │ │ │ │ │ ├── CertificateConfig.php │ │ │ │ │ │ ├── CertificateDescription.php │ │ │ │ │ │ ├── CertificateFingerprint.php │ │ │ │ │ │ ├── CertificateRevocationList.php │ │ │ │ │ │ ├── DisableCertificateAuthorityRequest.php │ │ │ │ │ │ ├── EnableCertificateAuthorityRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ExtendedKeyUsageOptions.php │ │ │ │ │ │ ├── FetchCertificateAuthorityCsrResponse.php │ │ │ │ │ │ ├── IssuanceModes.php │ │ │ │ │ │ ├── IssuingOptions.php │ │ │ │ │ │ ├── KeyId.php │ │ │ │ │ │ ├── KeyUsage.php │ │ │ │ │ │ ├── KeyUsageOptions.php │ │ │ │ │ │ ├── KeyVersionSpec.php │ │ │ │ │ │ ├── ListCertificateAuthoritiesResponse.php │ │ │ │ │ │ ├── ListCertificateRevocationListsResponse.php │ │ │ │ │ │ ├── ListCertificatesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListReusableConfigsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── ObjectId.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PrivatecaEmpty.php │ │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsCertificateAuthorities.php │ │ │ │ │ │ │ ├── ProjectsLocationsCertificateAuthoritiesCertificateRevocationLists.php │ │ │ │ │ │ │ ├── ProjectsLocationsCertificateAuthoritiesCertificates.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsReusableConfigs.php │ │ │ │ │ │ ├── RestoreCertificateAuthorityRequest.php │ │ │ │ │ │ ├── ReusableConfig.php │ │ │ │ │ │ ├── ReusableConfigValues.php │ │ │ │ │ │ ├── ReusableConfigWrapper.php │ │ │ │ │ │ ├── RevocationDetails.php │ │ │ │ │ │ ├── RevokeCertificateRequest.php │ │ │ │ │ │ ├── RevokedCertificate.php │ │ │ │ │ │ ├── ScheduleDeleteCertificateAuthorityRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Subject.php │ │ │ │ │ │ ├── SubjectAltNames.php │ │ │ │ │ │ ├── SubjectConfig.php │ │ │ │ │ │ ├── SubjectDescription.php │ │ │ │ │ │ ├── SubordinateConfig.php │ │ │ │ │ │ ├── SubordinateConfigChain.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ └── X509Extension.php │ │ │ │ │ │ ├── ChromeUXReport.php │ │ │ │ │ │ ├── ChromeUXReport │ │ │ │ │ │ ├── Bin.php │ │ │ │ │ │ ├── Key.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── Percentiles.php │ │ │ │ │ │ ├── QueryRequest.php │ │ │ │ │ │ ├── QueryResponse.php │ │ │ │ │ │ ├── Record.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Records.php │ │ │ │ │ │ └── UrlNormalization.php │ │ │ │ │ │ ├── Chromewebstore.php │ │ │ │ │ │ ├── Chromewebstore │ │ │ │ │ │ ├── InAppProduct.php │ │ │ │ │ │ ├── InAppProductList.php │ │ │ │ │ │ ├── InAppProductLocaleData.php │ │ │ │ │ │ ├── InAppProductPrices.php │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ ├── Jwt.php │ │ │ │ │ │ ├── License.php │ │ │ │ │ │ ├── PaymentsBuyRequest.php │ │ │ │ │ │ ├── PaymentsDeleteResponse.php │ │ │ │ │ │ ├── PaymentsListResponseItems.php │ │ │ │ │ │ ├── PublishRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── InAppProducts.php │ │ │ │ │ │ │ ├── Items.php │ │ │ │ │ │ │ ├── Licenses.php │ │ │ │ │ │ │ └── Payments.php │ │ │ │ │ │ └── UserLicense.php │ │ │ │ │ │ ├── Cih.php │ │ │ │ │ │ ├── Cih │ │ │ │ │ │ ├── AdoptionInteraction.php │ │ │ │ │ │ ├── AdvertiserExperienceData.php │ │ │ │ │ │ ├── AssociatedEmail.php │ │ │ │ │ │ ├── CasesData.php │ │ │ │ │ │ ├── CasesInteractionSource.php │ │ │ │ │ │ ├── ChatInteraction.php │ │ │ │ │ │ ├── EmailInteraction.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── GammaData.php │ │ │ │ │ │ ├── GenieData.php │ │ │ │ │ │ ├── GoalInteraction.php │ │ │ │ │ │ ├── GreenTeaData.php │ │ │ │ │ │ ├── GrmData.php │ │ │ │ │ │ ├── HangoutInteraction.php │ │ │ │ │ │ ├── HelpcenterData.php │ │ │ │ │ │ ├── IncentiveInteraction.php │ │ │ │ │ │ ├── IncentiveInteractionMonetaryReward.php │ │ │ │ │ │ ├── IncentivesData.php │ │ │ │ │ │ ├── MarketingEmailInteraction.php │ │ │ │ │ │ ├── MeetingInteraction.php │ │ │ │ │ │ ├── NoteInteraction.php │ │ │ │ │ │ ├── Participant.php │ │ │ │ │ │ ├── PartnerSearchData.php │ │ │ │ │ │ ├── PhoneInteraction.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AssociatedEmails.php │ │ │ │ │ │ │ └── UserInteractions.php │ │ │ │ │ │ ├── TaskInteraction.php │ │ │ │ │ │ ├── TraxAgent.php │ │ │ │ │ │ ├── TraxData.php │ │ │ │ │ │ ├── TraxInteraction.php │ │ │ │ │ │ ├── Uaid.php │ │ │ │ │ │ ├── UserCommData.php │ │ │ │ │ │ ├── UserId.php │ │ │ │ │ │ ├── UserInteraction.php │ │ │ │ │ │ └── UserInteractionsListResponse.php │ │ │ │ │ │ ├── CivicInfo.php │ │ │ │ │ │ ├── CivicInfo │ │ │ │ │ │ ├── AdministrationRegion.php │ │ │ │ │ │ ├── AdministrativeBody.php │ │ │ │ │ │ ├── Candidate.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── Contest.php │ │ │ │ │ │ ├── DivisionSearchResponse.php │ │ │ │ │ │ ├── DivisionSearchResult.php │ │ │ │ │ │ ├── Election.php │ │ │ │ │ │ ├── ElectionOfficial.php │ │ │ │ │ │ ├── ElectionsQueryResponse.php │ │ │ │ │ │ ├── ElectoralDistrict.php │ │ │ │ │ │ ├── GeographicDivision.php │ │ │ │ │ │ ├── Office.php │ │ │ │ │ │ ├── Official.php │ │ │ │ │ │ ├── PollingLocation.php │ │ │ │ │ │ ├── RepresentativeInfoData.php │ │ │ │ │ │ ├── RepresentativeInfoResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Divisions.php │ │ │ │ │ │ │ ├── Elections.php │ │ │ │ │ │ │ └── Representatives.php │ │ │ │ │ │ ├── SimpleAddressType.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ └── VoterInfoResponse.php │ │ │ │ │ │ ├── Classroom.php │ │ │ │ │ │ ├── Classroom │ │ │ │ │ │ ├── Announcement.php │ │ │ │ │ │ ├── Assignment.php │ │ │ │ │ │ ├── AssignmentSubmission.php │ │ │ │ │ │ ├── Attachment.php │ │ │ │ │ │ ├── ClassroomEmpty.php │ │ │ │ │ │ ├── CloudPubsubTopic.php │ │ │ │ │ │ ├── Course.php │ │ │ │ │ │ ├── CourseAlias.php │ │ │ │ │ │ ├── CourseMaterial.php │ │ │ │ │ │ ├── CourseMaterialSet.php │ │ │ │ │ │ ├── CourseRosterChangesInfo.php │ │ │ │ │ │ ├── CourseWork.php │ │ │ │ │ │ ├── CourseWorkChangesInfo.php │ │ │ │ │ │ ├── CourseWorkMaterial.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DriveFile.php │ │ │ │ │ │ ├── DriveFolder.php │ │ │ │ │ │ ├── Feed.php │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── GlobalPermission.php │ │ │ │ │ │ ├── GradeHistory.php │ │ │ │ │ │ ├── Guardian.php │ │ │ │ │ │ ├── GuardianInvitation.php │ │ │ │ │ │ ├── IndividualStudentsOptions.php │ │ │ │ │ │ ├── Invitation.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── ListAnnouncementsResponse.php │ │ │ │ │ │ ├── ListCourseAliasesResponse.php │ │ │ │ │ │ ├── ListCourseWorkMaterialResponse.php │ │ │ │ │ │ ├── ListCourseWorkResponse.php │ │ │ │ │ │ ├── ListCoursesResponse.php │ │ │ │ │ │ ├── ListGuardianInvitationsResponse.php │ │ │ │ │ │ ├── ListGuardiansResponse.php │ │ │ │ │ │ ├── ListInvitationsResponse.php │ │ │ │ │ │ ├── ListStudentSubmissionsResponse.php │ │ │ │ │ │ ├── ListStudentsResponse.php │ │ │ │ │ │ ├── ListTeachersResponse.php │ │ │ │ │ │ ├── ListTopicResponse.php │ │ │ │ │ │ ├── Material.php │ │ │ │ │ │ ├── ModifyAnnouncementAssigneesRequest.php │ │ │ │ │ │ ├── ModifyAttachmentsRequest.php │ │ │ │ │ │ ├── ModifyCourseWorkAssigneesRequest.php │ │ │ │ │ │ ├── ModifyIndividualStudentsOptions.php │ │ │ │ │ │ ├── MultipleChoiceQuestion.php │ │ │ │ │ │ ├── MultipleChoiceSubmission.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── ReclaimStudentSubmissionRequest.php │ │ │ │ │ │ ├── Registration.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Courses.php │ │ │ │ │ │ │ ├── CoursesAliases.php │ │ │ │ │ │ │ ├── CoursesAnnouncements.php │ │ │ │ │ │ │ ├── CoursesCourseWork.php │ │ │ │ │ │ │ ├── CoursesCourseWorkMaterials.php │ │ │ │ │ │ │ ├── CoursesCourseWorkStudentSubmissions.php │ │ │ │ │ │ │ ├── CoursesStudents.php │ │ │ │ │ │ │ ├── CoursesTeachers.php │ │ │ │ │ │ │ ├── CoursesTopics.php │ │ │ │ │ │ │ ├── Invitations.php │ │ │ │ │ │ │ ├── Registrations.php │ │ │ │ │ │ │ ├── UserProfiles.php │ │ │ │ │ │ │ ├── UserProfilesGuardianInvitations.php │ │ │ │ │ │ │ └── UserProfilesGuardians.php │ │ │ │ │ │ ├── ReturnStudentSubmissionRequest.php │ │ │ │ │ │ ├── SharedDriveFile.php │ │ │ │ │ │ ├── ShortAnswerSubmission.php │ │ │ │ │ │ ├── StateHistory.php │ │ │ │ │ │ ├── Student.php │ │ │ │ │ │ ├── StudentSubmission.php │ │ │ │ │ │ ├── SubmissionHistory.php │ │ │ │ │ │ ├── Teacher.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── Topic.php │ │ │ │ │ │ ├── TurnInStudentSubmissionRequest.php │ │ │ │ │ │ ├── UserProfile.php │ │ │ │ │ │ └── YouTubeVideo.php │ │ │ │ │ │ ├── CloudAsset.php │ │ │ │ │ │ ├── CloudAsset │ │ │ │ │ │ ├── AccessSelector.php │ │ │ │ │ │ ├── AnalyzeIamPolicyLongrunningRequest.php │ │ │ │ │ │ ├── AnalyzeIamPolicyResponse.php │ │ │ │ │ │ ├── Asset.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── BatchGetAssetsHistoryResponse.php │ │ │ │ │ │ ├── BigQueryDestination.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CloudassetEmpty.php │ │ │ │ │ │ ├── CloudassetResource.php │ │ │ │ │ │ ├── CreateFeedRequest.php │ │ │ │ │ │ ├── Explanation.php │ │ │ │ │ │ ├── ExportAssetsRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Feed.php │ │ │ │ │ │ ├── FeedOutputConfig.php │ │ │ │ │ │ ├── GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudAssetV1Access.php │ │ │ │ │ │ ├── GoogleCloudAssetV1AccessControlList.php │ │ │ │ │ │ ├── GoogleCloudAssetV1BigQueryDestination.php │ │ │ │ │ │ ├── GoogleCloudAssetV1Edge.php │ │ │ │ │ │ ├── GoogleCloudAssetV1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudAssetV1Identity.php │ │ │ │ │ │ ├── GoogleCloudAssetV1IdentityList.php │ │ │ │ │ │ ├── GoogleCloudAssetV1Resource.php │ │ │ │ │ │ ├── GoogleCloudOrgpolicyV1BooleanPolicy.php │ │ │ │ │ │ ├── GoogleCloudOrgpolicyV1ListPolicy.php │ │ │ │ │ │ ├── GoogleCloudOrgpolicyV1Policy.php │ │ │ │ │ │ ├── GoogleCloudOrgpolicyV1RestoreDefault.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1AccessLevel.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1AccessPolicy.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1BasicLevel.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1Condition.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1CustomLevel.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1DevicePolicy.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1OsConstraint.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1ServicePerimeter.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig.php │ │ │ │ │ │ ├── GoogleIdentityAccesscontextmanagerV1VpcAccessibleServices.php │ │ │ │ │ │ ├── IamPolicyAnalysis.php │ │ │ │ │ │ ├── IamPolicyAnalysisOutputConfig.php │ │ │ │ │ │ ├── IamPolicyAnalysisQuery.php │ │ │ │ │ │ ├── IamPolicyAnalysisResult.php │ │ │ │ │ │ ├── IamPolicyAnalysisState.php │ │ │ │ │ │ ├── IamPolicySearchResult.php │ │ │ │ │ │ ├── IdentitySelector.php │ │ │ │ │ │ ├── Inventory.php │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ ├── ListFeedsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Options.php │ │ │ │ │ │ ├── OsInfo.php │ │ │ │ │ │ ├── OutputConfig.php │ │ │ │ │ │ ├── PartitionSpec.php │ │ │ │ │ │ ├── Permissions.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PubsubDestination.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Feeds.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── ResourceSearchResult.php │ │ │ │ │ │ ├── ResourceSelector.php │ │ │ │ │ │ ├── SearchAllIamPoliciesResponse.php │ │ │ │ │ │ ├── SearchAllResourcesResponse.php │ │ │ │ │ │ ├── SoftwarePackage.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TemporalAsset.php │ │ │ │ │ │ ├── TimeWindow.php │ │ │ │ │ │ ├── UpdateFeedRequest.php │ │ │ │ │ │ ├── VersionedPackage.php │ │ │ │ │ │ ├── WindowsQuickFixEngineeringPackage.php │ │ │ │ │ │ ├── WindowsUpdateCategory.php │ │ │ │ │ │ ├── WindowsUpdatePackage.php │ │ │ │ │ │ └── ZypperPatch.php │ │ │ │ │ │ ├── CloudBillingBudget.php │ │ │ │ │ │ ├── CloudBillingBudget │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1Budget.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1BudgetAmount.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1Filter.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1LastPeriodAmount.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1ListBudgetsResponse.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1NotificationsRule.php │ │ │ │ │ │ ├── GoogleCloudBillingBudgetsV1ThresholdRule.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleTypeMoney.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── BillingAccounts.php │ │ │ │ │ │ │ └── BillingAccountsBudgets.php │ │ │ │ │ │ ├── CloudBuild.php │ │ │ │ │ │ ├── CloudBuild │ │ │ │ │ │ ├── ArtifactObjects.php │ │ │ │ │ │ ├── ArtifactResult.php │ │ │ │ │ │ ├── Artifacts.php │ │ │ │ │ │ ├── Build.php │ │ │ │ │ │ ├── BuildOperationMetadata.php │ │ │ │ │ │ ├── BuildOptions.php │ │ │ │ │ │ ├── BuildStep.php │ │ │ │ │ │ ├── BuildTrigger.php │ │ │ │ │ │ ├── BuiltImage.php │ │ │ │ │ │ ├── CancelBuildRequest.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloudbuildEmpty.php │ │ │ │ │ │ ├── FileHashes.php │ │ │ │ │ │ ├── GitHubEventsConfig.php │ │ │ │ │ │ ├── HTTPDelivery.php │ │ │ │ │ │ ├── Hash.php │ │ │ │ │ │ ├── ListBuildTriggersResponse.php │ │ │ │ │ │ ├── ListBuildsResponse.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── NotifierConfig.php │ │ │ │ │ │ ├── NotifierMetadata.php │ │ │ │ │ │ ├── NotifierSecret.php │ │ │ │ │ │ ├── NotifierSecretRef.php │ │ │ │ │ │ ├── NotifierSpec.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PullRequestFilter.php │ │ │ │ │ │ ├── PushFilter.php │ │ │ │ │ │ ├── RepoSource.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsBuilds.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsBuilds.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsTriggers.php │ │ │ │ │ │ ├── Results.php │ │ │ │ │ │ ├── RetryBuildRequest.php │ │ │ │ │ │ ├── SMTPDelivery.php │ │ │ │ │ │ ├── Secret.php │ │ │ │ │ │ ├── SlackDelivery.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourceProvenance.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StorageSource.php │ │ │ │ │ │ ├── TimeSpan.php │ │ │ │ │ │ └── Volume.php │ │ │ │ │ │ ├── CloudComposer.php │ │ │ │ │ │ ├── CloudComposer │ │ │ │ │ │ ├── ComposerEmpty.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── EnvironmentConfig.php │ │ │ │ │ │ ├── IPAllocationPolicy.php │ │ │ │ │ │ ├── ImageVersion.php │ │ │ │ │ │ ├── ListEnvironmentsResponse.php │ │ │ │ │ │ ├── ListImageVersionsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── NodeConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── PrivateClusterConfig.php │ │ │ │ │ │ ├── PrivateEnvironmentConfig.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsEnvironments.php │ │ │ │ │ │ │ ├── ProjectsLocationsImageVersions.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── SoftwareConfig.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── CloudDatabaseMigrationService.php │ │ │ │ │ │ ├── CloudDatabaseMigrationService │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloudSqlConnectionProfile.php │ │ │ │ │ │ ├── CloudSqlSettings.php │ │ │ │ │ │ ├── ConnectionProfile.php │ │ │ │ │ │ ├── DatabaseType.php │ │ │ │ │ │ ├── DatamigrationEmpty.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GenerateSshScriptRequest.php │ │ │ │ │ │ ├── GoogleCloudClouddmsV1beta1OperationMetadata.php │ │ │ │ │ │ ├── ListConnectionProfilesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListMigrationJobsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MigrationJob.php │ │ │ │ │ │ ├── MigrationJobVerificationError.php │ │ │ │ │ │ ├── MySqlConnectionProfile.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PromoteMigrationJobRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsConnectionProfiles.php │ │ │ │ │ │ │ ├── ProjectsLocationsMigrationJobs.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── RestartMigrationJobRequest.php │ │ │ │ │ │ ├── ResumeMigrationJobRequest.php │ │ │ │ │ │ ├── ReverseSshConnectivity.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SqlAclEntry.php │ │ │ │ │ │ ├── SqlIpConfig.php │ │ │ │ │ │ ├── SshScript.php │ │ │ │ │ │ ├── SslConfig.php │ │ │ │ │ │ ├── StartMigrationJobRequest.php │ │ │ │ │ │ ├── StaticIpConnectivity.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StopMigrationJobRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── VerifyMigrationJobRequest.php │ │ │ │ │ │ ├── VmCreationConfig.php │ │ │ │ │ │ ├── VmSelectionConfig.php │ │ │ │ │ │ └── VpcPeeringConnectivity.php │ │ │ │ │ │ ├── CloudDebugger.php │ │ │ │ │ │ ├── CloudDebugger │ │ │ │ │ │ ├── AliasContext.php │ │ │ │ │ │ ├── Breakpoint.php │ │ │ │ │ │ ├── CloudRepoSourceContext.php │ │ │ │ │ │ ├── CloudWorkspaceId.php │ │ │ │ │ │ ├── CloudWorkspaceSourceContext.php │ │ │ │ │ │ ├── ClouddebuggerEmpty.php │ │ │ │ │ │ ├── Debuggee.php │ │ │ │ │ │ ├── ExtendedSourceContext.php │ │ │ │ │ │ ├── FormatMessage.php │ │ │ │ │ │ ├── GerritSourceContext.php │ │ │ │ │ │ ├── GetBreakpointResponse.php │ │ │ │ │ │ ├── GitSourceContext.php │ │ │ │ │ │ ├── ListActiveBreakpointsResponse.php │ │ │ │ │ │ ├── ListBreakpointsResponse.php │ │ │ │ │ │ ├── ListDebuggeesResponse.php │ │ │ │ │ │ ├── ProjectRepoId.php │ │ │ │ │ │ ├── RegisterDebuggeeRequest.php │ │ │ │ │ │ ├── RegisterDebuggeeResponse.php │ │ │ │ │ │ ├── RepoId.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Controller.php │ │ │ │ │ │ │ ├── ControllerDebuggees.php │ │ │ │ │ │ │ ├── ControllerDebuggeesBreakpoints.php │ │ │ │ │ │ │ ├── Debugger.php │ │ │ │ │ │ │ ├── DebuggerDebuggees.php │ │ │ │ │ │ │ └── DebuggerDebuggeesBreakpoints.php │ │ │ │ │ │ ├── SetBreakpointResponse.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceLocation.php │ │ │ │ │ │ ├── StackFrame.php │ │ │ │ │ │ ├── StatusMessage.php │ │ │ │ │ │ ├── UpdateActiveBreakpointRequest.php │ │ │ │ │ │ ├── UpdateActiveBreakpointResponse.php │ │ │ │ │ │ └── Variable.php │ │ │ │ │ │ ├── CloudDomains.php │ │ │ │ │ │ ├── CloudDomains │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuthorizationCode.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── ConfigureContactSettingsRequest.php │ │ │ │ │ │ ├── ConfigureDnsSettingsRequest.php │ │ │ │ │ │ ├── ConfigureManagementSettingsRequest.php │ │ │ │ │ │ ├── Contact.php │ │ │ │ │ │ ├── ContactSettings.php │ │ │ │ │ │ ├── CustomDns.php │ │ │ │ │ │ ├── DnsSettings.php │ │ │ │ │ │ ├── DsRecord.php │ │ │ │ │ │ ├── ExportRegistrationRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GlueRecord.php │ │ │ │ │ │ ├── GoogleDomainsDns.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListRegistrationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── ManagementSettings.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ │ ├── RegisterDomainRequest.php │ │ │ │ │ │ ├── RegisterParameters.php │ │ │ │ │ │ ├── Registration.php │ │ │ │ │ │ ├── ResetAuthorizationCodeRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsRegistrations.php │ │ │ │ │ │ ├── RetrieveRegisterParametersResponse.php │ │ │ │ │ │ ├── SearchDomainsResponse.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── CloudFilestore.php │ │ │ │ │ │ ├── CloudFilestore │ │ │ │ │ │ ├── Backup.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── DailyCycle.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DenyMaintenancePeriod.php │ │ │ │ │ │ ├── FileEmpty.php │ │ │ │ │ │ ├── FileShareConfig.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1Instance.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── ListBackupsResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MaintenancePolicy.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── NetworkConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsBackups.php │ │ │ │ │ │ │ ├── ProjectsLocationsInstances.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── RestoreInstanceRequest.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── UpdatePolicy.php │ │ │ │ │ │ └── WeeklyCycle.php │ │ │ │ │ │ ├── CloudFunctions.php │ │ │ │ │ │ ├── CloudFunctions │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CallFunctionRequest.php │ │ │ │ │ │ ├── CallFunctionResponse.php │ │ │ │ │ │ ├── CloudFunction.php │ │ │ │ │ │ ├── EventTrigger.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FailurePolicy.php │ │ │ │ │ │ ├── GenerateDownloadUrlRequest.php │ │ │ │ │ │ ├── GenerateDownloadUrlResponse.php │ │ │ │ │ │ ├── GenerateUploadUrlRequest.php │ │ │ │ │ │ ├── GenerateUploadUrlResponse.php │ │ │ │ │ │ ├── HttpsTrigger.php │ │ │ │ │ │ ├── ListFunctionsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadataV1.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ └── ProjectsLocationsFunctions.php │ │ │ │ │ │ ├── Retry.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SourceRepository.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── CloudHealthcare.php │ │ │ │ │ │ ├── CloudHealthcare │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CharacterMaskConfig.php │ │ │ │ │ │ ├── CreateMessageRequest.php │ │ │ │ │ │ ├── CryptoHashConfig.php │ │ │ │ │ │ ├── Dataset.php │ │ │ │ │ │ ├── DateShiftConfig.php │ │ │ │ │ │ ├── DeidentifyConfig.php │ │ │ │ │ │ ├── DeidentifyDatasetRequest.php │ │ │ │ │ │ ├── DeidentifyDicomStoreRequest.php │ │ │ │ │ │ ├── DeidentifyFhirStoreRequest.php │ │ │ │ │ │ ├── DeidentifySummary.php │ │ │ │ │ │ ├── DicomConfig.php │ │ │ │ │ │ ├── DicomFilterConfig.php │ │ │ │ │ │ ├── DicomStore.php │ │ │ │ │ │ ├── ExportDicomDataRequest.php │ │ │ │ │ │ ├── ExportDicomDataResponse.php │ │ │ │ │ │ ├── ExportResourcesRequest.php │ │ │ │ │ │ ├── ExportResourcesResponse.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FhirConfig.php │ │ │ │ │ │ ├── FhirFilter.php │ │ │ │ │ │ ├── FhirStore.php │ │ │ │ │ │ ├── FieldMetadata.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1DeidentifyDeidentifyDicomStoreSummary.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1DeidentifyDeidentifyFhirStoreSummary.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1DicomBigQueryDestination.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1DicomGcsDestination.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1DicomGcsSource.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1FhirBigQueryDestination.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1FhirGcsDestination.php │ │ │ │ │ │ ├── GoogleCloudHealthcareV1FhirGcsSource.php │ │ │ │ │ │ ├── HealthcareEmpty.php │ │ │ │ │ │ ├── Hl7V2NotificationConfig.php │ │ │ │ │ │ ├── Hl7V2Store.php │ │ │ │ │ │ ├── HttpBody.php │ │ │ │ │ │ ├── ImageConfig.php │ │ │ │ │ │ ├── ImportDicomDataRequest.php │ │ │ │ │ │ ├── ImportDicomDataResponse.php │ │ │ │ │ │ ├── ImportResourcesRequest.php │ │ │ │ │ │ ├── ImportResourcesResponse.php │ │ │ │ │ │ ├── InfoTypeTransformation.php │ │ │ │ │ │ ├── IngestMessageRequest.php │ │ │ │ │ │ ├── IngestMessageResponse.php │ │ │ │ │ │ ├── ListDatasetsResponse.php │ │ │ │ │ │ ├── ListDicomStoresResponse.php │ │ │ │ │ │ ├── ListFhirStoresResponse.php │ │ │ │ │ │ ├── ListHl7V2StoresResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListMessagesResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ ├── NotificationConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── ParsedData.php │ │ │ │ │ │ ├── ParserConfig.php │ │ │ │ │ │ ├── PatientId.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ProgressCounter.php │ │ │ │ │ │ ├── RedactConfig.php │ │ │ │ │ │ ├── ReplaceWithInfoTypeConfig.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasets.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsDicomStores.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudies.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeries.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsFhirStores.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsFhirStoresFhir.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsHl7V2Stores.php │ │ │ │ │ │ │ ├── ProjectsLocationsDatasetsHl7V2StoresMessages.php │ │ │ │ │ │ │ └── ProjectsLocationsDatasetsOperations.php │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ ├── SchemaConfig.php │ │ │ │ │ │ ├── SearchResourcesRequest.php │ │ │ │ │ │ ├── Segment.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StreamConfig.php │ │ │ │ │ │ ├── TagFilterList.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ └── TextConfig.php │ │ │ │ │ │ ├── CloudIAP.php │ │ │ │ │ │ ├── CloudIAP │ │ │ │ │ │ ├── AccessDeniedPageSettings.php │ │ │ │ │ │ ├── AccessSettings.php │ │ │ │ │ │ ├── ApplicationSettings.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Brand.php │ │ │ │ │ │ ├── CorsSettings.php │ │ │ │ │ │ ├── CsmSettings.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GcipSettings.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── IapEmpty.php │ │ │ │ │ │ ├── IapResource.php │ │ │ │ │ │ ├── IapSettings.php │ │ │ │ │ │ ├── IdentityAwareProxyClient.php │ │ │ │ │ │ ├── ListBrandsResponse.php │ │ │ │ │ │ ├── ListIdentityAwareProxyClientsResponse.php │ │ │ │ │ │ ├── OAuthSettings.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyDelegationSettings.php │ │ │ │ │ │ ├── PolicyName.php │ │ │ │ │ │ ├── ResetIdentityAwareProxyClientSecretRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsBrands.php │ │ │ │ │ │ │ ├── ProjectsBrandsIdentityAwareProxyClients.php │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── CloudIdentity.php │ │ │ │ │ │ ├── CloudIdentity │ │ │ │ │ │ ├── EntityKey.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1AndroidAttributes.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ApproveDeviceUserRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ApproveDeviceUserResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1BlockDeviceUserRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1BlockDeviceUserResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceUserRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceUserResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ClientState.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1CustomAttributeValue.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1Device.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1DeviceUser.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ListClientStatesResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1ListDevicesResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceResponse.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceUserRequest.php │ │ │ │ │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceUserResponse.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── ListGroupsResponse.php │ │ │ │ │ │ ├── ListMembershipsResponse.php │ │ │ │ │ │ ├── LookupGroupNameResponse.php │ │ │ │ │ │ ├── LookupMembershipNameResponse.php │ │ │ │ │ │ ├── Membership.php │ │ │ │ │ │ ├── MembershipRole.php │ │ │ │ │ │ ├── ModifyMembershipRolesRequest.php │ │ │ │ │ │ ├── ModifyMembershipRolesResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Devices.php │ │ │ │ │ │ │ ├── DevicesDeviceUsers.php │ │ │ │ │ │ │ ├── DevicesDeviceUsersClientStates.php │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ └── GroupsMemberships.php │ │ │ │ │ │ ├── SearchGroupsResponse.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── CloudIot.php │ │ │ │ │ │ ├── CloudIot │ │ │ │ │ │ ├── BindDeviceToGatewayRequest.php │ │ │ │ │ │ ├── BindDeviceToGatewayResponse.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CloudiotEmpty.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── DeviceConfig.php │ │ │ │ │ │ ├── DeviceCredential.php │ │ │ │ │ │ ├── DeviceRegistry.php │ │ │ │ │ │ ├── DeviceState.php │ │ │ │ │ │ ├── EventNotificationConfig.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GatewayConfig.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── HttpConfig.php │ │ │ │ │ │ ├── ListDeviceConfigVersionsResponse.php │ │ │ │ │ │ ├── ListDeviceRegistriesResponse.php │ │ │ │ │ │ ├── ListDeviceStatesResponse.php │ │ │ │ │ │ ├── ListDevicesResponse.php │ │ │ │ │ │ ├── ModifyCloudToDeviceConfigRequest.php │ │ │ │ │ │ ├── MqttConfig.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PublicKeyCertificate.php │ │ │ │ │ │ ├── PublicKeyCredential.php │ │ │ │ │ │ ├── RegistryCredential.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsRegistries.php │ │ │ │ │ │ │ ├── ProjectsLocationsRegistriesDevices.php │ │ │ │ │ │ │ ├── ProjectsLocationsRegistriesDevicesConfigVersions.php │ │ │ │ │ │ │ ├── ProjectsLocationsRegistriesDevicesStates.php │ │ │ │ │ │ │ ├── ProjectsLocationsRegistriesGroups.php │ │ │ │ │ │ │ └── ProjectsLocationsRegistriesGroupsDevices.php │ │ │ │ │ │ ├── SendCommandToDeviceRequest.php │ │ │ │ │ │ ├── SendCommandToDeviceResponse.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── StateNotificationConfig.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UnbindDeviceFromGatewayRequest.php │ │ │ │ │ │ ├── UnbindDeviceFromGatewayResponse.php │ │ │ │ │ │ └── X509CertificateDetails.php │ │ │ │ │ │ ├── CloudKMS.php │ │ │ │ │ │ ├── CloudKMS │ │ │ │ │ │ ├── AsymmetricDecryptRequest.php │ │ │ │ │ │ ├── AsymmetricDecryptResponse.php │ │ │ │ │ │ ├── AsymmetricSignRequest.php │ │ │ │ │ │ ├── AsymmetricSignResponse.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CertificateChains.php │ │ │ │ │ │ ├── CryptoKey.php │ │ │ │ │ │ ├── CryptoKeyVersion.php │ │ │ │ │ │ ├── CryptoKeyVersionTemplate.php │ │ │ │ │ │ ├── DecryptRequest.php │ │ │ │ │ │ ├── DecryptResponse.php │ │ │ │ │ │ ├── DestroyCryptoKeyVersionRequest.php │ │ │ │ │ │ ├── Digest.php │ │ │ │ │ │ ├── EncryptRequest.php │ │ │ │ │ │ ├── EncryptResponse.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ExternalProtectionLevelOptions.php │ │ │ │ │ │ ├── ImportCryptoKeyVersionRequest.php │ │ │ │ │ │ ├── ImportJob.php │ │ │ │ │ │ ├── KeyOperationAttestation.php │ │ │ │ │ │ ├── KeyRing.php │ │ │ │ │ │ ├── ListCryptoKeyVersionsResponse.php │ │ │ │ │ │ ├── ListCryptoKeysResponse.php │ │ │ │ │ │ ├── ListImportJobsResponse.php │ │ │ │ │ │ ├── ListKeyRingsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsKeyRings.php │ │ │ │ │ │ │ ├── ProjectsLocationsKeyRingsCryptoKeys.php │ │ │ │ │ │ │ ├── ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions.php │ │ │ │ │ │ │ └── ProjectsLocationsKeyRingsImportJobs.php │ │ │ │ │ │ ├── RestoreCryptoKeyVersionRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UpdateCryptoKeyPrimaryVersionRequest.php │ │ │ │ │ │ └── WrappingPublicKey.php │ │ │ │ │ │ ├── CloudLifeSciences.php │ │ │ │ │ │ ├── CloudLifeSciences │ │ │ │ │ │ ├── Accelerator.php │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ContainerKilledEvent.php │ │ │ │ │ │ ├── ContainerStartedEvent.php │ │ │ │ │ │ ├── ContainerStoppedEvent.php │ │ │ │ │ │ ├── DelayedEvent.php │ │ │ │ │ │ ├── Disk.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── ExistingDisk.php │ │ │ │ │ │ ├── FailedEvent.php │ │ │ │ │ │ ├── LifesciencesEmpty.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── Mount.php │ │ │ │ │ │ ├── NFSMount.php │ │ │ │ │ │ ├── Network.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PersistentDisk.php │ │ │ │ │ │ ├── Pipeline.php │ │ │ │ │ │ ├── PullStartedEvent.php │ │ │ │ │ │ ├── PullStoppedEvent.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsPipelines.php │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ ├── RunPipelineRequest.php │ │ │ │ │ │ ├── RunPipelineResponse.php │ │ │ │ │ │ ├── Secret.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── UnexpectedExitStatusEvent.php │ │ │ │ │ │ ├── VirtualMachine.php │ │ │ │ │ │ ├── Volume.php │ │ │ │ │ │ ├── WorkerAssignedEvent.php │ │ │ │ │ │ └── WorkerReleasedEvent.php │ │ │ │ │ │ ├── CloudMachineLearning.php │ │ │ │ │ │ ├── CloudMachineLearning │ │ │ │ │ │ ├── GoogleApiHttpBody.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1CancelJobRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1GetConfigResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1HyperparameterOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1HyperparameterOutputHyperparameterMetric.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1HyperparameterSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1Job.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1ListJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1ListModelsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1ListVersionsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1Model.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1ParameterSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1PredictRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1PredictionInput.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1PredictionOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1SetDefaultVersionRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1TrainingInput.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1TrainingOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1beta1Version.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsJobs.php │ │ │ │ │ │ │ ├── ProjectsModels.php │ │ │ │ │ │ │ ├── ProjectsModelsVersions.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── CloudMachineLearningEngine.php │ │ │ │ │ │ ├── CloudMachineLearningEngine │ │ │ │ │ │ ├── GoogleApiHttpBody.php │ │ │ │ │ │ ├── GoogleCloudMlV1AcceleratorConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1AddTrialMeasurementRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1AutoScaling.php │ │ │ │ │ │ ├── GoogleCloudMlV1AutomatedStoppingConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1AutomatedStoppingConfigDecayCurveAutomatedStoppingConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1AutomatedStoppingConfigMedianAutomatedStoppingConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1BuiltInAlgorithmOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1CancelJobRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1Capability.php │ │ │ │ │ │ ├── GoogleCloudMlV1CheckTrialEarlyStoppingStateMetatdata.php │ │ │ │ │ │ ├── GoogleCloudMlV1CheckTrialEarlyStoppingStateRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1CheckTrialEarlyStoppingStateResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1CompleteTrialRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1Config.php │ │ │ │ │ │ ├── GoogleCloudMlV1ContainerPort.php │ │ │ │ │ │ ├── GoogleCloudMlV1ContainerSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1EncryptionConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1EnvVar.php │ │ │ │ │ │ ├── GoogleCloudMlV1ExplainRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1ExplanationConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1GetConfigResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1HyperparameterOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.php │ │ │ │ │ │ ├── GoogleCloudMlV1HyperparameterSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1IntegratedGradientsAttribution.php │ │ │ │ │ │ ├── GoogleCloudMlV1Job.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListLocationsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListModelsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListOptimalTrialsRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListOptimalTrialsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListStudiesResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListTrialsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1ListVersionsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1Location.php │ │ │ │ │ │ ├── GoogleCloudMlV1ManualScaling.php │ │ │ │ │ │ ├── GoogleCloudMlV1Measurement.php │ │ │ │ │ │ ├── GoogleCloudMlV1MeasurementMetric.php │ │ │ │ │ │ ├── GoogleCloudMlV1MetricSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1Model.php │ │ │ │ │ │ ├── GoogleCloudMlV1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudMlV1ParameterSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1PredictRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1PredictionInput.php │ │ │ │ │ │ ├── GoogleCloudMlV1PredictionOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1ReplicaConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1RequestLoggingConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1RouteMap.php │ │ │ │ │ │ ├── GoogleCloudMlV1SampledShapleyAttribution.php │ │ │ │ │ │ ├── GoogleCloudMlV1Scheduling.php │ │ │ │ │ │ ├── GoogleCloudMlV1SetDefaultVersionRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1StopTrialRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1Study.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfig.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigMetricSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecCategoricalValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecDiscreteValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecDoubleValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecIntegerValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecMatchingParentDiscreteValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1StudyConfigParameterSpecMatchingParentIntValueSpec.php │ │ │ │ │ │ ├── GoogleCloudMlV1SuggestTrialsMetadata.php │ │ │ │ │ │ ├── GoogleCloudMlV1SuggestTrialsRequest.php │ │ │ │ │ │ ├── GoogleCloudMlV1SuggestTrialsResponse.php │ │ │ │ │ │ ├── GoogleCloudMlV1TrainingInput.php │ │ │ │ │ │ ├── GoogleCloudMlV1TrainingOutput.php │ │ │ │ │ │ ├── GoogleCloudMlV1Trial.php │ │ │ │ │ │ ├── GoogleCloudMlV1TrialParameter.php │ │ │ │ │ │ ├── GoogleCloudMlV1Version.php │ │ │ │ │ │ ├── GoogleCloudMlV1XraiAttribution.php │ │ │ │ │ │ ├── GoogleIamV1AuditConfig.php │ │ │ │ │ │ ├── GoogleIamV1AuditLogConfig.php │ │ │ │ │ │ ├── GoogleIamV1Binding.php │ │ │ │ │ │ ├── GoogleIamV1Policy.php │ │ │ │ │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeExpr.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsJobs.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsStudies.php │ │ │ │ │ │ │ ├── ProjectsLocationsStudiesTrials.php │ │ │ │ │ │ │ ├── ProjectsModels.php │ │ │ │ │ │ │ ├── ProjectsModelsVersions.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── CloudMemorystoreforMemcached.php │ │ │ │ │ │ ├── CloudMemorystoreforMemcached │ │ │ │ │ │ ├── ApplyParametersRequest.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── DailyCycle.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DenyMaintenancePeriod.php │ │ │ │ │ │ ├── GoogleCloudMemcacheV1beta2LocationMetadata.php │ │ │ │ │ │ ├── GoogleCloudMemcacheV1beta2OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1Instance.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── InstanceMessage.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MaintenancePolicy.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── MemcacheEmpty.php │ │ │ │ │ │ ├── MemcacheParameters.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── NodeConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsInstances.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── UpdateParametersRequest.php │ │ │ │ │ │ ├── UpdatePolicy.php │ │ │ │ │ │ ├── WeeklyCycle.php │ │ │ │ │ │ └── ZoneMetadata.php │ │ │ │ │ │ ├── CloudMonitoring.php │ │ │ │ │ │ ├── CloudMonitoring │ │ │ │ │ │ ├── DeleteMetricDescriptorResponse.php │ │ │ │ │ │ ├── ListMetricDescriptorsRequest.php │ │ │ │ │ │ ├── ListMetricDescriptorsResponse.php │ │ │ │ │ │ ├── ListTimeseriesDescriptorsRequest.php │ │ │ │ │ │ ├── ListTimeseriesDescriptorsResponse.php │ │ │ │ │ │ ├── ListTimeseriesRequest.php │ │ │ │ │ │ ├── ListTimeseriesResponse.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorLabelDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorTypeDescriptor.php │ │ │ │ │ │ ├── Point.php │ │ │ │ │ │ ├── PointDistribution.php │ │ │ │ │ │ ├── PointDistributionBucket.php │ │ │ │ │ │ ├── PointDistributionOverflowBucket.php │ │ │ │ │ │ ├── PointDistributionUnderflowBucket.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── MetricDescriptors.php │ │ │ │ │ │ │ ├── Timeseries.php │ │ │ │ │ │ │ └── TimeseriesDescriptors.php │ │ │ │ │ │ ├── Timeseries.php │ │ │ │ │ │ ├── TimeseriesDescriptor.php │ │ │ │ │ │ ├── TimeseriesDescriptorLabel.php │ │ │ │ │ │ ├── TimeseriesPoint.php │ │ │ │ │ │ ├── WriteTimeseriesRequest.php │ │ │ │ │ │ └── WriteTimeseriesResponse.php │ │ │ │ │ │ ├── CloudNaturalLanguage.php │ │ │ │ │ │ ├── CloudNaturalLanguage │ │ │ │ │ │ ├── AnalyzeEntitiesRequest.php │ │ │ │ │ │ ├── AnalyzeEntitiesResponse.php │ │ │ │ │ │ ├── AnalyzeEntitySentimentRequest.php │ │ │ │ │ │ ├── AnalyzeEntitySentimentResponse.php │ │ │ │ │ │ ├── AnalyzeSentimentRequest.php │ │ │ │ │ │ ├── AnalyzeSentimentResponse.php │ │ │ │ │ │ ├── AnalyzeSyntaxRequest.php │ │ │ │ │ │ ├── AnalyzeSyntaxResponse.php │ │ │ │ │ │ ├── AnnotateTextRequest.php │ │ │ │ │ │ ├── AnnotateTextResponse.php │ │ │ │ │ │ ├── ClassificationCategory.php │ │ │ │ │ │ ├── ClassifyTextRequest.php │ │ │ │ │ │ ├── ClassifyTextResponse.php │ │ │ │ │ │ ├── DependencyEdge.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── EntityMention.php │ │ │ │ │ │ ├── Features.php │ │ │ │ │ │ ├── PartOfSpeech.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Documents.php │ │ │ │ │ │ ├── Sentence.php │ │ │ │ │ │ ├── Sentiment.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TextSpan.php │ │ │ │ │ │ └── Token.php │ │ │ │ │ │ ├── CloudNaturalLanguageAPI.php │ │ │ │ │ │ ├── CloudNaturalLanguageAPI │ │ │ │ │ │ ├── AnalyzeEntitiesRequest.php │ │ │ │ │ │ ├── AnalyzeEntitiesResponse.php │ │ │ │ │ │ ├── AnalyzeSentimentRequest.php │ │ │ │ │ │ ├── AnalyzeSentimentResponse.php │ │ │ │ │ │ ├── AnnotateTextRequest.php │ │ │ │ │ │ ├── AnnotateTextResponse.php │ │ │ │ │ │ ├── DependencyEdge.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── EntityMention.php │ │ │ │ │ │ ├── Features.php │ │ │ │ │ │ ├── PartOfSpeech.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Documents.php │ │ │ │ │ │ ├── Sentence.php │ │ │ │ │ │ ├── Sentiment.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TextSpan.php │ │ │ │ │ │ └── Token.php │ │ │ │ │ │ ├── CloudOSLogin.php │ │ │ │ │ │ ├── CloudOSLogin │ │ │ │ │ │ ├── ImportSshPublicKeyResponse.php │ │ │ │ │ │ ├── LoginProfile.php │ │ │ │ │ │ ├── OsloginEmpty.php │ │ │ │ │ │ ├── PosixAccount.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ ├── UsersProjects.php │ │ │ │ │ │ │ └── UsersSshPublicKeys.php │ │ │ │ │ │ └── SshPublicKey.php │ │ │ │ │ │ ├── CloudPrivateCatalog.php │ │ │ │ │ │ ├── CloudPrivateCatalog │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1Catalog.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1Product.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1SearchCatalogsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1SearchProductsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1SearchVersionsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogV1beta1Version.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Folders.php │ │ │ │ │ │ │ ├── FoldersCatalogs.php │ │ │ │ │ │ │ ├── FoldersProducts.php │ │ │ │ │ │ │ ├── FoldersVersions.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsCatalogs.php │ │ │ │ │ │ │ ├── OrganizationsProducts.php │ │ │ │ │ │ │ ├── OrganizationsVersions.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsCatalogs.php │ │ │ │ │ │ │ ├── ProjectsProducts.php │ │ │ │ │ │ │ └── ProjectsVersions.php │ │ │ │ │ │ ├── CloudPrivateCatalogProducer.php │ │ │ │ │ │ ├── CloudPrivateCatalogProducer │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1Association.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1Catalog.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1CopyProductRequest.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1CreateAssociationRequest.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1ListAssociationsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1ListCatalogsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1ListProductsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1ListVersionsResponse.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1Product.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1UndeleteCatalogRequest.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1UploadIconRequest.php │ │ │ │ │ │ ├── GoogleCloudPrivatecatalogproducerV1beta1Version.php │ │ │ │ │ │ ├── GoogleIamV1AuditConfig.php │ │ │ │ │ │ ├── GoogleIamV1AuditLogConfig.php │ │ │ │ │ │ ├── GoogleIamV1Binding.php │ │ │ │ │ │ ├── GoogleIamV1Policy.php │ │ │ │ │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeExpr.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Catalogs.php │ │ │ │ │ │ │ ├── CatalogsAssociations.php │ │ │ │ │ │ │ ├── CatalogsProducts.php │ │ │ │ │ │ │ ├── CatalogsProductsIcons.php │ │ │ │ │ │ │ ├── CatalogsProductsVersions.php │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── CloudProfiler.php │ │ │ │ │ │ ├── CloudProfiler │ │ │ │ │ │ ├── CreateProfileRequest.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── Profile.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ProjectsProfiles.php │ │ │ │ │ │ ├── CloudRedis.php │ │ │ │ │ │ ├── CloudRedis │ │ │ │ │ │ ├── ExportInstanceRequest.php │ │ │ │ │ │ ├── FailoverInstanceRequest.php │ │ │ │ │ │ ├── GcsDestination.php │ │ │ │ │ │ ├── GcsSource.php │ │ │ │ │ │ ├── GoogleCloudRedisV1LocationMetadata.php │ │ │ │ │ │ ├── GoogleCloudRedisV1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudRedisV1ZoneMetadata.php │ │ │ │ │ │ ├── ImportInstanceRequest.php │ │ │ │ │ │ ├── InputConfig.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── InstanceAuthString.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OutputConfig.php │ │ │ │ │ │ ├── RedisEmpty.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsInstances.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TlsCertificate.php │ │ │ │ │ │ └── UpgradeInstanceRequest.php │ │ │ │ │ │ ├── CloudResourceManager.php │ │ │ │ │ │ ├── CloudResourceManager │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CloudresourcemanagerGoogleCloudResourcemanagerV2alpha1FolderOperation.php │ │ │ │ │ │ ├── CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation.php │ │ │ │ │ │ ├── CreateFolderMetadata.php │ │ │ │ │ │ ├── CreateProjectMetadata.php │ │ │ │ │ │ ├── CreateTagKeyMetadata.php │ │ │ │ │ │ ├── CreateTagValueMetadata.php │ │ │ │ │ │ ├── DeleteFolderMetadata.php │ │ │ │ │ │ ├── DeleteOrganizationMetadata.php │ │ │ │ │ │ ├── DeleteProjectMetadata.php │ │ │ │ │ │ ├── DeleteTagKeyMetadata.php │ │ │ │ │ │ ├── DeleteTagValueMetadata.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Folder.php │ │ │ │ │ │ ├── FolderOperation.php │ │ │ │ │ │ ├── FolderOperationError.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── ListFoldersResponse.php │ │ │ │ │ │ ├── MoveFolderMetadata.php │ │ │ │ │ │ ├── MoveFolderRequest.php │ │ │ │ │ │ ├── MoveProjectMetadata.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ProjectCreationStatus.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Folders.php │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── SearchFoldersRequest.php │ │ │ │ │ │ ├── SearchFoldersResponse.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UndeleteFolderMetadata.php │ │ │ │ │ │ ├── UndeleteFolderRequest.php │ │ │ │ │ │ ├── UndeleteOrganizationMetadata.php │ │ │ │ │ │ ├── UndeleteProjectMetadata.php │ │ │ │ │ │ ├── UndeleteTagKeyMetadata.php │ │ │ │ │ │ ├── UndeleteTagValueMetadata.php │ │ │ │ │ │ ├── UpdateFolderMetadata.php │ │ │ │ │ │ ├── UpdateProjectMetadata.php │ │ │ │ │ │ ├── UpdateTagKeyMetadata.php │ │ │ │ │ │ └── UpdateTagValueMetadata.php │ │ │ │ │ │ ├── CloudRun.php │ │ │ │ │ │ ├── CloudRun │ │ │ │ │ │ ├── Addressable.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuthorizedDomain.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── ConfigMapEnvSource.php │ │ │ │ │ │ ├── ConfigMapKeySelector.php │ │ │ │ │ │ ├── ConfigMapVolumeSource.php │ │ │ │ │ │ ├── Configuration.php │ │ │ │ │ │ ├── ConfigurationSpec.php │ │ │ │ │ │ ├── ConfigurationStatus.php │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ ├── ContainerPort.php │ │ │ │ │ │ ├── DomainMapping.php │ │ │ │ │ │ ├── DomainMappingSpec.php │ │ │ │ │ │ ├── DomainMappingStatus.php │ │ │ │ │ │ ├── EnvFromSource.php │ │ │ │ │ │ ├── EnvVar.php │ │ │ │ │ │ ├── EnvVarSource.php │ │ │ │ │ │ ├── ExecAction.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GoogleCloudRunV1Condition.php │ │ │ │ │ │ ├── HTTPGetAction.php │ │ │ │ │ │ ├── HTTPHeader.php │ │ │ │ │ │ ├── KeyToPath.php │ │ │ │ │ │ ├── ListAuthorizedDomainsResponse.php │ │ │ │ │ │ ├── ListConfigurationsResponse.php │ │ │ │ │ │ ├── ListDomainMappingsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListMeta.php │ │ │ │ │ │ ├── ListRevisionsResponse.php │ │ │ │ │ │ ├── ListRoutesResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── LocalObjectReference.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── ObjectMeta.php │ │ │ │ │ │ ├── OwnerReference.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Probe.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Namespaces.php │ │ │ │ │ │ │ ├── NamespacesAuthorizeddomains.php │ │ │ │ │ │ │ ├── NamespacesConfigurations.php │ │ │ │ │ │ │ ├── NamespacesDomainmappings.php │ │ │ │ │ │ │ ├── NamespacesRevisions.php │ │ │ │ │ │ │ ├── NamespacesRoutes.php │ │ │ │ │ │ │ ├── NamespacesServices.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAuthorizeddomains.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsAuthorizeddomains.php │ │ │ │ │ │ │ ├── ProjectsLocationsConfigurations.php │ │ │ │ │ │ │ ├── ProjectsLocationsDomainmappings.php │ │ │ │ │ │ │ ├── ProjectsLocationsRevisions.php │ │ │ │ │ │ │ ├── ProjectsLocationsRoutes.php │ │ │ │ │ │ │ └── ProjectsLocationsServices.php │ │ │ │ │ │ ├── ResourceRecord.php │ │ │ │ │ │ ├── ResourceRequirements.php │ │ │ │ │ │ ├── Revision.php │ │ │ │ │ │ ├── RevisionSpec.php │ │ │ │ │ │ ├── RevisionStatus.php │ │ │ │ │ │ ├── RevisionTemplate.php │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ ├── RouteSpec.php │ │ │ │ │ │ ├── RouteStatus.php │ │ │ │ │ │ ├── SecretEnvSource.php │ │ │ │ │ │ ├── SecretKeySelector.php │ │ │ │ │ │ ├── SecretVolumeSource.php │ │ │ │ │ │ ├── SecurityContext.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── ServiceSpec.php │ │ │ │ │ │ ├── ServiceStatus.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StatusCause.php │ │ │ │ │ │ ├── StatusDetails.php │ │ │ │ │ │ ├── TCPSocketAction.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── TrafficTarget.php │ │ │ │ │ │ ├── Volume.php │ │ │ │ │ │ └── VolumeMount.php │ │ │ │ │ │ ├── CloudRuntimeConfig.php │ │ │ │ │ │ ├── CloudRuntimeConfig │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── RuntimeconfigEmpty.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── CloudScheduler.php │ │ │ │ │ │ ├── CloudScheduler │ │ │ │ │ │ ├── AppEngineHttpTarget.php │ │ │ │ │ │ ├── AppEngineRouting.php │ │ │ │ │ │ ├── CloudschedulerEmpty.php │ │ │ │ │ │ ├── HttpTarget.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── OAuthToken.php │ │ │ │ │ │ ├── OidcToken.php │ │ │ │ │ │ ├── PauseJobRequest.php │ │ │ │ │ │ ├── PubsubMessage.php │ │ │ │ │ │ ├── PubsubTarget.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ └── ProjectsLocationsJobs.php │ │ │ │ │ │ ├── ResumeJobRequest.php │ │ │ │ │ │ ├── RetryConfig.php │ │ │ │ │ │ ├── RunJobRequest.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── CloudSearch.php │ │ │ │ │ │ ├── CloudSearch │ │ │ │ │ │ ├── BooleanOperatorOptions.php │ │ │ │ │ │ ├── BooleanPropertyOptions.php │ │ │ │ │ │ ├── CheckAccessResponse.php │ │ │ │ │ │ ├── CompositeFilter.php │ │ │ │ │ │ ├── CustomerIndexStats.php │ │ │ │ │ │ ├── CustomerQueryStats.php │ │ │ │ │ │ ├── CustomerSessionStats.php │ │ │ │ │ │ ├── CustomerUserStats.php │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ ├── DataSourceIndexStats.php │ │ │ │ │ │ ├── DataSourceRestriction.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DateOperatorOptions.php │ │ │ │ │ │ ├── DatePropertyOptions.php │ │ │ │ │ │ ├── DateValues.php │ │ │ │ │ │ ├── DebugOptions.php │ │ │ │ │ │ ├── DeleteQueueItemsRequest.php │ │ │ │ │ │ ├── DisplayedProperty.php │ │ │ │ │ │ ├── DoubleOperatorOptions.php │ │ │ │ │ │ ├── DoublePropertyOptions.php │ │ │ │ │ │ ├── DoubleValues.php │ │ │ │ │ │ ├── DriveFollowUpRestrict.php │ │ │ │ │ │ ├── DriveLocationRestrict.php │ │ │ │ │ │ ├── DriveMimeTypeRestrict.php │ │ │ │ │ │ ├── DriveTimeSpanRestrict.php │ │ │ │ │ │ ├── EmailAddress.php │ │ │ │ │ │ ├── EnumOperatorOptions.php │ │ │ │ │ │ ├── EnumPropertyOptions.php │ │ │ │ │ │ ├── EnumValuePair.php │ │ │ │ │ │ ├── EnumValues.php │ │ │ │ │ │ ├── ErrorInfo.php │ │ │ │ │ │ ├── ErrorMessage.php │ │ │ │ │ │ ├── FacetBucket.php │ │ │ │ │ │ ├── FacetOptions.php │ │ │ │ │ │ ├── FacetResult.php │ │ │ │ │ │ ├── FieldViolation.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── FilterOptions.php │ │ │ │ │ │ ├── FreshnessOptions.php │ │ │ │ │ │ ├── GSuitePrincipal.php │ │ │ │ │ │ ├── GetCustomerIndexStatsResponse.php │ │ │ │ │ │ ├── GetCustomerQueryStatsResponse.php │ │ │ │ │ │ ├── GetCustomerSessionStatsResponse.php │ │ │ │ │ │ ├── GetCustomerUserStatsResponse.php │ │ │ │ │ │ ├── GetDataSourceIndexStatsResponse.php │ │ │ │ │ │ ├── GetSearchApplicationQueryStatsResponse.php │ │ │ │ │ │ ├── GetSearchApplicationSessionStatsResponse.php │ │ │ │ │ │ ├── GetSearchApplicationUserStatsResponse.php │ │ │ │ │ │ ├── HtmlOperatorOptions.php │ │ │ │ │ │ ├── HtmlPropertyOptions.php │ │ │ │ │ │ ├── HtmlValues.php │ │ │ │ │ │ ├── IndexItemOptions.php │ │ │ │ │ │ ├── IndexItemRequest.php │ │ │ │ │ │ ├── IntegerOperatorOptions.php │ │ │ │ │ │ ├── IntegerPropertyOptions.php │ │ │ │ │ │ ├── IntegerValues.php │ │ │ │ │ │ ├── Interaction.php │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ ├── ItemAcl.php │ │ │ │ │ │ ├── ItemContent.php │ │ │ │ │ │ ├── ItemCountByStatus.php │ │ │ │ │ │ ├── ItemMetadata.php │ │ │ │ │ │ ├── ItemStatus.php │ │ │ │ │ │ ├── ItemStructuredData.php │ │ │ │ │ │ ├── ListDataSourceResponse.php │ │ │ │ │ │ ├── ListItemNamesForUnmappedIdentityResponse.php │ │ │ │ │ │ ├── ListItemsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListQuerySourcesResponse.php │ │ │ │ │ │ ├── ListSearchApplicationsResponse.php │ │ │ │ │ │ ├── ListUnmappedIdentitiesResponse.php │ │ │ │ │ │ ├── MatchRange.php │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── Metaline.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── NamedProperty.php │ │ │ │ │ │ ├── ObjectDefinition.php │ │ │ │ │ │ ├── ObjectDisplayOptions.php │ │ │ │ │ │ ├── ObjectOptions.php │ │ │ │ │ │ ├── ObjectPropertyOptions.php │ │ │ │ │ │ ├── ObjectValues.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PeopleSuggestion.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── PollItemsRequest.php │ │ │ │ │ │ ├── PollItemsResponse.php │ │ │ │ │ │ ├── Principal.php │ │ │ │ │ │ ├── ProcessingError.php │ │ │ │ │ │ ├── PropertyDefinition.php │ │ │ │ │ │ ├── PropertyDisplayOptions.php │ │ │ │ │ │ ├── PushItem.php │ │ │ │ │ │ ├── PushItemRequest.php │ │ │ │ │ │ ├── QueryCountByStatus.php │ │ │ │ │ │ ├── QueryInterpretation.php │ │ │ │ │ │ ├── QueryInterpretationOptions.php │ │ │ │ │ │ ├── QueryItem.php │ │ │ │ │ │ ├── QueryOperator.php │ │ │ │ │ │ ├── QuerySource.php │ │ │ │ │ │ ├── QuerySuggestion.php │ │ │ │ │ │ ├── RepositoryError.php │ │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ │ ├── ResetSearchApplicationRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Debug.php │ │ │ │ │ │ │ ├── DebugDatasources.php │ │ │ │ │ │ │ ├── DebugDatasourcesItems.php │ │ │ │ │ │ │ ├── DebugDatasourcesItemsUnmappedids.php │ │ │ │ │ │ │ ├── DebugIdentitysources.php │ │ │ │ │ │ │ ├── DebugIdentitysourcesItems.php │ │ │ │ │ │ │ ├── DebugIdentitysourcesUnmappedids.php │ │ │ │ │ │ │ ├── Indexing.php │ │ │ │ │ │ │ ├── IndexingDatasources.php │ │ │ │ │ │ │ ├── IndexingDatasourcesItems.php │ │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── OperationsLro.php │ │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ │ ├── QuerySources.php │ │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ │ ├── SettingsDatasources.php │ │ │ │ │ │ │ ├── SettingsSearchapplications.php │ │ │ │ │ │ │ ├── Stats.php │ │ │ │ │ │ │ ├── StatsIndex.php │ │ │ │ │ │ │ ├── StatsIndexDatasources.php │ │ │ │ │ │ │ ├── StatsQuery.php │ │ │ │ │ │ │ ├── StatsQuerySearchapplications.php │ │ │ │ │ │ │ ├── StatsSession.php │ │ │ │ │ │ │ ├── StatsSessionSearchapplications.php │ │ │ │ │ │ │ ├── StatsUser.php │ │ │ │ │ │ │ └── StatsUserSearchapplications.php │ │ │ │ │ │ ├── ResponseDebugInfo.php │ │ │ │ │ │ ├── RestrictItem.php │ │ │ │ │ │ ├── ResultCounts.php │ │ │ │ │ │ ├── ResultDebugInfo.php │ │ │ │ │ │ ├── ResultDisplayField.php │ │ │ │ │ │ ├── ResultDisplayLine.php │ │ │ │ │ │ ├── ResultDisplayMetadata.php │ │ │ │ │ │ ├── RetrievalImportance.php │ │ │ │ │ │ ├── Schema.php │ │ │ │ │ │ ├── ScoringConfig.php │ │ │ │ │ │ ├── SearchApplication.php │ │ │ │ │ │ ├── SearchApplicationQueryStats.php │ │ │ │ │ │ ├── SearchApplicationSessionStats.php │ │ │ │ │ │ ├── SearchApplicationUserStats.php │ │ │ │ │ │ ├── SearchItemsByViewUrlRequest.php │ │ │ │ │ │ ├── SearchItemsByViewUrlResponse.php │ │ │ │ │ │ ├── SearchQualityMetadata.php │ │ │ │ │ │ ├── SearchRequest.php │ │ │ │ │ │ ├── SearchResponse.php │ │ │ │ │ │ ├── SearchResult.php │ │ │ │ │ │ ├── Snippet.php │ │ │ │ │ │ ├── SortOptions.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourceConfig.php │ │ │ │ │ │ ├── SourceCrowdingConfig.php │ │ │ │ │ │ ├── SourceResultCount.php │ │ │ │ │ │ ├── SourceScoringConfig.php │ │ │ │ │ │ ├── SpellResult.php │ │ │ │ │ │ ├── StartUploadItemRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StructuredDataObject.php │ │ │ │ │ │ ├── StructuredResult.php │ │ │ │ │ │ ├── SuggestRequest.php │ │ │ │ │ │ ├── SuggestResponse.php │ │ │ │ │ │ ├── SuggestResult.php │ │ │ │ │ │ ├── TextOperatorOptions.php │ │ │ │ │ │ ├── TextPropertyOptions.php │ │ │ │ │ │ ├── TextValues.php │ │ │ │ │ │ ├── TimestampOperatorOptions.php │ │ │ │ │ │ ├── TimestampPropertyOptions.php │ │ │ │ │ │ ├── TimestampValues.php │ │ │ │ │ │ ├── UnmappedIdentity.php │ │ │ │ │ │ ├── UnreserveItemsRequest.php │ │ │ │ │ │ ├── UpdateDataSourceRequest.php │ │ │ │ │ │ ├── UpdateSchemaRequest.php │ │ │ │ │ │ ├── UploadItemRef.php │ │ │ │ │ │ ├── Value.php │ │ │ │ │ │ └── ValueFilter.php │ │ │ │ │ │ ├── CloudSecurityToken.php │ │ │ │ │ │ ├── CloudSecurityToken │ │ │ │ │ │ ├── GoogleIdentityStsV1ExchangeTokenRequest.php │ │ │ │ │ │ ├── GoogleIdentityStsV1ExchangeTokenResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── CloudShell.php │ │ │ │ │ │ ├── CloudShell │ │ │ │ │ │ ├── AddPublicKeyMetadata.php │ │ │ │ │ │ ├── AddPublicKeyRequest.php │ │ │ │ │ │ ├── AddPublicKeyResponse.php │ │ │ │ │ │ ├── AuthorizeEnvironmentMetadata.php │ │ │ │ │ │ ├── AuthorizeEnvironmentRequest.php │ │ │ │ │ │ ├── AuthorizeEnvironmentResponse.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloudshellEmpty.php │ │ │ │ │ │ ├── CreateEnvironmentMetadata.php │ │ │ │ │ │ ├── DeleteEnvironmentMetadata.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── RemovePublicKeyMetadata.php │ │ │ │ │ │ ├── RemovePublicKeyRequest.php │ │ │ │ │ │ ├── RemovePublicKeyResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ └── UsersEnvironments.php │ │ │ │ │ │ ├── StartEnvironmentMetadata.php │ │ │ │ │ │ ├── StartEnvironmentRequest.php │ │ │ │ │ │ ├── StartEnvironmentResponse.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── CloudSourceRepositories.php │ │ │ │ │ │ ├── CloudSourceRepositories │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ListReposResponse.php │ │ │ │ │ │ ├── MirrorConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ProjectConfig.php │ │ │ │ │ │ ├── PubsubConfig.php │ │ │ │ │ │ ├── Repo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ProjectsRepos.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SourcerepoEmpty.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SyncRepoMetadata.php │ │ │ │ │ │ ├── SyncRepoRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UpdateProjectConfigRequest.php │ │ │ │ │ │ └── UpdateRepoRequest.php │ │ │ │ │ │ ├── CloudSpeechAPI.php │ │ │ │ │ │ ├── CloudSpeechAPI │ │ │ │ │ │ ├── AsyncRecognizeRequest.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── RecognitionAudio.php │ │ │ │ │ │ ├── RecognitionConfig.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ └── Speech.php │ │ │ │ │ │ ├── SpeechContext.php │ │ │ │ │ │ ├── SpeechEmpty.php │ │ │ │ │ │ ├── SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── SpeechRecognitionResult.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SyncRecognizeRequest.php │ │ │ │ │ │ └── SyncRecognizeResponse.php │ │ │ │ │ │ ├── CloudTalentSolution.php │ │ │ │ │ │ ├── CloudTalentSolution │ │ │ │ │ │ ├── ApplicationInfo.php │ │ │ │ │ │ ├── BatchDeleteJobsRequest.php │ │ │ │ │ │ ├── BucketRange.php │ │ │ │ │ │ ├── BucketizedCount.php │ │ │ │ │ │ ├── ClientEvent.php │ │ │ │ │ │ ├── CommuteFilter.php │ │ │ │ │ │ ├── CommuteInfo.php │ │ │ │ │ │ ├── Company.php │ │ │ │ │ │ ├── CompanyDerivedInfo.php │ │ │ │ │ │ ├── CompensationEntry.php │ │ │ │ │ │ ├── CompensationFilter.php │ │ │ │ │ │ ├── CompensationHistogramRequest.php │ │ │ │ │ │ ├── CompensationHistogramResult.php │ │ │ │ │ │ ├── CompensationInfo.php │ │ │ │ │ │ ├── CompensationRange.php │ │ │ │ │ │ ├── CompleteQueryResponse.php │ │ │ │ │ │ ├── CompletionResult.php │ │ │ │ │ │ ├── CreateClientEventRequest.php │ │ │ │ │ │ ├── CreateCompanyRequest.php │ │ │ │ │ │ ├── CreateJobRequest.php │ │ │ │ │ │ ├── CustomAttribute.php │ │ │ │ │ │ ├── CustomAttributeHistogramRequest.php │ │ │ │ │ │ ├── CustomAttributeHistogramResult.php │ │ │ │ │ │ ├── DeviceInfo.php │ │ │ │ │ │ ├── GoogleCloudTalentV4BatchCreateJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudTalentV4BatchDeleteJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudTalentV4BatchOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudTalentV4BatchUpdateJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudTalentV4CompensationInfo.php │ │ │ │ │ │ ├── GoogleCloudTalentV4CompensationInfoCompensationEntry.php │ │ │ │ │ │ ├── GoogleCloudTalentV4CompensationInfoCompensationRange.php │ │ │ │ │ │ ├── GoogleCloudTalentV4CustomAttribute.php │ │ │ │ │ │ ├── GoogleCloudTalentV4Job.php │ │ │ │ │ │ ├── GoogleCloudTalentV4JobApplicationInfo.php │ │ │ │ │ │ ├── GoogleCloudTalentV4JobDerivedInfo.php │ │ │ │ │ │ ├── GoogleCloudTalentV4JobProcessingOptions.php │ │ │ │ │ │ ├── GoogleCloudTalentV4JobResult.php │ │ │ │ │ │ ├── GoogleCloudTalentV4Location.php │ │ │ │ │ │ ├── HistogramFacets.php │ │ │ │ │ │ ├── HistogramResult.php │ │ │ │ │ │ ├── HistogramResults.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobDerivedInfo.php │ │ │ │ │ │ ├── JobEvent.php │ │ │ │ │ │ ├── JobQuery.php │ │ │ │ │ │ ├── JobsEmpty.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── ListCompaniesResponse.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationFilter.php │ │ │ │ │ │ ├── MatchingJob.php │ │ │ │ │ │ ├── MendelDebugInput.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── NamespacedDebugInput.php │ │ │ │ │ │ ├── NumericBucketingOption.php │ │ │ │ │ │ ├── NumericBucketingResult.php │ │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ │ ├── ProcessingOptions.php │ │ │ │ │ │ ├── RequestMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsClientEvents.php │ │ │ │ │ │ │ ├── ProjectsCompanies.php │ │ │ │ │ │ │ └── ProjectsJobs.php │ │ │ │ │ │ ├── ResponseMetadata.php │ │ │ │ │ │ ├── SearchJobsRequest.php │ │ │ │ │ │ ├── SearchJobsResponse.php │ │ │ │ │ │ ├── SpellingCorrection.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── TimestampRange.php │ │ │ │ │ │ ├── UpdateCompanyRequest.php │ │ │ │ │ │ └── UpdateJobRequest.php │ │ │ │ │ │ ├── CloudTasks.php │ │ │ │ │ │ ├── CloudTasks │ │ │ │ │ │ ├── AppEngineHttpRequest.php │ │ │ │ │ │ ├── AppEngineRouting.php │ │ │ │ │ │ ├── Attempt.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CloudtasksEmpty.php │ │ │ │ │ │ ├── CreateTaskRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── HttpRequest.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListQueuesResponse.php │ │ │ │ │ │ ├── ListTasksResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── OAuthToken.php │ │ │ │ │ │ ├── OidcToken.php │ │ │ │ │ │ ├── PauseQueueRequest.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PurgeQueueRequest.php │ │ │ │ │ │ ├── Queue.php │ │ │ │ │ │ ├── RateLimits.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsQueues.php │ │ │ │ │ │ │ └── ProjectsLocationsQueuesTasks.php │ │ │ │ │ │ ├── ResumeQueueRequest.php │ │ │ │ │ │ ├── RetryConfig.php │ │ │ │ │ │ ├── RunTaskRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── StackdriverLoggingConfig.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Task.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── CloudTrace.php │ │ │ │ │ │ ├── CloudTrace │ │ │ │ │ │ ├── Annotation.php │ │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ ├── BatchWriteSpansRequest.php │ │ │ │ │ │ ├── CloudtraceEmpty.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── Links.php │ │ │ │ │ │ ├── MessageEvent.php │ │ │ │ │ │ ├── Module.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsTraces.php │ │ │ │ │ │ │ └── ProjectsTracesSpans.php │ │ │ │ │ │ ├── Span.php │ │ │ │ │ │ ├── StackFrame.php │ │ │ │ │ │ ├── StackFrames.php │ │ │ │ │ │ ├── StackTrace.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeEvent.php │ │ │ │ │ │ ├── TimeEvents.php │ │ │ │ │ │ └── TruncatableString.php │ │ │ │ │ │ ├── CloudUserAccounts.php │ │ │ │ │ │ ├── CloudUserAccounts │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuthorizedKeysView.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── GroupList.php │ │ │ │ │ │ ├── GroupsAddMemberRequest.php │ │ │ │ │ │ ├── GroupsRemoveMemberRequest.php │ │ │ │ │ │ ├── LinuxAccountViews.php │ │ │ │ │ │ ├── LinuxGetAuthorizedKeysViewResponse.php │ │ │ │ │ │ ├── LinuxGetLinuxAccountViewsResponse.php │ │ │ │ │ │ ├── LinuxGroupView.php │ │ │ │ │ │ ├── LinuxUserView.php │ │ │ │ │ │ ├── LogConfig.php │ │ │ │ │ │ ├── LogConfigCounterOptions.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationList.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── GlobalAccountsOperations.php │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ ├── Linux.php │ │ │ │ │ │ │ └── Users.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── TestPermissionsRequest.php │ │ │ │ │ │ ├── TestPermissionsResponse.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ └── UserList.php │ │ │ │ │ │ ├── CloudVideoIntelligence.php │ │ │ │ │ │ ├── CloudVideoIntelligence │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1AnnotateVideoProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1AnnotateVideoRequest.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1AnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1DetectedAttribute.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1DetectedLandmark.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1Entity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ExplicitContentAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ExplicitContentFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1FaceDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1FaceDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1FaceFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1FaceSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1LabelAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1LabelDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1LabelFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1LabelSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1LogoRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1NormalizedBoundingBox.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ObjectTrackingConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1PersonDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1PersonDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1SpeechContext.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1SpeechTranscription.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1SpeechTranscriptionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1TextDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1TextFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1TextSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1TimestampedObject.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1Track.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1VideoAnnotationProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1VideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1VideoContext.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1VideoSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1WordInfo.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2AnnotateVideoProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2AnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2DetectedAttribute.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2DetectedLandmark.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2Entity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2ExplicitContentAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2ExplicitContentFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2FaceDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2FaceFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2FaceSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2LabelAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2LabelFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2LabelSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2LogoRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2PersonDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2SpeechTranscription.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2TextFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2TextSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2TimestampedObject.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2Track.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2VideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2VideoSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1beta2WordInfo.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1AnnotateVideoProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1AnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1DetectedAttribute.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1DetectedLandmark.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1Entity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1ExplicitContentAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1ExplicitContentFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1FaceDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1FaceFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1FaceSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1LabelAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1LabelFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1LabelSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1LogoRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1PersonDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1SpeechTranscription.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1TextFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1TextSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1TimestampedObject.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1Track.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1VideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1VideoSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p1beta1WordInfo.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1AnnotateVideoProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1AnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1DetectedAttribute.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1DetectedLandmark.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1Entity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1ExplicitContentAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1ExplicitContentFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1FaceDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1FaceFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1FaceSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1LabelAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1LabelFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1LabelSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1LogoRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1PersonDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1SpeechTranscription.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1TextFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1TextSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1TimestampedObject.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1Track.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1VideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1VideoSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p2beta1WordInfo.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1AnnotateVideoProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1AnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1Celebrity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1CelebrityRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1CelebrityTrack.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1DetectedAttribute.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1Entity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1FaceDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1FaceFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1FaceSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1LabelAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1LabelFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1LabelSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1PersonDetectionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1RecognizedCelebrity.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1SpeechTranscription.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1StreamingAnnotateVideoResponse.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1StreamingVideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1TextFrame.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1TextSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1TimestampedObject.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1Track.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1VideoAnnotationResults.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1VideoSegment.php │ │ │ │ │ │ ├── GoogleCloudVideointelligenceV1p3beta1WordInfo.php │ │ │ │ │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── OperationsProjects.php │ │ │ │ │ │ │ ├── OperationsProjectsLocations.php │ │ │ │ │ │ │ ├── OperationsProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── Videos.php │ │ │ │ │ │ ├── Cloudbilling.php │ │ │ │ │ │ ├── Cloudbilling │ │ │ │ │ │ ├── AggregationInfo.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── BillingAccount.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GeoTaxonomy.php │ │ │ │ │ │ ├── ListBillingAccountsResponse.php │ │ │ │ │ │ ├── ListProjectBillingInfoResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── ListSkusResponse.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PricingExpression.php │ │ │ │ │ │ ├── PricingInfo.php │ │ │ │ │ │ ├── ProjectBillingInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── BillingAccounts.php │ │ │ │ │ │ │ ├── BillingAccountsProjects.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── Services.php │ │ │ │ │ │ │ └── ServicesSkus.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Sku.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ └── TierRate.php │ │ │ │ │ │ ├── Clouderrorreporting.php │ │ │ │ │ │ ├── Clouderrorreporting │ │ │ │ │ │ ├── DeleteEventsResponse.php │ │ │ │ │ │ ├── ErrorContext.php │ │ │ │ │ │ ├── ErrorEvent.php │ │ │ │ │ │ ├── ErrorGroup.php │ │ │ │ │ │ ├── ErrorGroupStats.php │ │ │ │ │ │ ├── HttpRequestContext.php │ │ │ │ │ │ ├── ListEventsResponse.php │ │ │ │ │ │ ├── ListGroupStatsResponse.php │ │ │ │ │ │ ├── ReportErrorEventResponse.php │ │ │ │ │ │ ├── ReportedErrorEvent.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsEvents.php │ │ │ │ │ │ │ ├── ProjectsGroupStats.php │ │ │ │ │ │ │ └── ProjectsGroups.php │ │ │ │ │ │ ├── ServiceContext.php │ │ │ │ │ │ ├── SourceLocation.php │ │ │ │ │ │ ├── SourceReference.php │ │ │ │ │ │ ├── TimedCount.php │ │ │ │ │ │ └── TrackingIssue.php │ │ │ │ │ │ ├── Cloudlatencytest.php │ │ │ │ │ │ ├── Cloudlatencytest │ │ │ │ │ │ ├── AggregatedStats.php │ │ │ │ │ │ ├── AggregatedStatsReply.php │ │ │ │ │ │ ├── DoubleValue.php │ │ │ │ │ │ ├── IntValue.php │ │ │ │ │ │ ├── Stats.php │ │ │ │ │ │ ├── StatsReply.php │ │ │ │ │ │ ├── StatscollectionResource.php │ │ │ │ │ │ └── StringValue.php │ │ │ │ │ │ ├── CommentAnalyzer.php │ │ │ │ │ │ ├── CommentAnalyzer │ │ │ │ │ │ ├── AnalyzeCommentRequest.php │ │ │ │ │ │ ├── AnalyzeCommentResponse.php │ │ │ │ │ │ ├── ArticleAndParentComment.php │ │ │ │ │ │ ├── AttributeParameters.php │ │ │ │ │ │ ├── AttributeScores.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Comments.php │ │ │ │ │ │ ├── Score.php │ │ │ │ │ │ ├── SpanScore.php │ │ │ │ │ │ ├── SuggestCommentScoreRequest.php │ │ │ │ │ │ ├── SuggestCommentScoreResponse.php │ │ │ │ │ │ └── TextEntry.php │ │ │ │ │ │ ├── Compute.php │ │ │ │ │ │ ├── Compute │ │ │ │ │ │ ├── AcceleratorConfig.php │ │ │ │ │ │ ├── AcceleratorType.php │ │ │ │ │ │ ├── AcceleratorTypeAggregatedList.php │ │ │ │ │ │ ├── AcceleratorTypeAggregatedListWarning.php │ │ │ │ │ │ ├── AcceleratorTypeAggregatedListWarningData.php │ │ │ │ │ │ ├── AcceleratorTypeList.php │ │ │ │ │ │ ├── AcceleratorTypeListWarning.php │ │ │ │ │ │ ├── AcceleratorTypeListWarningData.php │ │ │ │ │ │ ├── AcceleratorTypesScopedList.php │ │ │ │ │ │ ├── AcceleratorTypesScopedListWarning.php │ │ │ │ │ │ ├── AcceleratorTypesScopedListWarningData.php │ │ │ │ │ │ ├── AccessConfig.php │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── AddressAggregatedList.php │ │ │ │ │ │ ├── AddressAggregatedListWarning.php │ │ │ │ │ │ ├── AddressAggregatedListWarningData.php │ │ │ │ │ │ ├── AddressList.php │ │ │ │ │ │ ├── AddressListWarning.php │ │ │ │ │ │ ├── AddressListWarningData.php │ │ │ │ │ │ ├── AddressesScopedList.php │ │ │ │ │ │ ├── AddressesScopedListWarning.php │ │ │ │ │ │ ├── AddressesScopedListWarningData.php │ │ │ │ │ │ ├── AliasIpRange.php │ │ │ │ │ │ ├── AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.php │ │ │ │ │ │ ├── AllocationSpecificSKUAllocationReservedInstanceProperties.php │ │ │ │ │ │ ├── AllocationSpecificSKUReservation.php │ │ │ │ │ │ ├── AttachedDisk.php │ │ │ │ │ │ ├── AttachedDiskInitializeParams.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuthorizationLoggingOptions.php │ │ │ │ │ │ ├── Autoscaler.php │ │ │ │ │ │ ├── AutoscalerAggregatedList.php │ │ │ │ │ │ ├── AutoscalerAggregatedListWarning.php │ │ │ │ │ │ ├── AutoscalerAggregatedListWarningData.php │ │ │ │ │ │ ├── AutoscalerList.php │ │ │ │ │ │ ├── AutoscalerListWarning.php │ │ │ │ │ │ ├── AutoscalerListWarningData.php │ │ │ │ │ │ ├── AutoscalerStatusDetails.php │ │ │ │ │ │ ├── AutoscalersScopedList.php │ │ │ │ │ │ ├── AutoscalersScopedListWarning.php │ │ │ │ │ │ ├── AutoscalersScopedListWarningData.php │ │ │ │ │ │ ├── AutoscalingPolicy.php │ │ │ │ │ │ ├── AutoscalingPolicyCpuUtilization.php │ │ │ │ │ │ ├── AutoscalingPolicyCustomMetricUtilization.php │ │ │ │ │ │ ├── AutoscalingPolicyLoadBalancingUtilization.php │ │ │ │ │ │ ├── AutoscalingPolicyScaleInControl.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendBucket.php │ │ │ │ │ │ ├── BackendBucketCdnPolicy.php │ │ │ │ │ │ ├── BackendBucketList.php │ │ │ │ │ │ ├── BackendBucketListWarning.php │ │ │ │ │ │ ├── BackendBucketListWarningData.php │ │ │ │ │ │ ├── BackendService.php │ │ │ │ │ │ ├── BackendServiceAggregatedList.php │ │ │ │ │ │ ├── BackendServiceAggregatedListWarning.php │ │ │ │ │ │ ├── BackendServiceAggregatedListWarningData.php │ │ │ │ │ │ ├── BackendServiceCdnPolicy.php │ │ │ │ │ │ ├── BackendServiceFailoverPolicy.php │ │ │ │ │ │ ├── BackendServiceGroupHealth.php │ │ │ │ │ │ ├── BackendServiceIAP.php │ │ │ │ │ │ ├── BackendServiceList.php │ │ │ │ │ │ ├── BackendServiceListWarning.php │ │ │ │ │ │ ├── BackendServiceListWarningData.php │ │ │ │ │ │ ├── BackendServiceLogConfig.php │ │ │ │ │ │ ├── BackendServiceReference.php │ │ │ │ │ │ ├── BackendServicesScopedList.php │ │ │ │ │ │ ├── BackendServicesScopedListWarning.php │ │ │ │ │ │ ├── BackendServicesScopedListWarningData.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CacheInvalidationRule.php │ │ │ │ │ │ ├── CacheKeyPolicy.php │ │ │ │ │ │ ├── CircuitBreakers.php │ │ │ │ │ │ ├── Commitment.php │ │ │ │ │ │ ├── CommitmentAggregatedList.php │ │ │ │ │ │ ├── CommitmentAggregatedListWarning.php │ │ │ │ │ │ ├── CommitmentAggregatedListWarningData.php │ │ │ │ │ │ ├── CommitmentList.php │ │ │ │ │ │ ├── CommitmentListWarning.php │ │ │ │ │ │ ├── CommitmentListWarningData.php │ │ │ │ │ │ ├── CommitmentsScopedList.php │ │ │ │ │ │ ├── CommitmentsScopedListWarning.php │ │ │ │ │ │ ├── CommitmentsScopedListWarningData.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── ConfidentialInstanceConfig.php │ │ │ │ │ │ ├── ConnectionDraining.php │ │ │ │ │ │ ├── ConsistentHashLoadBalancerSettings.php │ │ │ │ │ │ ├── ConsistentHashLoadBalancerSettingsHttpCookie.php │ │ │ │ │ │ ├── CorsPolicy.php │ │ │ │ │ │ ├── CustomerEncryptionKey.php │ │ │ │ │ │ ├── CustomerEncryptionKeyProtectedDisk.php │ │ │ │ │ │ ├── DeprecationStatus.php │ │ │ │ │ │ ├── Disk.php │ │ │ │ │ │ ├── DiskAggregatedList.php │ │ │ │ │ │ ├── DiskAggregatedListWarning.php │ │ │ │ │ │ ├── DiskAggregatedListWarningData.php │ │ │ │ │ │ ├── DiskInstantiationConfig.php │ │ │ │ │ │ ├── DiskList.php │ │ │ │ │ │ ├── DiskListWarning.php │ │ │ │ │ │ ├── DiskListWarningData.php │ │ │ │ │ │ ├── DiskMoveRequest.php │ │ │ │ │ │ ├── DiskType.php │ │ │ │ │ │ ├── DiskTypeAggregatedList.php │ │ │ │ │ │ ├── DiskTypeAggregatedListWarning.php │ │ │ │ │ │ ├── DiskTypeAggregatedListWarningData.php │ │ │ │ │ │ ├── DiskTypeList.php │ │ │ │ │ │ ├── DiskTypeListWarning.php │ │ │ │ │ │ ├── DiskTypeListWarningData.php │ │ │ │ │ │ ├── DiskTypesScopedList.php │ │ │ │ │ │ ├── DiskTypesScopedListWarning.php │ │ │ │ │ │ ├── DiskTypesScopedListWarningData.php │ │ │ │ │ │ ├── DisksAddResourcePoliciesRequest.php │ │ │ │ │ │ ├── DisksRemoveResourcePoliciesRequest.php │ │ │ │ │ │ ├── DisksResizeRequest.php │ │ │ │ │ │ ├── DisksScopedList.php │ │ │ │ │ │ ├── DisksScopedListWarning.php │ │ │ │ │ │ ├── DisksScopedListWarningData.php │ │ │ │ │ │ ├── DisplayDevice.php │ │ │ │ │ │ ├── DistributionPolicy.php │ │ │ │ │ │ ├── DistributionPolicyZoneConfiguration.php │ │ │ │ │ │ ├── Duration.php │ │ │ │ │ │ ├── ExchangedPeeringRoute.php │ │ │ │ │ │ ├── ExchangedPeeringRoutesList.php │ │ │ │ │ │ ├── ExchangedPeeringRoutesListWarning.php │ │ │ │ │ │ ├── ExchangedPeeringRoutesListWarningData.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ExternalVpnGateway.php │ │ │ │ │ │ ├── ExternalVpnGatewayInterface.php │ │ │ │ │ │ ├── ExternalVpnGatewayList.php │ │ │ │ │ │ ├── ExternalVpnGatewayListWarning.php │ │ │ │ │ │ ├── ExternalVpnGatewayListWarningData.php │ │ │ │ │ │ ├── FileContentBuffer.php │ │ │ │ │ │ ├── Firewall.php │ │ │ │ │ │ ├── FirewallAllowed.php │ │ │ │ │ │ ├── FirewallDenied.php │ │ │ │ │ │ ├── FirewallList.php │ │ │ │ │ │ ├── FirewallListWarning.php │ │ │ │ │ │ ├── FirewallListWarningData.php │ │ │ │ │ │ ├── FirewallLogConfig.php │ │ │ │ │ │ ├── FixedOrPercent.php │ │ │ │ │ │ ├── ForwardingRule.php │ │ │ │ │ │ ├── ForwardingRuleAggregatedList.php │ │ │ │ │ │ ├── ForwardingRuleAggregatedListWarning.php │ │ │ │ │ │ ├── ForwardingRuleAggregatedListWarningData.php │ │ │ │ │ │ ├── ForwardingRuleList.php │ │ │ │ │ │ ├── ForwardingRuleListWarning.php │ │ │ │ │ │ ├── ForwardingRuleListWarningData.php │ │ │ │ │ │ ├── ForwardingRuleReference.php │ │ │ │ │ │ ├── ForwardingRulesScopedList.php │ │ │ │ │ │ ├── ForwardingRulesScopedListWarning.php │ │ │ │ │ │ ├── ForwardingRulesScopedListWarningData.php │ │ │ │ │ │ ├── GRPCHealthCheck.php │ │ │ │ │ │ ├── GlobalNetworkEndpointGroupsAttachEndpointsRequest.php │ │ │ │ │ │ ├── GlobalNetworkEndpointGroupsDetachEndpointsRequest.php │ │ │ │ │ │ ├── GlobalSetLabelsRequest.php │ │ │ │ │ │ ├── GlobalSetPolicyRequest.php │ │ │ │ │ │ ├── GuestAttributes.php │ │ │ │ │ │ ├── GuestAttributesEntry.php │ │ │ │ │ │ ├── GuestAttributesValue.php │ │ │ │ │ │ ├── GuestOsFeature.php │ │ │ │ │ │ ├── HTTP2HealthCheck.php │ │ │ │ │ │ ├── HealthCheck.php │ │ │ │ │ │ ├── HealthCheckList.php │ │ │ │ │ │ ├── HealthCheckListWarning.php │ │ │ │ │ │ ├── HealthCheckListWarningData.php │ │ │ │ │ │ ├── HealthCheckLogConfig.php │ │ │ │ │ │ ├── HealthCheckReference.php │ │ │ │ │ │ ├── HealthCheckService.php │ │ │ │ │ │ ├── HealthCheckServiceReference.php │ │ │ │ │ │ ├── HealthCheckServicesList.php │ │ │ │ │ │ ├── HealthCheckServicesListWarning.php │ │ │ │ │ │ ├── HealthCheckServicesListWarningData.php │ │ │ │ │ │ ├── HealthChecksAggregatedList.php │ │ │ │ │ │ ├── HealthChecksAggregatedListWarning.php │ │ │ │ │ │ ├── HealthChecksAggregatedListWarningData.php │ │ │ │ │ │ ├── HealthChecksScopedList.php │ │ │ │ │ │ ├── HealthChecksScopedListWarning.php │ │ │ │ │ │ ├── HealthChecksScopedListWarningData.php │ │ │ │ │ │ ├── HealthStatus.php │ │ │ │ │ │ ├── HealthStatusForNetworkEndpoint.php │ │ │ │ │ │ ├── HostRule.php │ │ │ │ │ │ ├── HttpFaultAbort.php │ │ │ │ │ │ ├── HttpFaultDelay.php │ │ │ │ │ │ ├── HttpFaultInjection.php │ │ │ │ │ │ ├── HttpHeaderAction.php │ │ │ │ │ │ ├── HttpHeaderMatch.php │ │ │ │ │ │ ├── HttpHeaderOption.php │ │ │ │ │ │ ├── HttpHealthCheck.php │ │ │ │ │ │ ├── HttpHealthCheckList.php │ │ │ │ │ │ ├── HttpHealthCheckListWarning.php │ │ │ │ │ │ ├── HttpHealthCheckListWarningData.php │ │ │ │ │ │ ├── HttpQueryParameterMatch.php │ │ │ │ │ │ ├── HttpRedirectAction.php │ │ │ │ │ │ ├── HttpRetryPolicy.php │ │ │ │ │ │ ├── HttpRouteAction.php │ │ │ │ │ │ ├── HttpRouteRule.php │ │ │ │ │ │ ├── HttpRouteRuleMatch.php │ │ │ │ │ │ ├── HttpsHealthCheck.php │ │ │ │ │ │ ├── HttpsHealthCheckList.php │ │ │ │ │ │ ├── HttpsHealthCheckListWarning.php │ │ │ │ │ │ ├── HttpsHealthCheckListWarningData.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImageList.php │ │ │ │ │ │ ├── ImageListWarning.php │ │ │ │ │ │ ├── ImageListWarningData.php │ │ │ │ │ │ ├── ImageRawDisk.php │ │ │ │ │ │ ├── InitialStateConfig.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── InstanceAggregatedList.php │ │ │ │ │ │ ├── InstanceAggregatedListWarning.php │ │ │ │ │ │ ├── InstanceAggregatedListWarningData.php │ │ │ │ │ │ ├── InstanceGroup.php │ │ │ │ │ │ ├── InstanceGroupAggregatedList.php │ │ │ │ │ │ ├── InstanceGroupAggregatedListWarning.php │ │ │ │ │ │ ├── InstanceGroupAggregatedListWarningData.php │ │ │ │ │ │ ├── InstanceGroupList.php │ │ │ │ │ │ ├── InstanceGroupListWarning.php │ │ │ │ │ │ ├── InstanceGroupListWarningData.php │ │ │ │ │ │ ├── InstanceGroupManager.php │ │ │ │ │ │ ├── InstanceGroupManagerActionsSummary.php │ │ │ │ │ │ ├── InstanceGroupManagerAggregatedList.php │ │ │ │ │ │ ├── InstanceGroupManagerAggregatedListWarning.php │ │ │ │ │ │ ├── InstanceGroupManagerAggregatedListWarningData.php │ │ │ │ │ │ ├── InstanceGroupManagerAutoHealingPolicy.php │ │ │ │ │ │ ├── InstanceGroupManagerList.php │ │ │ │ │ │ ├── InstanceGroupManagerListWarning.php │ │ │ │ │ │ ├── InstanceGroupManagerListWarningData.php │ │ │ │ │ │ ├── InstanceGroupManagerStatus.php │ │ │ │ │ │ ├── InstanceGroupManagerStatusStateful.php │ │ │ │ │ │ ├── InstanceGroupManagerStatusStatefulPerInstanceConfigs.php │ │ │ │ │ │ ├── InstanceGroupManagerStatusVersionTarget.php │ │ │ │ │ │ ├── InstanceGroupManagerUpdatePolicy.php │ │ │ │ │ │ ├── InstanceGroupManagerVersion.php │ │ │ │ │ │ ├── InstanceGroupManagersAbandonInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersApplyUpdatesRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersCreateInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersDeleteInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersDeletePerInstanceConfigsReq.php │ │ │ │ │ │ ├── InstanceGroupManagersListErrorsResponse.php │ │ │ │ │ │ ├── InstanceGroupManagersListManagedInstancesResponse.php │ │ │ │ │ │ ├── InstanceGroupManagersListPerInstanceConfigsResp.php │ │ │ │ │ │ ├── InstanceGroupManagersListPerInstanceConfigsRespWarning.php │ │ │ │ │ │ ├── InstanceGroupManagersListPerInstanceConfigsRespWarningData.php │ │ │ │ │ │ ├── InstanceGroupManagersPatchPerInstanceConfigsReq.php │ │ │ │ │ │ ├── InstanceGroupManagersRecreateInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersScopedList.php │ │ │ │ │ │ ├── InstanceGroupManagersScopedListWarning.php │ │ │ │ │ │ ├── InstanceGroupManagersScopedListWarningData.php │ │ │ │ │ │ ├── InstanceGroupManagersSetInstanceTemplateRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersSetTargetPoolsRequest.php │ │ │ │ │ │ ├── InstanceGroupManagersUpdatePerInstanceConfigsReq.php │ │ │ │ │ │ ├── InstanceGroupsAddInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupsListInstances.php │ │ │ │ │ │ ├── InstanceGroupsListInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupsListInstancesWarning.php │ │ │ │ │ │ ├── InstanceGroupsListInstancesWarningData.php │ │ │ │ │ │ ├── InstanceGroupsRemoveInstancesRequest.php │ │ │ │ │ │ ├── InstanceGroupsScopedList.php │ │ │ │ │ │ ├── InstanceGroupsScopedListWarning.php │ │ │ │ │ │ ├── InstanceGroupsScopedListWarningData.php │ │ │ │ │ │ ├── InstanceGroupsSetNamedPortsRequest.php │ │ │ │ │ │ ├── InstanceList.php │ │ │ │ │ │ ├── InstanceListReferrers.php │ │ │ │ │ │ ├── InstanceListReferrersWarning.php │ │ │ │ │ │ ├── InstanceListReferrersWarningData.php │ │ │ │ │ │ ├── InstanceListWarning.php │ │ │ │ │ │ ├── InstanceListWarningData.php │ │ │ │ │ │ ├── InstanceManagedByIgmError.php │ │ │ │ │ │ ├── InstanceManagedByIgmErrorInstanceActionDetails.php │ │ │ │ │ │ ├── InstanceManagedByIgmErrorManagedInstanceError.php │ │ │ │ │ │ ├── InstanceMoveRequest.php │ │ │ │ │ │ ├── InstanceProperties.php │ │ │ │ │ │ ├── InstanceReference.php │ │ │ │ │ │ ├── InstanceTemplate.php │ │ │ │ │ │ ├── InstanceTemplateList.php │ │ │ │ │ │ ├── InstanceTemplateListWarning.php │ │ │ │ │ │ ├── InstanceTemplateListWarningData.php │ │ │ │ │ │ ├── InstanceWithNamedPorts.php │ │ │ │ │ │ ├── InstancesAddResourcePoliciesRequest.php │ │ │ │ │ │ ├── InstancesRemoveResourcePoliciesRequest.php │ │ │ │ │ │ ├── InstancesScopedList.php │ │ │ │ │ │ ├── InstancesScopedListWarning.php │ │ │ │ │ │ ├── InstancesScopedListWarningData.php │ │ │ │ │ │ ├── InstancesSetLabelsRequest.php │ │ │ │ │ │ ├── InstancesSetMachineResourcesRequest.php │ │ │ │ │ │ ├── InstancesSetMachineTypeRequest.php │ │ │ │ │ │ ├── InstancesSetMinCpuPlatformRequest.php │ │ │ │ │ │ ├── InstancesSetServiceAccountRequest.php │ │ │ │ │ │ ├── InstancesStartWithEncryptionKeyRequest.php │ │ │ │ │ │ ├── Int64RangeMatch.php │ │ │ │ │ │ ├── Interconnect.php │ │ │ │ │ │ ├── InterconnectAttachment.php │ │ │ │ │ │ ├── InterconnectAttachmentAggregatedList.php │ │ │ │ │ │ ├── InterconnectAttachmentAggregatedListWarning.php │ │ │ │ │ │ ├── InterconnectAttachmentAggregatedListWarningData.php │ │ │ │ │ │ ├── InterconnectAttachmentList.php │ │ │ │ │ │ ├── InterconnectAttachmentListWarning.php │ │ │ │ │ │ ├── InterconnectAttachmentListWarningData.php │ │ │ │ │ │ ├── InterconnectAttachmentPartnerMetadata.php │ │ │ │ │ │ ├── InterconnectAttachmentPrivateInfo.php │ │ │ │ │ │ ├── InterconnectAttachmentsScopedList.php │ │ │ │ │ │ ├── InterconnectAttachmentsScopedListWarning.php │ │ │ │ │ │ ├── InterconnectAttachmentsScopedListWarningData.php │ │ │ │ │ │ ├── InterconnectCircuitInfo.php │ │ │ │ │ │ ├── InterconnectDiagnostics.php │ │ │ │ │ │ ├── InterconnectDiagnosticsARPEntry.php │ │ │ │ │ │ ├── InterconnectDiagnosticsLinkLACPStatus.php │ │ │ │ │ │ ├── InterconnectDiagnosticsLinkOpticalPower.php │ │ │ │ │ │ ├── InterconnectDiagnosticsLinkStatus.php │ │ │ │ │ │ ├── InterconnectList.php │ │ │ │ │ │ ├── InterconnectListWarning.php │ │ │ │ │ │ ├── InterconnectListWarningData.php │ │ │ │ │ │ ├── InterconnectLocation.php │ │ │ │ │ │ ├── InterconnectLocationList.php │ │ │ │ │ │ ├── InterconnectLocationListWarning.php │ │ │ │ │ │ ├── InterconnectLocationListWarningData.php │ │ │ │ │ │ ├── InterconnectLocationRegionInfo.php │ │ │ │ │ │ ├── InterconnectOutageNotification.php │ │ │ │ │ │ ├── InterconnectsGetDiagnosticsResponse.php │ │ │ │ │ │ ├── License.php │ │ │ │ │ │ ├── LicenseCode.php │ │ │ │ │ │ ├── LicenseCodeLicenseAlias.php │ │ │ │ │ │ ├── LicenseResourceCommitment.php │ │ │ │ │ │ ├── LicenseResourceRequirements.php │ │ │ │ │ │ ├── LicensesListResponse.php │ │ │ │ │ │ ├── LicensesListResponseWarning.php │ │ │ │ │ │ ├── LicensesListResponseWarningData.php │ │ │ │ │ │ ├── LogConfig.php │ │ │ │ │ │ ├── LogConfigCloudAuditOptions.php │ │ │ │ │ │ ├── LogConfigCounterOptions.php │ │ │ │ │ │ ├── LogConfigCounterOptionsCustomField.php │ │ │ │ │ │ ├── LogConfigDataAccessOptions.php │ │ │ │ │ │ ├── MachineType.php │ │ │ │ │ │ ├── MachineTypeAccelerators.php │ │ │ │ │ │ ├── MachineTypeAggregatedList.php │ │ │ │ │ │ ├── MachineTypeAggregatedListWarning.php │ │ │ │ │ │ ├── MachineTypeAggregatedListWarningData.php │ │ │ │ │ │ ├── MachineTypeList.php │ │ │ │ │ │ ├── MachineTypeListWarning.php │ │ │ │ │ │ ├── MachineTypeListWarningData.php │ │ │ │ │ │ ├── MachineTypeScratchDisks.php │ │ │ │ │ │ ├── MachineTypesScopedList.php │ │ │ │ │ │ ├── MachineTypesScopedListWarning.php │ │ │ │ │ │ ├── MachineTypesScopedListWarningData.php │ │ │ │ │ │ ├── ManagedInstance.php │ │ │ │ │ │ ├── ManagedInstanceInstanceHealth.php │ │ │ │ │ │ ├── ManagedInstanceLastAttempt.php │ │ │ │ │ │ ├── ManagedInstanceLastAttemptErrors.php │ │ │ │ │ │ ├── ManagedInstanceLastAttemptErrorsErrors.php │ │ │ │ │ │ ├── ManagedInstanceVersion.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── MetadataFilter.php │ │ │ │ │ │ ├── MetadataFilterLabelMatch.php │ │ │ │ │ │ ├── MetadataItems.php │ │ │ │ │ │ ├── NamedPort.php │ │ │ │ │ │ ├── Network.php │ │ │ │ │ │ ├── NetworkEndpoint.php │ │ │ │ │ │ ├── NetworkEndpointGroup.php │ │ │ │ │ │ ├── NetworkEndpointGroupAggregatedList.php │ │ │ │ │ │ ├── NetworkEndpointGroupAggregatedListWarning.php │ │ │ │ │ │ ├── NetworkEndpointGroupAggregatedListWarningData.php │ │ │ │ │ │ ├── NetworkEndpointGroupAppEngine.php │ │ │ │ │ │ ├── NetworkEndpointGroupCloudFunction.php │ │ │ │ │ │ ├── NetworkEndpointGroupCloudRun.php │ │ │ │ │ │ ├── NetworkEndpointGroupList.php │ │ │ │ │ │ ├── NetworkEndpointGroupListWarning.php │ │ │ │ │ │ ├── NetworkEndpointGroupListWarningData.php │ │ │ │ │ │ ├── NetworkEndpointGroupsAttachEndpointsRequest.php │ │ │ │ │ │ ├── NetworkEndpointGroupsDetachEndpointsRequest.php │ │ │ │ │ │ ├── NetworkEndpointGroupsListEndpointsRequest.php │ │ │ │ │ │ ├── NetworkEndpointGroupsListNetworkEndpoints.php │ │ │ │ │ │ ├── NetworkEndpointGroupsListNetworkEndpointsWarning.php │ │ │ │ │ │ ├── NetworkEndpointGroupsListNetworkEndpointsWarningData.php │ │ │ │ │ │ ├── NetworkEndpointGroupsScopedList.php │ │ │ │ │ │ ├── NetworkEndpointGroupsScopedListWarning.php │ │ │ │ │ │ ├── NetworkEndpointGroupsScopedListWarningData.php │ │ │ │ │ │ ├── NetworkEndpointWithHealthStatus.php │ │ │ │ │ │ ├── NetworkInterface.php │ │ │ │ │ │ ├── NetworkList.php │ │ │ │ │ │ ├── NetworkListWarning.php │ │ │ │ │ │ ├── NetworkListWarningData.php │ │ │ │ │ │ ├── NetworkPeering.php │ │ │ │ │ │ ├── NetworkRoutingConfig.php │ │ │ │ │ │ ├── NetworksAddPeeringRequest.php │ │ │ │ │ │ ├── NetworksRemovePeeringRequest.php │ │ │ │ │ │ ├── NetworksUpdatePeeringRequest.php │ │ │ │ │ │ ├── NodeGroup.php │ │ │ │ │ │ ├── NodeGroupAggregatedList.php │ │ │ │ │ │ ├── NodeGroupAggregatedListWarning.php │ │ │ │ │ │ ├── NodeGroupAggregatedListWarningData.php │ │ │ │ │ │ ├── NodeGroupAutoscalingPolicy.php │ │ │ │ │ │ ├── NodeGroupList.php │ │ │ │ │ │ ├── NodeGroupListWarning.php │ │ │ │ │ │ ├── NodeGroupListWarningData.php │ │ │ │ │ │ ├── NodeGroupNode.php │ │ │ │ │ │ ├── NodeGroupsAddNodesRequest.php │ │ │ │ │ │ ├── NodeGroupsDeleteNodesRequest.php │ │ │ │ │ │ ├── NodeGroupsListNodes.php │ │ │ │ │ │ ├── NodeGroupsListNodesWarning.php │ │ │ │ │ │ ├── NodeGroupsListNodesWarningData.php │ │ │ │ │ │ ├── NodeGroupsScopedList.php │ │ │ │ │ │ ├── NodeGroupsScopedListWarning.php │ │ │ │ │ │ ├── NodeGroupsScopedListWarningData.php │ │ │ │ │ │ ├── NodeGroupsSetNodeTemplateRequest.php │ │ │ │ │ │ ├── NodeTemplate.php │ │ │ │ │ │ ├── NodeTemplateAggregatedList.php │ │ │ │ │ │ ├── NodeTemplateAggregatedListWarning.php │ │ │ │ │ │ ├── NodeTemplateAggregatedListWarningData.php │ │ │ │ │ │ ├── NodeTemplateList.php │ │ │ │ │ │ ├── NodeTemplateListWarning.php │ │ │ │ │ │ ├── NodeTemplateListWarningData.php │ │ │ │ │ │ ├── NodeTemplateNodeTypeFlexibility.php │ │ │ │ │ │ ├── NodeTemplatesScopedList.php │ │ │ │ │ │ ├── NodeTemplatesScopedListWarning.php │ │ │ │ │ │ ├── NodeTemplatesScopedListWarningData.php │ │ │ │ │ │ ├── NodeType.php │ │ │ │ │ │ ├── NodeTypeAggregatedList.php │ │ │ │ │ │ ├── NodeTypeAggregatedListWarning.php │ │ │ │ │ │ ├── NodeTypeAggregatedListWarningData.php │ │ │ │ │ │ ├── NodeTypeList.php │ │ │ │ │ │ ├── NodeTypeListWarning.php │ │ │ │ │ │ ├── NodeTypeListWarningData.php │ │ │ │ │ │ ├── NodeTypesScopedList.php │ │ │ │ │ │ ├── NodeTypesScopedListWarning.php │ │ │ │ │ │ ├── NodeTypesScopedListWarningData.php │ │ │ │ │ │ ├── NotificationEndpoint.php │ │ │ │ │ │ ├── NotificationEndpointGrpcSettings.php │ │ │ │ │ │ ├── NotificationEndpointList.php │ │ │ │ │ │ ├── NotificationEndpointListWarning.php │ │ │ │ │ │ ├── NotificationEndpointListWarningData.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationAggregatedList.php │ │ │ │ │ │ ├── OperationAggregatedListWarning.php │ │ │ │ │ │ ├── OperationAggregatedListWarningData.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationList.php │ │ │ │ │ │ ├── OperationListWarning.php │ │ │ │ │ │ ├── OperationListWarningData.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── OperationsScopedList.php │ │ │ │ │ │ ├── OperationsScopedListWarning.php │ │ │ │ │ │ ├── OperationsScopedListWarningData.php │ │ │ │ │ │ ├── OutlierDetection.php │ │ │ │ │ │ ├── PacketMirroring.php │ │ │ │ │ │ ├── PacketMirroringAggregatedList.php │ │ │ │ │ │ ├── PacketMirroringAggregatedListWarning.php │ │ │ │ │ │ ├── PacketMirroringAggregatedListWarningData.php │ │ │ │ │ │ ├── PacketMirroringFilter.php │ │ │ │ │ │ ├── PacketMirroringForwardingRuleInfo.php │ │ │ │ │ │ ├── PacketMirroringList.php │ │ │ │ │ │ ├── PacketMirroringListWarning.php │ │ │ │ │ │ ├── PacketMirroringListWarningData.php │ │ │ │ │ │ ├── PacketMirroringMirroredResourceInfo.php │ │ │ │ │ │ ├── PacketMirroringMirroredResourceInfoInstanceInfo.php │ │ │ │ │ │ ├── PacketMirroringMirroredResourceInfoSubnetInfo.php │ │ │ │ │ │ ├── PacketMirroringNetworkInfo.php │ │ │ │ │ │ ├── PacketMirroringsScopedList.php │ │ │ │ │ │ ├── PacketMirroringsScopedListWarning.php │ │ │ │ │ │ ├── PacketMirroringsScopedListWarningData.php │ │ │ │ │ │ ├── PathMatcher.php │ │ │ │ │ │ ├── PathRule.php │ │ │ │ │ │ ├── PerInstanceConfig.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PreconfiguredWafSet.php │ │ │ │ │ │ ├── PreservedState.php │ │ │ │ │ │ ├── PreservedStatePreservedDisk.php │ │ │ │ │ │ ├── Project.php │ │ │ │ │ │ ├── ProjectsDisableXpnResourceRequest.php │ │ │ │ │ │ ├── ProjectsEnableXpnResourceRequest.php │ │ │ │ │ │ ├── ProjectsGetXpnResources.php │ │ │ │ │ │ ├── ProjectsListXpnHostsRequest.php │ │ │ │ │ │ ├── ProjectsSetDefaultNetworkTierRequest.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── Reference.php │ │ │ │ │ │ ├── Region.php │ │ │ │ │ │ ├── RegionAutoscalerList.php │ │ │ │ │ │ ├── RegionAutoscalerListWarning.php │ │ │ │ │ │ ├── RegionAutoscalerListWarningData.php │ │ │ │ │ │ ├── RegionDiskTypeList.php │ │ │ │ │ │ ├── RegionDiskTypeListWarning.php │ │ │ │ │ │ ├── RegionDiskTypeListWarningData.php │ │ │ │ │ │ ├── RegionDisksAddResourcePoliciesRequest.php │ │ │ │ │ │ ├── RegionDisksRemoveResourcePoliciesRequest.php │ │ │ │ │ │ ├── RegionDisksResizeRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupList.php │ │ │ │ │ │ ├── RegionInstanceGroupListWarning.php │ │ │ │ │ │ ├── RegionInstanceGroupListWarningData.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerDeleteInstanceConfigReq.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerList.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerListWarning.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerListWarningData.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerPatchInstanceConfigReq.php │ │ │ │ │ │ ├── RegionInstanceGroupManagerUpdateInstanceConfigReq.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersAbandonInstancesRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersApplyUpdatesRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersCreateInstancesRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersDeleteInstancesRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersListErrorsResponse.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersListInstanceConfigsResp.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersListInstanceConfigsRespWarning.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersListInstanceConfigsRespWarningData.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersListInstancesResponse.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersRecreateRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersSetTargetPoolsRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupManagersSetTemplateRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupsListInstances.php │ │ │ │ │ │ ├── RegionInstanceGroupsListInstancesRequest.php │ │ │ │ │ │ ├── RegionInstanceGroupsListInstancesWarning.php │ │ │ │ │ │ ├── RegionInstanceGroupsListInstancesWarningData.php │ │ │ │ │ │ ├── RegionInstanceGroupsSetNamedPortsRequest.php │ │ │ │ │ │ ├── RegionList.php │ │ │ │ │ │ ├── RegionListWarning.php │ │ │ │ │ │ ├── RegionListWarningData.php │ │ │ │ │ │ ├── RegionSetLabelsRequest.php │ │ │ │ │ │ ├── RegionSetPolicyRequest.php │ │ │ │ │ │ ├── RegionTargetHttpsProxiesSetSslCertificatesRequest.php │ │ │ │ │ │ ├── RegionUrlMapsValidateRequest.php │ │ │ │ │ │ ├── RequestMirrorPolicy.php │ │ │ │ │ │ ├── Reservation.php │ │ │ │ │ │ ├── ReservationAffinity.php │ │ │ │ │ │ ├── ReservationAggregatedList.php │ │ │ │ │ │ ├── ReservationAggregatedListWarning.php │ │ │ │ │ │ ├── ReservationAggregatedListWarningData.php │ │ │ │ │ │ ├── ReservationList.php │ │ │ │ │ │ ├── ReservationListWarning.php │ │ │ │ │ │ ├── ReservationListWarningData.php │ │ │ │ │ │ ├── ReservationsResizeRequest.php │ │ │ │ │ │ ├── ReservationsScopedList.php │ │ │ │ │ │ ├── ReservationsScopedListWarning.php │ │ │ │ │ │ ├── ReservationsScopedListWarningData.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AcceleratorTypes.php │ │ │ │ │ │ │ ├── Addresses.php │ │ │ │ │ │ │ ├── Autoscalers.php │ │ │ │ │ │ │ ├── BackendBuckets.php │ │ │ │ │ │ │ ├── BackendServices.php │ │ │ │ │ │ │ ├── DiskTypes.php │ │ │ │ │ │ │ ├── Disks.php │ │ │ │ │ │ │ ├── ExternalVpnGateways.php │ │ │ │ │ │ │ ├── Firewalls.php │ │ │ │ │ │ │ ├── ForwardingRules.php │ │ │ │ │ │ │ ├── GlobalAddresses.php │ │ │ │ │ │ │ ├── GlobalForwardingRules.php │ │ │ │ │ │ │ ├── GlobalNetworkEndpointGroups.php │ │ │ │ │ │ │ ├── GlobalOperations.php │ │ │ │ │ │ │ ├── GlobalOrganizationOperations.php │ │ │ │ │ │ │ ├── HealthChecks.php │ │ │ │ │ │ │ ├── HttpHealthChecks.php │ │ │ │ │ │ │ ├── HttpsHealthChecks.php │ │ │ │ │ │ │ ├── Images.php │ │ │ │ │ │ │ ├── InstanceGroupManagers.php │ │ │ │ │ │ │ ├── InstanceGroups.php │ │ │ │ │ │ │ ├── InstanceTemplates.php │ │ │ │ │ │ │ ├── Instances.php │ │ │ │ │ │ │ ├── InterconnectAttachments.php │ │ │ │ │ │ │ ├── InterconnectLocations.php │ │ │ │ │ │ │ ├── Interconnects.php │ │ │ │ │ │ │ ├── LicenseCodes.php │ │ │ │ │ │ │ ├── Licenses.php │ │ │ │ │ │ │ ├── MachineTypes.php │ │ │ │ │ │ │ ├── NetworkEndpointGroups.php │ │ │ │ │ │ │ ├── Networks.php │ │ │ │ │ │ │ ├── NodeGroups.php │ │ │ │ │ │ │ ├── NodeTemplates.php │ │ │ │ │ │ │ ├── NodeTypes.php │ │ │ │ │ │ │ ├── PacketMirrorings.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── RegionAutoscalers.php │ │ │ │ │ │ │ ├── RegionBackendServices.php │ │ │ │ │ │ │ ├── RegionCommitments.php │ │ │ │ │ │ │ ├── RegionDiskTypes.php │ │ │ │ │ │ │ ├── RegionDisks.php │ │ │ │ │ │ │ ├── RegionHealthCheckServices.php │ │ │ │ │ │ │ ├── RegionHealthChecks.php │ │ │ │ │ │ │ ├── RegionInstanceGroupManagers.php │ │ │ │ │ │ │ ├── RegionInstanceGroups.php │ │ │ │ │ │ │ ├── RegionNetworkEndpointGroups.php │ │ │ │ │ │ │ ├── RegionNotificationEndpoints.php │ │ │ │ │ │ │ ├── RegionOperations.php │ │ │ │ │ │ │ ├── RegionSslCertificates.php │ │ │ │ │ │ │ ├── RegionTargetHttpProxies.php │ │ │ │ │ │ │ ├── RegionTargetHttpsProxies.php │ │ │ │ │ │ │ ├── RegionUrlMaps.php │ │ │ │ │ │ │ ├── Regions.php │ │ │ │ │ │ │ ├── Reservations.php │ │ │ │ │ │ │ ├── ResourcePolicies.php │ │ │ │ │ │ │ ├── Routers.php │ │ │ │ │ │ │ ├── Routes.php │ │ │ │ │ │ │ ├── SecurityPolicies.php │ │ │ │ │ │ │ ├── Snapshots.php │ │ │ │ │ │ │ ├── SslCertificates.php │ │ │ │ │ │ │ ├── SslPolicies.php │ │ │ │ │ │ │ ├── Subnetworks.php │ │ │ │ │ │ │ ├── TargetGrpcProxies.php │ │ │ │ │ │ │ ├── TargetHttpProxies.php │ │ │ │ │ │ │ ├── TargetHttpsProxies.php │ │ │ │ │ │ │ ├── TargetInstances.php │ │ │ │ │ │ │ ├── TargetPools.php │ │ │ │ │ │ │ ├── TargetSslProxies.php │ │ │ │ │ │ │ ├── TargetTcpProxies.php │ │ │ │ │ │ │ ├── TargetVpnGateways.php │ │ │ │ │ │ │ ├── UrlMaps.php │ │ │ │ │ │ │ ├── VpnGateways.php │ │ │ │ │ │ │ ├── VpnTunnels.php │ │ │ │ │ │ │ ├── ZoneOperations.php │ │ │ │ │ │ │ └── Zones.php │ │ │ │ │ │ ├── ResourceCommitment.php │ │ │ │ │ │ ├── ResourceGroupReference.php │ │ │ │ │ │ ├── ResourcePoliciesScopedList.php │ │ │ │ │ │ ├── ResourcePoliciesScopedListWarning.php │ │ │ │ │ │ ├── ResourcePoliciesScopedListWarningData.php │ │ │ │ │ │ ├── ResourcePolicy.php │ │ │ │ │ │ ├── ResourcePolicyAggregatedList.php │ │ │ │ │ │ ├── ResourcePolicyAggregatedListWarning.php │ │ │ │ │ │ ├── ResourcePolicyAggregatedListWarningData.php │ │ │ │ │ │ ├── ResourcePolicyDailyCycle.php │ │ │ │ │ │ ├── ResourcePolicyGroupPlacementPolicy.php │ │ │ │ │ │ ├── ResourcePolicyHourlyCycle.php │ │ │ │ │ │ ├── ResourcePolicyList.php │ │ │ │ │ │ ├── ResourcePolicyListWarning.php │ │ │ │ │ │ ├── ResourcePolicyListWarningData.php │ │ │ │ │ │ ├── ResourcePolicySnapshotSchedulePolicy.php │ │ │ │ │ │ ├── ResourcePolicySnapshotSchedulePolicyRetentionPolicy.php │ │ │ │ │ │ ├── ResourcePolicySnapshotSchedulePolicySchedule.php │ │ │ │ │ │ ├── ResourcePolicySnapshotSchedulePolicySnapshotProperties.php │ │ │ │ │ │ ├── ResourcePolicyWeeklyCycle.php │ │ │ │ │ │ ├── ResourcePolicyWeeklyCycleDayOfWeek.php │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ ├── RouteList.php │ │ │ │ │ │ ├── RouteListWarning.php │ │ │ │ │ │ ├── RouteListWarningData.php │ │ │ │ │ │ ├── RouteWarnings.php │ │ │ │ │ │ ├── RouteWarningsData.php │ │ │ │ │ │ ├── Router.php │ │ │ │ │ │ ├── RouterAdvertisedIpRange.php │ │ │ │ │ │ ├── RouterAggregatedList.php │ │ │ │ │ │ ├── RouterAggregatedListWarning.php │ │ │ │ │ │ ├── RouterAggregatedListWarningData.php │ │ │ │ │ │ ├── RouterBgp.php │ │ │ │ │ │ ├── RouterBgpPeer.php │ │ │ │ │ │ ├── RouterInterface.php │ │ │ │ │ │ ├── RouterList.php │ │ │ │ │ │ ├── RouterListWarning.php │ │ │ │ │ │ ├── RouterListWarningData.php │ │ │ │ │ │ ├── RouterNat.php │ │ │ │ │ │ ├── RouterNatLogConfig.php │ │ │ │ │ │ ├── RouterNatSubnetworkToNat.php │ │ │ │ │ │ ├── RouterStatus.php │ │ │ │ │ │ ├── RouterStatusBgpPeerStatus.php │ │ │ │ │ │ ├── RouterStatusNatStatus.php │ │ │ │ │ │ ├── RouterStatusResponse.php │ │ │ │ │ │ ├── RoutersPreviewResponse.php │ │ │ │ │ │ ├── RoutersScopedList.php │ │ │ │ │ │ ├── RoutersScopedListWarning.php │ │ │ │ │ │ ├── RoutersScopedListWarningData.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── SSLHealthCheck.php │ │ │ │ │ │ ├── Scheduling.php │ │ │ │ │ │ ├── SchedulingNodeAffinity.php │ │ │ │ │ │ ├── Screenshot.php │ │ │ │ │ │ ├── SecurityPoliciesListPreconfiguredExpressionSetsResponse.php │ │ │ │ │ │ ├── SecurityPoliciesWafConfig.php │ │ │ │ │ │ ├── SecurityPolicy.php │ │ │ │ │ │ ├── SecurityPolicyList.php │ │ │ │ │ │ ├── SecurityPolicyListWarning.php │ │ │ │ │ │ ├── SecurityPolicyListWarningData.php │ │ │ │ │ │ ├── SecurityPolicyReference.php │ │ │ │ │ │ ├── SecurityPolicyRule.php │ │ │ │ │ │ ├── SecurityPolicyRuleMatcher.php │ │ │ │ │ │ ├── SecurityPolicyRuleMatcherConfig.php │ │ │ │ │ │ ├── SecuritySettings.php │ │ │ │ │ │ ├── SerialPortOutput.php │ │ │ │ │ │ ├── ServerBinding.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── ShieldedInstanceConfig.php │ │ │ │ │ │ ├── ShieldedInstanceIdentity.php │ │ │ │ │ │ ├── ShieldedInstanceIdentityEntry.php │ │ │ │ │ │ ├── ShieldedInstanceIntegrityPolicy.php │ │ │ │ │ │ ├── SignedUrlKey.php │ │ │ │ │ │ ├── Snapshot.php │ │ │ │ │ │ ├── SnapshotList.php │ │ │ │ │ │ ├── SnapshotListWarning.php │ │ │ │ │ │ ├── SnapshotListWarningData.php │ │ │ │ │ │ ├── SourceInstanceParams.php │ │ │ │ │ │ ├── SslCertificate.php │ │ │ │ │ │ ├── SslCertificateAggregatedList.php │ │ │ │ │ │ ├── SslCertificateAggregatedListWarning.php │ │ │ │ │ │ ├── SslCertificateAggregatedListWarningData.php │ │ │ │ │ │ ├── SslCertificateList.php │ │ │ │ │ │ ├── SslCertificateListWarning.php │ │ │ │ │ │ ├── SslCertificateListWarningData.php │ │ │ │ │ │ ├── SslCertificateManagedSslCertificate.php │ │ │ │ │ │ ├── SslCertificateSelfManagedSslCertificate.php │ │ │ │ │ │ ├── SslCertificatesScopedList.php │ │ │ │ │ │ ├── SslCertificatesScopedListWarning.php │ │ │ │ │ │ ├── SslCertificatesScopedListWarningData.php │ │ │ │ │ │ ├── SslPoliciesList.php │ │ │ │ │ │ ├── SslPoliciesListAvailableFeaturesResponse.php │ │ │ │ │ │ ├── SslPoliciesListWarning.php │ │ │ │ │ │ ├── SslPoliciesListWarningData.php │ │ │ │ │ │ ├── SslPolicy.php │ │ │ │ │ │ ├── SslPolicyReference.php │ │ │ │ │ │ ├── SslPolicyWarnings.php │ │ │ │ │ │ ├── SslPolicyWarningsData.php │ │ │ │ │ │ ├── StatefulPolicy.php │ │ │ │ │ │ ├── StatefulPolicyPreservedState.php │ │ │ │ │ │ ├── StatefulPolicyPreservedStateDiskDevice.php │ │ │ │ │ │ ├── Subnetwork.php │ │ │ │ │ │ ├── SubnetworkAggregatedList.php │ │ │ │ │ │ ├── SubnetworkAggregatedListWarning.php │ │ │ │ │ │ ├── SubnetworkAggregatedListWarningData.php │ │ │ │ │ │ ├── SubnetworkList.php │ │ │ │ │ │ ├── SubnetworkListWarning.php │ │ │ │ │ │ ├── SubnetworkListWarningData.php │ │ │ │ │ │ ├── SubnetworkLogConfig.php │ │ │ │ │ │ ├── SubnetworkSecondaryRange.php │ │ │ │ │ │ ├── SubnetworksExpandIpCidrRangeRequest.php │ │ │ │ │ │ ├── SubnetworksScopedList.php │ │ │ │ │ │ ├── SubnetworksScopedListWarning.php │ │ │ │ │ │ ├── SubnetworksScopedListWarningData.php │ │ │ │ │ │ ├── SubnetworksSetPrivateIpGoogleAccessRequest.php │ │ │ │ │ │ ├── TCPHealthCheck.php │ │ │ │ │ │ ├── Tags.php │ │ │ │ │ │ ├── TargetGrpcProxy.php │ │ │ │ │ │ ├── TargetGrpcProxyList.php │ │ │ │ │ │ ├── TargetGrpcProxyListWarning.php │ │ │ │ │ │ ├── TargetGrpcProxyListWarningData.php │ │ │ │ │ │ ├── TargetHttpProxiesScopedList.php │ │ │ │ │ │ ├── TargetHttpProxiesScopedListWarning.php │ │ │ │ │ │ ├── TargetHttpProxiesScopedListWarningData.php │ │ │ │ │ │ ├── TargetHttpProxy.php │ │ │ │ │ │ ├── TargetHttpProxyAggregatedList.php │ │ │ │ │ │ ├── TargetHttpProxyList.php │ │ │ │ │ │ ├── TargetHttpProxyListWarning.php │ │ │ │ │ │ ├── TargetHttpProxyListWarningData.php │ │ │ │ │ │ ├── TargetHttpsProxiesScopedList.php │ │ │ │ │ │ ├── TargetHttpsProxiesScopedListWarning.php │ │ │ │ │ │ ├── TargetHttpsProxiesScopedListWarningData.php │ │ │ │ │ │ ├── TargetHttpsProxiesSetQuicOverrideRequest.php │ │ │ │ │ │ ├── TargetHttpsProxiesSetSslCertificatesRequest.php │ │ │ │ │ │ ├── TargetHttpsProxy.php │ │ │ │ │ │ ├── TargetHttpsProxyAggregatedList.php │ │ │ │ │ │ ├── TargetHttpsProxyAggregatedListWarning.php │ │ │ │ │ │ ├── TargetHttpsProxyAggregatedListWarningData.php │ │ │ │ │ │ ├── TargetHttpsProxyList.php │ │ │ │ │ │ ├── TargetHttpsProxyListWarning.php │ │ │ │ │ │ ├── TargetHttpsProxyListWarningData.php │ │ │ │ │ │ ├── TargetInstance.php │ │ │ │ │ │ ├── TargetInstanceAggregatedList.php │ │ │ │ │ │ ├── TargetInstanceAggregatedListWarning.php │ │ │ │ │ │ ├── TargetInstanceAggregatedListWarningData.php │ │ │ │ │ │ ├── TargetInstanceList.php │ │ │ │ │ │ ├── TargetInstanceListWarning.php │ │ │ │ │ │ ├── TargetInstanceListWarningData.php │ │ │ │ │ │ ├── TargetInstancesScopedList.php │ │ │ │ │ │ ├── TargetInstancesScopedListWarning.php │ │ │ │ │ │ ├── TargetInstancesScopedListWarningData.php │ │ │ │ │ │ ├── TargetPool.php │ │ │ │ │ │ ├── TargetPoolAggregatedList.php │ │ │ │ │ │ ├── TargetPoolAggregatedListWarning.php │ │ │ │ │ │ ├── TargetPoolAggregatedListWarningData.php │ │ │ │ │ │ ├── TargetPoolInstanceHealth.php │ │ │ │ │ │ ├── TargetPoolList.php │ │ │ │ │ │ ├── TargetPoolListWarning.php │ │ │ │ │ │ ├── TargetPoolListWarningData.php │ │ │ │ │ │ ├── TargetPoolsAddHealthCheckRequest.php │ │ │ │ │ │ ├── TargetPoolsAddInstanceRequest.php │ │ │ │ │ │ ├── TargetPoolsRemoveHealthCheckRequest.php │ │ │ │ │ │ ├── TargetPoolsRemoveInstanceRequest.php │ │ │ │ │ │ ├── TargetPoolsScopedList.php │ │ │ │ │ │ ├── TargetPoolsScopedListWarning.php │ │ │ │ │ │ ├── TargetPoolsScopedListWarningData.php │ │ │ │ │ │ ├── TargetReference.php │ │ │ │ │ │ ├── TargetSslProxiesSetBackendServiceRequest.php │ │ │ │ │ │ ├── TargetSslProxiesSetProxyHeaderRequest.php │ │ │ │ │ │ ├── TargetSslProxiesSetSslCertificatesRequest.php │ │ │ │ │ │ ├── TargetSslProxy.php │ │ │ │ │ │ ├── TargetSslProxyList.php │ │ │ │ │ │ ├── TargetSslProxyListWarning.php │ │ │ │ │ │ ├── TargetSslProxyListWarningData.php │ │ │ │ │ │ ├── TargetTcpProxiesSetBackendServiceRequest.php │ │ │ │ │ │ ├── TargetTcpProxiesSetProxyHeaderRequest.php │ │ │ │ │ │ ├── TargetTcpProxy.php │ │ │ │ │ │ ├── TargetTcpProxyList.php │ │ │ │ │ │ ├── TargetTcpProxyListWarning.php │ │ │ │ │ │ ├── TargetTcpProxyListWarningData.php │ │ │ │ │ │ ├── TargetVpnGateway.php │ │ │ │ │ │ ├── TargetVpnGatewayAggregatedList.php │ │ │ │ │ │ ├── TargetVpnGatewayAggregatedListWarning.php │ │ │ │ │ │ ├── TargetVpnGatewayAggregatedListWarningData.php │ │ │ │ │ │ ├── TargetVpnGatewayList.php │ │ │ │ │ │ ├── TargetVpnGatewayListWarning.php │ │ │ │ │ │ ├── TargetVpnGatewayListWarningData.php │ │ │ │ │ │ ├── TargetVpnGatewaysScopedList.php │ │ │ │ │ │ ├── TargetVpnGatewaysScopedListWarning.php │ │ │ │ │ │ ├── TargetVpnGatewaysScopedListWarningData.php │ │ │ │ │ │ ├── TestFailure.php │ │ │ │ │ │ ├── TestPermissionsRequest.php │ │ │ │ │ │ ├── TestPermissionsResponse.php │ │ │ │ │ │ ├── UrlMap.php │ │ │ │ │ │ ├── UrlMapList.php │ │ │ │ │ │ ├── UrlMapListWarning.php │ │ │ │ │ │ ├── UrlMapListWarningData.php │ │ │ │ │ │ ├── UrlMapReference.php │ │ │ │ │ │ ├── UrlMapTest.php │ │ │ │ │ │ ├── UrlMapValidationResult.php │ │ │ │ │ │ ├── UrlMapsAggregatedList.php │ │ │ │ │ │ ├── UrlMapsAggregatedListWarning.php │ │ │ │ │ │ ├── UrlMapsAggregatedListWarningData.php │ │ │ │ │ │ ├── UrlMapsScopedList.php │ │ │ │ │ │ ├── UrlMapsScopedListWarning.php │ │ │ │ │ │ ├── UrlMapsScopedListWarningData.php │ │ │ │ │ │ ├── UrlMapsValidateRequest.php │ │ │ │ │ │ ├── UrlMapsValidateResponse.php │ │ │ │ │ │ ├── UrlRewrite.php │ │ │ │ │ │ ├── UsableSubnetwork.php │ │ │ │ │ │ ├── UsableSubnetworkSecondaryRange.php │ │ │ │ │ │ ├── UsableSubnetworksAggregatedList.php │ │ │ │ │ │ ├── UsableSubnetworksAggregatedListWarning.php │ │ │ │ │ │ ├── UsableSubnetworksAggregatedListWarningData.php │ │ │ │ │ │ ├── UsageExportLocation.php │ │ │ │ │ │ ├── VmEndpointNatMappings.php │ │ │ │ │ │ ├── VmEndpointNatMappingsInterfaceNatMappings.php │ │ │ │ │ │ ├── VmEndpointNatMappingsList.php │ │ │ │ │ │ ├── VmEndpointNatMappingsListWarning.php │ │ │ │ │ │ ├── VmEndpointNatMappingsListWarningData.php │ │ │ │ │ │ ├── VpnGateway.php │ │ │ │ │ │ ├── VpnGatewayAggregatedList.php │ │ │ │ │ │ ├── VpnGatewayAggregatedListWarning.php │ │ │ │ │ │ ├── VpnGatewayAggregatedListWarningData.php │ │ │ │ │ │ ├── VpnGatewayList.php │ │ │ │ │ │ ├── VpnGatewayListWarning.php │ │ │ │ │ │ ├── VpnGatewayListWarningData.php │ │ │ │ │ │ ├── VpnGatewayStatus.php │ │ │ │ │ │ ├── VpnGatewayStatusHighAvailabilityRequirementState.php │ │ │ │ │ │ ├── VpnGatewayStatusTunnel.php │ │ │ │ │ │ ├── VpnGatewayStatusVpnConnection.php │ │ │ │ │ │ ├── VpnGatewayVpnGatewayInterface.php │ │ │ │ │ │ ├── VpnGatewaysGetStatusResponse.php │ │ │ │ │ │ ├── VpnGatewaysScopedList.php │ │ │ │ │ │ ├── VpnGatewaysScopedListWarning.php │ │ │ │ │ │ ├── VpnGatewaysScopedListWarningData.php │ │ │ │ │ │ ├── VpnTunnel.php │ │ │ │ │ │ ├── VpnTunnelAggregatedList.php │ │ │ │ │ │ ├── VpnTunnelAggregatedListWarning.php │ │ │ │ │ │ ├── VpnTunnelAggregatedListWarningData.php │ │ │ │ │ │ ├── VpnTunnelList.php │ │ │ │ │ │ ├── VpnTunnelListWarning.php │ │ │ │ │ │ ├── VpnTunnelListWarningData.php │ │ │ │ │ │ ├── VpnTunnelsScopedList.php │ │ │ │ │ │ ├── VpnTunnelsScopedListWarning.php │ │ │ │ │ │ ├── VpnTunnelsScopedListWarningData.php │ │ │ │ │ │ ├── WafExpressionSet.php │ │ │ │ │ │ ├── WafExpressionSetExpression.php │ │ │ │ │ │ ├── WeightedBackendService.php │ │ │ │ │ │ ├── XpnHostList.php │ │ │ │ │ │ ├── XpnHostListWarning.php │ │ │ │ │ │ ├── XpnHostListWarningData.php │ │ │ │ │ │ ├── XpnResourceId.php │ │ │ │ │ │ ├── Zone.php │ │ │ │ │ │ ├── ZoneList.php │ │ │ │ │ │ ├── ZoneListWarning.php │ │ │ │ │ │ ├── ZoneListWarningData.php │ │ │ │ │ │ ├── ZoneSetLabelsRequest.php │ │ │ │ │ │ └── ZoneSetPolicyRequest.php │ │ │ │ │ │ ├── ConsumerSurveys.php │ │ │ │ │ │ ├── ConsumerSurveys │ │ │ │ │ │ ├── FieldMask.php │ │ │ │ │ │ ├── MobileAppPanel.php │ │ │ │ │ │ ├── MobileAppPanelsListResponse.php │ │ │ │ │ │ ├── PageInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Mobileapppanels.php │ │ │ │ │ │ │ ├── Results.php │ │ │ │ │ │ │ └── Surveys.php │ │ │ │ │ │ ├── ResultsGetRequest.php │ │ │ │ │ │ ├── ResultsMask.php │ │ │ │ │ │ ├── Survey.php │ │ │ │ │ │ ├── SurveyAudience.php │ │ │ │ │ │ ├── SurveyCost.php │ │ │ │ │ │ ├── SurveyQuestion.php │ │ │ │ │ │ ├── SurveyQuestionImage.php │ │ │ │ │ │ ├── SurveyRejection.php │ │ │ │ │ │ ├── SurveyResults.php │ │ │ │ │ │ ├── SurveysDeleteResponse.php │ │ │ │ │ │ ├── SurveysListResponse.php │ │ │ │ │ │ ├── SurveysStartRequest.php │ │ │ │ │ │ ├── SurveysStartResponse.php │ │ │ │ │ │ ├── SurveysStopResponse.php │ │ │ │ │ │ └── TokenPagination.php │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── AcceleratorConfig.php │ │ │ │ │ │ ├── AddonsConfig.php │ │ │ │ │ │ ├── AuthenticatorGroupsConfig.php │ │ │ │ │ │ ├── AutoUpgradeOptions.php │ │ │ │ │ │ ├── AutoprovisioningNodePoolDefaults.php │ │ │ │ │ │ ├── BigQueryDestination.php │ │ │ │ │ │ ├── BinaryAuthorization.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CidrBlock.php │ │ │ │ │ │ ├── ClientCertificateConfig.php │ │ │ │ │ │ ├── CloudRunConfig.php │ │ │ │ │ │ ├── Cluster.php │ │ │ │ │ │ ├── ClusterAutoscaling.php │ │ │ │ │ │ ├── ClusterUpdate.php │ │ │ │ │ │ ├── CompleteIPRotationRequest.php │ │ │ │ │ │ ├── ConfigConnectorConfig.php │ │ │ │ │ │ ├── ConsumptionMeteringConfig.php │ │ │ │ │ │ ├── ContainerEmpty.php │ │ │ │ │ │ ├── CreateClusterRequest.php │ │ │ │ │ │ ├── CreateNodePoolRequest.php │ │ │ │ │ │ ├── DailyMaintenanceWindow.php │ │ │ │ │ │ ├── DatabaseEncryption.php │ │ │ │ │ │ ├── DefaultSnatStatus.php │ │ │ │ │ │ ├── DnsCacheConfig.php │ │ │ │ │ │ ├── GetJSONWebKeysResponse.php │ │ │ │ │ │ ├── GetOpenIDConfigResponse.php │ │ │ │ │ │ ├── HorizontalPodAutoscaling.php │ │ │ │ │ │ ├── HttpCacheControlResponseHeader.php │ │ │ │ │ │ ├── HttpLoadBalancing.php │ │ │ │ │ │ ├── IPAllocationPolicy.php │ │ │ │ │ │ ├── IntraNodeVisibilityConfig.php │ │ │ │ │ │ ├── Jwk.php │ │ │ │ │ │ ├── KubernetesDashboard.php │ │ │ │ │ │ ├── LegacyAbac.php │ │ │ │ │ │ ├── ListClustersResponse.php │ │ │ │ │ │ ├── ListNodePoolsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListUsableSubnetworksResponse.php │ │ │ │ │ │ ├── MaintenancePolicy.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── MasterAuth.php │ │ │ │ │ │ ├── MasterAuthorizedNetworksConfig.php │ │ │ │ │ │ ├── MaxPodsConstraint.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── NetworkConfig.php │ │ │ │ │ │ ├── NetworkPolicy.php │ │ │ │ │ │ ├── NetworkPolicyConfig.php │ │ │ │ │ │ ├── NodeConfig.php │ │ │ │ │ │ ├── NodeManagement.php │ │ │ │ │ │ ├── NodePool.php │ │ │ │ │ │ ├── NodePoolAutoscaling.php │ │ │ │ │ │ ├── NodeTaint.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationProgress.php │ │ │ │ │ │ ├── PrivateClusterConfig.php │ │ │ │ │ │ ├── PrivateClusterMasterGlobalAccessConfig.php │ │ │ │ │ │ ├── RecurringTimeWindow.php │ │ │ │ │ │ ├── ReleaseChannel.php │ │ │ │ │ │ ├── ReleaseChannelConfig.php │ │ │ │ │ │ ├── ReservationAffinity.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAggregated.php │ │ │ │ │ │ │ ├── ProjectsAggregatedUsableSubnetworks.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsClusters.php │ │ │ │ │ │ │ ├── ProjectsLocationsClustersNodePools.php │ │ │ │ │ │ │ ├── ProjectsLocationsClustersWellKnown.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsZones.php │ │ │ │ │ │ │ ├── ProjectsZonesClusters.php │ │ │ │ │ │ │ ├── ProjectsZonesClustersNodePools.php │ │ │ │ │ │ │ └── ProjectsZonesOperations.php │ │ │ │ │ │ ├── ResourceLimit.php │ │ │ │ │ │ ├── ResourceUsageExportConfig.php │ │ │ │ │ │ ├── RollbackNodePoolUpgradeRequest.php │ │ │ │ │ │ ├── SandboxConfig.php │ │ │ │ │ │ ├── ServerConfig.php │ │ │ │ │ │ ├── SetAddonsConfigRequest.php │ │ │ │ │ │ ├── SetLabelsRequest.php │ │ │ │ │ │ ├── SetLegacyAbacRequest.php │ │ │ │ │ │ ├── SetLocationsRequest.php │ │ │ │ │ │ ├── SetLoggingServiceRequest.php │ │ │ │ │ │ ├── SetMaintenancePolicyRequest.php │ │ │ │ │ │ ├── SetMasterAuthRequest.php │ │ │ │ │ │ ├── SetMonitoringServiceRequest.php │ │ │ │ │ │ ├── SetNetworkPolicyRequest.php │ │ │ │ │ │ ├── SetNodePoolAutoscalingRequest.php │ │ │ │ │ │ ├── SetNodePoolManagementRequest.php │ │ │ │ │ │ ├── SetNodePoolSizeRequest.php │ │ │ │ │ │ ├── ShieldedInstanceConfig.php │ │ │ │ │ │ ├── ShieldedNodes.php │ │ │ │ │ │ ├── StartIPRotationRequest.php │ │ │ │ │ │ ├── StatusCondition.php │ │ │ │ │ │ ├── TimeWindow.php │ │ │ │ │ │ ├── UpdateClusterRequest.php │ │ │ │ │ │ ├── UpdateMasterRequest.php │ │ │ │ │ │ ├── UpdateNodePoolRequest.php │ │ │ │ │ │ ├── UpgradeEvent.php │ │ │ │ │ │ ├── UpgradeSettings.php │ │ │ │ │ │ ├── UsableSubnetwork.php │ │ │ │ │ │ ├── UsableSubnetworkSecondaryRange.php │ │ │ │ │ │ ├── VerticalPodAutoscaling.php │ │ │ │ │ │ ├── WorkloadIdentityConfig.php │ │ │ │ │ │ └── WorkloadMetadataConfig.php │ │ │ │ │ │ ├── ContainerAnalysis.php │ │ │ │ │ │ ├── ContainerAnalysis │ │ │ │ │ │ ├── AliasContext.php │ │ │ │ │ │ ├── Artifact.php │ │ │ │ │ │ ├── ArtifactHashes.php │ │ │ │ │ │ ├── ArtifactRule.php │ │ │ │ │ │ ├── Attestation.php │ │ │ │ │ │ ├── Authority.php │ │ │ │ │ │ ├── Basis.php │ │ │ │ │ │ ├── BatchCreateNotesRequest.php │ │ │ │ │ │ ├── BatchCreateNotesResponse.php │ │ │ │ │ │ ├── BatchCreateOccurrencesRequest.php │ │ │ │ │ │ ├── BatchCreateOccurrencesResponse.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Build.php │ │ │ │ │ │ ├── BuildProvenance.php │ │ │ │ │ │ ├── BuildSignature.php │ │ │ │ │ │ ├── ByProducts.php │ │ │ │ │ │ ├── CVSSv3.php │ │ │ │ │ │ ├── CloudRepoSourceContext.php │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── ContaineranalysisEmpty.php │ │ │ │ │ │ ├── ContaineranalysisResource.php │ │ │ │ │ │ ├── Deployable.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── Derived.php │ │ │ │ │ │ ├── Detail.php │ │ │ │ │ │ ├── Details.php │ │ │ │ │ │ ├── Discovered.php │ │ │ │ │ │ ├── Discovery.php │ │ │ │ │ │ ├── Distribution.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FileHashes.php │ │ │ │ │ │ ├── Fingerprint.php │ │ │ │ │ │ ├── FixableTotalByDigest.php │ │ │ │ │ │ ├── GenericSignedAttestation.php │ │ │ │ │ │ ├── GerritSourceContext.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── GitSourceContext.php │ │ │ │ │ │ ├── GoogleDevtoolsContaineranalysisV1alpha1OperationMetadata.php │ │ │ │ │ │ ├── GrafeasV1beta1BuildDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1DeploymentDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1DiscoveryDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1ImageDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1IntotoArtifact.php │ │ │ │ │ │ ├── GrafeasV1beta1IntotoDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1IntotoSignature.php │ │ │ │ │ │ ├── GrafeasV1beta1PackageDetails.php │ │ │ │ │ │ ├── GrafeasV1beta1VulnerabilityDetails.php │ │ │ │ │ │ ├── Hash.php │ │ │ │ │ │ ├── Hint.php │ │ │ │ │ │ ├── InToto.php │ │ │ │ │ │ ├── Installation.php │ │ │ │ │ │ ├── KnowledgeBase.php │ │ │ │ │ │ ├── Layer.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── ListNoteOccurrencesResponse.php │ │ │ │ │ │ ├── ListNotesResponse.php │ │ │ │ │ │ ├── ListOccurrencesResponse.php │ │ │ │ │ │ ├── ListScanConfigsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Note.php │ │ │ │ │ │ ├── Occurrence.php │ │ │ │ │ │ ├── Package.php │ │ │ │ │ │ ├── PackageIssue.php │ │ │ │ │ │ ├── PgpSignedAttestation.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ProjectRepoId.php │ │ │ │ │ │ ├── RelatedUrl.php │ │ │ │ │ │ ├── RepoId.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsNotes.php │ │ │ │ │ │ │ ├── ProjectsNotesOccurrences.php │ │ │ │ │ │ │ ├── ProjectsOccurrences.php │ │ │ │ │ │ │ └── ProjectsScanConfigs.php │ │ │ │ │ │ ├── ScanConfig.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Signature.php │ │ │ │ │ │ ├── SigningKey.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Version.php │ │ │ │ │ │ ├── Vulnerability.php │ │ │ │ │ │ ├── VulnerabilityLocation.php │ │ │ │ │ │ ├── VulnerabilityOccurrencesSummary.php │ │ │ │ │ │ └── WindowsDetail.php │ │ │ │ │ │ ├── Coordinate.php │ │ │ │ │ │ ├── Coordinate │ │ │ │ │ │ ├── CustomField.php │ │ │ │ │ │ ├── CustomFieldDef.php │ │ │ │ │ │ ├── CustomFieldDefListResponse.php │ │ │ │ │ │ ├── CustomFields.php │ │ │ │ │ │ ├── EnumItemDef.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobChange.php │ │ │ │ │ │ ├── JobListResponse.php │ │ │ │ │ │ ├── JobState.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationListResponse.php │ │ │ │ │ │ ├── LocationRecord.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── CustomFieldDef.php │ │ │ │ │ │ │ ├── Jobs.php │ │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ │ ├── Team.php │ │ │ │ │ │ │ └── Worker.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── Team.php │ │ │ │ │ │ ├── TeamListResponse.php │ │ │ │ │ │ ├── TokenPagination.php │ │ │ │ │ │ ├── Worker.php │ │ │ │ │ │ └── WorkerListResponse.php │ │ │ │ │ │ ├── CustomSearchAPI.php │ │ │ │ │ │ ├── CustomSearchAPI │ │ │ │ │ │ ├── Promotion.php │ │ │ │ │ │ ├── PromotionBodyLines.php │ │ │ │ │ │ ├── PromotionImage.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Cse.php │ │ │ │ │ │ │ └── CseSiterestrict.php │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ ├── ResultImage.php │ │ │ │ │ │ ├── ResultLabels.php │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ ├── SearchQueries.php │ │ │ │ │ │ ├── SearchQueriesNextPage.php │ │ │ │ │ │ ├── SearchQueriesPreviousPage.php │ │ │ │ │ │ ├── SearchQueriesRequest.php │ │ │ │ │ │ ├── SearchSearchInformation.php │ │ │ │ │ │ ├── SearchSpelling.php │ │ │ │ │ │ └── SearchUrl.php │ │ │ │ │ │ ├── Customsearch.php │ │ │ │ │ │ ├── Customsearch │ │ │ │ │ │ ├── Promotion.php │ │ │ │ │ │ ├── PromotionBodyLines.php │ │ │ │ │ │ ├── PromotionImage.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Cse.php │ │ │ │ │ │ │ └── CseSiterestrict.php │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ ├── ResultImage.php │ │ │ │ │ │ ├── ResultLabels.php │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ ├── SearchQueries.php │ │ │ │ │ │ ├── SearchQueriesNextPage.php │ │ │ │ │ │ ├── SearchQueriesPreviousPage.php │ │ │ │ │ │ ├── SearchQueriesRequest.php │ │ │ │ │ │ ├── SearchSearchInformation.php │ │ │ │ │ │ ├── SearchSpelling.php │ │ │ │ │ │ └── SearchUrl.php │ │ │ │ │ │ ├── DLP.php │ │ │ │ │ │ ├── DLP │ │ │ │ │ │ ├── GooglePrivacyDlpV2Action.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ActivateJobTriggerRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2AuxiliaryTable.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BigQueryField.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BigQueryKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BigQueryOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BigQueryTable.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BoundingBox.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Bucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2BucketingConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ByteContentItem.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CancelDlpJobRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CategoricalStatsConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CategoricalStatsHistogramBucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CategoricalStatsResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CharacterMaskConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CharsToIgnore.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CloudStorageFileSet.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CloudStorageOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CloudStoragePath.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CloudStorageRegexFileSet.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Color.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Condition.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Conditions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Container.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ContentItem.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ContentLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CreateDlpJobRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CreateInspectTemplateRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CreateJobTriggerRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CreateStoredInfoTypeRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CryptoDeterministicConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CryptoHashConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CryptoKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2CustomInfoType.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DatastoreKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DatastoreOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DateShiftConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DateTime.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeidentifyConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeidentifyContentRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeidentifyContentResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeidentifyTemplate.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeltaPresenceEstimationConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DeltaPresenceEstimationResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DetectionRule.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Dictionary.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DlpJob.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2DocumentLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2EntityId.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Error.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ExcludeInfoTypes.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ExclusionRule.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Expressions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FieldId.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FieldTransformation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FileSet.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Finding.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FindingLimits.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FinishDlpJobRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2FixedSizeBucketingConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HotwordRule.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridContentItem.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridFindingDetails.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridInspectDlpJobRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridInspectJobTriggerRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridInspectResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridInspectStatistics.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2HybridOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ImageLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ImageRedactionConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoType.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoTypeDescription.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoTypeLimit.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoTypeStats.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoTypeTransformation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InfoTypeTransformations.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectContentRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectContentResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectDataSourceDetails.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectJobConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectTemplate.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectionRule.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2InspectionRuleSet.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2JobNotificationEmails.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2JobTrigger.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KAnonymityConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KAnonymityEquivalenceClass.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KAnonymityHistogramBucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KAnonymityResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KMapEstimationConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KMapEstimationHistogramBucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KMapEstimationQuasiIdValues.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KMapEstimationResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Key.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KindExpression.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2KmsWrappedCryptoKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LDiversityConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LDiversityEquivalenceClass.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LDiversityHistogramBucket.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LDiversityResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LargeCustomDictionaryConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LargeCustomDictionaryStats.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LeaveUntransformed.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2LikelihoodAdjustment.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListDlpJobsResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListInfoTypesResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListInspectTemplatesResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListJobTriggersResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ListStoredInfoTypesResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Location.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Manual.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2MetadataLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2NumericalStatsConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2NumericalStatsResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2OutputStorageConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PartitionId.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PathElement.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PrimitiveTransformation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PrivacyMetric.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Proximity.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PublishSummaryToCscc.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PublishToPubSub.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2PublishToStackdriver.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2QuasiId.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2QuasiIdField.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2QuasiIdentifierField.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2QuoteInfo.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Range.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RecordCondition.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RecordKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RecordLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RecordSuppression.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RecordTransformations.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RedactConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RedactImageRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RedactImageResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Regex.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ReidentifyContentRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ReidentifyContentResponse.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ReplaceValueConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ReplaceWithInfoTypeConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RequestedOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RequestedRiskAnalysisOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Result.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2RiskAnalysisJobConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Row.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2SaveFindings.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Schedule.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StatisticalTable.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StorageConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StorageMetadataLabel.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StoredInfoType.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StoredInfoTypeConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StoredInfoTypeStats.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StoredInfoTypeVersion.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2StoredType.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2SummaryResult.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2SurrogateType.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Table.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TableLocation.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TableOptions.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TaggedField.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ThrowError.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TimePartConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TimeZone.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TimespanConfig.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TransformationErrorHandling.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TransformationOverview.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TransformationSummary.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2TransientCryptoKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Trigger.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2UnwrappedCryptoKey.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2UpdateInspectTemplateRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2UpdateJobTriggerRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2Value.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2ValueFrequency.php │ │ │ │ │ │ ├── GooglePrivacyDlpV2WordList.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeDate.php │ │ │ │ │ │ ├── GoogleTypeTimeOfDay.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── InfoTypes.php │ │ │ │ │ │ │ ├── Locations.php │ │ │ │ │ │ │ ├── LocationsInfoTypes.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsDeidentifyTemplates.php │ │ │ │ │ │ │ ├── OrganizationsInspectTemplates.php │ │ │ │ │ │ │ ├── OrganizationsLocations.php │ │ │ │ │ │ │ ├── OrganizationsLocationsDeidentifyTemplates.php │ │ │ │ │ │ │ ├── OrganizationsLocationsInspectTemplates.php │ │ │ │ │ │ │ ├── OrganizationsLocationsStoredInfoTypes.php │ │ │ │ │ │ │ ├── OrganizationsStoredInfoTypes.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsContent.php │ │ │ │ │ │ │ ├── ProjectsDeidentifyTemplates.php │ │ │ │ │ │ │ ├── ProjectsDlpJobs.php │ │ │ │ │ │ │ ├── ProjectsImage.php │ │ │ │ │ │ │ ├── ProjectsInspectTemplates.php │ │ │ │ │ │ │ ├── ProjectsJobTriggers.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsContent.php │ │ │ │ │ │ │ ├── ProjectsLocationsDeidentifyTemplates.php │ │ │ │ │ │ │ ├── ProjectsLocationsDlpJobs.php │ │ │ │ │ │ │ ├── ProjectsLocationsImage.php │ │ │ │ │ │ │ ├── ProjectsLocationsInspectTemplates.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobTriggers.php │ │ │ │ │ │ │ ├── ProjectsLocationsStoredInfoTypes.php │ │ │ │ │ │ │ └── ProjectsStoredInfoTypes.php │ │ │ │ │ │ ├── DataCatalog.php │ │ │ │ │ │ ├── DataCatalog │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── DatacatalogEmpty.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1BigQueryTableSpec.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ColumnSchema.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1Entry.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1EntryGroup.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ExportTaxonomiesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1FieldType.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1FieldTypeEnumType.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1GcsFileSpec.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1GcsFilesetSpec.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ImportTaxonomiesRequest.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ImportTaxonomiesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1InlineSource.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ListEntriesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ListTagsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1PolicyTag.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldEnumValueRequest.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1RenameTagTemplateFieldRequest.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1Schema.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SearchCatalogRequest.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SearchCatalogResponse.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SearchCatalogResult.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SerializedPolicyTag.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SerializedTaxonomy.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1SystemTimestamps.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1TableSpec.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1Tag.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1TagField.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1TagFieldEnumValue.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1TagTemplate.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1TagTemplateField.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1Taxonomy.php │ │ │ │ │ │ ├── GoogleCloudDatacatalogV1beta1ViewSpec.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Catalog.php │ │ │ │ │ │ │ ├── Entries.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsEntryGroups.php │ │ │ │ │ │ │ ├── ProjectsLocationsEntryGroupsEntries.php │ │ │ │ │ │ │ ├── ProjectsLocationsEntryGroupsEntriesTags.php │ │ │ │ │ │ │ ├── ProjectsLocationsEntryGroupsTags.php │ │ │ │ │ │ │ ├── ProjectsLocationsTagTemplates.php │ │ │ │ │ │ │ ├── ProjectsLocationsTagTemplatesFields.php │ │ │ │ │ │ │ ├── ProjectsLocationsTagTemplatesFieldsEnumValues.php │ │ │ │ │ │ │ ├── ProjectsLocationsTaxonomies.php │ │ │ │ │ │ │ └── ProjectsLocationsTaxonomiesPolicyTags.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── DataFusion.php │ │ │ │ │ │ ├── DataFusion │ │ │ │ │ │ ├── Accelerator.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── DatafusionEmpty.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── ListAvailableVersionsResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── NetworkConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsInstances.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsVersions.php │ │ │ │ │ │ ├── RestartInstanceRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ └── Version.php │ │ │ │ │ │ ├── DataLabeling.php │ │ │ │ │ │ ├── DataLabeling │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1ExportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1GcsFolderDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1HumanAnnotationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1ImportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1ImportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImageBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImageBoundingPolyOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImageClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImageOrientedBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImagePolylineOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelImageSegmentationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelStats.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelTextClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelTextEntityExtractionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelVideoClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelVideoEventOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelVideoObjectDetectionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1LabelVideoObjectTrackingOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1alpha1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotatedDataset.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotatedDatasetMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Annotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotationSpec.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotationSpecSet.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotationSpecSetConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1AnnotationValue.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Attempt.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1BigQuerySource.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1BoundingBoxEvaluationOptions.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1BoundingPolyConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ClassificationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ClassificationMetrics.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ConfidenceMetricsEntry.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ConfusionMatrix.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ConfusionMatrixEntry.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CreateAnnotationSpecSetRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CreateDatasetRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CreateEvaluationJobRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CreateInstructionMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CreateInstructionRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1CsvInstruction.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1DataItem.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Dataset.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Evaluation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EvaluationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EvaluationJob.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EvaluationJobAlertConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EvaluationJobConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EvaluationMetrics.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1EventConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Example.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ExampleComparison.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ExportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ExportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ExportDataRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1FeedbackMessage.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1FeedbackThread.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1FeedbackThreadMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1GcsFolderDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1HumanAnnotationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImageBoundingPolyAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImageClassificationAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImageClassificationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImagePayload.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImagePolylineAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImageSegmentationAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ImportDataRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Instruction.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageBoundingPolyOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageOrientedBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImagePolylineOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelImageSegmentationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelStats.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelTextClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelTextEntityExtractionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelTextRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelVideoClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelVideoEventOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelVideoObjectDetectionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelVideoObjectTrackingOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1LabelVideoRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListAnnotatedDatasetsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListAnnotationSpecSetsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListDataItemsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListDatasetsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListEvaluationJobsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListExamplesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListFeedbackMessagesResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListFeedbackThreadsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ListInstructionsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1NormalizedBoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1NormalizedPolyline.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ObjectDetectionConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ObjectDetectionMetrics.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ObjectTrackingConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ObjectTrackingFrame.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1OperatorFeedbackMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1OperatorMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1PauseEvaluationJobRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1PdfInstruction.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Polyline.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1PolylineConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1PrCurve.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1RequesterFeedbackMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1ResumeEvaluationJobRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Row.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SearchEvaluationsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SearchExampleComparisonsRequest.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SearchExampleComparisonsResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SegmentationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SentimentConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1SequentialSegment.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextClassificationAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextClassificationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextEntityExtractionAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextEntityExtractionConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TextPayload.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1TimeSegment.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoClassificationAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoClassificationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoEventAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoObjectTrackingAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoPayload.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1beta1VideoThumbnail.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1CreateInstructionMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1ExportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1GcsFolderDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1GenerateAnalysisReportOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1HumanAnnotationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1ImportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1ImportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImageBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImageBoundingPolyOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImageClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImageOrientedBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImagePolylineOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelImageSegmentationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelStats.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelTextClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelTextEntityExtractionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelVideoClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelVideoEventOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelVideoObjectDetectionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1LabelVideoObjectTrackingOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p1alpha1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1CreateInstructionMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1ExportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1ExportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1GcsFolderDestination.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1HumanAnnotationConfig.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1ImportDataOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1ImportDataOperationResponse.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImageBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImageBoundingPolyOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImageClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImageOrientedBoundingBoxOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImagePolylineOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelImageSegmentationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelStats.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelTextClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelTextEntityExtractionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelVideoClassificationOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelVideoEventOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelVideoObjectDetectionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1LabelVideoObjectTrackingOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDatalabelingV1p2alpha1OutputConfig.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAnnotationSpecSets.php │ │ │ │ │ │ │ ├── ProjectsDatasets.php │ │ │ │ │ │ │ ├── ProjectsDatasetsAnnotatedDatasets.php │ │ │ │ │ │ │ ├── ProjectsDatasetsAnnotatedDatasetsDataItems.php │ │ │ │ │ │ │ ├── ProjectsDatasetsAnnotatedDatasetsExamples.php │ │ │ │ │ │ │ ├── ProjectsDatasetsAnnotatedDatasetsFeedbackThreads.php │ │ │ │ │ │ │ ├── ProjectsDatasetsAnnotatedDatasetsFeedbackThreadsFeedbackMessages.php │ │ │ │ │ │ │ ├── ProjectsDatasetsDataItems.php │ │ │ │ │ │ │ ├── ProjectsDatasetsEvaluations.php │ │ │ │ │ │ │ ├── ProjectsDatasetsEvaluationsExampleComparisons.php │ │ │ │ │ │ │ ├── ProjectsDatasetsImage.php │ │ │ │ │ │ │ ├── ProjectsDatasetsText.php │ │ │ │ │ │ │ ├── ProjectsDatasetsVideo.php │ │ │ │ │ │ │ ├── ProjectsEvaluationJobs.php │ │ │ │ │ │ │ ├── ProjectsEvaluations.php │ │ │ │ │ │ │ ├── ProjectsInstructions.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── DataTransfer.php │ │ │ │ │ │ ├── DataTransfer │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── ApplicationDataTransfer.php │ │ │ │ │ │ ├── ApplicationTransferParam.php │ │ │ │ │ │ ├── ApplicationsListResponse.php │ │ │ │ │ │ ├── DataTransfer.php │ │ │ │ │ │ ├── DataTransfersListResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Applications.php │ │ │ │ │ │ │ └── Transfers.php │ │ │ │ │ │ ├── Dataflow.php │ │ │ │ │ │ ├── Dataflow │ │ │ │ │ │ ├── ApproximateProgress.php │ │ │ │ │ │ ├── ApproximateReportedProgress.php │ │ │ │ │ │ ├── ApproximateSplitRequest.php │ │ │ │ │ │ ├── Artifact.php │ │ │ │ │ │ ├── AutoscalingEvent.php │ │ │ │ │ │ ├── AutoscalingSettings.php │ │ │ │ │ │ ├── BigQueryIODetails.php │ │ │ │ │ │ ├── BigTableIODetails.php │ │ │ │ │ │ ├── CPUTime.php │ │ │ │ │ │ ├── CommitTemplateVersionRequest.php │ │ │ │ │ │ ├── ComponentSource.php │ │ │ │ │ │ ├── ComponentTransform.php │ │ │ │ │ │ ├── ComputationTopology.php │ │ │ │ │ │ ├── ConcatPosition.php │ │ │ │ │ │ ├── ContainerSpec.php │ │ │ │ │ │ ├── CounterMetadata.php │ │ │ │ │ │ ├── CounterStructuredName.php │ │ │ │ │ │ ├── CounterStructuredNameAndMetadata.php │ │ │ │ │ │ ├── CounterUpdate.php │ │ │ │ │ │ ├── CreateJobFromTemplateRequest.php │ │ │ │ │ │ ├── CreateTemplateVersionRequest.php │ │ │ │ │ │ ├── CustomSourceLocation.php │ │ │ │ │ │ ├── DataDiskAssignment.php │ │ │ │ │ │ ├── DataflowEmpty.php │ │ │ │ │ │ ├── DatastoreIODetails.php │ │ │ │ │ │ ├── DeleteSnapshotResponse.php │ │ │ │ │ │ ├── DerivedSource.php │ │ │ │ │ │ ├── Disk.php │ │ │ │ │ │ ├── DisplayData.php │ │ │ │ │ │ ├── DistributionUpdate.php │ │ │ │ │ │ ├── DynamicSourceSplit.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── ExecutionStageState.php │ │ │ │ │ │ ├── ExecutionStageSummary.php │ │ │ │ │ │ ├── FailedLocation.php │ │ │ │ │ │ ├── FileIODetails.php │ │ │ │ │ │ ├── FlattenInstruction.php │ │ │ │ │ │ ├── FlexTemplateRuntimeEnvironment.php │ │ │ │ │ │ ├── FloatingPointList.php │ │ │ │ │ │ ├── FloatingPointMean.php │ │ │ │ │ │ ├── GetDebugConfigRequest.php │ │ │ │ │ │ ├── GetDebugConfigResponse.php │ │ │ │ │ │ ├── GetTemplateResponse.php │ │ │ │ │ │ ├── Histogram.php │ │ │ │ │ │ ├── HotKeyDetection.php │ │ │ │ │ │ ├── InstructionInput.php │ │ │ │ │ │ ├── InstructionOutput.php │ │ │ │ │ │ ├── IntegerGauge.php │ │ │ │ │ │ ├── IntegerList.php │ │ │ │ │ │ ├── IntegerMean.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobExecutionDetails.php │ │ │ │ │ │ ├── JobExecutionInfo.php │ │ │ │ │ │ ├── JobExecutionStageInfo.php │ │ │ │ │ │ ├── JobMessage.php │ │ │ │ │ │ ├── JobMetadata.php │ │ │ │ │ │ ├── JobMetrics.php │ │ │ │ │ │ ├── KeyRangeDataDiskAssignment.php │ │ │ │ │ │ ├── KeyRangeLocation.php │ │ │ │ │ │ ├── LaunchFlexTemplateParameter.php │ │ │ │ │ │ ├── LaunchFlexTemplateRequest.php │ │ │ │ │ │ ├── LaunchFlexTemplateResponse.php │ │ │ │ │ │ ├── LaunchTemplateParameters.php │ │ │ │ │ │ ├── LaunchTemplateResponse.php │ │ │ │ │ │ ├── LeaseWorkItemRequest.php │ │ │ │ │ │ ├── LeaseWorkItemResponse.php │ │ │ │ │ │ ├── ListJobMessagesResponse.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── ListSnapshotsResponse.php │ │ │ │ │ │ ├── ListTemplateVersionsResponse.php │ │ │ │ │ │ ├── MapTask.php │ │ │ │ │ │ ├── MemInfo.php │ │ │ │ │ │ ├── MetricShortId.php │ │ │ │ │ │ ├── MetricStructuredName.php │ │ │ │ │ │ ├── MetricUpdate.php │ │ │ │ │ │ ├── ModifyTemplateVersionLabelRequest.php │ │ │ │ │ │ ├── ModifyTemplateVersionLabelResponse.php │ │ │ │ │ │ ├── ModifyTemplateVersionTagRequest.php │ │ │ │ │ │ ├── ModifyTemplateVersionTagResponse.php │ │ │ │ │ │ ├── MountedDataDisk.php │ │ │ │ │ │ ├── MultiOutputInfo.php │ │ │ │ │ │ ├── NameAndKind.php │ │ │ │ │ │ ├── Package.php │ │ │ │ │ │ ├── ParDoInstruction.php │ │ │ │ │ │ ├── ParallelInstruction.php │ │ │ │ │ │ ├── Parameter.php │ │ │ │ │ │ ├── ParameterMetadata.php │ │ │ │ │ │ ├── PartialGroupByKeyInstruction.php │ │ │ │ │ │ ├── PipelineDescription.php │ │ │ │ │ │ ├── Point.php │ │ │ │ │ │ ├── Position.php │ │ │ │ │ │ ├── ProgressTimeseries.php │ │ │ │ │ │ ├── PubSubIODetails.php │ │ │ │ │ │ ├── PubsubLocation.php │ │ │ │ │ │ ├── PubsubSnapshotMetadata.php │ │ │ │ │ │ ├── QueryInfo.php │ │ │ │ │ │ ├── ReadInstruction.php │ │ │ │ │ │ ├── ReportWorkItemStatusRequest.php │ │ │ │ │ │ ├── ReportWorkItemStatusResponse.php │ │ │ │ │ │ ├── ReportedParallelism.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsCatalogTemplates.php │ │ │ │ │ │ │ ├── ProjectsCatalogTemplatesTemplateVersions.php │ │ │ │ │ │ │ ├── ProjectsJobs.php │ │ │ │ │ │ │ ├── ProjectsJobsDebug.php │ │ │ │ │ │ │ ├── ProjectsJobsMessages.php │ │ │ │ │ │ │ ├── ProjectsJobsWorkItems.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsFlexTemplates.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobs.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobsDebug.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobsMessages.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobsSnapshots.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobsStages.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobsWorkItems.php │ │ │ │ │ │ │ ├── ProjectsLocationsSnapshots.php │ │ │ │ │ │ │ ├── ProjectsLocationsSql.php │ │ │ │ │ │ │ ├── ProjectsLocationsTemplates.php │ │ │ │ │ │ │ ├── ProjectsSnapshots.php │ │ │ │ │ │ │ ├── ProjectsTemplateVersions.php │ │ │ │ │ │ │ └── ProjectsTemplates.php │ │ │ │ │ │ ├── ResourceUtilizationReport.php │ │ │ │ │ │ ├── ResourceUtilizationReportResponse.php │ │ │ │ │ │ ├── RuntimeEnvironment.php │ │ │ │ │ │ ├── RuntimeMetadata.php │ │ │ │ │ │ ├── SDKInfo.php │ │ │ │ │ │ ├── SdkHarnessContainerImage.php │ │ │ │ │ │ ├── SdkVersion.php │ │ │ │ │ │ ├── SendDebugCaptureRequest.php │ │ │ │ │ │ ├── SendDebugCaptureResponse.php │ │ │ │ │ │ ├── SendWorkerMessagesRequest.php │ │ │ │ │ │ ├── SendWorkerMessagesResponse.php │ │ │ │ │ │ ├── SeqMapTask.php │ │ │ │ │ │ ├── SeqMapTaskOutputInfo.php │ │ │ │ │ │ ├── ShellTask.php │ │ │ │ │ │ ├── SideInputInfo.php │ │ │ │ │ │ ├── Sink.php │ │ │ │ │ │ ├── Snapshot.php │ │ │ │ │ │ ├── SnapshotJobRequest.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourceFork.php │ │ │ │ │ │ ├── SourceGetMetadataRequest.php │ │ │ │ │ │ ├── SourceGetMetadataResponse.php │ │ │ │ │ │ ├── SourceMetadata.php │ │ │ │ │ │ ├── SourceOperationRequest.php │ │ │ │ │ │ ├── SourceOperationResponse.php │ │ │ │ │ │ ├── SourceSplitOptions.php │ │ │ │ │ │ ├── SourceSplitRequest.php │ │ │ │ │ │ ├── SourceSplitResponse.php │ │ │ │ │ │ ├── SourceSplitShard.php │ │ │ │ │ │ ├── SpannerIODetails.php │ │ │ │ │ │ ├── SplitInt64.php │ │ │ │ │ │ ├── StageExecutionDetails.php │ │ │ │ │ │ ├── StageSource.php │ │ │ │ │ │ ├── StageSummary.php │ │ │ │ │ │ ├── StateFamilyConfig.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Step.php │ │ │ │ │ │ ├── StreamLocation.php │ │ │ │ │ │ ├── StreamingApplianceSnapshotConfig.php │ │ │ │ │ │ ├── StreamingComputationConfig.php │ │ │ │ │ │ ├── StreamingComputationRanges.php │ │ │ │ │ │ ├── StreamingComputationTask.php │ │ │ │ │ │ ├── StreamingConfigTask.php │ │ │ │ │ │ ├── StreamingSetupTask.php │ │ │ │ │ │ ├── StreamingSideInputLocation.php │ │ │ │ │ │ ├── StreamingStageLocation.php │ │ │ │ │ │ ├── StringList.php │ │ │ │ │ │ ├── StructuredMessage.php │ │ │ │ │ │ ├── TaskRunnerSettings.php │ │ │ │ │ │ ├── TemplateMetadata.php │ │ │ │ │ │ ├── TemplateVersion.php │ │ │ │ │ │ ├── TopologyConfig.php │ │ │ │ │ │ ├── TransformSummary.php │ │ │ │ │ │ ├── ValidateResponse.php │ │ │ │ │ │ ├── WorkItem.php │ │ │ │ │ │ ├── WorkItemDetails.php │ │ │ │ │ │ ├── WorkItemServiceState.php │ │ │ │ │ │ ├── WorkItemStatus.php │ │ │ │ │ │ ├── WorkerDetails.php │ │ │ │ │ │ ├── WorkerHealthReport.php │ │ │ │ │ │ ├── WorkerHealthReportResponse.php │ │ │ │ │ │ ├── WorkerLifecycleEvent.php │ │ │ │ │ │ ├── WorkerMessage.php │ │ │ │ │ │ ├── WorkerMessageCode.php │ │ │ │ │ │ ├── WorkerMessageResponse.php │ │ │ │ │ │ ├── WorkerPool.php │ │ │ │ │ │ ├── WorkerSettings.php │ │ │ │ │ │ ├── WorkerShutdownNotice.php │ │ │ │ │ │ ├── WorkerShutdownNoticeResponse.php │ │ │ │ │ │ └── WriteInstruction.php │ │ │ │ │ │ ├── Dataproc.php │ │ │ │ │ │ ├── Dataproc │ │ │ │ │ │ ├── AcceleratorConfig.php │ │ │ │ │ │ ├── AutoscalingConfig.php │ │ │ │ │ │ ├── AutoscalingPolicy.php │ │ │ │ │ │ ├── BasicAutoscalingAlgorithm.php │ │ │ │ │ │ ├── BasicYarnAutoscalingConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelJobRequest.php │ │ │ │ │ │ ├── Cluster.php │ │ │ │ │ │ ├── ClusterConfig.php │ │ │ │ │ │ ├── ClusterMetrics.php │ │ │ │ │ │ ├── ClusterOperation.php │ │ │ │ │ │ ├── ClusterOperationMetadata.php │ │ │ │ │ │ ├── ClusterOperationStatus.php │ │ │ │ │ │ ├── ClusterSelector.php │ │ │ │ │ │ ├── ClusterStatus.php │ │ │ │ │ │ ├── DataprocEmpty.php │ │ │ │ │ │ ├── DiagnoseClusterRequest.php │ │ │ │ │ │ ├── DiagnoseClusterResults.php │ │ │ │ │ │ ├── DiskConfig.php │ │ │ │ │ │ ├── EncryptionConfig.php │ │ │ │ │ │ ├── EndpointConfig.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GceClusterConfig.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── HadoopJob.php │ │ │ │ │ │ ├── HiveJob.php │ │ │ │ │ │ ├── InstanceGroupAutoscalingPolicyConfig.php │ │ │ │ │ │ ├── InstanceGroupConfig.php │ │ │ │ │ │ ├── InstanceReference.php │ │ │ │ │ │ ├── InstantiateWorkflowTemplateRequest.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobMetadata.php │ │ │ │ │ │ ├── JobPlacement.php │ │ │ │ │ │ ├── JobReference.php │ │ │ │ │ │ ├── JobScheduling.php │ │ │ │ │ │ ├── JobStatus.php │ │ │ │ │ │ ├── KerberosConfig.php │ │ │ │ │ │ ├── LifecycleConfig.php │ │ │ │ │ │ ├── ListAutoscalingPoliciesResponse.php │ │ │ │ │ │ ├── ListClustersResponse.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListWorkflowTemplatesResponse.php │ │ │ │ │ │ ├── LoggingConfig.php │ │ │ │ │ │ ├── ManagedCluster.php │ │ │ │ │ │ ├── ManagedGroupConfig.php │ │ │ │ │ │ ├── NodeGroupAffinity.php │ │ │ │ │ │ ├── NodeInitializationAction.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OrderedJob.php │ │ │ │ │ │ ├── ParameterValidation.php │ │ │ │ │ │ ├── PigJob.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PrestoJob.php │ │ │ │ │ │ ├── PySparkJob.php │ │ │ │ │ │ ├── QueryList.php │ │ │ │ │ │ ├── RegexValidation.php │ │ │ │ │ │ ├── ReservationAffinity.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsAutoscalingPolicies.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkflowTemplates.php │ │ │ │ │ │ │ ├── ProjectsRegions.php │ │ │ │ │ │ │ ├── ProjectsRegionsAutoscalingPolicies.php │ │ │ │ │ │ │ ├── ProjectsRegionsClusters.php │ │ │ │ │ │ │ ├── ProjectsRegionsJobs.php │ │ │ │ │ │ │ ├── ProjectsRegionsOperations.php │ │ │ │ │ │ │ └── ProjectsRegionsWorkflowTemplates.php │ │ │ │ │ │ ├── SecurityConfig.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SoftwareConfig.php │ │ │ │ │ │ ├── SparkJob.php │ │ │ │ │ │ ├── SparkRJob.php │ │ │ │ │ │ ├── SparkSqlJob.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SubmitJobRequest.php │ │ │ │ │ │ ├── TemplateParameter.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── ValueValidation.php │ │ │ │ │ │ ├── WorkflowGraph.php │ │ │ │ │ │ ├── WorkflowMetadata.php │ │ │ │ │ │ ├── WorkflowNode.php │ │ │ │ │ │ ├── WorkflowTemplate.php │ │ │ │ │ │ ├── WorkflowTemplatePlacement.php │ │ │ │ │ │ └── YarnApplication.php │ │ │ │ │ │ ├── Datastore.php │ │ │ │ │ │ ├── Datastore │ │ │ │ │ │ ├── AllocateIdsRequest.php │ │ │ │ │ │ ├── AllocateIdsResponse.php │ │ │ │ │ │ ├── ArrayValue.php │ │ │ │ │ │ ├── BeginTransactionRequest.php │ │ │ │ │ │ ├── BeginTransactionResponse.php │ │ │ │ │ │ ├── CommitRequest.php │ │ │ │ │ │ ├── CommitResponse.php │ │ │ │ │ │ ├── CompositeFilter.php │ │ │ │ │ │ ├── DatastoreEmpty.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── EntityResult.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1CommonMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1EntityFilter.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ExportEntitiesMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ExportEntitiesRequest.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ExportEntitiesResponse.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ImportEntitiesMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ImportEntitiesRequest.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1Index.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1IndexOperationMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1IndexedProperty.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1ListIndexesResponse.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1Progress.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1CommonMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1EntityFilter.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1ExportEntitiesMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1ExportEntitiesResponse.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1ImportEntitiesMetadata.php │ │ │ │ │ │ ├── GoogleDatastoreAdminV1beta1Progress.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GqlQuery.php │ │ │ │ │ │ ├── GqlQueryParameter.php │ │ │ │ │ │ ├── Key.php │ │ │ │ │ │ ├── KindExpression.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── LookupRequest.php │ │ │ │ │ │ ├── LookupResponse.php │ │ │ │ │ │ ├── Mutation.php │ │ │ │ │ │ ├── MutationResult.php │ │ │ │ │ │ ├── PartitionId.php │ │ │ │ │ │ ├── PathElement.php │ │ │ │ │ │ ├── Projection.php │ │ │ │ │ │ ├── PropertyFilter.php │ │ │ │ │ │ ├── PropertyOrder.php │ │ │ │ │ │ ├── PropertyReference.php │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ ├── QueryResultBatch.php │ │ │ │ │ │ ├── ReadOnly.php │ │ │ │ │ │ ├── ReadOptions.php │ │ │ │ │ │ ├── ReadWrite.php │ │ │ │ │ │ ├── ReserveIdsRequest.php │ │ │ │ │ │ ├── ReserveIdsResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsIndexes.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── RollbackRequest.php │ │ │ │ │ │ ├── RollbackResponse.php │ │ │ │ │ │ ├── RunQueryRequest.php │ │ │ │ │ │ ├── RunQueryResponse.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TransactionOptions.php │ │ │ │ │ │ └── Value.php │ │ │ │ │ │ ├── DeploymentManager.php │ │ │ │ │ │ ├── DeploymentManager │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── ConfigFile.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── DeploymentLabelEntry.php │ │ │ │ │ │ ├── DeploymentUpdate.php │ │ │ │ │ │ ├── DeploymentUpdateLabelEntry.php │ │ │ │ │ │ ├── DeploymentmanagerResource.php │ │ │ │ │ │ ├── DeploymentmanagerResourceWarnings.php │ │ │ │ │ │ ├── DeploymentmanagerResourceWarningsData.php │ │ │ │ │ │ ├── DeploymentsCancelPreviewRequest.php │ │ │ │ │ │ ├── DeploymentsListResponse.php │ │ │ │ │ │ ├── DeploymentsStopRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GlobalSetPolicyRequest.php │ │ │ │ │ │ ├── ImportFile.php │ │ │ │ │ │ ├── Manifest.php │ │ │ │ │ │ ├── ManifestsListResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── OperationsListResponse.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Deployments.php │ │ │ │ │ │ │ ├── Manifests.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ │ └── Types.php │ │ │ │ │ │ ├── ResourceAccessControl.php │ │ │ │ │ │ ├── ResourceUpdate.php │ │ │ │ │ │ ├── ResourceUpdateError.php │ │ │ │ │ │ ├── ResourceUpdateErrorErrors.php │ │ │ │ │ │ ├── ResourceUpdateWarnings.php │ │ │ │ │ │ ├── ResourceUpdateWarningsData.php │ │ │ │ │ │ ├── ResourcesListResponse.php │ │ │ │ │ │ ├── TargetConfiguration.php │ │ │ │ │ │ ├── TestPermissionsRequest.php │ │ │ │ │ │ ├── TestPermissionsResponse.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ └── TypesListResponse.php │ │ │ │ │ │ ├── Devprojects.php │ │ │ │ │ │ ├── Devprojects │ │ │ │ │ │ ├── AbuseSection.php │ │ │ │ │ │ ├── AbuseType.php │ │ │ │ │ │ ├── AbuseiamClient.php │ │ │ │ │ │ ├── Acceptance.php │ │ │ │ │ │ ├── AcceptanceDenied.php │ │ │ │ │ │ ├── AcceptanceRequired.php │ │ │ │ │ │ ├── ActivationLink.php │ │ │ │ │ │ ├── ActivationLinksCollection.php │ │ │ │ │ │ ├── ActivationLinksValidateRequest.php │ │ │ │ │ │ ├── ActivationLinksValidateResponse.php │ │ │ │ │ │ ├── ActiveApi.php │ │ │ │ │ │ ├── ActiveMember.php │ │ │ │ │ │ ├── AgeRestriction.php │ │ │ │ │ │ ├── AndRestriction.php │ │ │ │ │ │ ├── ApiConsumer.php │ │ │ │ │ │ ├── ApiConsumerId.php │ │ │ │ │ │ ├── ApiData.php │ │ │ │ │ │ ├── ApiDefinition.php │ │ │ │ │ │ ├── ApiLimitDefinition.php │ │ │ │ │ │ ├── ApiLimitStatus.php │ │ │ │ │ │ ├── ApiSection.php │ │ │ │ │ │ ├── ApiStatsInfo.php │ │ │ │ │ │ ├── ApiaryProperty.php │ │ │ │ │ │ ├── ApiaryPropertySection.php │ │ │ │ │ │ ├── ApiconsumersListResponse.php │ │ │ │ │ │ ├── ApisListConsumedResponse.php │ │ │ │ │ │ ├── ApisListProducedResponse.php │ │ │ │ │ │ ├── ApisListResponse.php │ │ │ │ │ │ ├── AppEngineSection.php │ │ │ │ │ │ ├── AppsScriptSection.php │ │ │ │ │ │ ├── AuthSection.php │ │ │ │ │ │ ├── BucketId.php │ │ │ │ │ │ ├── BucketLimitStatus.php │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ ├── ClientInfo.php │ │ │ │ │ │ ├── CloudComputeSection.php │ │ │ │ │ │ ├── CloudSqlSection.php │ │ │ │ │ │ ├── CloudStorageSection.php │ │ │ │ │ │ ├── Component.php │ │ │ │ │ │ ├── ComponentAbuseStatus.php │ │ │ │ │ │ ├── ConsumerInfo.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── DomainAccountData.php │ │ │ │ │ │ ├── DomainData.php │ │ │ │ │ │ ├── EmbeddingParameters.php │ │ │ │ │ │ ├── Evaluation.php │ │ │ │ │ │ ├── Feature.php │ │ │ │ │ │ ├── GeoRestriction.php │ │ │ │ │ │ ├── IamSection.php │ │ │ │ │ │ ├── InstalledAppInfo.php │ │ │ │ │ │ ├── Locale.php │ │ │ │ │ │ ├── ManagedEntityMetadata.php │ │ │ │ │ │ ├── NameValuePair.php │ │ │ │ │ │ ├── NotRestriction.php │ │ │ │ │ │ ├── OrRestriction.php │ │ │ │ │ │ ├── PlusPageInfo.php │ │ │ │ │ │ ├── ProducerConfiguration.php │ │ │ │ │ │ ├── ProjectClientStructure.php │ │ │ │ │ │ ├── ProjectData.php │ │ │ │ │ │ ├── ProjectLinkingSection.php │ │ │ │ │ │ ├── ProjectPlusPage.php │ │ │ │ │ │ ├── ProjectsDeveloperKeyToProjectIdResponse.php │ │ │ │ │ │ ├── ProjectsGetProjectClientStructureRequest.php │ │ │ │ │ │ ├── ProjectsGetProjectClientStructureResponse.php │ │ │ │ │ │ ├── ProjectsListResponse.php │ │ │ │ │ │ ├── ProjectsNotifyOwnersRequest.php │ │ │ │ │ │ ├── ProjectsNotifyOwnersResponse.php │ │ │ │ │ │ ├── ProjectsStringIdToNumericIdResponse.php │ │ │ │ │ │ ├── ProjectsUndeleteRequest.php │ │ │ │ │ │ ├── QueryUrl.php │ │ │ │ │ │ ├── QuotaBucketDefinition.php │ │ │ │ │ │ ├── QuotaConfiguration.php │ │ │ │ │ │ ├── QuotaConstraints.php │ │ │ │ │ │ ├── QuotaInfo.php │ │ │ │ │ │ ├── Region.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── ActivationLinks.php │ │ │ │ │ │ │ ├── Apiconsumers.php │ │ │ │ │ │ │ ├── Apis.php │ │ │ │ │ │ │ ├── Controlwidgets.php │ │ │ │ │ │ │ ├── Domains.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── Toses.php │ │ │ │ │ │ │ └── Users.php │ │ │ │ │ │ ├── RobotCreationParameters.php │ │ │ │ │ │ ├── ServiceAccountMetadata.php │ │ │ │ │ │ ├── ServiceAccountSection.php │ │ │ │ │ │ ├── SpecialRestriction.php │ │ │ │ │ │ ├── StatsInfo.php │ │ │ │ │ │ ├── StatsSection.php │ │ │ │ │ │ ├── Target.php │ │ │ │ │ │ ├── TeamSection.php │ │ │ │ │ │ ├── TermInfo.php │ │ │ │ │ │ ├── TermsContext.php │ │ │ │ │ │ ├── TermsOfService.php │ │ │ │ │ │ ├── TermsVersion.php │ │ │ │ │ │ ├── TosesAcceptRequest.php │ │ │ │ │ │ ├── TosesAcceptResponse.php │ │ │ │ │ │ ├── TosesCheckRequest.php │ │ │ │ │ │ ├── TosesCheckResponse.php │ │ │ │ │ │ ├── TosesListResponse.php │ │ │ │ │ │ ├── TypedKeyValuePair.php │ │ │ │ │ │ ├── TypedValue.php │ │ │ │ │ │ ├── UiCustomizationSection.php │ │ │ │ │ │ ├── UserData.php │ │ │ │ │ │ ├── UserNotification.php │ │ │ │ │ │ ├── UserRestriction.php │ │ │ │ │ │ ├── UsersTermsOfService.php │ │ │ │ │ │ ├── Verdict.php │ │ │ │ │ │ └── VerdictRestriction.php │ │ │ │ │ │ ├── Dfareporting.php │ │ │ │ │ │ ├── Dfareporting │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AccountActiveAdSummary.php │ │ │ │ │ │ ├── AccountPermission.php │ │ │ │ │ │ ├── AccountPermissionGroup.php │ │ │ │ │ │ ├── AccountPermissionGroupsListResponse.php │ │ │ │ │ │ ├── AccountPermissionsListResponse.php │ │ │ │ │ │ ├── AccountUserProfile.php │ │ │ │ │ │ ├── AccountUserProfilesListResponse.php │ │ │ │ │ │ ├── AccountsListResponse.php │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ ├── Ad.php │ │ │ │ │ │ ├── AdBlockingConfiguration.php │ │ │ │ │ │ ├── AdSlot.php │ │ │ │ │ │ ├── AdsListResponse.php │ │ │ │ │ │ ├── Advertiser.php │ │ │ │ │ │ ├── AdvertiserGroup.php │ │ │ │ │ │ ├── AdvertiserGroupsListResponse.php │ │ │ │ │ │ ├── AdvertiserLandingPagesListResponse.php │ │ │ │ │ │ ├── AdvertisersListResponse.php │ │ │ │ │ │ ├── AudienceSegment.php │ │ │ │ │ │ ├── AudienceSegmentGroup.php │ │ │ │ │ │ ├── Browser.php │ │ │ │ │ │ ├── BrowsersListResponse.php │ │ │ │ │ │ ├── Campaign.php │ │ │ │ │ │ ├── CampaignCreativeAssociation.php │ │ │ │ │ │ ├── CampaignCreativeAssociationsListResponse.php │ │ │ │ │ │ ├── CampaignManagerIds.php │ │ │ │ │ │ ├── CampaignsListResponse.php │ │ │ │ │ │ ├── ChangeLog.php │ │ │ │ │ │ ├── ChangeLogsListResponse.php │ │ │ │ │ │ ├── ChannelGrouping.php │ │ │ │ │ │ ├── ChannelGroupingRule.php │ │ │ │ │ │ ├── CitiesListResponse.php │ │ │ │ │ │ ├── City.php │ │ │ │ │ │ ├── ClickTag.php │ │ │ │ │ │ ├── ClickThroughUrl.php │ │ │ │ │ │ ├── ClickThroughUrlSuffixProperties.php │ │ │ │ │ │ ├── CompanionClickThroughOverride.php │ │ │ │ │ │ ├── CompanionSetting.php │ │ │ │ │ │ ├── CompatibleFields.php │ │ │ │ │ │ ├── ConnectionType.php │ │ │ │ │ │ ├── ConnectionTypesListResponse.php │ │ │ │ │ │ ├── ContentCategoriesListResponse.php │ │ │ │ │ │ ├── ContentCategory.php │ │ │ │ │ │ ├── Conversion.php │ │ │ │ │ │ ├── ConversionError.php │ │ │ │ │ │ ├── ConversionStatus.php │ │ │ │ │ │ ├── ConversionsBatchInsertRequest.php │ │ │ │ │ │ ├── ConversionsBatchInsertResponse.php │ │ │ │ │ │ ├── ConversionsBatchUpdateRequest.php │ │ │ │ │ │ ├── ConversionsBatchUpdateResponse.php │ │ │ │ │ │ ├── CountriesListResponse.php │ │ │ │ │ │ ├── Country.php │ │ │ │ │ │ ├── Creative.php │ │ │ │ │ │ ├── CreativeAsset.php │ │ │ │ │ │ ├── CreativeAssetId.php │ │ │ │ │ │ ├── CreativeAssetMetadata.php │ │ │ │ │ │ ├── CreativeAssetSelection.php │ │ │ │ │ │ ├── CreativeAssignment.php │ │ │ │ │ │ ├── CreativeClickThroughUrl.php │ │ │ │ │ │ ├── CreativeCustomEvent.php │ │ │ │ │ │ ├── CreativeField.php │ │ │ │ │ │ ├── CreativeFieldAssignment.php │ │ │ │ │ │ ├── CreativeFieldValue.php │ │ │ │ │ │ ├── CreativeFieldValuesListResponse.php │ │ │ │ │ │ ├── CreativeFieldsListResponse.php │ │ │ │ │ │ ├── CreativeGroup.php │ │ │ │ │ │ ├── CreativeGroupAssignment.php │ │ │ │ │ │ ├── CreativeGroupsListResponse.php │ │ │ │ │ │ ├── CreativeOptimizationConfiguration.php │ │ │ │ │ │ ├── CreativeRotation.php │ │ │ │ │ │ ├── CreativesListResponse.php │ │ │ │ │ │ ├── CrossDimensionReachReportCompatibleFields.php │ │ │ │ │ │ ├── CustomEvent.php │ │ │ │ │ │ ├── CustomEventClickAnnotation.php │ │ │ │ │ │ ├── CustomEventError.php │ │ │ │ │ │ ├── CustomEventImpressionAnnotation.php │ │ │ │ │ │ ├── CustomEventInsert.php │ │ │ │ │ │ ├── CustomEventStatus.php │ │ │ │ │ │ ├── CustomEventsBatchInsertRequest.php │ │ │ │ │ │ ├── CustomEventsBatchInsertResponse.php │ │ │ │ │ │ ├── CustomFloodlightVariable.php │ │ │ │ │ │ ├── CustomRichMediaEvents.php │ │ │ │ │ │ ├── CustomVariable.php │ │ │ │ │ │ ├── CustomViewabilityMetric.php │ │ │ │ │ │ ├── CustomViewabilityMetricConfiguration.php │ │ │ │ │ │ ├── DV3Ids.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── DayPartTargeting.php │ │ │ │ │ │ ├── DeepLink.php │ │ │ │ │ │ ├── DefaultClickThroughEventTagProperties.php │ │ │ │ │ │ ├── DeliverySchedule.php │ │ │ │ │ │ ├── DfareportingFile.php │ │ │ │ │ │ ├── DfareportingFileUrls.php │ │ │ │ │ │ ├── DfpSettings.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DimensionFilter.php │ │ │ │ │ │ ├── DimensionValue.php │ │ │ │ │ │ ├── DimensionValueList.php │ │ │ │ │ │ ├── DimensionValueRequest.php │ │ │ │ │ │ ├── DirectorySite.php │ │ │ │ │ │ ├── DirectorySiteSettings.php │ │ │ │ │ │ ├── DirectorySitesListResponse.php │ │ │ │ │ │ ├── DisjunctiveMatchStatement.php │ │ │ │ │ │ ├── DynamicTargetingKey.php │ │ │ │ │ │ ├── DynamicTargetingKeysListResponse.php │ │ │ │ │ │ ├── EncryptionInfo.php │ │ │ │ │ │ ├── EventFilter.php │ │ │ │ │ │ ├── EventTag.php │ │ │ │ │ │ ├── EventTagOverride.php │ │ │ │ │ │ ├── EventTagsListResponse.php │ │ │ │ │ │ ├── FileList.php │ │ │ │ │ │ ├── Flight.php │ │ │ │ │ │ ├── FloodlightActivitiesGenerateTagResponse.php │ │ │ │ │ │ ├── FloodlightActivitiesListResponse.php │ │ │ │ │ │ ├── FloodlightActivity.php │ │ │ │ │ │ ├── FloodlightActivityDynamicTag.php │ │ │ │ │ │ ├── FloodlightActivityGroup.php │ │ │ │ │ │ ├── FloodlightActivityGroupsListResponse.php │ │ │ │ │ │ ├── FloodlightActivityPublisherDynamicTag.php │ │ │ │ │ │ ├── FloodlightConfiguration.php │ │ │ │ │ │ ├── FloodlightConfigurationsListResponse.php │ │ │ │ │ │ ├── FloodlightReportCompatibleFields.php │ │ │ │ │ │ ├── FrequencyCap.php │ │ │ │ │ │ ├── FsCommand.php │ │ │ │ │ │ ├── GeoTargeting.php │ │ │ │ │ │ ├── InventoryItem.php │ │ │ │ │ │ ├── InventoryItemsListResponse.php │ │ │ │ │ │ ├── KeyValueTargetingExpression.php │ │ │ │ │ │ ├── LandingPage.php │ │ │ │ │ │ ├── Language.php │ │ │ │ │ │ ├── LanguageTargeting.php │ │ │ │ │ │ ├── LanguagesListResponse.php │ │ │ │ │ │ ├── LastModifiedInfo.php │ │ │ │ │ │ ├── ListPopulationClause.php │ │ │ │ │ │ ├── ListPopulationRule.php │ │ │ │ │ │ ├── ListPopulationTerm.php │ │ │ │ │ │ ├── ListTargetingExpression.php │ │ │ │ │ │ ├── LookbackConfiguration.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── Metro.php │ │ │ │ │ │ ├── MetrosListResponse.php │ │ │ │ │ │ ├── MobileApp.php │ │ │ │ │ │ ├── MobileAppsListResponse.php │ │ │ │ │ │ ├── MobileCarrier.php │ │ │ │ │ │ ├── MobileCarriersListResponse.php │ │ │ │ │ │ ├── ObaIcon.php │ │ │ │ │ │ ├── ObjectFilter.php │ │ │ │ │ │ ├── OffsetPosition.php │ │ │ │ │ │ ├── OmnitureSettings.php │ │ │ │ │ │ ├── OperatingSystem.php │ │ │ │ │ │ ├── OperatingSystemVersion.php │ │ │ │ │ │ ├── OperatingSystemVersionsListResponse.php │ │ │ │ │ │ ├── OperatingSystemsListResponse.php │ │ │ │ │ │ ├── OptimizationActivity.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ ├── OrderContact.php │ │ │ │ │ │ ├── OrderDocument.php │ │ │ │ │ │ ├── OrderDocumentsListResponse.php │ │ │ │ │ │ ├── OrdersListResponse.php │ │ │ │ │ │ ├── PathFilter.php │ │ │ │ │ │ ├── PathReportCompatibleFields.php │ │ │ │ │ │ ├── PathReportDimensionValue.php │ │ │ │ │ │ ├── PathToConversionReportCompatibleFields.php │ │ │ │ │ │ ├── Placement.php │ │ │ │ │ │ ├── PlacementAssignment.php │ │ │ │ │ │ ├── PlacementGroup.php │ │ │ │ │ │ ├── PlacementGroupsListResponse.php │ │ │ │ │ │ ├── PlacementStrategiesListResponse.php │ │ │ │ │ │ ├── PlacementStrategy.php │ │ │ │ │ │ ├── PlacementTag.php │ │ │ │ │ │ ├── PlacementsGenerateTagsResponse.php │ │ │ │ │ │ ├── PlacementsListResponse.php │ │ │ │ │ │ ├── PlatformType.php │ │ │ │ │ │ ├── PlatformTypesListResponse.php │ │ │ │ │ │ ├── PopupWindowProperties.php │ │ │ │ │ │ ├── PostalCode.php │ │ │ │ │ │ ├── PostalCodesListResponse.php │ │ │ │ │ │ ├── Pricing.php │ │ │ │ │ │ ├── PricingSchedule.php │ │ │ │ │ │ ├── PricingSchedulePricingPeriod.php │ │ │ │ │ │ ├── Project.php │ │ │ │ │ │ ├── ProjectsListResponse.php │ │ │ │ │ │ ├── ReachReportCompatibleFields.php │ │ │ │ │ │ ├── Recipient.php │ │ │ │ │ │ ├── Region.php │ │ │ │ │ │ ├── RegionsListResponse.php │ │ │ │ │ │ ├── RemarketingList.php │ │ │ │ │ │ ├── RemarketingListShare.php │ │ │ │ │ │ ├── RemarketingListsListResponse.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportCompatibleFields.php │ │ │ │ │ │ ├── ReportCriteria.php │ │ │ │ │ │ ├── ReportCrossDimensionReachCriteria.php │ │ │ │ │ │ ├── ReportDelivery.php │ │ │ │ │ │ ├── ReportFloodlightCriteria.php │ │ │ │ │ │ ├── ReportFloodlightCriteriaReportProperties.php │ │ │ │ │ │ ├── ReportList.php │ │ │ │ │ │ ├── ReportPathAttributionCriteria.php │ │ │ │ │ │ ├── ReportPathCriteria.php │ │ │ │ │ │ ├── ReportPathToConversionCriteria.php │ │ │ │ │ │ ├── ReportPathToConversionCriteriaReportProperties.php │ │ │ │ │ │ ├── ReportReachCriteria.php │ │ │ │ │ │ ├── ReportSchedule.php │ │ │ │ │ │ ├── ReportsConfiguration.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AccountActiveAdSummaries.php │ │ │ │ │ │ │ ├── AccountPermissionGroups.php │ │ │ │ │ │ │ ├── AccountPermissions.php │ │ │ │ │ │ │ ├── AccountUserProfiles.php │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── Ads.php │ │ │ │ │ │ │ ├── AdvertiserGroups.php │ │ │ │ │ │ │ ├── AdvertiserLandingPages.php │ │ │ │ │ │ │ ├── Advertisers.php │ │ │ │ │ │ │ ├── Browsers.php │ │ │ │ │ │ │ ├── CampaignCreativeAssociations.php │ │ │ │ │ │ │ ├── Campaigns.php │ │ │ │ │ │ │ ├── ChangeLogs.php │ │ │ │ │ │ │ ├── Cities.php │ │ │ │ │ │ │ ├── ConnectionTypes.php │ │ │ │ │ │ │ ├── ContentCategories.php │ │ │ │ │ │ │ ├── Conversions.php │ │ │ │ │ │ │ ├── Countries.php │ │ │ │ │ │ │ ├── CreativeAssets.php │ │ │ │ │ │ │ ├── CreativeFieldValues.php │ │ │ │ │ │ │ ├── CreativeFields.php │ │ │ │ │ │ │ ├── CreativeGroups.php │ │ │ │ │ │ │ ├── Creatives.php │ │ │ │ │ │ │ ├── CustomEvents.php │ │ │ │ │ │ │ ├── DimensionValues.php │ │ │ │ │ │ │ ├── DirectorySites.php │ │ │ │ │ │ │ ├── DynamicTargetingKeys.php │ │ │ │ │ │ │ ├── EventTags.php │ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ │ ├── FloodlightActivities.php │ │ │ │ │ │ │ ├── FloodlightActivityGroups.php │ │ │ │ │ │ │ ├── FloodlightConfigurations.php │ │ │ │ │ │ │ ├── InventoryItems.php │ │ │ │ │ │ │ ├── Languages.php │ │ │ │ │ │ │ ├── Metros.php │ │ │ │ │ │ │ ├── MobileApps.php │ │ │ │ │ │ │ ├── MobileCarriers.php │ │ │ │ │ │ │ ├── OperatingSystemVersions.php │ │ │ │ │ │ │ ├── OperatingSystems.php │ │ │ │ │ │ │ ├── OrderDocuments.php │ │ │ │ │ │ │ ├── Orders.php │ │ │ │ │ │ │ ├── PlacementGroups.php │ │ │ │ │ │ │ ├── PlacementStrategies.php │ │ │ │ │ │ │ ├── Placements.php │ │ │ │ │ │ │ ├── PlatformTypes.php │ │ │ │ │ │ │ ├── PostalCodes.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── Regions.php │ │ │ │ │ │ │ ├── RemarketingListShares.php │ │ │ │ │ │ │ ├── RemarketingLists.php │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ ├── ReportsCompatibleFields.php │ │ │ │ │ │ │ ├── ReportsFiles.php │ │ │ │ │ │ │ ├── Sites.php │ │ │ │ │ │ │ ├── Sizes.php │ │ │ │ │ │ │ ├── Subaccounts.php │ │ │ │ │ │ │ ├── TargetableRemarketingLists.php │ │ │ │ │ │ │ ├── TargetingTemplates.php │ │ │ │ │ │ │ ├── UserProfiles.php │ │ │ │ │ │ │ ├── UserRolePermissionGroups.php │ │ │ │ │ │ │ ├── UserRolePermissions.php │ │ │ │ │ │ │ ├── UserRoles.php │ │ │ │ │ │ │ └── VideoFormats.php │ │ │ │ │ │ ├── RichMediaExitOverride.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── Site.php │ │ │ │ │ │ ├── SiteCompanionSetting.php │ │ │ │ │ │ ├── SiteContact.php │ │ │ │ │ │ ├── SiteSettings.php │ │ │ │ │ │ ├── SiteSkippableSetting.php │ │ │ │ │ │ ├── SiteTranscodeSetting.php │ │ │ │ │ │ ├── SiteVideoSettings.php │ │ │ │ │ │ ├── SitesListResponse.php │ │ │ │ │ │ ├── Size.php │ │ │ │ │ │ ├── SizesListResponse.php │ │ │ │ │ │ ├── SkippableSetting.php │ │ │ │ │ │ ├── SortedDimension.php │ │ │ │ │ │ ├── Subaccount.php │ │ │ │ │ │ ├── SubaccountsListResponse.php │ │ │ │ │ │ ├── TagData.php │ │ │ │ │ │ ├── TagSetting.php │ │ │ │ │ │ ├── TagSettings.php │ │ │ │ │ │ ├── TargetWindow.php │ │ │ │ │ │ ├── TargetableRemarketingList.php │ │ │ │ │ │ ├── TargetableRemarketingListsListResponse.php │ │ │ │ │ │ ├── TargetingTemplate.php │ │ │ │ │ │ ├── TargetingTemplatesListResponse.php │ │ │ │ │ │ ├── TechnologyTargeting.php │ │ │ │ │ │ ├── ThirdPartyAuthenticationToken.php │ │ │ │ │ │ ├── ThirdPartyTrackingUrl.php │ │ │ │ │ │ ├── TranscodeSetting.php │ │ │ │ │ │ ├── UniversalAdId.php │ │ │ │ │ │ ├── UserDefinedVariableConfiguration.php │ │ │ │ │ │ ├── UserProfile.php │ │ │ │ │ │ ├── UserProfileList.php │ │ │ │ │ │ ├── UserRole.php │ │ │ │ │ │ ├── UserRolePermission.php │ │ │ │ │ │ ├── UserRolePermissionGroup.php │ │ │ │ │ │ ├── UserRolePermissionGroupsListResponse.php │ │ │ │ │ │ ├── UserRolePermissionsListResponse.php │ │ │ │ │ │ ├── UserRolesListResponse.php │ │ │ │ │ │ ├── VideoFormat.php │ │ │ │ │ │ ├── VideoFormatsListResponse.php │ │ │ │ │ │ ├── VideoOffset.php │ │ │ │ │ │ └── VideoSettings.php │ │ │ │ │ │ ├── Dialogflow.php │ │ │ │ │ │ ├── Dialogflow │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3PageInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3PageInfoFormInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageEndInteraction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageMixedAudio.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessagePlayAudio.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3SessionInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestIntentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ExportAgentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfoFormInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1SessionInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Agent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2AnnotatedMessagePart.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchCreateEntitiesRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchDeleteEntityTypesRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchDeleteIntentsRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchUpdateIntentsRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2BatchUpdateIntentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Context.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ConversationEvent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2DetectIntentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2DetectIntentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2EntityType.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2EntityTypeBatch.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2EntityTypeEntity.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Environment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2EventInput.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ExportAgentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ExportAgentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Fulfillment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2FulfillmentFeature.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2FulfillmentGenericWebService.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ImportAgentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2InputAudioConfig.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Intent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentBatch.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentFollowupIntentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBasicCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBasicCardButton.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBasicCardButtonOpenUriAction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBrowseCarouselCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageCardButton.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageCarouselSelect.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageCarouselSelectItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageColumnProperties.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageImage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageLinkOutSuggestion.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageListSelect.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageListSelectItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageMediaContent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageQuickReplies.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageSelectItemInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageSimpleResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageSimpleResponses.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageSuggestion.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageSuggestions.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageTableCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageTableCardCell.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageTableCardRow.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentMessageText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentParameter.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentTrainingPhrase.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2IntentTrainingPhrasePart.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ListContextsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ListEntityTypesResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ListEnvironmentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ListIntentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ListSessionEntityTypesResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Message.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2MessageAnnotation.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2OriginalDetectIntentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2OutputAudioConfig.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2QueryInput.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2QueryParameters.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2QueryResult.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2RestoreAgentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SearchAgentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2Sentiment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SentimentAnalysisRequestConfig.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SentimentAnalysisResult.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SessionEntityType.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SpeechContext.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2SynthesizeSpeechConfig.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2TextInput.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2TrainAgentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ValidationError.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2ValidationResult.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2VoiceSelectionParams.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2WebhookRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2WebhookResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1Context.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1EntityType.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1EntityTypeEntity.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1EventInput.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1ExportAgentResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1Intent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBasicCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBasicCardButton.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBasicCardButtonOpenUriAction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlAction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageCardButton.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageCarouselSelect.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageCarouselSelectItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageColumnProperties.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageImage.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageLinkOutSuggestion.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageListSelect.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageListSelectItem.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageMediaContent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageMediaContentResponseMediaObject.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageQuickReplies.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmCardContent.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMedia.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedAction.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionDial.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionOpenUri.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedActionRbmSuggestedActionShareLocation.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageRbmText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageSelectItemInfo.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageSimpleResponse.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageSimpleResponses.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageSuggestion.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageSuggestions.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTableCard.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTableCardCell.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTableCardRow.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTelephonySynthesizeSpeech.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageTelephonyTransferCall.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentMessageText.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentParameter.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentTrainingPhrase.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1IntentTrainingPhrasePart.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1KnowledgeAnswers.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1QueryResult.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1Sentiment.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1SentimentAnalysisResult.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1SessionEntityType.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1WebhookRequest.php │ │ │ │ │ │ ├── GoogleCloudDialogflowV2beta1WebhookResponse.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeLatLng.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAgent.php │ │ │ │ │ │ │ ├── ProjectsAgentEntityTypes.php │ │ │ │ │ │ │ ├── ProjectsAgentEntityTypesEntities.php │ │ │ │ │ │ │ ├── ProjectsAgentEnvironments.php │ │ │ │ │ │ │ ├── ProjectsAgentEnvironmentsUsers.php │ │ │ │ │ │ │ ├── ProjectsAgentEnvironmentsUsersSessions.php │ │ │ │ │ │ │ ├── ProjectsAgentEnvironmentsUsersSessionsContexts.php │ │ │ │ │ │ │ ├── ProjectsAgentEnvironmentsUsersSessionsEntityTypes.php │ │ │ │ │ │ │ ├── ProjectsAgentIntents.php │ │ │ │ │ │ │ ├── ProjectsAgentSessions.php │ │ │ │ │ │ │ ├── ProjectsAgentSessionsContexts.php │ │ │ │ │ │ │ ├── ProjectsAgentSessionsEntityTypes.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── Digitalassetlinks.php │ │ │ │ │ │ ├── Digitalassetlinks │ │ │ │ │ │ ├── AndroidAppAsset.php │ │ │ │ │ │ ├── Asset.php │ │ │ │ │ │ ├── CertificateInfo.php │ │ │ │ │ │ ├── CheckResponse.php │ │ │ │ │ │ ├── ListResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Assetlinks.php │ │ │ │ │ │ │ └── Statements.php │ │ │ │ │ │ ├── Statement.php │ │ │ │ │ │ └── WebAsset.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── Directory │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ ├── Aliases.php │ │ │ │ │ │ ├── Asp.php │ │ │ │ │ │ ├── Asps.php │ │ │ │ │ │ ├── Building.php │ │ │ │ │ │ ├── BuildingAddress.php │ │ │ │ │ │ ├── BuildingCoordinates.php │ │ │ │ │ │ ├── Buildings.php │ │ │ │ │ │ ├── CalendarResource.php │ │ │ │ │ │ ├── CalendarResources.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── ChromeOsDevice.php │ │ │ │ │ │ ├── ChromeOsDeviceAction.php │ │ │ │ │ │ ├── ChromeOsDeviceActiveTimeRanges.php │ │ │ │ │ │ ├── ChromeOsDeviceCpuStatusReports.php │ │ │ │ │ │ ├── ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo.php │ │ │ │ │ │ ├── ChromeOsDeviceDeviceFiles.php │ │ │ │ │ │ ├── ChromeOsDeviceDiskVolumeReports.php │ │ │ │ │ │ ├── ChromeOsDeviceDiskVolumeReportsVolumeInfo.php │ │ │ │ │ │ ├── ChromeOsDeviceLastKnownNetwork.php │ │ │ │ │ │ ├── ChromeOsDeviceRecentUsers.php │ │ │ │ │ │ ├── ChromeOsDeviceSystemRamFreeReports.php │ │ │ │ │ │ ├── ChromeOsDeviceTpmVersionInfo.php │ │ │ │ │ │ ├── ChromeOsDevices.php │ │ │ │ │ │ ├── ChromeOsMoveDevicesToOu.php │ │ │ │ │ │ ├── Customer.php │ │ │ │ │ │ ├── CustomerPostalAddress.php │ │ │ │ │ │ ├── DirectoryChromeosdevicesCommand.php │ │ │ │ │ │ ├── DirectoryChromeosdevicesCommandResult.php │ │ │ │ │ │ ├── DirectoryChromeosdevicesIssueCommandRequest.php │ │ │ │ │ │ ├── DirectoryChromeosdevicesIssueCommandResponse.php │ │ │ │ │ │ ├── DomainAlias.php │ │ │ │ │ │ ├── DomainAliases.php │ │ │ │ │ │ ├── Domains.php │ │ │ │ │ │ ├── Domains2.php │ │ │ │ │ │ ├── Feature.php │ │ │ │ │ │ ├── FeatureInstance.php │ │ │ │ │ │ ├── FeatureRename.php │ │ │ │ │ │ ├── Features.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ ├── Member.php │ │ │ │ │ │ ├── Members.php │ │ │ │ │ │ ├── MembersHasMember.php │ │ │ │ │ │ ├── MobileDevice.php │ │ │ │ │ │ ├── MobileDeviceAction.php │ │ │ │ │ │ ├── MobileDeviceApplications.php │ │ │ │ │ │ ├── MobileDevices.php │ │ │ │ │ │ ├── OrgUnit.php │ │ │ │ │ │ ├── OrgUnits.php │ │ │ │ │ │ ├── Privilege.php │ │ │ │ │ │ ├── Privileges.php │ │ │ │ │ │ ├── RecentUsers.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Asps.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── Chromeosdevices.php │ │ │ │ │ │ │ ├── Customer.php │ │ │ │ │ │ │ ├── CustomerDevices.php │ │ │ │ │ │ │ ├── CustomerDevicesChromeos.php │ │ │ │ │ │ │ ├── CustomerDevicesChromeosCommands.php │ │ │ │ │ │ │ ├── Customers.php │ │ │ │ │ │ │ ├── DomainAliases.php │ │ │ │ │ │ │ ├── Domains.php │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ ├── GroupsAliases.php │ │ │ │ │ │ │ ├── Members.php │ │ │ │ │ │ │ ├── Mobiledevices.php │ │ │ │ │ │ │ ├── Orgunits.php │ │ │ │ │ │ │ ├── Privileges.php │ │ │ │ │ │ │ ├── Resources.php │ │ │ │ │ │ │ ├── ResourcesBuildings.php │ │ │ │ │ │ │ ├── ResourcesCalendars.php │ │ │ │ │ │ │ ├── ResourcesFeatures.php │ │ │ │ │ │ │ ├── RoleAssignments.php │ │ │ │ │ │ │ ├── Roles.php │ │ │ │ │ │ │ ├── Schemas.php │ │ │ │ │ │ │ ├── Tokens.php │ │ │ │ │ │ │ ├── TwoStepVerification.php │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ ├── UsersAliases.php │ │ │ │ │ │ │ ├── UsersPhotos.php │ │ │ │ │ │ │ └── VerificationCodes.php │ │ │ │ │ │ ├── Role.php │ │ │ │ │ │ ├── RoleAssignment.php │ │ │ │ │ │ ├── RoleAssignments.php │ │ │ │ │ │ ├── RoleRolePrivileges.php │ │ │ │ │ │ ├── Roles.php │ │ │ │ │ │ ├── Schema.php │ │ │ │ │ │ ├── SchemaFieldSpec.php │ │ │ │ │ │ ├── SchemaFieldSpecNumericIndexingSpec.php │ │ │ │ │ │ ├── Schemas.php │ │ │ │ │ │ ├── Token.php │ │ │ │ │ │ ├── Tokens.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserAbout.php │ │ │ │ │ │ ├── UserAddress.php │ │ │ │ │ │ ├── UserEmail.php │ │ │ │ │ │ ├── UserExternalId.php │ │ │ │ │ │ ├── UserGender.php │ │ │ │ │ │ ├── UserIm.php │ │ │ │ │ │ ├── UserKeyword.php │ │ │ │ │ │ ├── UserLanguage.php │ │ │ │ │ │ ├── UserLocation.php │ │ │ │ │ │ ├── UserMakeAdmin.php │ │ │ │ │ │ ├── UserName.php │ │ │ │ │ │ ├── UserOrganization.php │ │ │ │ │ │ ├── UserPhone.php │ │ │ │ │ │ ├── UserPhoto.php │ │ │ │ │ │ ├── UserPosixAccount.php │ │ │ │ │ │ ├── UserRelation.php │ │ │ │ │ │ ├── UserSshPublicKey.php │ │ │ │ │ │ ├── UserUndelete.php │ │ │ │ │ │ ├── UserWebsite.php │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ ├── VerificationCode.php │ │ │ │ │ │ └── VerificationCodes.php │ │ │ │ │ │ ├── DisplayVideo.php │ │ │ │ │ │ ├── DisplayVideo │ │ │ │ │ │ ├── ActivateManualTriggerRequest.php │ │ │ │ │ │ ├── ActiveViewVideoViewabilityMetricConfig.php │ │ │ │ │ │ ├── Adloox.php │ │ │ │ │ │ ├── Advertiser.php │ │ │ │ │ │ ├── AdvertiserAdServerConfig.php │ │ │ │ │ │ ├── AdvertiserCreativeConfig.php │ │ │ │ │ │ ├── AdvertiserDataAccessConfig.php │ │ │ │ │ │ ├── AdvertiserGeneralConfig.php │ │ │ │ │ │ ├── AdvertiserSdfConfig.php │ │ │ │ │ │ ├── AdvertiserTargetingConfig.php │ │ │ │ │ │ ├── AgeRangeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── AgeRangeTargetingOptionDetails.php │ │ │ │ │ │ ├── AppAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── AppCategoryAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── AppCategoryTargetingOptionDetails.php │ │ │ │ │ │ ├── Asset.php │ │ │ │ │ │ ├── AssetAssociation.php │ │ │ │ │ │ ├── AssignedInventorySource.php │ │ │ │ │ │ ├── AssignedLocation.php │ │ │ │ │ │ ├── AssignedTargetingOption.php │ │ │ │ │ │ ├── AssignedUserRole.php │ │ │ │ │ │ ├── AudienceGroupAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── AudioVideoOffset.php │ │ │ │ │ │ ├── AuditAdvertiserResponse.php │ │ │ │ │ │ ├── AuthorizedSellerStatusAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── AuthorizedSellerStatusTargetingOptionDetails.php │ │ │ │ │ │ ├── BiddingStrategy.php │ │ │ │ │ │ ├── BrowserAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── BrowserTargetingOptionDetails.php │ │ │ │ │ │ ├── BulkEditAdvertiserAssignedTargetingOptionsRequest.php │ │ │ │ │ │ ├── BulkEditAdvertiserAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── BulkEditAssignedInventorySourcesRequest.php │ │ │ │ │ │ ├── BulkEditAssignedInventorySourcesResponse.php │ │ │ │ │ │ ├── BulkEditAssignedLocationsRequest.php │ │ │ │ │ │ ├── BulkEditAssignedLocationsResponse.php │ │ │ │ │ │ ├── BulkEditAssignedUserRolesRequest.php │ │ │ │ │ │ ├── BulkEditAssignedUserRolesResponse.php │ │ │ │ │ │ ├── BulkEditLineItemAssignedTargetingOptionsRequest.php │ │ │ │ │ │ ├── BulkEditLineItemAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── BulkEditNegativeKeywordsRequest.php │ │ │ │ │ │ ├── BulkEditNegativeKeywordsResponse.php │ │ │ │ │ │ ├── BulkEditPartnerAssignedTargetingOptionsRequest.php │ │ │ │ │ │ ├── BulkEditPartnerAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── BulkEditSitesRequest.php │ │ │ │ │ │ ├── BulkEditSitesResponse.php │ │ │ │ │ │ ├── BulkListAdvertiserAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── BulkListLineItemAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── Campaign.php │ │ │ │ │ │ ├── CampaignFlight.php │ │ │ │ │ │ ├── CampaignGoal.php │ │ │ │ │ │ ├── CarrierAndIspAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── CarrierAndIspTargetingOptionDetails.php │ │ │ │ │ │ ├── CategoryAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── CategoryTargetingOptionDetails.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── ChannelAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── CmHybridConfig.php │ │ │ │ │ │ ├── CmTrackingAd.php │ │ │ │ │ │ ├── CombinedAudience.php │ │ │ │ │ │ ├── CombinedAudienceGroup.php │ │ │ │ │ │ ├── CombinedAudienceTargetingSetting.php │ │ │ │ │ │ ├── ContentInstreamPositionAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── ContentInstreamPositionTargetingOptionDetails.php │ │ │ │ │ │ ├── ContentOutstreamPositionAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── ContentOutstreamPositionTargetingOptionDetails.php │ │ │ │ │ │ ├── ConversionCountingConfig.php │ │ │ │ │ │ ├── CounterEvent.php │ │ │ │ │ │ ├── CreateAssetRequest.php │ │ │ │ │ │ ├── CreateAssetResponse.php │ │ │ │ │ │ ├── CreateAssignedTargetingOptionsRequest.php │ │ │ │ │ │ ├── CreateSdfDownloadTaskRequest.php │ │ │ │ │ │ ├── Creative.php │ │ │ │ │ │ ├── CreativeConfig.php │ │ │ │ │ │ ├── CustomBiddingAlgorithm.php │ │ │ │ │ │ ├── CustomList.php │ │ │ │ │ │ ├── CustomListGroup.php │ │ │ │ │ │ ├── CustomListTargetingSetting.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── DayAndTimeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── DeactivateManualTriggerRequest.php │ │ │ │ │ │ ├── DeleteAssignedTargetingOptionsRequest.php │ │ │ │ │ │ ├── DeviceMakeModelAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── DeviceMakeModelTargetingOptionDetails.php │ │ │ │ │ │ ├── DeviceTypeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── DeviceTypeTargetingOptionDetails.php │ │ │ │ │ │ ├── DigitalContentLabelAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── DigitalContentLabelTargetingOptionDetails.php │ │ │ │ │ │ ├── Dimensions.php │ │ │ │ │ │ ├── DisplayvideoEmpty.php │ │ │ │ │ │ ├── DoubleVerify.php │ │ │ │ │ │ ├── DoubleVerifyAppStarRating.php │ │ │ │ │ │ ├── DoubleVerifyBrandSafetyCategories.php │ │ │ │ │ │ ├── DoubleVerifyDisplayViewability.php │ │ │ │ │ │ ├── DoubleVerifyFraudInvalidTraffic.php │ │ │ │ │ │ ├── DoubleVerifyVideoViewability.php │ │ │ │ │ │ ├── EnvironmentAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── EnvironmentTargetingOptionDetails.php │ │ │ │ │ │ ├── ExchangeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── ExchangeConfig.php │ │ │ │ │ │ ├── ExchangeConfigEnabledExchange.php │ │ │ │ │ │ ├── ExchangeReviewStatus.php │ │ │ │ │ │ ├── ExchangeTargetingOptionDetails.php │ │ │ │ │ │ ├── ExitEvent.php │ │ │ │ │ │ ├── FirstAndThirdPartyAudience.php │ │ │ │ │ │ ├── FirstAndThirdPartyAudienceGroup.php │ │ │ │ │ │ ├── FirstAndThirdPartyAudienceTargetingSetting.php │ │ │ │ │ │ ├── FixedBidStrategy.php │ │ │ │ │ │ ├── FloodlightGroup.php │ │ │ │ │ │ ├── FrequencyCap.php │ │ │ │ │ │ ├── GenderAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── GenderTargetingOptionDetails.php │ │ │ │ │ │ ├── GeoRegionAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── GeoRegionTargetingOptionDetails.php │ │ │ │ │ │ ├── GoogleAudience.php │ │ │ │ │ │ ├── GoogleAudienceGroup.php │ │ │ │ │ │ ├── GoogleAudienceTargetingSetting.php │ │ │ │ │ │ ├── GoogleBytestreamMedia.php │ │ │ │ │ │ ├── HouseholdIncomeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── HouseholdIncomeTargetingOptionDetails.php │ │ │ │ │ │ ├── IdFilter.php │ │ │ │ │ │ ├── InsertionOrder.php │ │ │ │ │ │ ├── InsertionOrderBudget.php │ │ │ │ │ │ ├── InsertionOrderBudgetSegment.php │ │ │ │ │ │ ├── IntegralAdScience.php │ │ │ │ │ │ ├── IntegrationDetails.php │ │ │ │ │ │ ├── InventorySource.php │ │ │ │ │ │ ├── InventorySourceAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── InventorySourceDisplayCreativeConfig.php │ │ │ │ │ │ ├── InventorySourceFilter.php │ │ │ │ │ │ ├── InventorySourceGroup.php │ │ │ │ │ │ ├── InventorySourceGroupAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── InventorySourceStatus.php │ │ │ │ │ │ ├── InventorySourceVideoCreativeConfig.php │ │ │ │ │ │ ├── KeywordAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── LanguageAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── LanguageTargetingOptionDetails.php │ │ │ │ │ │ ├── LineItem.php │ │ │ │ │ │ ├── LineItemBudget.php │ │ │ │ │ │ ├── LineItemFlight.php │ │ │ │ │ │ ├── ListAdvertiserAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── ListAdvertisersResponse.php │ │ │ │ │ │ ├── ListAssignedInventorySourcesResponse.php │ │ │ │ │ │ ├── ListAssignedLocationsResponse.php │ │ │ │ │ │ ├── ListCampaignsResponse.php │ │ │ │ │ │ ├── ListChannelsResponse.php │ │ │ │ │ │ ├── ListCombinedAudiencesResponse.php │ │ │ │ │ │ ├── ListCreativesResponse.php │ │ │ │ │ │ ├── ListCustomBiddingAlgorithmsResponse.php │ │ │ │ │ │ ├── ListCustomListsResponse.php │ │ │ │ │ │ ├── ListFirstAndThirdPartyAudiencesResponse.php │ │ │ │ │ │ ├── ListGoogleAudiencesResponse.php │ │ │ │ │ │ ├── ListInsertionOrdersResponse.php │ │ │ │ │ │ ├── ListInventorySourceGroupsResponse.php │ │ │ │ │ │ ├── ListInventorySourcesResponse.php │ │ │ │ │ │ ├── ListLineItemAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── ListLineItemsResponse.php │ │ │ │ │ │ ├── ListLocationListsResponse.php │ │ │ │ │ │ ├── ListManualTriggersResponse.php │ │ │ │ │ │ ├── ListNegativeKeywordListsResponse.php │ │ │ │ │ │ ├── ListNegativeKeywordsResponse.php │ │ │ │ │ │ ├── ListPartnerAssignedTargetingOptionsResponse.php │ │ │ │ │ │ ├── ListPartnersResponse.php │ │ │ │ │ │ ├── ListSitesResponse.php │ │ │ │ │ │ ├── ListTargetingOptionsResponse.php │ │ │ │ │ │ ├── ListUsersResponse.php │ │ │ │ │ │ ├── LocationList.php │ │ │ │ │ │ ├── LookbackWindow.php │ │ │ │ │ │ ├── ManualTrigger.php │ │ │ │ │ │ ├── MaximizeSpendBidStrategy.php │ │ │ │ │ │ ├── MeasurementConfig.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── NegativeKeyword.php │ │ │ │ │ │ ├── NegativeKeywordList.php │ │ │ │ │ │ ├── NegativeKeywordListAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── ObaIcon.php │ │ │ │ │ │ ├── OnScreenPositionAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── OnScreenPositionTargetingOptionDetails.php │ │ │ │ │ │ ├── OperatingSystemAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── OperatingSystemTargetingOptionDetails.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Pacing.php │ │ │ │ │ │ ├── ParentEntityFilter.php │ │ │ │ │ │ ├── ParentalStatusAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── ParentalStatusTargetingOptionDetails.php │ │ │ │ │ │ ├── Partner.php │ │ │ │ │ │ ├── PartnerAdServerConfig.php │ │ │ │ │ │ ├── PartnerCost.php │ │ │ │ │ │ ├── PartnerDataAccessConfig.php │ │ │ │ │ │ ├── PartnerGeneralConfig.php │ │ │ │ │ │ ├── PartnerRevenueModel.php │ │ │ │ │ │ ├── PerformanceGoal.php │ │ │ │ │ │ ├── PerformanceGoalBidStrategy.php │ │ │ │ │ │ ├── ProximityLocationListAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── PublisherReviewStatus.php │ │ │ │ │ │ ├── RateDetails.php │ │ │ │ │ │ ├── RegionalLocationListAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Advertisers.php │ │ │ │ │ │ │ ├── AdvertisersAssets.php │ │ │ │ │ │ │ ├── AdvertisersCampaigns.php │ │ │ │ │ │ │ ├── AdvertisersChannels.php │ │ │ │ │ │ │ ├── AdvertisersChannelsSites.php │ │ │ │ │ │ │ ├── AdvertisersCreatives.php │ │ │ │ │ │ │ ├── AdvertisersInsertionOrders.php │ │ │ │ │ │ │ ├── AdvertisersLineItems.php │ │ │ │ │ │ │ ├── AdvertisersLineItemsTargetingTypes.php │ │ │ │ │ │ │ ├── AdvertisersLineItemsTargetingTypesAssignedTargetingOptions.php │ │ │ │ │ │ │ ├── AdvertisersLocationLists.php │ │ │ │ │ │ │ ├── AdvertisersLocationListsAssignedLocations.php │ │ │ │ │ │ │ ├── AdvertisersManualTriggers.php │ │ │ │ │ │ │ ├── AdvertisersNegativeKeywordLists.php │ │ │ │ │ │ │ ├── AdvertisersNegativeKeywordListsNegativeKeywords.php │ │ │ │ │ │ │ ├── AdvertisersTargetingTypes.php │ │ │ │ │ │ │ ├── AdvertisersTargetingTypesAssignedTargetingOptions.php │ │ │ │ │ │ │ ├── CombinedAudiences.php │ │ │ │ │ │ │ ├── CustomBiddingAlgorithms.php │ │ │ │ │ │ │ ├── CustomLists.php │ │ │ │ │ │ │ ├── FirstAndThirdPartyAudiences.php │ │ │ │ │ │ │ ├── FloodlightGroups.php │ │ │ │ │ │ │ ├── GoogleAudiences.php │ │ │ │ │ │ │ ├── InventorySourceGroups.php │ │ │ │ │ │ │ ├── InventorySourceGroupsAssignedInventorySources.php │ │ │ │ │ │ │ ├── InventorySources.php │ │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ │ ├── Partners.php │ │ │ │ │ │ │ ├── PartnersChannels.php │ │ │ │ │ │ │ ├── PartnersChannelsSites.php │ │ │ │ │ │ │ ├── PartnersTargetingTypes.php │ │ │ │ │ │ │ ├── PartnersTargetingTypesAssignedTargetingOptions.php │ │ │ │ │ │ │ ├── Sdfdownloadtasks.php │ │ │ │ │ │ │ ├── SdfdownloadtasksOperations.php │ │ │ │ │ │ │ ├── TargetingTypes.php │ │ │ │ │ │ │ ├── TargetingTypesTargetingOptions.php │ │ │ │ │ │ │ └── Users.php │ │ │ │ │ │ ├── ReviewStatusInfo.php │ │ │ │ │ │ ├── SdfConfig.php │ │ │ │ │ │ ├── SdfDownloadTask.php │ │ │ │ │ │ ├── SdfDownloadTaskMetadata.php │ │ │ │ │ │ ├── SensitiveCategoryAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── SensitiveCategoryTargetingOptionDetails.php │ │ │ │ │ │ ├── Site.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SubExchangeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── SubExchangeTargetingOptionDetails.php │ │ │ │ │ │ ├── TargetingExpansionConfig.php │ │ │ │ │ │ ├── TargetingOption.php │ │ │ │ │ │ ├── ThirdPartyOnlyConfig.php │ │ │ │ │ │ ├── ThirdPartyUrl.php │ │ │ │ │ │ ├── ThirdPartyVerifierAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── TimeRange.php │ │ │ │ │ │ ├── TimerEvent.php │ │ │ │ │ │ ├── TrackingFloodlightActivityConfig.php │ │ │ │ │ │ ├── Transcode.php │ │ │ │ │ │ ├── UniversalAdId.php │ │ │ │ │ │ ├── UrlAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserRewardedContentAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── UserRewardedContentTargetingOptionDetails.php │ │ │ │ │ │ ├── VideoPlayerSizeAssignedTargetingOptionDetails.php │ │ │ │ │ │ ├── VideoPlayerSizeTargetingOptionDetails.php │ │ │ │ │ │ ├── ViewabilityAssignedTargetingOptionDetails.php │ │ │ │ │ │ └── ViewabilityTargetingOptionDetails.php │ │ │ │ │ │ ├── Dns.php │ │ │ │ │ │ ├── Dns │ │ │ │ │ │ ├── Change.php │ │ │ │ │ │ ├── ChangesListResponse.php │ │ │ │ │ │ ├── DnsKey.php │ │ │ │ │ │ ├── DnsKeyDigest.php │ │ │ │ │ │ ├── DnsKeySpec.php │ │ │ │ │ │ ├── DnsKeysListResponse.php │ │ │ │ │ │ ├── ManagedZone.php │ │ │ │ │ │ ├── ManagedZoneDnsSecConfig.php │ │ │ │ │ │ ├── ManagedZoneForwardingConfig.php │ │ │ │ │ │ ├── ManagedZoneForwardingConfigNameServerTarget.php │ │ │ │ │ │ ├── ManagedZoneOperationsListResponse.php │ │ │ │ │ │ ├── ManagedZonePeeringConfig.php │ │ │ │ │ │ ├── ManagedZonePeeringConfigTargetNetwork.php │ │ │ │ │ │ ├── ManagedZonePrivateVisibilityConfig.php │ │ │ │ │ │ ├── ManagedZonePrivateVisibilityConfigNetwork.php │ │ │ │ │ │ ├── ManagedZoneReverseLookupConfig.php │ │ │ │ │ │ ├── ManagedZonesListResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationDnsKeyContext.php │ │ │ │ │ │ ├── OperationManagedZoneContext.php │ │ │ │ │ │ ├── PoliciesListResponse.php │ │ │ │ │ │ ├── PoliciesPatchResponse.php │ │ │ │ │ │ ├── PoliciesUpdateResponse.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyAlternativeNameServerConfig.php │ │ │ │ │ │ ├── PolicyAlternativeNameServerConfigTargetNameServer.php │ │ │ │ │ │ ├── PolicyNetwork.php │ │ │ │ │ │ ├── Project.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── RRSetRoutingPolicy.php │ │ │ │ │ │ ├── RRSetRoutingPolicyGeoPolicy.php │ │ │ │ │ │ ├── RRSetRoutingPolicyGeoPolicyGeoPolicyItem.php │ │ │ │ │ │ ├── RRSetRoutingPolicyWrrPolicy.php │ │ │ │ │ │ ├── RRSetRoutingPolicyWrrPolicyWrrPolicyItem.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Changes.php │ │ │ │ │ │ │ ├── DnsKeys.php │ │ │ │ │ │ │ ├── ManagedZoneOperations.php │ │ │ │ │ │ │ ├── ManagedZones.php │ │ │ │ │ │ │ ├── Policies.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ResourceRecordSets.php │ │ │ │ │ │ ├── ResourceRecordSet.php │ │ │ │ │ │ ├── ResourceRecordSetsListResponse.php │ │ │ │ │ │ └── ResponseHeader.php │ │ │ │ │ │ ├── Docs.php │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── AutoText.php │ │ │ │ │ │ ├── Background.php │ │ │ │ │ │ ├── BackgroundSuggestionState.php │ │ │ │ │ │ ├── BatchUpdateDocumentRequest.php │ │ │ │ │ │ ├── BatchUpdateDocumentResponse.php │ │ │ │ │ │ ├── Body.php │ │ │ │ │ │ ├── Bullet.php │ │ │ │ │ │ ├── BulletSuggestionState.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── ColumnBreak.php │ │ │ │ │ │ ├── CreateFooterRequest.php │ │ │ │ │ │ ├── CreateFooterResponse.php │ │ │ │ │ │ ├── CreateFootnoteRequest.php │ │ │ │ │ │ ├── CreateFootnoteResponse.php │ │ │ │ │ │ ├── CreateHeaderRequest.php │ │ │ │ │ │ ├── CreateHeaderResponse.php │ │ │ │ │ │ ├── CreateNamedRangeRequest.php │ │ │ │ │ │ ├── CreateNamedRangeResponse.php │ │ │ │ │ │ ├── CreateParagraphBulletsRequest.php │ │ │ │ │ │ ├── CropProperties.php │ │ │ │ │ │ ├── CropPropertiesSuggestionState.php │ │ │ │ │ │ ├── DeleteContentRangeRequest.php │ │ │ │ │ │ ├── DeleteFooterRequest.php │ │ │ │ │ │ ├── DeleteHeaderRequest.php │ │ │ │ │ │ ├── DeleteNamedRangeRequest.php │ │ │ │ │ │ ├── DeleteParagraphBulletsRequest.php │ │ │ │ │ │ ├── DeletePositionedObjectRequest.php │ │ │ │ │ │ ├── DeleteTableColumnRequest.php │ │ │ │ │ │ ├── DeleteTableRowRequest.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DocsList.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── DocumentStyle.php │ │ │ │ │ │ ├── DocumentStyleSuggestionState.php │ │ │ │ │ │ ├── EmbeddedDrawingProperties.php │ │ │ │ │ │ ├── EmbeddedDrawingPropertiesSuggestionState.php │ │ │ │ │ │ ├── EmbeddedObject.php │ │ │ │ │ │ ├── EmbeddedObjectBorder.php │ │ │ │ │ │ ├── EmbeddedObjectBorderSuggestionState.php │ │ │ │ │ │ ├── EmbeddedObjectSuggestionState.php │ │ │ │ │ │ ├── EndOfSegmentLocation.php │ │ │ │ │ │ ├── Equation.php │ │ │ │ │ │ ├── Footer.php │ │ │ │ │ │ ├── Footnote.php │ │ │ │ │ │ ├── FootnoteReference.php │ │ │ │ │ │ ├── Header.php │ │ │ │ │ │ ├── HorizontalRule.php │ │ │ │ │ │ ├── ImageProperties.php │ │ │ │ │ │ ├── ImagePropertiesSuggestionState.php │ │ │ │ │ │ ├── InlineObject.php │ │ │ │ │ │ ├── InlineObjectElement.php │ │ │ │ │ │ ├── InlineObjectProperties.php │ │ │ │ │ │ ├── InlineObjectPropertiesSuggestionState.php │ │ │ │ │ │ ├── InsertInlineImageRequest.php │ │ │ │ │ │ ├── InsertInlineImageResponse.php │ │ │ │ │ │ ├── InsertInlineSheetsChartResponse.php │ │ │ │ │ │ ├── InsertPageBreakRequest.php │ │ │ │ │ │ ├── InsertSectionBreakRequest.php │ │ │ │ │ │ ├── InsertTableColumnRequest.php │ │ │ │ │ │ ├── InsertTableRequest.php │ │ │ │ │ │ ├── InsertTableRowRequest.php │ │ │ │ │ │ ├── InsertTextRequest.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── LinkedContentReference.php │ │ │ │ │ │ ├── LinkedContentReferenceSuggestionState.php │ │ │ │ │ │ ├── ListProperties.php │ │ │ │ │ │ ├── ListPropertiesSuggestionState.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MergeTableCellsRequest.php │ │ │ │ │ │ ├── NamedRange.php │ │ │ │ │ │ ├── NamedRanges.php │ │ │ │ │ │ ├── NamedStyle.php │ │ │ │ │ │ ├── NamedStyleSuggestionState.php │ │ │ │ │ │ ├── NamedStyles.php │ │ │ │ │ │ ├── NamedStylesSuggestionState.php │ │ │ │ │ │ ├── NestingLevel.php │ │ │ │ │ │ ├── NestingLevelSuggestionState.php │ │ │ │ │ │ ├── ObjectReferences.php │ │ │ │ │ │ ├── OptionalColor.php │ │ │ │ │ │ ├── PageBreak.php │ │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ │ ├── ParagraphBorder.php │ │ │ │ │ │ ├── ParagraphElement.php │ │ │ │ │ │ ├── ParagraphStyle.php │ │ │ │ │ │ ├── ParagraphStyleSuggestionState.php │ │ │ │ │ │ ├── PositionedObject.php │ │ │ │ │ │ ├── PositionedObjectPositioning.php │ │ │ │ │ │ ├── PositionedObjectPositioningSuggestionState.php │ │ │ │ │ │ ├── PositionedObjectProperties.php │ │ │ │ │ │ ├── PositionedObjectPropertiesSuggestionState.php │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ ├── ReplaceAllTextRequest.php │ │ │ │ │ │ ├── ReplaceAllTextResponse.php │ │ │ │ │ │ ├── ReplaceImageRequest.php │ │ │ │ │ │ ├── ReplaceNamedRangeContentRequest.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Documents.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── RgbColor.php │ │ │ │ │ │ ├── SectionBreak.php │ │ │ │ │ │ ├── SectionColumnProperties.php │ │ │ │ │ │ ├── SectionStyle.php │ │ │ │ │ │ ├── Shading.php │ │ │ │ │ │ ├── ShadingSuggestionState.php │ │ │ │ │ │ ├── SheetsChartReference.php │ │ │ │ │ │ ├── SheetsChartReferenceSuggestionState.php │ │ │ │ │ │ ├── Size.php │ │ │ │ │ │ ├── SizeSuggestionState.php │ │ │ │ │ │ ├── StructuralElement.php │ │ │ │ │ │ ├── SubstringMatchCriteria.php │ │ │ │ │ │ ├── SuggestedBullet.php │ │ │ │ │ │ ├── SuggestedDocumentStyle.php │ │ │ │ │ │ ├── SuggestedInlineObjectProperties.php │ │ │ │ │ │ ├── SuggestedListProperties.php │ │ │ │ │ │ ├── SuggestedNamedStyles.php │ │ │ │ │ │ ├── SuggestedParagraphStyle.php │ │ │ │ │ │ ├── SuggestedPositionedObjectProperties.php │ │ │ │ │ │ ├── SuggestedTableCellStyle.php │ │ │ │ │ │ ├── SuggestedTableRowStyle.php │ │ │ │ │ │ ├── SuggestedTextStyle.php │ │ │ │ │ │ ├── TabStop.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TableCell.php │ │ │ │ │ │ ├── TableCellBorder.php │ │ │ │ │ │ ├── TableCellLocation.php │ │ │ │ │ │ ├── TableCellStyle.php │ │ │ │ │ │ ├── TableCellStyleSuggestionState.php │ │ │ │ │ │ ├── TableColumnProperties.php │ │ │ │ │ │ ├── TableOfContents.php │ │ │ │ │ │ ├── TableRange.php │ │ │ │ │ │ ├── TableRow.php │ │ │ │ │ │ ├── TableRowStyle.php │ │ │ │ │ │ ├── TableRowStyleSuggestionState.php │ │ │ │ │ │ ├── TableStyle.php │ │ │ │ │ │ ├── TextRun.php │ │ │ │ │ │ ├── TextStyle.php │ │ │ │ │ │ ├── TextStyleSuggestionState.php │ │ │ │ │ │ ├── UnmergeTableCellsRequest.php │ │ │ │ │ │ ├── UpdateDocumentStyleRequest.php │ │ │ │ │ │ ├── UpdateParagraphStyleRequest.php │ │ │ │ │ │ ├── UpdateSectionStyleRequest.php │ │ │ │ │ │ ├── UpdateTableCellStyleRequest.php │ │ │ │ │ │ ├── UpdateTableColumnPropertiesRequest.php │ │ │ │ │ │ ├── UpdateTableRowStyleRequest.php │ │ │ │ │ │ ├── UpdateTextStyleRequest.php │ │ │ │ │ │ ├── WeightedFontFamily.php │ │ │ │ │ │ └── WriteControl.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── Document │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3CreateLabelerPoolOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3CreateProcessorVersionMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteLabelerPoolOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteProcessorMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3DisableProcessorMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3DisableProcessorResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3EnableProcessorResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiUiv1beta3UpdateLabelerPoolOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1Document.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntity.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntityRelation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageAnchorPageRef.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageBlock.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageDimension.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageFormField.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageImage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageLayout.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageLine.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageMatrix.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageParagraph.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageTable.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageTableTableCell.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageTableTableRow.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageToken.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageTokenDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageVisualElement.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentProvenance.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentProvenanceParent.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentRevision.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentRevisionHumanReview.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentShardInfo.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentStyle.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentStyleFontSize.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentTextAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentTextAnchorTextSegment.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentTextChange.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1DocumentTranslation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1ProcessDocumentResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2BatchProcessDocumentsResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2Document.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntity.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntityRelation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentLabel.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageAnchorPageRef.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageBlock.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageDimension.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageFormField.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageImage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageLayout.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageLine.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageMatrix.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageParagraph.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageTable.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageTableTableCell.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageTableTableRow.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageToken.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageTokenDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageVisualElement.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentProvenance.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentProvenanceParent.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentRevision.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentRevisionHumanReview.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentShardInfo.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentStyle.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentStyleFontSize.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentTextAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentTextAnchorTextSegment.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentTextChange.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2DocumentTranslation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2GcsSource.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2InputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2ProcessDocumentResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta2Vertex.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessMetadataIndividualProcessStatus.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessRequest.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessRequestBatchInputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessRequestBatchOutputConfig.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3Document.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentEntity.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentEntityRelation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageAnchorPageRef.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageBlock.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageDimension.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageFormField.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageImage.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageLayout.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageLine.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageMatrix.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageParagraph.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageTable.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageTableTableCell.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageTableTableRow.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageToken.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageTokenDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentPageVisualElement.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentProvenance.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentProvenanceParent.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentRevision.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentRevisionHumanReview.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentShardInfo.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentStyle.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentStyleFontSize.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentTextAnchor.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentTextChange.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3DocumentTranslation.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3ProcessRequest.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3ProcessResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3ReviewDocumentRequest.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3ReviewDocumentResponse.php │ │ │ │ │ │ ├── GoogleCloudDocumentaiV1beta3Vertex.php │ │ │ │ │ │ ├── GoogleCloudLocationListLocationsResponse.php │ │ │ │ │ │ ├── GoogleCloudLocationLocation.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ ├── GoogleTypeColor.php │ │ │ │ │ │ ├── GoogleTypeDate.php │ │ │ │ │ │ ├── GoogleTypeDateTime.php │ │ │ │ │ │ ├── GoogleTypeMoney.php │ │ │ │ │ │ ├── GoogleTypePostalAddress.php │ │ │ │ │ │ ├── GoogleTypeTimeZone.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsProcessors.php │ │ │ │ │ │ │ └── ProjectsLocationsProcessorsHumanReviewConfig.php │ │ │ │ │ │ ├── DomainsRDAP.php │ │ │ │ │ │ ├── DomainsRDAP │ │ │ │ │ │ ├── HttpBody.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── Notice.php │ │ │ │ │ │ ├── RdapResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Autnum.php │ │ │ │ │ │ │ ├── Domain.php │ │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ │ ├── Ip.php │ │ │ │ │ │ │ ├── Nameserver.php │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── DoubleClickBidManager.php │ │ │ │ │ │ ├── DoubleClickBidManager │ │ │ │ │ │ ├── ChannelGrouping.php │ │ │ │ │ │ ├── DisjunctiveMatchStatement.php │ │ │ │ │ │ ├── DownloadLineItemsRequest.php │ │ │ │ │ │ ├── DownloadLineItemsResponse.php │ │ │ │ │ │ ├── DownloadRequest.php │ │ │ │ │ │ ├── DownloadResponse.php │ │ │ │ │ │ ├── EventFilter.php │ │ │ │ │ │ ├── FilterPair.php │ │ │ │ │ │ ├── ListQueriesResponse.php │ │ │ │ │ │ ├── ListReportsResponse.php │ │ │ │ │ │ ├── Options.php │ │ │ │ │ │ ├── Parameters.php │ │ │ │ │ │ ├── PathFilter.php │ │ │ │ │ │ ├── PathQueryOptions.php │ │ │ │ │ │ ├── PathQueryOptionsFilter.php │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ ├── QueryMetadata.php │ │ │ │ │ │ ├── QuerySchedule.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportFailure.php │ │ │ │ │ │ ├── ReportKey.php │ │ │ │ │ │ ├── ReportMetadata.php │ │ │ │ │ │ ├── ReportStatus.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Lineitems.php │ │ │ │ │ │ │ ├── Queries.php │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ └── Sdf.php │ │ │ │ │ │ ├── RowStatus.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── RunQueryRequest.php │ │ │ │ │ │ ├── UploadLineItemsRequest.php │ │ │ │ │ │ ├── UploadLineItemsResponse.php │ │ │ │ │ │ └── UploadStatus.php │ │ │ │ │ │ ├── Doubleclicksearch.php │ │ │ │ │ │ ├── Doubleclicksearch │ │ │ │ │ │ ├── Availability.php │ │ │ │ │ │ ├── Conversion.php │ │ │ │ │ │ ├── ConversionList.php │ │ │ │ │ │ ├── CustomDimension.php │ │ │ │ │ │ ├── CustomMetric.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportApiColumnSpec.php │ │ │ │ │ │ ├── ReportFiles.php │ │ │ │ │ │ ├── ReportRequest.php │ │ │ │ │ │ ├── ReportRequestFilters.php │ │ │ │ │ │ ├── ReportRequestOrderBy.php │ │ │ │ │ │ ├── ReportRequestReportScope.php │ │ │ │ │ │ ├── ReportRequestTimeRange.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Conversion.php │ │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ │ └── SavedColumns.php │ │ │ │ │ │ ├── SavedColumn.php │ │ │ │ │ │ ├── SavedColumnList.php │ │ │ │ │ │ ├── UpdateAvailabilityRequest.php │ │ │ │ │ │ └── UpdateAvailabilityResponse.php │ │ │ │ │ │ ├── Drive.php │ │ │ │ │ │ ├── Drive │ │ │ │ │ │ ├── About.php │ │ │ │ │ │ ├── AboutDriveThemes.php │ │ │ │ │ │ ├── AboutStorageQuota.php │ │ │ │ │ │ ├── AboutTeamDriveThemes.php │ │ │ │ │ │ ├── Change.php │ │ │ │ │ │ ├── ChangeList.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CommentList.php │ │ │ │ │ │ ├── CommentQuotedFileContent.php │ │ │ │ │ │ ├── ContentRestriction.php │ │ │ │ │ │ ├── Drive.php │ │ │ │ │ │ ├── DriveBackgroundImageFile.php │ │ │ │ │ │ ├── DriveCapabilities.php │ │ │ │ │ │ ├── DriveFile.php │ │ │ │ │ │ ├── DriveFileCapabilities.php │ │ │ │ │ │ ├── DriveFileContentHints.php │ │ │ │ │ │ ├── DriveFileContentHintsThumbnail.php │ │ │ │ │ │ ├── DriveFileImageMediaMetadata.php │ │ │ │ │ │ ├── DriveFileImageMediaMetadataLocation.php │ │ │ │ │ │ ├── DriveFileShortcutDetails.php │ │ │ │ │ │ ├── DriveFileVideoMediaMetadata.php │ │ │ │ │ │ ├── DriveList.php │ │ │ │ │ │ ├── DriveRestrictions.php │ │ │ │ │ │ ├── FileList.php │ │ │ │ │ │ ├── GeneratedIds.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── PermissionList.php │ │ │ │ │ │ ├── PermissionPermissionDetails.php │ │ │ │ │ │ ├── PermissionTeamDrivePermissionDetails.php │ │ │ │ │ │ ├── Reply.php │ │ │ │ │ │ ├── ReplyList.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── About.php │ │ │ │ │ │ │ ├── Changes.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── Comments.php │ │ │ │ │ │ │ ├── Drives.php │ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ │ ├── Permissions.php │ │ │ │ │ │ │ ├── Replies.php │ │ │ │ │ │ │ ├── Revisions.php │ │ │ │ │ │ │ └── Teamdrives.php │ │ │ │ │ │ ├── Revision.php │ │ │ │ │ │ ├── RevisionList.php │ │ │ │ │ │ ├── StartPageToken.php │ │ │ │ │ │ ├── TeamDrive.php │ │ │ │ │ │ ├── TeamDriveBackgroundImageFile.php │ │ │ │ │ │ ├── TeamDriveCapabilities.php │ │ │ │ │ │ ├── TeamDriveList.php │ │ │ │ │ │ ├── TeamDriveRestrictions.php │ │ │ │ │ │ └── User.php │ │ │ │ │ │ ├── DriveActivity.php │ │ │ │ │ │ ├── DriveActivity │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── ActionDetail.php │ │ │ │ │ │ ├── Actor.php │ │ │ │ │ │ ├── Administrator.php │ │ │ │ │ │ ├── AnonymousUser.php │ │ │ │ │ │ ├── Anyone.php │ │ │ │ │ │ ├── ApplicationReference.php │ │ │ │ │ │ ├── Assignment.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── ConsolidationStrategy.php │ │ │ │ │ │ ├── Copy.php │ │ │ │ │ │ ├── Create.php │ │ │ │ │ │ ├── DataLeakPreventionChange.php │ │ │ │ │ │ ├── Delete.php │ │ │ │ │ │ ├── DeletedUser.php │ │ │ │ │ │ ├── Domain.php │ │ │ │ │ │ ├── Drive.php │ │ │ │ │ │ ├── DriveActivity.php │ │ │ │ │ │ ├── DriveFile.php │ │ │ │ │ │ ├── DriveFolder.php │ │ │ │ │ │ ├── DriveItem.php │ │ │ │ │ │ ├── DriveItemReference.php │ │ │ │ │ │ ├── DriveReference.php │ │ │ │ │ │ ├── DriveactivityFile.php │ │ │ │ │ │ ├── DriveactivityNew.php │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ ├── FileComment.php │ │ │ │ │ │ ├── Folder.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── Impersonation.php │ │ │ │ │ │ ├── KnownUser.php │ │ │ │ │ │ ├── Legacy.php │ │ │ │ │ │ ├── Move.php │ │ │ │ │ │ ├── NoConsolidation.php │ │ │ │ │ │ ├── Owner.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── PermissionChange.php │ │ │ │ │ │ ├── Post.php │ │ │ │ │ │ ├── QueryDriveActivityRequest.php │ │ │ │ │ │ ├── QueryDriveActivityResponse.php │ │ │ │ │ │ ├── Rename.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Activity.php │ │ │ │ │ │ ├── Restore.php │ │ │ │ │ │ ├── RestrictionChange.php │ │ │ │ │ │ ├── SettingsChange.php │ │ │ │ │ │ ├── Suggestion.php │ │ │ │ │ │ ├── SystemEvent.php │ │ │ │ │ │ ├── Target.php │ │ │ │ │ │ ├── TargetReference.php │ │ │ │ │ │ ├── TeamDrive.php │ │ │ │ │ │ ├── TeamDriveReference.php │ │ │ │ │ │ ├── TimeRange.php │ │ │ │ │ │ ├── UnknownUser.php │ │ │ │ │ │ ├── Upload.php │ │ │ │ │ │ └── User.php │ │ │ │ │ │ ├── Eventarc.php │ │ │ │ │ │ ├── Eventarc │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloudRunService.php │ │ │ │ │ │ ├── Destination.php │ │ │ │ │ │ ├── EventarcEmpty.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListTriggersResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MatchingCriteria.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Pubsub.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsTriggers.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Transport.php │ │ │ │ │ │ └── Trigger.php │ │ │ │ │ │ ├── FactCheckTools.php │ │ │ │ │ │ ├── FactCheckTools │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1Claim.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimAuthor.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimRating.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimReview.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewAuthor.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkup.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1ListClaimReviewMarkupPagesResponse.php │ │ │ │ │ │ ├── GoogleFactcheckingFactchecktoolsV1alpha1Publisher.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Claims.php │ │ │ │ │ │ │ └── Pages.php │ │ │ │ │ │ ├── FirebaseCloudMessaging.php │ │ │ │ │ │ ├── FirebaseCloudMessaging │ │ │ │ │ │ ├── AndroidConfig.php │ │ │ │ │ │ ├── AndroidFcmOptions.php │ │ │ │ │ │ ├── AndroidNotification.php │ │ │ │ │ │ ├── ApnsConfig.php │ │ │ │ │ │ ├── ApnsFcmOptions.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── FcmOptions.php │ │ │ │ │ │ ├── LightSettings.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ProjectsMessages.php │ │ │ │ │ │ ├── SendMessageRequest.php │ │ │ │ │ │ ├── WebpushConfig.php │ │ │ │ │ │ └── WebpushFcmOptions.php │ │ │ │ │ │ ├── FirebaseDynamicLinks.php │ │ │ │ │ │ ├── FirebaseDynamicLinks │ │ │ │ │ │ ├── AnalyticsInfo.php │ │ │ │ │ │ ├── AndroidInfo.php │ │ │ │ │ │ ├── CreateManagedShortLinkRequest.php │ │ │ │ │ │ ├── CreateManagedShortLinkResponse.php │ │ │ │ │ │ ├── CreateShortDynamicLinkRequest.php │ │ │ │ │ │ ├── CreateShortDynamicLinkResponse.php │ │ │ │ │ │ ├── DesktopInfo.php │ │ │ │ │ │ ├── DeviceInfo.php │ │ │ │ │ │ ├── DynamicLinkEventStat.php │ │ │ │ │ │ ├── DynamicLinkInfo.php │ │ │ │ │ │ ├── DynamicLinkStats.php │ │ │ │ │ │ ├── DynamicLinkWarning.php │ │ │ │ │ │ ├── GetIosPostInstallAttributionRequest.php │ │ │ │ │ │ ├── GetIosPostInstallAttributionResponse.php │ │ │ │ │ │ ├── GetIosReopenAttributionRequest.php │ │ │ │ │ │ ├── GetIosReopenAttributionResponse.php │ │ │ │ │ │ ├── GooglePlayAnalytics.php │ │ │ │ │ │ ├── ITunesConnectAnalytics.php │ │ │ │ │ │ ├── IosInfo.php │ │ │ │ │ │ ├── ManagedShortLink.php │ │ │ │ │ │ ├── NavigationInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── ManagedShortLinks.php │ │ │ │ │ │ │ ├── ShortLinks.php │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── SocialMetaTagInfo.php │ │ │ │ │ │ └── Suffix.php │ │ │ │ │ │ ├── FirebaseDynamicLinksAPI.php │ │ │ │ │ │ ├── FirebaseDynamicLinksAPI │ │ │ │ │ │ ├── AnalyticsInfo.php │ │ │ │ │ │ ├── AndroidInfo.php │ │ │ │ │ │ ├── CreateShortDynamicLinkRequest.php │ │ │ │ │ │ ├── CreateShortDynamicLinkResponse.php │ │ │ │ │ │ ├── DynamicLinkInfo.php │ │ │ │ │ │ ├── DynamicLinkWarning.php │ │ │ │ │ │ ├── GooglePlayAnalytics.php │ │ │ │ │ │ ├── ITunesConnectAnalytics.php │ │ │ │ │ │ ├── IosInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── ShortDynamicLinks.php │ │ │ │ │ │ ├── SocialMetaTagInfo.php │ │ │ │ │ │ └── Suffix.php │ │ │ │ │ │ ├── FirebaseHosting.php │ │ │ │ │ │ ├── FirebaseHosting │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── FirebasehostingEmpty.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── FirebaseML.php │ │ │ │ │ │ ├── FirebaseML │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── FirebasemlEmpty.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ModelOperationMetadata.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ └── Status.php │ │ │ │ │ │ ├── FirebaseManagement.php │ │ │ │ │ │ ├── FirebaseManagement │ │ │ │ │ │ ├── AddFirebaseRequest.php │ │ │ │ │ │ ├── AddGoogleAnalyticsRequest.php │ │ │ │ │ │ ├── AdminSdkConfig.php │ │ │ │ │ │ ├── AnalyticsDetails.php │ │ │ │ │ │ ├── AnalyticsProperty.php │ │ │ │ │ │ ├── AndroidApp.php │ │ │ │ │ │ ├── AndroidAppConfig.php │ │ │ │ │ │ ├── DefaultResources.php │ │ │ │ │ │ ├── FinalizeDefaultLocationRequest.php │ │ │ │ │ │ ├── FirebaseAppInfo.php │ │ │ │ │ │ ├── FirebaseEmpty.php │ │ │ │ │ │ ├── FirebaseProject.php │ │ │ │ │ │ ├── IosApp.php │ │ │ │ │ │ ├── IosAppConfig.php │ │ │ │ │ │ ├── ListAndroidAppsResponse.php │ │ │ │ │ │ ├── ListAvailableLocationsResponse.php │ │ │ │ │ │ ├── ListAvailableProjectsResponse.php │ │ │ │ │ │ ├── ListFirebaseProjectsResponse.php │ │ │ │ │ │ ├── ListIosAppsResponse.php │ │ │ │ │ │ ├── ListShaCertificatesResponse.php │ │ │ │ │ │ ├── ListWebAppsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MessageSet.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── ProjectInfo.php │ │ │ │ │ │ ├── RemoveAnalyticsRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AvailableProjects.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAndroidApps.php │ │ │ │ │ │ │ ├── ProjectsAndroidAppsSha.php │ │ │ │ │ │ │ ├── ProjectsAvailableLocations.php │ │ │ │ │ │ │ ├── ProjectsDefaultLocation.php │ │ │ │ │ │ │ ├── ProjectsIosApps.php │ │ │ │ │ │ │ └── ProjectsWebApps.php │ │ │ │ │ │ ├── SearchFirebaseAppsResponse.php │ │ │ │ │ │ ├── ShaCertificate.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StatusProto.php │ │ │ │ │ │ ├── StreamMapping.php │ │ │ │ │ │ ├── WebApp.php │ │ │ │ │ │ └── WebAppConfig.php │ │ │ │ │ │ ├── FirebaseRealtimeDatabase.php │ │ │ │ │ │ ├── FirebaseRealtimeDatabase │ │ │ │ │ │ ├── DatabaseInstance.php │ │ │ │ │ │ ├── DisableDatabaseInstanceRequest.php │ │ │ │ │ │ ├── ListDatabaseInstancesResponse.php │ │ │ │ │ │ ├── ReenableDatabaseInstanceRequest.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ └── ProjectsLocationsInstances.php │ │ │ │ │ │ ├── FirebaseRemoteConfig.php │ │ │ │ │ │ ├── FirebaseRemoteConfig │ │ │ │ │ │ ├── RemoteConfig.php │ │ │ │ │ │ ├── RemoteConfigCondition.php │ │ │ │ │ │ ├── RemoteConfigParameter.php │ │ │ │ │ │ ├── RemoteConfigParameterValue.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── Projects.php │ │ │ │ │ │ ├── FirebaseRules.php │ │ │ │ │ │ ├── FirebaseRules │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ ├── ExpressionReport.php │ │ │ │ │ │ ├── FirebaserulesEmpty.php │ │ │ │ │ │ ├── FirebaserulesFile.php │ │ │ │ │ │ ├── FunctionCall.php │ │ │ │ │ │ ├── FunctionMock.php │ │ │ │ │ │ ├── GetReleaseExecutableResponse.php │ │ │ │ │ │ ├── Issue.php │ │ │ │ │ │ ├── ListReleasesResponse.php │ │ │ │ │ │ ├── ListRulesetsResponse.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── Release.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsReleases.php │ │ │ │ │ │ │ └── ProjectsRulesets.php │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ ├── Ruleset.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourcePosition.php │ │ │ │ │ │ ├── TestCase.php │ │ │ │ │ │ ├── TestResult.php │ │ │ │ │ │ ├── TestRulesetRequest.php │ │ │ │ │ │ ├── TestRulesetResponse.php │ │ │ │ │ │ ├── TestSuite.php │ │ │ │ │ │ ├── UpdateReleaseRequest.php │ │ │ │ │ │ ├── ValueCount.php │ │ │ │ │ │ └── VisitedExpression.php │ │ │ │ │ │ ├── FirebaseRulesAPI.php │ │ │ │ │ │ ├── FirebaseRulesAPI │ │ │ │ │ │ ├── FirebaserulesEmpty.php │ │ │ │ │ │ ├── FirebaserulesFile.php │ │ │ │ │ │ ├── Issue.php │ │ │ │ │ │ ├── ListReleasesResponse.php │ │ │ │ │ │ ├── ListRulesetsResponse.php │ │ │ │ │ │ ├── Release.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsReleases.php │ │ │ │ │ │ │ └── ProjectsRulesets.php │ │ │ │ │ │ ├── Ruleset.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── SourcePosition.php │ │ │ │ │ │ ├── TestRulesetRequest.php │ │ │ │ │ │ └── TestRulesetResponse.php │ │ │ │ │ │ ├── Firestore.php │ │ │ │ │ │ ├── Firestore │ │ │ │ │ │ ├── ArrayValue.php │ │ │ │ │ │ ├── BatchGetDocumentsRequest.php │ │ │ │ │ │ ├── BatchGetDocumentsResponse.php │ │ │ │ │ │ ├── BatchWriteRequest.php │ │ │ │ │ │ ├── BatchWriteResponse.php │ │ │ │ │ │ ├── BeginTransactionRequest.php │ │ │ │ │ │ ├── BeginTransactionResponse.php │ │ │ │ │ │ ├── CollectionSelector.php │ │ │ │ │ │ ├── CommitRequest.php │ │ │ │ │ │ ├── CommitResponse.php │ │ │ │ │ │ ├── CompositeFilter.php │ │ │ │ │ │ ├── Cursor.php │ │ │ │ │ │ ├── Document.php │ │ │ │ │ │ ├── DocumentChange.php │ │ │ │ │ │ ├── DocumentDelete.php │ │ │ │ │ │ ├── DocumentMask.php │ │ │ │ │ │ ├── DocumentRemove.php │ │ │ │ │ │ ├── DocumentTransform.php │ │ │ │ │ │ ├── DocumentsTarget.php │ │ │ │ │ │ ├── ExistenceFilter.php │ │ │ │ │ │ ├── FieldFilter.php │ │ │ │ │ │ ├── FieldReference.php │ │ │ │ │ │ ├── FieldTransform.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── FirestoreEmpty.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ExportDocumentsMetadata.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ExportDocumentsRequest.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ExportDocumentsResponse.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1Field.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1FieldOperationMetadata.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ImportDocumentsMetadata.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ImportDocumentsRequest.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1Index.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1IndexConfig.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1IndexConfigDelta.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1IndexField.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1IndexOperationMetadata.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ListFieldsResponse.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1ListIndexesResponse.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1LocationMetadata.php │ │ │ │ │ │ ├── GoogleFirestoreAdminV1Progress.php │ │ │ │ │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── ListCollectionIdsRequest.php │ │ │ │ │ │ ├── ListCollectionIdsResponse.php │ │ │ │ │ │ ├── ListDocumentsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListenRequest.php │ │ │ │ │ │ ├── ListenResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MapValue.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ ├── PartitionQueryRequest.php │ │ │ │ │ │ ├── PartitionQueryResponse.php │ │ │ │ │ │ ├── Precondition.php │ │ │ │ │ │ ├── Projection.php │ │ │ │ │ │ ├── QueryTarget.php │ │ │ │ │ │ ├── ReadOnly.php │ │ │ │ │ │ ├── ReadWrite.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsDatabases.php │ │ │ │ │ │ │ ├── ProjectsDatabasesCollectionGroups.php │ │ │ │ │ │ │ ├── ProjectsDatabasesCollectionGroupsFields.php │ │ │ │ │ │ │ ├── ProjectsDatabasesCollectionGroupsIndexes.php │ │ │ │ │ │ │ ├── ProjectsDatabasesDocuments.php │ │ │ │ │ │ │ ├── ProjectsDatabasesOperations.php │ │ │ │ │ │ │ └── ProjectsLocations.php │ │ │ │ │ │ ├── RollbackRequest.php │ │ │ │ │ │ ├── RunQueryRequest.php │ │ │ │ │ │ ├── RunQueryResponse.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StructuredQuery.php │ │ │ │ │ │ ├── Target.php │ │ │ │ │ │ ├── TargetChange.php │ │ │ │ │ │ ├── TransactionOptions.php │ │ │ │ │ │ ├── UnaryFilter.php │ │ │ │ │ │ ├── Value.php │ │ │ │ │ │ ├── Write.php │ │ │ │ │ │ ├── WriteRequest.php │ │ │ │ │ │ ├── WriteResponse.php │ │ │ │ │ │ └── WriteResult.php │ │ │ │ │ │ ├── Fitness.php │ │ │ │ │ │ ├── Fitness │ │ │ │ │ │ ├── AggregateBucket.php │ │ │ │ │ │ ├── AggregateBy.php │ │ │ │ │ │ ├── AggregateRequest.php │ │ │ │ │ │ ├── AggregateResponse.php │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── BucketByActivity.php │ │ │ │ │ │ ├── BucketBySession.php │ │ │ │ │ │ ├── BucketByTime.php │ │ │ │ │ │ ├── BucketByTimePeriod.php │ │ │ │ │ │ ├── DataPoint.php │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ ├── DataType.php │ │ │ │ │ │ ├── DataTypeField.php │ │ │ │ │ │ ├── Dataset.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── ListDataPointChangesResponse.php │ │ │ │ │ │ ├── ListDataSourcesResponse.php │ │ │ │ │ │ ├── ListSessionsResponse.php │ │ │ │ │ │ ├── MapValue.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ ├── UsersDataSources.php │ │ │ │ │ │ │ ├── UsersDataSourcesDataPointChanges.php │ │ │ │ │ │ │ ├── UsersDataSourcesDatasets.php │ │ │ │ │ │ │ ├── UsersDataset.php │ │ │ │ │ │ │ └── UsersSessions.php │ │ │ │ │ │ ├── Session.php │ │ │ │ │ │ ├── Value.php │ │ │ │ │ │ └── ValueMapValEntry.php │ │ │ │ │ │ ├── FlightAvailability.php │ │ │ │ │ │ ├── FlightAvailability │ │ │ │ │ │ ├── FlightavailabilityDate.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswers.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersAnswer.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersConstraint.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersConstraintWithEquivalence.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersConstraints.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersEquivalentBookingCodes.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersSeatCount.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersSeatCountSeatsFlag.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersSegmentCounts.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailAnswersSolution.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailQuestions.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailQuestionsParameters.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailQuestionsPointOfSale.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailQuestionsQuestion.php │ │ │ │ │ │ ├── FlightavailabilityPartnerAvailQuestionsSegment.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── Freebase.php │ │ │ │ │ │ ├── Freebase │ │ │ │ │ │ ├── ReconcileCandidate.php │ │ │ │ │ │ ├── ReconcileCandidateNotable.php │ │ │ │ │ │ ├── ReconcileGet.php │ │ │ │ │ │ ├── ReconcileGetCosts.php │ │ │ │ │ │ └── ReconcileGetWarning.php │ │ │ │ │ │ ├── Fusiontables.php │ │ │ │ │ │ ├── Fusiontables │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ ├── Column.php │ │ │ │ │ │ ├── ColumnBaseColumn.php │ │ │ │ │ │ ├── ColumnList.php │ │ │ │ │ │ ├── Geometry.php │ │ │ │ │ │ ├── Import.php │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ ├── LineStyle.php │ │ │ │ │ │ ├── Point.php │ │ │ │ │ │ ├── PointStyle.php │ │ │ │ │ │ ├── Polygon.php │ │ │ │ │ │ ├── PolygonStyle.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Column.php │ │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ │ ├── Style.php │ │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ │ ├── Task.php │ │ │ │ │ │ │ └── Template.php │ │ │ │ │ │ ├── Sqlresponse.php │ │ │ │ │ │ ├── StyleFunction.php │ │ │ │ │ │ ├── StyleFunctionGradient.php │ │ │ │ │ │ ├── StyleFunctionGradientColors.php │ │ │ │ │ │ ├── StyleSetting.php │ │ │ │ │ │ ├── StyleSettingList.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TableList.php │ │ │ │ │ │ ├── Task.php │ │ │ │ │ │ ├── TaskList.php │ │ │ │ │ │ ├── Template.php │ │ │ │ │ │ └── TemplateList.php │ │ │ │ │ │ ├── GameServices.php │ │ │ │ │ │ ├── GameServices │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuthorizationLoggingOptions.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloudAuditOptions.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── CounterOptions.php │ │ │ │ │ │ ├── CustomField.php │ │ │ │ │ │ ├── DataAccessOptions.php │ │ │ │ │ │ ├── DeployedClusterState.php │ │ │ │ │ │ ├── DeployedFleet.php │ │ │ │ │ │ ├── DeployedFleetAutoscaler.php │ │ │ │ │ │ ├── DeployedFleetDetails.php │ │ │ │ │ │ ├── DeployedFleetStatus.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FetchDeploymentStateRequest.php │ │ │ │ │ │ ├── FetchDeploymentStateResponse.php │ │ │ │ │ │ ├── FleetConfig.php │ │ │ │ │ │ ├── GameServerCluster.php │ │ │ │ │ │ ├── GameServerClusterConnectionInfo.php │ │ │ │ │ │ ├── GameServerConfig.php │ │ │ │ │ │ ├── GameServerConfigOverride.php │ │ │ │ │ │ ├── GameServerDeployment.php │ │ │ │ │ │ ├── GameServerDeploymentRollout.php │ │ │ │ │ │ ├── GameservicesEmpty.php │ │ │ │ │ │ ├── GkeClusterReference.php │ │ │ │ │ │ ├── LabelSelector.php │ │ │ │ │ │ ├── ListGameServerClustersResponse.php │ │ │ │ │ │ ├── ListGameServerConfigsResponse.php │ │ │ │ │ │ ├── ListGameServerDeploymentsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListRealmsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LogConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── OperationStatus.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PreviewCreateGameServerClusterResponse.php │ │ │ │ │ │ ├── PreviewDeleteGameServerClusterResponse.php │ │ │ │ │ │ ├── PreviewGameServerDeploymentRolloutResponse.php │ │ │ │ │ │ ├── PreviewRealmUpdateResponse.php │ │ │ │ │ │ ├── PreviewUpdateGameServerClusterResponse.php │ │ │ │ │ │ ├── Realm.php │ │ │ │ │ │ ├── RealmSelector.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsGameServerDeployments.php │ │ │ │ │ │ │ ├── ProjectsLocationsGameServerDeploymentsConfigs.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsRealms.php │ │ │ │ │ │ │ └── ProjectsLocationsRealmsGameServerClusters.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── ScalingConfig.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SpecSource.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TargetDetails.php │ │ │ │ │ │ ├── TargetFleet.php │ │ │ │ │ │ ├── TargetFleetAutoscaler.php │ │ │ │ │ │ ├── TargetFleetDetails.php │ │ │ │ │ │ ├── TargetState.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Games.php │ │ │ │ │ │ ├── Games │ │ │ │ │ │ ├── AchievementDefinition.php │ │ │ │ │ │ ├── AchievementDefinitionsListResponse.php │ │ │ │ │ │ ├── AchievementIncrementResponse.php │ │ │ │ │ │ ├── AchievementRevealResponse.php │ │ │ │ │ │ ├── AchievementSetStepsAtLeastResponse.php │ │ │ │ │ │ ├── AchievementUnlockResponse.php │ │ │ │ │ │ ├── AchievementUpdateMultipleRequest.php │ │ │ │ │ │ ├── AchievementUpdateMultipleResponse.php │ │ │ │ │ │ ├── AchievementUpdateRequest.php │ │ │ │ │ │ ├── AchievementUpdateResponse.php │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── ApplicationCategory.php │ │ │ │ │ │ ├── ApplicationVerifyResponse.php │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ ├── CategoryListResponse.php │ │ │ │ │ │ ├── EventBatchRecordFailure.php │ │ │ │ │ │ ├── EventChild.php │ │ │ │ │ │ ├── EventDefinition.php │ │ │ │ │ │ ├── EventDefinitionListResponse.php │ │ │ │ │ │ ├── EventPeriodRange.php │ │ │ │ │ │ ├── EventPeriodUpdate.php │ │ │ │ │ │ ├── EventRecordFailure.php │ │ │ │ │ │ ├── EventRecordRequest.php │ │ │ │ │ │ ├── EventUpdateRequest.php │ │ │ │ │ │ ├── EventUpdateResponse.php │ │ │ │ │ │ ├── GamesAchievementIncrement.php │ │ │ │ │ │ ├── GamesAchievementSetStepsAtLeast.php │ │ │ │ │ │ ├── ImageAsset.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── InstanceAndroidDetails.php │ │ │ │ │ │ ├── InstanceIosDetails.php │ │ │ │ │ │ ├── InstanceWebDetails.php │ │ │ │ │ │ ├── Leaderboard.php │ │ │ │ │ │ ├── LeaderboardEntry.php │ │ │ │ │ │ ├── LeaderboardListResponse.php │ │ │ │ │ │ ├── LeaderboardScoreRank.php │ │ │ │ │ │ ├── LeaderboardScores.php │ │ │ │ │ │ ├── MetagameConfig.php │ │ │ │ │ │ ├── Player.php │ │ │ │ │ │ ├── PlayerAchievement.php │ │ │ │ │ │ ├── PlayerAchievementListResponse.php │ │ │ │ │ │ ├── PlayerEvent.php │ │ │ │ │ │ ├── PlayerEventListResponse.php │ │ │ │ │ │ ├── PlayerExperienceInfo.php │ │ │ │ │ │ ├── PlayerLeaderboardScore.php │ │ │ │ │ │ ├── PlayerLeaderboardScoreListResponse.php │ │ │ │ │ │ ├── PlayerLevel.php │ │ │ │ │ │ ├── PlayerListResponse.php │ │ │ │ │ │ ├── PlayerName.php │ │ │ │ │ │ ├── PlayerScore.php │ │ │ │ │ │ ├── PlayerScoreListResponse.php │ │ │ │ │ │ ├── PlayerScoreResponse.php │ │ │ │ │ │ ├── PlayerScoreSubmissionList.php │ │ │ │ │ │ ├── ProfileSettings.php │ │ │ │ │ │ ├── ResolveSnapshotHeadRequest.php │ │ │ │ │ │ ├── ResolveSnapshotHeadResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AchievementDefinitions.php │ │ │ │ │ │ │ ├── Achievements.php │ │ │ │ │ │ │ ├── Applications.php │ │ │ │ │ │ │ ├── Events.php │ │ │ │ │ │ │ ├── Leaderboards.php │ │ │ │ │ │ │ ├── Metagame.php │ │ │ │ │ │ │ ├── Players.php │ │ │ │ │ │ │ ├── Revisions.php │ │ │ │ │ │ │ ├── Scores.php │ │ │ │ │ │ │ ├── Snapshots.php │ │ │ │ │ │ │ ├── SnapshotsExtended.php │ │ │ │ │ │ │ └── Stats.php │ │ │ │ │ │ ├── RevisionCheckResponse.php │ │ │ │ │ │ ├── ScoreSubmission.php │ │ │ │ │ │ ├── Snapshot.php │ │ │ │ │ │ ├── SnapshotCoverImageResource.php │ │ │ │ │ │ ├── SnapshotDataResource.php │ │ │ │ │ │ ├── SnapshotExtended.php │ │ │ │ │ │ ├── SnapshotImage.php │ │ │ │ │ │ ├── SnapshotListResponse.php │ │ │ │ │ │ ├── SnapshotMetadata.php │ │ │ │ │ │ ├── SnapshotRevision.php │ │ │ │ │ │ └── StatsResponse.php │ │ │ │ │ │ ├── GamesConfiguration.php │ │ │ │ │ │ ├── GamesConfiguration │ │ │ │ │ │ ├── AchievementConfiguration.php │ │ │ │ │ │ ├── AchievementConfigurationDetail.php │ │ │ │ │ │ ├── AchievementConfigurationListResponse.php │ │ │ │ │ │ ├── GamesNumberAffixConfiguration.php │ │ │ │ │ │ ├── GamesNumberFormatConfiguration.php │ │ │ │ │ │ ├── ImageConfiguration.php │ │ │ │ │ │ ├── LeaderboardConfiguration.php │ │ │ │ │ │ ├── LeaderboardConfigurationDetail.php │ │ │ │ │ │ ├── LeaderboardConfigurationListResponse.php │ │ │ │ │ │ ├── LocalizedString.php │ │ │ │ │ │ ├── LocalizedStringBundle.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── AchievementConfigurations.php │ │ │ │ │ │ │ ├── ImageConfigurations.php │ │ │ │ │ │ │ └── LeaderboardConfigurations.php │ │ │ │ │ │ ├── GamesManagement.php │ │ │ │ │ │ ├── GamesManagement │ │ │ │ │ │ ├── AchievementResetAllResponse.php │ │ │ │ │ │ ├── AchievementResetMultipleForAllRequest.php │ │ │ │ │ │ ├── AchievementResetResponse.php │ │ │ │ │ │ ├── EventsResetMultipleForAllRequest.php │ │ │ │ │ │ ├── GamesPlayerExperienceInfoResource.php │ │ │ │ │ │ ├── GamesPlayerLevelResource.php │ │ │ │ │ │ ├── HiddenPlayer.php │ │ │ │ │ │ ├── HiddenPlayerList.php │ │ │ │ │ │ ├── Player.php │ │ │ │ │ │ ├── PlayerName.php │ │ │ │ │ │ ├── PlayerScoreResetAllResponse.php │ │ │ │ │ │ ├── PlayerScoreResetResponse.php │ │ │ │ │ │ ├── ProfileSettings.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Achievements.php │ │ │ │ │ │ │ ├── Applications.php │ │ │ │ │ │ │ ├── Events.php │ │ │ │ │ │ │ ├── Players.php │ │ │ │ │ │ │ └── Scores.php │ │ │ │ │ │ └── ScoresResetMultipleForAllRequest.php │ │ │ │ │ │ ├── Genomics.php │ │ │ │ │ │ ├── Genomics │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ComputeEngine.php │ │ │ │ │ │ ├── ContainerKilledEvent.php │ │ │ │ │ │ ├── ContainerStartedEvent.php │ │ │ │ │ │ ├── ContainerStoppedEvent.php │ │ │ │ │ │ ├── DelayedEvent.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── FailedEvent.php │ │ │ │ │ │ ├── GenomicsEmpty.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationEvent.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── PullStartedEvent.php │ │ │ │ │ │ ├── PullStoppedEvent.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── RunPipelineResponse.php │ │ │ │ │ │ ├── RuntimeMetadata.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── UnexpectedExitStatusEvent.php │ │ │ │ │ │ ├── WorkerAssignedEvent.php │ │ │ │ │ │ └── WorkerReleasedEvent.php │ │ │ │ │ │ ├── Gmail.php │ │ │ │ │ │ ├── Gmail │ │ │ │ │ │ ├── AutoForwarding.php │ │ │ │ │ │ ├── BatchDeleteMessagesRequest.php │ │ │ │ │ │ ├── BatchModifyMessagesRequest.php │ │ │ │ │ │ ├── Delegate.php │ │ │ │ │ │ ├── Draft.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── FilterAction.php │ │ │ │ │ │ ├── FilterCriteria.php │ │ │ │ │ │ ├── ForwardingAddress.php │ │ │ │ │ │ ├── History.php │ │ │ │ │ │ ├── HistoryLabelAdded.php │ │ │ │ │ │ ├── HistoryLabelRemoved.php │ │ │ │ │ │ ├── HistoryMessageAdded.php │ │ │ │ │ │ ├── HistoryMessageDeleted.php │ │ │ │ │ │ ├── ImapSettings.php │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ ├── LabelColor.php │ │ │ │ │ │ ├── LanguageSettings.php │ │ │ │ │ │ ├── ListDelegatesResponse.php │ │ │ │ │ │ ├── ListDraftsResponse.php │ │ │ │ │ │ ├── ListFiltersResponse.php │ │ │ │ │ │ ├── ListForwardingAddressesResponse.php │ │ │ │ │ │ ├── ListHistoryResponse.php │ │ │ │ │ │ ├── ListLabelsResponse.php │ │ │ │ │ │ ├── ListMessagesResponse.php │ │ │ │ │ │ ├── ListSendAsResponse.php │ │ │ │ │ │ ├── ListSmimeInfoResponse.php │ │ │ │ │ │ ├── ListThreadsResponse.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ ├── MessagePart.php │ │ │ │ │ │ ├── MessagePartBody.php │ │ │ │ │ │ ├── MessagePartHeader.php │ │ │ │ │ │ ├── ModifyMessageRequest.php │ │ │ │ │ │ ├── ModifyThreadRequest.php │ │ │ │ │ │ ├── PopSettings.php │ │ │ │ │ │ ├── Profile.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ ├── UsersDrafts.php │ │ │ │ │ │ │ ├── UsersHistory.php │ │ │ │ │ │ │ ├── UsersLabels.php │ │ │ │ │ │ │ ├── UsersMessages.php │ │ │ │ │ │ │ ├── UsersMessagesAttachments.php │ │ │ │ │ │ │ ├── UsersSettings.php │ │ │ │ │ │ │ ├── UsersSettingsDelegates.php │ │ │ │ │ │ │ ├── UsersSettingsFilters.php │ │ │ │ │ │ │ ├── UsersSettingsForwardingAddresses.php │ │ │ │ │ │ │ ├── UsersSettingsSendAs.php │ │ │ │ │ │ │ ├── UsersSettingsSendAsSmimeInfo.php │ │ │ │ │ │ │ └── UsersThreads.php │ │ │ │ │ │ ├── SendAs.php │ │ │ │ │ │ ├── SmimeInfo.php │ │ │ │ │ │ ├── SmtpMsa.php │ │ │ │ │ │ ├── Thread.php │ │ │ │ │ │ ├── VacationSettings.php │ │ │ │ │ │ ├── WatchRequest.php │ │ │ │ │ │ └── WatchResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdmin.php │ │ │ │ │ │ ├── GoogleAnalyticsAdmin │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAccount.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAccountSummary.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAndroidAppDataStream.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLink.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLinksRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchCreateUserLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchGetUserLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaCreateUserLinkRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaDataSharingSettings.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaFirebaseLink.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaGlobalSiteTag.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaGoogleAdsLink.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaIosAppDataStream.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListAccountSummariesResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListAccountsResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListAndroidAppDataStreamsResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListGoogleAdsLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListIosAppDataStreamsResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListPropertiesResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListUserLinksResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaListWebDataStreamsResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaProperty.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaPropertySummary.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaProvisionAccountTicketRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaProvisionAccountTicketResponse.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaUserLink.php │ │ │ │ │ │ ├── GoogleAnalyticsAdminV1alphaWebDataStream.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── AccountSummaries.php │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsUserLinks.php │ │ │ │ │ │ │ ├── Properties.php │ │ │ │ │ │ │ ├── PropertiesAndroidAppDataStreams.php │ │ │ │ │ │ │ ├── PropertiesFirebaseLinks.php │ │ │ │ │ │ │ ├── PropertiesGoogleAdsLinks.php │ │ │ │ │ │ │ ├── PropertiesIosAppDataStreams.php │ │ │ │ │ │ │ ├── PropertiesUserLinks.php │ │ │ │ │ │ │ └── PropertiesWebDataStreams.php │ │ │ │ │ │ ├── GroupsMigration.php │ │ │ │ │ │ ├── GroupsMigration │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── Archive.php │ │ │ │ │ │ ├── Groupssettings.php │ │ │ │ │ │ ├── Groupssettings │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── Groups.php │ │ │ │ │ │ ├── HangoutsChat.php │ │ │ │ │ │ ├── HangoutsChat │ │ │ │ │ │ ├── ActionParameter.php │ │ │ │ │ │ ├── ActionResponse.php │ │ │ │ │ │ ├── Annotation.php │ │ │ │ │ │ ├── Attachment.php │ │ │ │ │ │ ├── AttachmentDataRef.php │ │ │ │ │ │ ├── Button.php │ │ │ │ │ │ ├── Card.php │ │ │ │ │ │ ├── CardAction.php │ │ │ │ │ │ ├── CardHeader.php │ │ │ │ │ │ ├── ChatEmpty.php │ │ │ │ │ │ ├── DeprecatedEvent.php │ │ │ │ │ │ ├── DriveDataRef.php │ │ │ │ │ │ ├── FormAction.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImageButton.php │ │ │ │ │ │ ├── KeyValue.php │ │ │ │ │ │ ├── ListMembershipsResponse.php │ │ │ │ │ │ ├── ListSpacesResponse.php │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ ├── Membership.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ ├── OnClick.php │ │ │ │ │ │ ├── OpenLink.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ │ ├── Spaces.php │ │ │ │ │ │ │ ├── SpacesMembers.php │ │ │ │ │ │ │ ├── SpacesMessages.php │ │ │ │ │ │ │ └── SpacesMessagesAttachments.php │ │ │ │ │ │ ├── Section.php │ │ │ │ │ │ ├── SlashCommand.php │ │ │ │ │ │ ├── SlashCommandMetadata.php │ │ │ │ │ │ ├── Space.php │ │ │ │ │ │ ├── TextButton.php │ │ │ │ │ │ ├── TextParagraph.php │ │ │ │ │ │ ├── Thread.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserMentionMetadata.php │ │ │ │ │ │ └── WidgetMarkup.php │ │ │ │ │ │ ├── HomeGraphService.php │ │ │ │ │ │ ├── HomeGraphService │ │ │ │ │ │ ├── AgentDeviceId.php │ │ │ │ │ │ ├── AgentOtherDeviceId.php │ │ │ │ │ │ ├── Device.php │ │ │ │ │ │ ├── DeviceInfo.php │ │ │ │ │ │ ├── DeviceNames.php │ │ │ │ │ │ ├── HomegraphEmpty.php │ │ │ │ │ │ ├── QueryRequest.php │ │ │ │ │ │ ├── QueryRequestInput.php │ │ │ │ │ │ ├── QueryRequestPayload.php │ │ │ │ │ │ ├── QueryResponse.php │ │ │ │ │ │ ├── QueryResponsePayload.php │ │ │ │ │ │ ├── ReportStateAndNotificationDevice.php │ │ │ │ │ │ ├── ReportStateAndNotificationRequest.php │ │ │ │ │ │ ├── ReportStateAndNotificationResponse.php │ │ │ │ │ │ ├── RequestSyncDevicesRequest.php │ │ │ │ │ │ ├── RequestSyncDevicesResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AgentUsers.php │ │ │ │ │ │ │ └── Devices.php │ │ │ │ │ │ ├── StateAndNotificationPayload.php │ │ │ │ │ │ ├── SyncRequest.php │ │ │ │ │ │ ├── SyncResponse.php │ │ │ │ │ │ └── SyncResponsePayload.php │ │ │ │ │ │ ├── IAMCredentials.php │ │ │ │ │ │ ├── IAMCredentials │ │ │ │ │ │ ├── GenerateAccessTokenRequest.php │ │ │ │ │ │ ├── GenerateAccessTokenResponse.php │ │ │ │ │ │ ├── GenerateIdTokenRequest.php │ │ │ │ │ │ ├── GenerateIdTokenResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ └── ProjectsServiceAccounts.php │ │ │ │ │ │ ├── SignBlobRequest.php │ │ │ │ │ │ ├── SignBlobResponse.php │ │ │ │ │ │ ├── SignJwtRequest.php │ │ │ │ │ │ └── SignJwtResponse.php │ │ │ │ │ │ ├── Iam.php │ │ │ │ │ │ ├── Iam │ │ │ │ │ │ ├── AdminAuditData.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditData.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuditableService.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── BindingDelta.php │ │ │ │ │ │ ├── CreateRoleRequest.php │ │ │ │ │ │ ├── CreateServiceAccountKeyRequest.php │ │ │ │ │ │ ├── CreateServiceAccountRequest.php │ │ │ │ │ │ ├── DisableServiceAccountRequest.php │ │ │ │ │ │ ├── EnableServiceAccountRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── IamEmpty.php │ │ │ │ │ │ ├── LintPolicyRequest.php │ │ │ │ │ │ ├── LintPolicyResponse.php │ │ │ │ │ │ ├── LintResult.php │ │ │ │ │ │ ├── ListRolesResponse.php │ │ │ │ │ │ ├── ListServiceAccountKeysResponse.php │ │ │ │ │ │ ├── ListServiceAccountsResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PatchServiceAccountRequest.php │ │ │ │ │ │ ├── Permission.php │ │ │ │ │ │ ├── PermissionDelta.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyDelta.php │ │ │ │ │ │ ├── QueryAuditableServicesRequest.php │ │ │ │ │ │ ├── QueryAuditableServicesResponse.php │ │ │ │ │ │ ├── QueryGrantableRolesRequest.php │ │ │ │ │ │ ├── QueryGrantableRolesResponse.php │ │ │ │ │ │ ├── QueryTestablePermissionsRequest.php │ │ │ │ │ │ ├── QueryTestablePermissionsResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── IamPolicies.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsRoles.php │ │ │ │ │ │ │ ├── Permissions.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkloadIdentityPools.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProviders.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProvidersOperations.php │ │ │ │ │ │ │ ├── ProjectsRoles.php │ │ │ │ │ │ │ ├── ProjectsServiceAccounts.php │ │ │ │ │ │ │ ├── ProjectsServiceAccountsKeys.php │ │ │ │ │ │ │ └── Roles.php │ │ │ │ │ │ ├── Role.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── ServiceAccountKey.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SignBlobRequest.php │ │ │ │ │ │ ├── SignBlobResponse.php │ │ │ │ │ │ ├── SignJwtRequest.php │ │ │ │ │ │ ├── SignJwtResponse.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UndeleteRoleRequest.php │ │ │ │ │ │ ├── UndeleteServiceAccountRequest.php │ │ │ │ │ │ ├── UndeleteServiceAccountResponse.php │ │ │ │ │ │ └── UploadServiceAccountKeyRequest.php │ │ │ │ │ │ ├── IdentityToolkit.php │ │ │ │ │ │ ├── IdentityToolkit │ │ │ │ │ │ ├── CreateAuthUriResponse.php │ │ │ │ │ │ ├── DeleteAccountResponse.php │ │ │ │ │ │ ├── DownloadAccountResponse.php │ │ │ │ │ │ ├── EmailLinkSigninResponse.php │ │ │ │ │ │ ├── EmailTemplate.php │ │ │ │ │ │ ├── GetAccountInfoResponse.php │ │ │ │ │ │ ├── GetOobConfirmationCodeResponse.php │ │ │ │ │ │ ├── GetRecaptchaParamResponse.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyCreateAuthUriRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyDeleteAccountRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyDownloadAccountRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyEmailLinkSigninRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyGetAccountInfoRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyGetProjectConfigResponse.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyResetPasswordRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySendVerificationCodeRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySendVerificationCodeResponse.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySetAccountInfoRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySetProjectConfigRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySetProjectConfigResponse.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySignOutUserRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySignOutUserResponse.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartySignupNewUserRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyUploadAccountRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyVerifyAssertionRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyVerifyPasswordRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php │ │ │ │ │ │ ├── IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php │ │ │ │ │ │ ├── IdpConfig.php │ │ │ │ │ │ ├── Relyingparty.php │ │ │ │ │ │ ├── ResetPasswordResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Relyingparty.php │ │ │ │ │ │ ├── SetAccountInfoResponse.php │ │ │ │ │ │ ├── SetAccountInfoResponseProviderUserInfo.php │ │ │ │ │ │ ├── SignupNewUserResponse.php │ │ │ │ │ │ ├── UploadAccountResponse.php │ │ │ │ │ │ ├── UploadAccountResponseError.php │ │ │ │ │ │ ├── UserInfo.php │ │ │ │ │ │ ├── UserInfoProviderUserInfo.php │ │ │ │ │ │ ├── VerifyAssertionResponse.php │ │ │ │ │ │ ├── VerifyCustomTokenResponse.php │ │ │ │ │ │ └── VerifyPasswordResponse.php │ │ │ │ │ │ ├── Indexing.php │ │ │ │ │ │ ├── Indexing │ │ │ │ │ │ ├── PublishUrlNotificationResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── UrlNotifications.php │ │ │ │ │ │ ├── UrlNotification.php │ │ │ │ │ │ └── UrlNotificationMetadata.php │ │ │ │ │ │ ├── JobService.php │ │ │ │ │ │ ├── JobService │ │ │ │ │ │ ├── BatchDeleteJobsRequest.php │ │ │ │ │ │ ├── BucketRange.php │ │ │ │ │ │ ├── BucketizedCount.php │ │ │ │ │ │ ├── CommuteInfo.php │ │ │ │ │ │ ├── CommutePreference.php │ │ │ │ │ │ ├── Company.php │ │ │ │ │ │ ├── CompanyInfoSource.php │ │ │ │ │ │ ├── CompensationEntry.php │ │ │ │ │ │ ├── CompensationFilter.php │ │ │ │ │ │ ├── CompensationHistogramRequest.php │ │ │ │ │ │ ├── CompensationHistogramResult.php │ │ │ │ │ │ ├── CompensationInfo.php │ │ │ │ │ │ ├── CompensationRange.php │ │ │ │ │ │ ├── CompleteQueryResponse.php │ │ │ │ │ │ ├── CompletionResult.php │ │ │ │ │ │ ├── CreateJobRequest.php │ │ │ │ │ │ ├── CustomAttribute.php │ │ │ │ │ │ ├── CustomAttributeHistogramRequest.php │ │ │ │ │ │ ├── CustomAttributeHistogramResult.php │ │ │ │ │ │ ├── CustomField.php │ │ │ │ │ │ ├── CustomFieldFilter.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DeleteJobsByFilterRequest.php │ │ │ │ │ │ ├── DeviceInfo.php │ │ │ │ │ │ ├── ExtendedCompensationFilter.php │ │ │ │ │ │ ├── ExtendedCompensationInfo.php │ │ │ │ │ │ ├── ExtendedCompensationInfoCompensationEntry.php │ │ │ │ │ │ ├── ExtendedCompensationInfoCompensationRange.php │ │ │ │ │ │ ├── ExtendedCompensationInfoDecimal.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── GetHistogramRequest.php │ │ │ │ │ │ ├── GetHistogramResponse.php │ │ │ │ │ │ ├── HistogramFacets.php │ │ │ │ │ │ ├── HistogramResult.php │ │ │ │ │ │ ├── HistogramResults.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobFilters.php │ │ │ │ │ │ ├── JobLocation.php │ │ │ │ │ │ ├── JobProcessingOptions.php │ │ │ │ │ │ ├── JobQuery.php │ │ │ │ │ │ ├── JobsEmpty.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── ListCompaniesResponse.php │ │ │ │ │ │ ├── ListCompanyJobsResponse.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── LocationFilter.php │ │ │ │ │ │ ├── MatchingJob.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── NumericBucketingOption.php │ │ │ │ │ │ ├── NumericBucketingResult.php │ │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ │ ├── RequestMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Companies.php │ │ │ │ │ │ │ ├── CompaniesJobs.php │ │ │ │ │ │ │ ├── Jobs.php │ │ │ │ │ │ │ └── V2.php │ │ │ │ │ │ ├── ResponseMetadata.php │ │ │ │ │ │ ├── SearchJobsRequest.php │ │ │ │ │ │ ├── SearchJobsResponse.php │ │ │ │ │ │ ├── SpellingCorrection.php │ │ │ │ │ │ ├── StringValues.php │ │ │ │ │ │ └── UpdateJobRequest.php │ │ │ │ │ │ ├── Kgsearch.php │ │ │ │ │ │ ├── Kgsearch │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Entities.php │ │ │ │ │ │ └── SearchResponse.php │ │ │ │ │ │ ├── Libraryagent.php │ │ │ │ │ │ ├── Libraryagent │ │ │ │ │ │ ├── GoogleExampleLibraryagentV1Book.php │ │ │ │ │ │ ├── GoogleExampleLibraryagentV1ListBooksResponse.php │ │ │ │ │ │ ├── GoogleExampleLibraryagentV1ListShelvesResponse.php │ │ │ │ │ │ ├── GoogleExampleLibraryagentV1Shelf.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Shelves.php │ │ │ │ │ │ │ └── ShelvesBooks.php │ │ │ │ │ │ ├── Licensing.php │ │ │ │ │ │ ├── Licensing │ │ │ │ │ │ ├── LicenseAssignment.php │ │ │ │ │ │ ├── LicenseAssignmentInsert.php │ │ │ │ │ │ ├── LicenseAssignmentList.php │ │ │ │ │ │ ├── LicensingEmpty.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── LicenseAssignments.php │ │ │ │ │ │ ├── Localservices.php │ │ │ │ │ │ ├── Localservices │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1AccountReport.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1AggregatorInfo.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1MessageLead.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1PhoneLead.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1SearchAccountReportsResponse.php │ │ │ │ │ │ ├── GoogleAdsHomeservicesLocalservicesV1SearchDetailedLeadReportsResponse.php │ │ │ │ │ │ ├── GoogleTypeTimeZone.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── AccountReports.php │ │ │ │ │ │ │ └── DetailedLeadReports.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── Logging │ │ │ │ │ │ ├── BigQueryOptions.php │ │ │ │ │ │ ├── BucketOptions.php │ │ │ │ │ │ ├── CmekSettings.php │ │ │ │ │ │ ├── Explicit.php │ │ │ │ │ │ ├── Exponential.php │ │ │ │ │ │ ├── HttpRequest.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── Linear.php │ │ │ │ │ │ ├── ListBucketsResponse.php │ │ │ │ │ │ ├── ListExclusionsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListLogEntriesRequest.php │ │ │ │ │ │ ├── ListLogEntriesResponse.php │ │ │ │ │ │ ├── ListLogMetricsResponse.php │ │ │ │ │ │ ├── ListLogsResponse.php │ │ │ │ │ │ ├── ListMonitoredResourceDescriptorsResponse.php │ │ │ │ │ │ ├── ListSinksResponse.php │ │ │ │ │ │ ├── ListViewsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LogBucket.php │ │ │ │ │ │ ├── LogEntry.php │ │ │ │ │ │ ├── LogEntryOperation.php │ │ │ │ │ │ ├── LogEntrySourceLocation.php │ │ │ │ │ │ ├── LogExclusion.php │ │ │ │ │ │ ├── LogLine.php │ │ │ │ │ │ ├── LogMetric.php │ │ │ │ │ │ ├── LogSink.php │ │ │ │ │ │ ├── LogView.php │ │ │ │ │ │ ├── LoggingEmpty.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MonitoredResource.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── MonitoredResourceMetadata.php │ │ │ │ │ │ ├── RequestLog.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── BillingAccounts.php │ │ │ │ │ │ │ ├── BillingAccountsBuckets.php │ │ │ │ │ │ │ ├── BillingAccountsBucketsViews.php │ │ │ │ │ │ │ ├── BillingAccountsExclusions.php │ │ │ │ │ │ │ ├── BillingAccountsLocations.php │ │ │ │ │ │ │ ├── BillingAccountsLocationsBuckets.php │ │ │ │ │ │ │ ├── BillingAccountsLocationsBucketsViews.php │ │ │ │ │ │ │ ├── BillingAccountsLogs.php │ │ │ │ │ │ │ ├── BillingAccountsSinks.php │ │ │ │ │ │ │ ├── Entries.php │ │ │ │ │ │ │ ├── Exclusions.php │ │ │ │ │ │ │ ├── Folders.php │ │ │ │ │ │ │ ├── FoldersExclusions.php │ │ │ │ │ │ │ ├── FoldersLocations.php │ │ │ │ │ │ │ ├── FoldersLocationsBuckets.php │ │ │ │ │ │ │ ├── FoldersLocationsBucketsViews.php │ │ │ │ │ │ │ ├── FoldersLogs.php │ │ │ │ │ │ │ ├── FoldersSinks.php │ │ │ │ │ │ │ ├── Locations.php │ │ │ │ │ │ │ ├── LocationsBuckets.php │ │ │ │ │ │ │ ├── LocationsBucketsViews.php │ │ │ │ │ │ │ ├── Logs.php │ │ │ │ │ │ │ ├── MonitoredResourceDescriptors.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsExclusions.php │ │ │ │ │ │ │ ├── OrganizationsLocations.php │ │ │ │ │ │ │ ├── OrganizationsLocationsBuckets.php │ │ │ │ │ │ │ ├── OrganizationsLocationsBucketsViews.php │ │ │ │ │ │ │ ├── OrganizationsLogs.php │ │ │ │ │ │ │ ├── OrganizationsSinks.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsExclusions.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsBuckets.php │ │ │ │ │ │ │ ├── ProjectsLocationsBucketsViews.php │ │ │ │ │ │ │ ├── ProjectsLogs.php │ │ │ │ │ │ │ ├── ProjectsMetrics.php │ │ │ │ │ │ │ ├── ProjectsSinks.php │ │ │ │ │ │ │ ├── Sinks.php │ │ │ │ │ │ │ └── V2.php │ │ │ │ │ │ ├── SourceLocation.php │ │ │ │ │ │ ├── SourceReference.php │ │ │ │ │ │ ├── SuppressionInfo.php │ │ │ │ │ │ ├── TailLogEntriesRequest.php │ │ │ │ │ │ ├── TailLogEntriesResponse.php │ │ │ │ │ │ ├── UndeleteBucketRequest.php │ │ │ │ │ │ ├── WriteLogEntriesRequest.php │ │ │ │ │ │ └── WriteLogEntriesResponse.php │ │ │ │ │ │ ├── ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.php │ │ │ │ │ │ ├── ManagedServiceforMicrosoftActiveDirectoryConsumerAPI │ │ │ │ │ │ ├── AttachTrustRequest.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── DailyCycle.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DenyMaintenancePeriod.php │ │ │ │ │ │ ├── DetachTrustRequest.php │ │ │ │ │ │ ├── Domain.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GoogleCloudManagedidentitiesV1OpMetadata.php │ │ │ │ │ │ ├── GoogleCloudManagedidentitiesV1alpha1OpMetadata.php │ │ │ │ │ │ ├── GoogleCloudManagedidentitiesV1beta1OpMetadata.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1Instance.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ │ │ │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ │ │ │ │ ├── ListDomainsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── MaintenancePolicy.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── ManagedidentitiesEmpty.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ReconfigureTrustRequest.php │ │ │ │ │ │ ├── ResetAdminPasswordRequest.php │ │ │ │ │ │ ├── ResetAdminPasswordResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsManagedidentitiesGlobal.php │ │ │ │ │ │ │ ├── ProjectsLocationsManagedidentitiesGlobalDomains.php │ │ │ │ │ │ │ └── ProjectsLocationsManagedidentitiesGlobalOperations.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── Trust.php │ │ │ │ │ │ ├── UpdatePolicy.php │ │ │ │ │ │ ├── ValidateTrustRequest.php │ │ │ │ │ │ └── WeeklyCycle.php │ │ │ │ │ │ ├── Manager.php │ │ │ │ │ │ ├── Manager │ │ │ │ │ │ ├── AccessConfig.php │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── AllowedRule.php │ │ │ │ │ │ ├── AutoscalingModule.php │ │ │ │ │ │ ├── AutoscalingModuleStatus.php │ │ │ │ │ │ ├── DeployState.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── DeploymentsListResponse.php │ │ │ │ │ │ ├── DeploymentsResource.php │ │ │ │ │ │ ├── DiskAttachment.php │ │ │ │ │ │ ├── EnvVariable.php │ │ │ │ │ │ ├── ExistingDisk.php │ │ │ │ │ │ ├── FirewallModule.php │ │ │ │ │ │ ├── FirewallModuleStatus.php │ │ │ │ │ │ ├── HealthCheckModule.php │ │ │ │ │ │ ├── HealthCheckModuleStatus.php │ │ │ │ │ │ ├── LbModule.php │ │ │ │ │ │ ├── LbModuleStatus.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── MetadataItem.php │ │ │ │ │ │ ├── Module.php │ │ │ │ │ │ ├── ModuleStatus.php │ │ │ │ │ │ ├── NetworkInterface.php │ │ │ │ │ │ ├── NetworkModule.php │ │ │ │ │ │ ├── NetworkModuleStatus.php │ │ │ │ │ │ ├── NewDisk.php │ │ │ │ │ │ ├── NewDiskInitializeParams.php │ │ │ │ │ │ ├── ParamOverride.php │ │ │ │ │ │ ├── ReplicaPoolModule.php │ │ │ │ │ │ ├── ReplicaPoolModuleStatus.php │ │ │ │ │ │ ├── ReplicaPoolParams.php │ │ │ │ │ │ ├── ReplicaPoolParamsV1Beta1.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── Tag.php │ │ │ │ │ │ ├── Template.php │ │ │ │ │ │ ├── TemplatesListResponse.php │ │ │ │ │ │ └── TemplatesResource.php │ │ │ │ │ │ ├── ManufacturerCenter.php │ │ │ │ │ │ ├── ManufacturerCenter │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ ├── Capacity.php │ │ │ │ │ │ ├── Count.php │ │ │ │ │ │ ├── DestinationStatus.php │ │ │ │ │ │ ├── FeatureDescription.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Issue.php │ │ │ │ │ │ ├── ListProductsResponse.php │ │ │ │ │ │ ├── ManufacturersEmpty.php │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── ProductDetail.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ └── AccountsProducts.php │ │ │ │ │ │ ├── Mirror.php │ │ │ │ │ │ ├── Mirror │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── Attachment.php │ │ │ │ │ │ ├── AttachmentsListResponse.php │ │ │ │ │ │ ├── AuthToken.php │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── Contact.php │ │ │ │ │ │ ├── ContactsListResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationsListResponse.php │ │ │ │ │ │ ├── MenuItem.php │ │ │ │ │ │ ├── MenuValue.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── NotificationConfig.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── Contacts.php │ │ │ │ │ │ │ ├── Locations.php │ │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ │ ├── Subscriptions.php │ │ │ │ │ │ │ ├── Timeline.php │ │ │ │ │ │ │ └── TimelineAttachments.php │ │ │ │ │ │ ├── Setting.php │ │ │ │ │ │ ├── Subscription.php │ │ │ │ │ │ ├── SubscriptionsListResponse.php │ │ │ │ │ │ ├── TimelineItem.php │ │ │ │ │ │ ├── TimelineListResponse.php │ │ │ │ │ │ ├── UserAction.php │ │ │ │ │ │ └── UserData.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── Monitoring │ │ │ │ │ │ ├── Aggregation.php │ │ │ │ │ │ ├── AlertPolicy.php │ │ │ │ │ │ ├── AppEngine.php │ │ │ │ │ │ ├── AvailabilityCriteria.php │ │ │ │ │ │ ├── BasicAuthentication.php │ │ │ │ │ │ ├── BasicSli.php │ │ │ │ │ │ ├── BucketOptions.php │ │ │ │ │ │ ├── CloudEndpoints.php │ │ │ │ │ │ ├── ClusterIstio.php │ │ │ │ │ │ ├── CollectdPayload.php │ │ │ │ │ │ ├── CollectdPayloadError.php │ │ │ │ │ │ ├── CollectdValue.php │ │ │ │ │ │ ├── CollectdValueError.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── ContentMatcher.php │ │ │ │ │ │ ├── CreateCollectdTimeSeriesRequest.php │ │ │ │ │ │ ├── CreateCollectdTimeSeriesResponse.php │ │ │ │ │ │ ├── CreateTimeSeriesRequest.php │ │ │ │ │ │ ├── CreateTimeSeriesSummary.php │ │ │ │ │ │ ├── Custom.php │ │ │ │ │ │ ├── Distribution.php │ │ │ │ │ │ ├── DistributionCut.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DroppedLabels.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Exemplar.php │ │ │ │ │ │ ├── Explicit.php │ │ │ │ │ │ ├── Exponential.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── GetNotificationChannelVerificationCodeRequest.php │ │ │ │ │ │ ├── GetNotificationChannelVerificationCodeResponse.php │ │ │ │ │ │ ├── GoogleMonitoringV3Range.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── HttpCheck.php │ │ │ │ │ │ ├── InternalChecker.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── LabelValue.php │ │ │ │ │ │ ├── LatencyCriteria.php │ │ │ │ │ │ ├── Linear.php │ │ │ │ │ │ ├── ListAlertPoliciesResponse.php │ │ │ │ │ │ ├── ListGroupMembersResponse.php │ │ │ │ │ │ ├── ListGroupsResponse.php │ │ │ │ │ │ ├── ListMetricDescriptorsResponse.php │ │ │ │ │ │ ├── ListMonitoredResourceDescriptorsResponse.php │ │ │ │ │ │ ├── ListNotificationChannelDescriptorsResponse.php │ │ │ │ │ │ ├── ListNotificationChannelsResponse.php │ │ │ │ │ │ ├── ListServiceLevelObjectivesResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── ListTimeSeriesResponse.php │ │ │ │ │ │ ├── ListUptimeCheckConfigsResponse.php │ │ │ │ │ │ ├── ListUptimeCheckIpsResponse.php │ │ │ │ │ │ ├── MeshIstio.php │ │ │ │ │ │ ├── Metric.php │ │ │ │ │ │ ├── MetricAbsence.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRange.php │ │ │ │ │ │ ├── MetricThreshold.php │ │ │ │ │ │ ├── MonitoredResource.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── MonitoredResourceMetadata.php │ │ │ │ │ │ ├── MonitoringEmpty.php │ │ │ │ │ │ ├── MonitoringQueryLanguageCondition.php │ │ │ │ │ │ ├── MutationRecord.php │ │ │ │ │ │ ├── NotificationChannel.php │ │ │ │ │ │ ├── NotificationChannelDescriptor.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── PerformanceThreshold.php │ │ │ │ │ │ ├── Point.php │ │ │ │ │ │ ├── PointData.php │ │ │ │ │ │ ├── QueryTimeSeriesRequest.php │ │ │ │ │ │ ├── QueryTimeSeriesResponse.php │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ ├── RequestBasedSli.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAlertPolicies.php │ │ │ │ │ │ │ ├── ProjectsCollectdTimeSeries.php │ │ │ │ │ │ │ ├── ProjectsGroups.php │ │ │ │ │ │ │ ├── ProjectsGroupsMembers.php │ │ │ │ │ │ │ ├── ProjectsMetricDescriptors.php │ │ │ │ │ │ │ ├── ProjectsMonitoredResourceDescriptors.php │ │ │ │ │ │ │ ├── ProjectsNotificationChannelDescriptors.php │ │ │ │ │ │ │ ├── ProjectsNotificationChannels.php │ │ │ │ │ │ │ ├── ProjectsTimeSeries.php │ │ │ │ │ │ │ ├── ProjectsUptimeCheckConfigs.php │ │ │ │ │ │ │ ├── Services.php │ │ │ │ │ │ │ ├── ServicesServiceLevelObjectives.php │ │ │ │ │ │ │ └── UptimeCheckIps.php │ │ │ │ │ │ ├── ResourceGroup.php │ │ │ │ │ │ ├── SendNotificationChannelVerificationCodeRequest.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── ServiceLevelIndicator.php │ │ │ │ │ │ ├── ServiceLevelObjective.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SpanContext.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TcpCheck.php │ │ │ │ │ │ ├── Telemetry.php │ │ │ │ │ │ ├── TimeInterval.php │ │ │ │ │ │ ├── TimeSeries.php │ │ │ │ │ │ ├── TimeSeriesData.php │ │ │ │ │ │ ├── TimeSeriesDescriptor.php │ │ │ │ │ │ ├── TimeSeriesRatio.php │ │ │ │ │ │ ├── Trigger.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── TypedValue.php │ │ │ │ │ │ ├── UptimeCheckConfig.php │ │ │ │ │ │ ├── UptimeCheckIp.php │ │ │ │ │ │ ├── ValueDescriptor.php │ │ │ │ │ │ ├── VerifyNotificationChannelRequest.php │ │ │ │ │ │ └── WindowsBasedSli.php │ │ │ │ │ │ ├── NetworkManagement.php │ │ │ │ │ │ ├── NetworkManagement │ │ │ │ │ │ ├── AbortInfo.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── ConnectivityTest.php │ │ │ │ │ │ ├── DeliverInfo.php │ │ │ │ │ │ ├── DropInfo.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── EndpointInfo.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── FirewallInfo.php │ │ │ │ │ │ ├── ForwardInfo.php │ │ │ │ │ │ ├── ForwardingRuleInfo.php │ │ │ │ │ │ ├── InstanceInfo.php │ │ │ │ │ │ ├── ListConnectivityTestsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── LoadBalancerBackend.php │ │ │ │ │ │ ├── LoadBalancerInfo.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── NetworkInfo.php │ │ │ │ │ │ ├── NetworkmanagementEmpty.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ReachabilityDetails.php │ │ │ │ │ │ ├── RerunConnectivityTestRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsNetworkmanagementGlobal.php │ │ │ │ │ │ │ ├── ProjectsLocationsNetworkmanagementGlobalConnectivityTests.php │ │ │ │ │ │ │ └── ProjectsLocationsNetworkmanagementGlobalOperations.php │ │ │ │ │ │ ├── RouteInfo.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Step.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Trace.php │ │ │ │ │ │ ├── VpnGatewayInfo.php │ │ │ │ │ │ └── VpnTunnelInfo.php │ │ │ │ │ │ ├── OSConfig.php │ │ │ │ │ │ ├── OSConfig │ │ │ │ │ │ ├── AptSettings.php │ │ │ │ │ │ ├── CancelPatchJobRequest.php │ │ │ │ │ │ ├── ExecStep.php │ │ │ │ │ │ ├── ExecStepConfig.php │ │ │ │ │ │ ├── ExecutePatchJobRequest.php │ │ │ │ │ │ ├── FixedOrPercent.php │ │ │ │ │ │ ├── GcsObject.php │ │ │ │ │ │ ├── GooSettings.php │ │ │ │ │ │ ├── Inventory.php │ │ │ │ │ │ ├── InventoryItem.php │ │ │ │ │ │ ├── InventoryOsInfo.php │ │ │ │ │ │ ├── InventorySoftwarePackage.php │ │ │ │ │ │ ├── InventoryVersionedPackage.php │ │ │ │ │ │ ├── InventoryWindowsQuickFixEngineeringPackage.php │ │ │ │ │ │ ├── InventoryWindowsUpdatePackage.php │ │ │ │ │ │ ├── InventoryWindowsUpdatePackageWindowsUpdateCategory.php │ │ │ │ │ │ ├── InventoryZypperPatch.php │ │ │ │ │ │ ├── ListPatchDeploymentsResponse.php │ │ │ │ │ │ ├── ListPatchJobInstanceDetailsResponse.php │ │ │ │ │ │ ├── ListPatchJobsResponse.php │ │ │ │ │ │ ├── MonthlySchedule.php │ │ │ │ │ │ ├── OneTimeSchedule.php │ │ │ │ │ │ ├── OsconfigEmpty.php │ │ │ │ │ │ ├── PatchConfig.php │ │ │ │ │ │ ├── PatchDeployment.php │ │ │ │ │ │ ├── PatchInstanceFilter.php │ │ │ │ │ │ ├── PatchInstanceFilterGroupLabel.php │ │ │ │ │ │ ├── PatchJob.php │ │ │ │ │ │ ├── PatchJobInstanceDetails.php │ │ │ │ │ │ ├── PatchJobInstanceDetailsSummary.php │ │ │ │ │ │ ├── PatchRollout.php │ │ │ │ │ │ ├── RecurringSchedule.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsPatchDeployments.php │ │ │ │ │ │ │ ├── ProjectsPatchJobs.php │ │ │ │ │ │ │ └── ProjectsPatchJobsInstanceDetails.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── TimeZone.php │ │ │ │ │ │ ├── WeekDayOfMonth.php │ │ │ │ │ │ ├── WeeklySchedule.php │ │ │ │ │ │ ├── WindowsUpdateSettings.php │ │ │ │ │ │ ├── YumSettings.php │ │ │ │ │ │ └── ZypperSettings.php │ │ │ │ │ │ ├── Oauth2.php │ │ │ │ │ │ ├── Oauth2 │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Userinfo.php │ │ │ │ │ │ │ ├── UserinfoV2.php │ │ │ │ │ │ │ └── UserinfoV2Me.php │ │ │ │ │ │ ├── Tokeninfo.php │ │ │ │ │ │ └── Userinfo.php │ │ │ │ │ │ ├── PagespeedInsights.php │ │ │ │ │ │ ├── PagespeedInsights │ │ │ │ │ │ ├── AuditRefs.php │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ ├── Categories.php │ │ │ │ │ │ ├── CategoryGroupV5.php │ │ │ │ │ │ ├── ConfigSettings.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── I18n.php │ │ │ │ │ │ ├── LighthouseAuditResultV5.php │ │ │ │ │ │ ├── LighthouseCategoryV5.php │ │ │ │ │ │ ├── LighthouseResultV5.php │ │ │ │ │ │ ├── PagespeedApiLoadingExperienceV5.php │ │ │ │ │ │ ├── PagespeedApiPagespeedResponseV5.php │ │ │ │ │ │ ├── PagespeedVersion.php │ │ │ │ │ │ ├── RendererFormattedStrings.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Pagespeedapi.php │ │ │ │ │ │ ├── RuntimeError.php │ │ │ │ │ │ ├── StackPack.php │ │ │ │ │ │ ├── Timing.php │ │ │ │ │ │ └── UserPageLoadMetricV5.php │ │ │ │ │ │ ├── Pagespeedonline.php │ │ │ │ │ │ ├── Pagespeedonline │ │ │ │ │ │ ├── LighthouseAuditResultV5.php │ │ │ │ │ │ ├── LighthouseCategoryV5.php │ │ │ │ │ │ ├── LighthouseCategoryV5AuditRefs.php │ │ │ │ │ │ ├── LighthouseResultV5.php │ │ │ │ │ │ ├── LighthouseResultV5Categories.php │ │ │ │ │ │ ├── LighthouseResultV5CategoryGroupsElement.php │ │ │ │ │ │ ├── LighthouseResultV5ConfigSettings.php │ │ │ │ │ │ ├── LighthouseResultV5Environment.php │ │ │ │ │ │ ├── LighthouseResultV5I18n.php │ │ │ │ │ │ ├── LighthouseResultV5I18nRendererFormattedStrings.php │ │ │ │ │ │ ├── LighthouseResultV5RuntimeError.php │ │ │ │ │ │ ├── LighthouseResultV5StackPacks.php │ │ │ │ │ │ ├── LighthouseResultV5Timing.php │ │ │ │ │ │ ├── PagespeedApiLoadingExperienceV5.php │ │ │ │ │ │ ├── PagespeedApiLoadingExperienceV5MetricsElement.php │ │ │ │ │ │ ├── PagespeedApiLoadingExperienceV5MetricsElementDistributions.php │ │ │ │ │ │ ├── PagespeedApiPagespeedResponseV5.php │ │ │ │ │ │ ├── PagespeedApiPagespeedResponseV5Version.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── Pagespeedapi.php │ │ │ │ │ │ ├── Partners.php │ │ │ │ │ │ ├── Partners │ │ │ │ │ │ ├── AdWordsManagerAccountInfo.php │ │ │ │ │ │ ├── Analytics.php │ │ │ │ │ │ ├── AnalyticsDataPoint.php │ │ │ │ │ │ ├── AnalyticsSummary.php │ │ │ │ │ │ ├── AvailableOffer.php │ │ │ │ │ │ ├── Certification.php │ │ │ │ │ │ ├── CertificationExamStatus.php │ │ │ │ │ │ ├── CertificationStatus.php │ │ │ │ │ │ ├── Company.php │ │ │ │ │ │ ├── CompanyRelation.php │ │ │ │ │ │ ├── CountryOfferInfo.php │ │ │ │ │ │ ├── CreateLeadRequest.php │ │ │ │ │ │ ├── CreateLeadResponse.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DebugInfo.php │ │ │ │ │ │ ├── EventData.php │ │ │ │ │ │ ├── ExamStatus.php │ │ │ │ │ │ ├── GetCompanyResponse.php │ │ │ │ │ │ ├── GetPartnersStatusResponse.php │ │ │ │ │ │ ├── HistoricalOffer.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── Lead.php │ │ │ │ │ │ ├── ListAnalyticsResponse.php │ │ │ │ │ │ ├── ListCompaniesResponse.php │ │ │ │ │ │ ├── ListLeadsResponse.php │ │ │ │ │ │ ├── ListOffersHistoryResponse.php │ │ │ │ │ │ ├── ListOffersResponse.php │ │ │ │ │ │ ├── ListUserStatesResponse.php │ │ │ │ │ │ ├── LocalizedCompanyInfo.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LogMessageRequest.php │ │ │ │ │ │ ├── LogMessageResponse.php │ │ │ │ │ │ ├── LogUserEventRequest.php │ │ │ │ │ │ ├── LogUserEventResponse.php │ │ │ │ │ │ ├── Money.php │ │ │ │ │ │ ├── OfferCustomer.php │ │ │ │ │ │ ├── OptIns.php │ │ │ │ │ │ ├── PartnersEmpty.php │ │ │ │ │ │ ├── PublicProfile.php │ │ │ │ │ │ ├── Rank.php │ │ │ │ │ │ ├── RecaptchaChallenge.php │ │ │ │ │ │ ├── RequestMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Analytics.php │ │ │ │ │ │ │ ├── ClientMessages.php │ │ │ │ │ │ │ ├── Companies.php │ │ │ │ │ │ │ ├── CompaniesLeads.php │ │ │ │ │ │ │ ├── Leads.php │ │ │ │ │ │ │ ├── Offers.php │ │ │ │ │ │ │ ├── OffersHistory.php │ │ │ │ │ │ │ ├── UserEvents.php │ │ │ │ │ │ │ ├── UserStates.php │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ └── V2.php │ │ │ │ │ │ ├── ResponseMetadata.php │ │ │ │ │ │ ├── SpecializationStatus.php │ │ │ │ │ │ ├── TrafficSource.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ ├── UserOverrides.php │ │ │ │ │ │ └── UserProfile.php │ │ │ │ │ │ ├── People.php │ │ │ │ │ │ ├── People │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── AgeRangeType.php │ │ │ │ │ │ ├── Biography.php │ │ │ │ │ │ ├── Birthday.php │ │ │ │ │ │ ├── BraggingRights.php │ │ │ │ │ │ ├── ContactGroupMembership.php │ │ │ │ │ │ ├── CoverPhoto.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DomainMembership.php │ │ │ │ │ │ ├── EmailAddress.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── FieldMetadata.php │ │ │ │ │ │ ├── Gender.php │ │ │ │ │ │ ├── GetPeopleResponse.php │ │ │ │ │ │ ├── ImClient.php │ │ │ │ │ │ ├── Interest.php │ │ │ │ │ │ ├── ListConnectionsResponse.php │ │ │ │ │ │ ├── Locale.php │ │ │ │ │ │ ├── Membership.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── Nickname.php │ │ │ │ │ │ ├── Occupation.php │ │ │ │ │ │ ├── Organization.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── PersonMetadata.php │ │ │ │ │ │ ├── PersonResponse.php │ │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── ProfileMetadata.php │ │ │ │ │ │ ├── Relation.php │ │ │ │ │ │ ├── RelationshipInterest.php │ │ │ │ │ │ ├── RelationshipStatus.php │ │ │ │ │ │ ├── Residence.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── People.php │ │ │ │ │ │ │ └── PeopleConnections.php │ │ │ │ │ │ ├── Skill.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── Tagline.php │ │ │ │ │ │ └── Url.php │ │ │ │ │ │ ├── PeopleService.php │ │ │ │ │ │ ├── PeopleService │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── AgeRangeType.php │ │ │ │ │ │ ├── BatchGetContactGroupsResponse.php │ │ │ │ │ │ ├── Biography.php │ │ │ │ │ │ ├── Birthday.php │ │ │ │ │ │ ├── BraggingRights.php │ │ │ │ │ │ ├── CalendarUrl.php │ │ │ │ │ │ ├── ClientData.php │ │ │ │ │ │ ├── ContactGroup.php │ │ │ │ │ │ ├── ContactGroupMembership.php │ │ │ │ │ │ ├── ContactGroupMetadata.php │ │ │ │ │ │ ├── ContactGroupResponse.php │ │ │ │ │ │ ├── CopyOtherContactToMyContactsGroupRequest.php │ │ │ │ │ │ ├── CoverPhoto.php │ │ │ │ │ │ ├── CreateContactGroupRequest.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DeleteContactPhotoResponse.php │ │ │ │ │ │ ├── DomainMembership.php │ │ │ │ │ │ ├── EmailAddress.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── ExternalId.php │ │ │ │ │ │ ├── FieldMetadata.php │ │ │ │ │ │ ├── FileAs.php │ │ │ │ │ │ ├── Gender.php │ │ │ │ │ │ ├── GetPeopleResponse.php │ │ │ │ │ │ ├── ImClient.php │ │ │ │ │ │ ├── Interest.php │ │ │ │ │ │ ├── ListConnectionsResponse.php │ │ │ │ │ │ ├── ListContactGroupsResponse.php │ │ │ │ │ │ ├── ListDirectoryPeopleResponse.php │ │ │ │ │ │ ├── ListOtherContactsResponse.php │ │ │ │ │ │ ├── Locale.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Membership.php │ │ │ │ │ │ ├── MiscKeyword.php │ │ │ │ │ │ ├── ModifyContactGroupMembersRequest.php │ │ │ │ │ │ ├── ModifyContactGroupMembersResponse.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── Nickname.php │ │ │ │ │ │ ├── Occupation.php │ │ │ │ │ │ ├── Organization.php │ │ │ │ │ │ ├── PeopleEmpty.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── PersonMetadata.php │ │ │ │ │ │ ├── PersonResponse.php │ │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── ProfileMetadata.php │ │ │ │ │ │ ├── Relation.php │ │ │ │ │ │ ├── RelationshipInterest.php │ │ │ │ │ │ ├── RelationshipStatus.php │ │ │ │ │ │ ├── Residence.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── ContactGroups.php │ │ │ │ │ │ │ ├── ContactGroupsMembers.php │ │ │ │ │ │ │ ├── OtherContacts.php │ │ │ │ │ │ │ ├── People.php │ │ │ │ │ │ │ └── PeopleConnections.php │ │ │ │ │ │ ├── SearchDirectoryPeopleResponse.php │ │ │ │ │ │ ├── SipAddress.php │ │ │ │ │ │ ├── Skill.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Tagline.php │ │ │ │ │ │ ├── UpdateContactGroupRequest.php │ │ │ │ │ │ ├── UpdateContactPhotoRequest.php │ │ │ │ │ │ ├── UpdateContactPhotoResponse.php │ │ │ │ │ │ ├── Url.php │ │ │ │ │ │ └── UserDefined.php │ │ │ │ │ │ ├── PhotosLibrary.php │ │ │ │ │ │ ├── PhotosLibrary │ │ │ │ │ │ ├── AddEnrichmentToAlbumRequest.php │ │ │ │ │ │ ├── AddEnrichmentToAlbumResponse.php │ │ │ │ │ │ ├── Album.php │ │ │ │ │ │ ├── AlbumPosition.php │ │ │ │ │ │ ├── BatchCreateMediaItemsRequest.php │ │ │ │ │ │ ├── BatchCreateMediaItemsResponse.php │ │ │ │ │ │ ├── ContentFilter.php │ │ │ │ │ │ ├── ContributorInfo.php │ │ │ │ │ │ ├── CreateAlbumRequest.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DateFilter.php │ │ │ │ │ │ ├── DateRange.php │ │ │ │ │ │ ├── EnrichmentItem.php │ │ │ │ │ │ ├── Filters.php │ │ │ │ │ │ ├── JoinSharedAlbumRequest.php │ │ │ │ │ │ ├── JoinSharedAlbumResponse.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── ListAlbumsResponse.php │ │ │ │ │ │ ├── ListSharedAlbumsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── LocationEnrichment.php │ │ │ │ │ │ ├── MapEnrichment.php │ │ │ │ │ │ ├── MediaItem.php │ │ │ │ │ │ ├── MediaMetadata.php │ │ │ │ │ │ ├── MediaTypeFilter.php │ │ │ │ │ │ ├── NewEnrichmentItem.php │ │ │ │ │ │ ├── NewMediaItem.php │ │ │ │ │ │ ├── NewMediaItemResult.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Albums.php │ │ │ │ │ │ │ ├── MediaItems.php │ │ │ │ │ │ │ └── SharedAlbums.php │ │ │ │ │ │ ├── SearchMediaItemsRequest.php │ │ │ │ │ │ ├── SearchMediaItemsResponse.php │ │ │ │ │ │ ├── ShareAlbumRequest.php │ │ │ │ │ │ ├── ShareAlbumResponse.php │ │ │ │ │ │ ├── ShareInfo.php │ │ │ │ │ │ ├── SharedAlbumOptions.php │ │ │ │ │ │ ├── SimpleMediaItem.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TextEnrichment.php │ │ │ │ │ │ └── Video.php │ │ │ │ │ │ ├── PlayMovies.php │ │ │ │ │ │ ├── PlayMovies │ │ │ │ │ │ ├── Avail.php │ │ │ │ │ │ ├── ListAvailsResponse.php │ │ │ │ │ │ ├── ListOrdersResponse.php │ │ │ │ │ │ ├── ListStoreInfosResponse.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsAvails.php │ │ │ │ │ │ │ ├── AccountsOrders.php │ │ │ │ │ │ │ ├── AccountsStoreInfos.php │ │ │ │ │ │ │ └── AccountsStoreInfosCountry.php │ │ │ │ │ │ └── StoreInfo.php │ │ │ │ │ │ ├── PlayableLocations.php │ │ │ │ │ │ ├── PlayableLocations │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3Impression.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3LogImpressionsRequest.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3LogImpressionsResponse.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3LogPlayerReportsRequest.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3LogPlayerReportsResponse.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3PlayerReport.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SampleAreaFilter.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SampleCriterion.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SampleFilter.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SamplePlayableLocation.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SamplePlayableLocationList.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SamplePlayableLocationsRequest.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SamplePlayableLocationsResponse.php │ │ │ │ │ │ ├── GoogleMapsPlayablelocationsV3SampleSpacingOptions.php │ │ │ │ │ │ ├── GoogleMapsUnityClientInfo.php │ │ │ │ │ │ ├── GoogleTypeLatLng.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── V3.php │ │ │ │ │ │ ├── Playcustomapp.php │ │ │ │ │ │ ├── Playcustomapp │ │ │ │ │ │ ├── CustomApp.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ └── AccountsCustomApps.php │ │ │ │ │ │ ├── Playmoviespartner.php │ │ │ │ │ │ ├── Playmoviespartner │ │ │ │ │ │ ├── AccountsAvailsResource.php │ │ │ │ │ │ ├── AccountsExperienceLocalesResource.php │ │ │ │ │ │ ├── AccountsOrdersResource.php │ │ │ │ │ │ ├── AccountsResource.php │ │ │ │ │ │ ├── AccountsStoreInfosCountryResource.php │ │ │ │ │ │ ├── AccountsStoreInfosResource.php │ │ │ │ │ │ ├── Avail.php │ │ │ │ │ │ ├── ExperienceLocale.php │ │ │ │ │ │ ├── ListAvailsResponse.php │ │ │ │ │ │ ├── ListExperienceLocalesResponse.php │ │ │ │ │ │ ├── ListOrdersResponse.php │ │ │ │ │ │ ├── ListStoreInfosResponse.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ └── StoreInfo.php │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ ├── Plus │ │ │ │ │ │ ├── Acl.php │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── ActivityActor.php │ │ │ │ │ │ ├── ActivityActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── ActivityActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── ActivityActorImage.php │ │ │ │ │ │ ├── ActivityActorName.php │ │ │ │ │ │ ├── ActivityActorVerification.php │ │ │ │ │ │ ├── ActivityFeed.php │ │ │ │ │ │ ├── ActivityObject.php │ │ │ │ │ │ ├── ActivityObjectActor.php │ │ │ │ │ │ ├── ActivityObjectActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── ActivityObjectActorImage.php │ │ │ │ │ │ ├── ActivityObjectActorVerification.php │ │ │ │ │ │ ├── ActivityObjectAttachments.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsEmbed.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsFullImage.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsImage.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsThumbnails.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsThumbnailsImage.php │ │ │ │ │ │ ├── ActivityObjectPlusoners.php │ │ │ │ │ │ ├── ActivityObjectReplies.php │ │ │ │ │ │ ├── ActivityObjectResharers.php │ │ │ │ │ │ ├── ActivityProvider.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CommentActor.php │ │ │ │ │ │ ├── CommentActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── CommentActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── CommentActorImage.php │ │ │ │ │ │ ├── CommentActorVerification.php │ │ │ │ │ │ ├── CommentFeed.php │ │ │ │ │ │ ├── CommentInReplyTo.php │ │ │ │ │ │ ├── CommentObject.php │ │ │ │ │ │ ├── CommentPlusoners.php │ │ │ │ │ │ ├── PeopleFeed.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── PersonAgeRange.php │ │ │ │ │ │ ├── PersonCover.php │ │ │ │ │ │ ├── PersonCoverCoverInfo.php │ │ │ │ │ │ ├── PersonCoverCoverPhoto.php │ │ │ │ │ │ ├── PersonEmails.php │ │ │ │ │ │ ├── PersonImage.php │ │ │ │ │ │ ├── PersonName.php │ │ │ │ │ │ ├── PersonOrganizations.php │ │ │ │ │ │ ├── PersonPlacesLived.php │ │ │ │ │ │ ├── PersonUrls.php │ │ │ │ │ │ ├── Place.php │ │ │ │ │ │ ├── PlaceAddress.php │ │ │ │ │ │ ├── PlacePosition.php │ │ │ │ │ │ ├── PlusAclentryResource.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ │ ├── Comments.php │ │ │ │ │ │ │ └── People.php │ │ │ │ │ │ ├── PlusDomains.php │ │ │ │ │ │ ├── PlusDomains │ │ │ │ │ │ ├── Acl.php │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── ActivityActor.php │ │ │ │ │ │ ├── ActivityActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── ActivityActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── ActivityActorImage.php │ │ │ │ │ │ ├── ActivityActorName.php │ │ │ │ │ │ ├── ActivityActorVerification.php │ │ │ │ │ │ ├── ActivityFeed.php │ │ │ │ │ │ ├── ActivityObject.php │ │ │ │ │ │ ├── ActivityObjectActor.php │ │ │ │ │ │ ├── ActivityObjectActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── ActivityObjectActorImage.php │ │ │ │ │ │ ├── ActivityObjectActorVerification.php │ │ │ │ │ │ ├── ActivityObjectAttachments.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsEmbed.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsFullImage.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsImage.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsPreviewThumbnails.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsThumbnails.php │ │ │ │ │ │ ├── ActivityObjectAttachmentsThumbnailsImage.php │ │ │ │ │ │ ├── ActivityObjectPlusoners.php │ │ │ │ │ │ ├── ActivityObjectReplies.php │ │ │ │ │ │ ├── ActivityObjectResharers.php │ │ │ │ │ │ ├── ActivityObjectStatusForViewer.php │ │ │ │ │ │ ├── ActivityProvider.php │ │ │ │ │ │ ├── Audience.php │ │ │ │ │ │ ├── AudiencesFeed.php │ │ │ │ │ │ ├── Circle.php │ │ │ │ │ │ ├── CircleFeed.php │ │ │ │ │ │ ├── CirclePeople.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CommentActor.php │ │ │ │ │ │ ├── CommentActorClientSpecificActorInfo.php │ │ │ │ │ │ ├── CommentActorClientSpecificActorInfoYoutubeActorInfo.php │ │ │ │ │ │ ├── CommentActorImage.php │ │ │ │ │ │ ├── CommentActorVerification.php │ │ │ │ │ │ ├── CommentFeed.php │ │ │ │ │ │ ├── CommentInReplyTo.php │ │ │ │ │ │ ├── CommentObject.php │ │ │ │ │ │ ├── CommentPlusoners.php │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ ├── MediaAuthor.php │ │ │ │ │ │ ├── MediaAuthorImage.php │ │ │ │ │ │ ├── MediaExif.php │ │ │ │ │ │ ├── PeopleFeed.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── PersonCover.php │ │ │ │ │ │ ├── PersonCoverCoverInfo.php │ │ │ │ │ │ ├── PersonCoverCoverPhoto.php │ │ │ │ │ │ ├── PersonEmails.php │ │ │ │ │ │ ├── PersonImage.php │ │ │ │ │ │ ├── PersonName.php │ │ │ │ │ │ ├── PersonOrganizations.php │ │ │ │ │ │ ├── PersonPlacesLived.php │ │ │ │ │ │ ├── PersonUrls.php │ │ │ │ │ │ ├── Place.php │ │ │ │ │ │ ├── PlaceAddress.php │ │ │ │ │ │ ├── PlacePosition.php │ │ │ │ │ │ ├── PlusDomainsAclentryResource.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ │ ├── Audiences.php │ │ │ │ │ │ │ ├── Circles.php │ │ │ │ │ │ │ ├── Comments.php │ │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ │ └── People.php │ │ │ │ │ │ └── Videostream.php │ │ │ │ │ │ ├── PolicyTroubleshooter.php │ │ │ │ │ │ ├── PolicyTroubleshooter │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1AccessTuple.php │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1BindingExplanation.php │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership.php │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1ExplainedPolicy.php │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest.php │ │ │ │ │ │ ├── GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse.php │ │ │ │ │ │ ├── GoogleIamV1AuditConfig.php │ │ │ │ │ │ ├── GoogleIamV1AuditLogConfig.php │ │ │ │ │ │ ├── GoogleIamV1Binding.php │ │ │ │ │ │ ├── GoogleIamV1Policy.php │ │ │ │ │ │ ├── GoogleTypeExpr.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── Iam.php │ │ │ │ │ │ ├── PolyService.php │ │ │ │ │ │ ├── PolyService │ │ │ │ │ │ ├── Asset.php │ │ │ │ │ │ ├── AssetImportMessage.php │ │ │ │ │ │ ├── Format.php │ │ │ │ │ │ ├── FormatComplexity.php │ │ │ │ │ │ ├── ImageError.php │ │ │ │ │ │ ├── ListAssetsResponse.php │ │ │ │ │ │ ├── ListLikedAssetsResponse.php │ │ │ │ │ │ ├── ListUserAssetsResponse.php │ │ │ │ │ │ ├── ObjParseError.php │ │ │ │ │ │ ├── PolyFile.php │ │ │ │ │ │ ├── PresentationParams.php │ │ │ │ │ │ ├── Quaternion.php │ │ │ │ │ │ ├── RemixInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Assets.php │ │ │ │ │ │ │ ├── Users.php │ │ │ │ │ │ │ ├── UsersAssets.php │ │ │ │ │ │ │ └── UsersLikedassets.php │ │ │ │ │ │ ├── StartAssetImportResponse.php │ │ │ │ │ │ └── UserAsset.php │ │ │ │ │ │ ├── PostmasterTools.php │ │ │ │ │ │ ├── PostmasterTools │ │ │ │ │ │ ├── DeliveryError.php │ │ │ │ │ │ ├── Domain.php │ │ │ │ │ │ ├── FeedbackLoop.php │ │ │ │ │ │ ├── IpReputation.php │ │ │ │ │ │ ├── ListDomainsResponse.php │ │ │ │ │ │ ├── ListTrafficStatsResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Domains.php │ │ │ │ │ │ │ └── DomainsTrafficStats.php │ │ │ │ │ │ └── TrafficStats.php │ │ │ │ │ │ ├── Prediction.php │ │ │ │ │ │ ├── Prediction │ │ │ │ │ │ ├── Analyze.php │ │ │ │ │ │ ├── AnalyzeDataDescription.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionFeatures.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionFeaturesCategorical.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionFeaturesCategoricalValues.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionFeaturesNumeric.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionFeaturesText.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionOutputFeature.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionOutputFeatureNumeric.php │ │ │ │ │ │ ├── AnalyzeDataDescriptionOutputFeatureText.php │ │ │ │ │ │ ├── AnalyzeModelDescription.php │ │ │ │ │ │ ├── Input.php │ │ │ │ │ │ ├── InputInput.php │ │ │ │ │ │ ├── Insert.php │ │ │ │ │ │ ├── Insert2.php │ │ │ │ │ │ ├── Insert2ModelInfo.php │ │ │ │ │ │ ├── InsertTrainingInstances.php │ │ │ │ │ │ ├── Output.php │ │ │ │ │ │ ├── OutputOutputMulti.php │ │ │ │ │ │ ├── PredictionList.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Hostedmodels.php │ │ │ │ │ │ │ └── Trainedmodels.php │ │ │ │ │ │ └── Update.php │ │ │ │ │ │ ├── Proximitybeacon.php │ │ │ │ │ │ ├── Proximitybeacon │ │ │ │ │ │ ├── AdvertisedId.php │ │ │ │ │ │ ├── AttachmentInfo.php │ │ │ │ │ │ ├── Beacon.php │ │ │ │ │ │ ├── BeaconAttachment.php │ │ │ │ │ │ ├── BeaconInfo.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DeleteAttachmentsResponse.php │ │ │ │ │ │ ├── Diagnostics.php │ │ │ │ │ │ ├── EphemeralIdRegistration.php │ │ │ │ │ │ ├── EphemeralIdRegistrationParams.php │ │ │ │ │ │ ├── GetInfoForObservedBeaconsRequest.php │ │ │ │ │ │ ├── GetInfoForObservedBeaconsResponse.php │ │ │ │ │ │ ├── IndoorLevel.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── ListBeaconAttachmentsResponse.php │ │ │ │ │ │ ├── ListBeaconsResponse.php │ │ │ │ │ │ ├── ListDiagnosticsResponse.php │ │ │ │ │ │ ├── ListNamespacesResponse.php │ │ │ │ │ │ ├── Observation.php │ │ │ │ │ │ ├── ProximitybeaconEmpty.php │ │ │ │ │ │ ├── ProximitybeaconNamespace.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Beaconinfo.php │ │ │ │ │ │ │ ├── Beacons.php │ │ │ │ │ │ │ ├── BeaconsAttachments.php │ │ │ │ │ │ │ ├── BeaconsDiagnostics.php │ │ │ │ │ │ │ ├── Namespaces.php │ │ │ │ │ │ │ └── V1beta1.php │ │ │ │ │ │ ├── Pubsub.php │ │ │ │ │ │ ├── Pubsub │ │ │ │ │ │ ├── AcknowledgeRequest.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CreateSnapshotRequest.php │ │ │ │ │ │ ├── DeadLetterPolicy.php │ │ │ │ │ │ ├── DetachSubscriptionResponse.php │ │ │ │ │ │ ├── ExpirationPolicy.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ListSnapshotsResponse.php │ │ │ │ │ │ ├── ListSubscriptionsResponse.php │ │ │ │ │ │ ├── ListTopicSnapshotsResponse.php │ │ │ │ │ │ ├── ListTopicSubscriptionsResponse.php │ │ │ │ │ │ ├── ListTopicsResponse.php │ │ │ │ │ │ ├── MessageStoragePolicy.php │ │ │ │ │ │ ├── ModifyAckDeadlineRequest.php │ │ │ │ │ │ ├── ModifyPushConfigRequest.php │ │ │ │ │ │ ├── OidcToken.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PublishRequest.php │ │ │ │ │ │ ├── PublishResponse.php │ │ │ │ │ │ ├── PubsubEmpty.php │ │ │ │ │ │ ├── PubsubMessage.php │ │ │ │ │ │ ├── PullRequest.php │ │ │ │ │ │ ├── PullResponse.php │ │ │ │ │ │ ├── PushConfig.php │ │ │ │ │ │ ├── ReceivedMessage.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsSnapshots.php │ │ │ │ │ │ │ ├── ProjectsSubscriptions.php │ │ │ │ │ │ │ ├── ProjectsTopics.php │ │ │ │ │ │ │ ├── ProjectsTopicsSnapshots.php │ │ │ │ │ │ │ └── ProjectsTopicsSubscriptions.php │ │ │ │ │ │ ├── RetryPolicy.php │ │ │ │ │ │ ├── SeekRequest.php │ │ │ │ │ │ ├── SeekResponse.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Snapshot.php │ │ │ │ │ │ ├── Subscription.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Topic.php │ │ │ │ │ │ ├── UpdateSnapshotRequest.php │ │ │ │ │ │ ├── UpdateSubscriptionRequest.php │ │ │ │ │ │ └── UpdateTopicRequest.php │ │ │ │ │ │ ├── PubsubLite.php │ │ │ │ │ │ ├── PubsubLite │ │ │ │ │ │ ├── Capacity.php │ │ │ │ │ │ ├── ComputeMessageStatsRequest.php │ │ │ │ │ │ ├── ComputeMessageStatsResponse.php │ │ │ │ │ │ ├── Cursor.php │ │ │ │ │ │ ├── DeliveryConfig.php │ │ │ │ │ │ ├── ListPartitionCursorsResponse.php │ │ │ │ │ │ ├── ListSubscriptionsResponse.php │ │ │ │ │ │ ├── ListTopicSubscriptionsResponse.php │ │ │ │ │ │ ├── ListTopicsResponse.php │ │ │ │ │ │ ├── PartitionConfig.php │ │ │ │ │ │ ├── PartitionCursor.php │ │ │ │ │ │ ├── PubsubliteEmpty.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Admin.php │ │ │ │ │ │ │ ├── AdminProjects.php │ │ │ │ │ │ │ ├── AdminProjectsLocations.php │ │ │ │ │ │ │ ├── AdminProjectsLocationsSubscriptions.php │ │ │ │ │ │ │ ├── AdminProjectsLocationsTopics.php │ │ │ │ │ │ │ ├── AdminProjectsLocationsTopicsSubscriptions.php │ │ │ │ │ │ │ ├── Cursor.php │ │ │ │ │ │ │ ├── CursorProjects.php │ │ │ │ │ │ │ ├── CursorProjectsLocations.php │ │ │ │ │ │ │ ├── CursorProjectsLocationsSubscriptions.php │ │ │ │ │ │ │ ├── CursorProjectsLocationsSubscriptionsCursors.php │ │ │ │ │ │ │ ├── TopicStats.php │ │ │ │ │ │ │ ├── TopicStatsProjects.php │ │ │ │ │ │ │ ├── TopicStatsProjectsLocations.php │ │ │ │ │ │ │ └── TopicStatsProjectsLocationsTopics.php │ │ │ │ │ │ ├── RetentionConfig.php │ │ │ │ │ │ ├── Subscription.php │ │ │ │ │ │ ├── Topic.php │ │ │ │ │ │ └── TopicPartitions.php │ │ │ │ │ │ ├── QPXExpress.php │ │ │ │ │ │ ├── QPXExpress │ │ │ │ │ │ ├── AircraftData.php │ │ │ │ │ │ ├── AirportData.php │ │ │ │ │ │ ├── BagDescriptor.php │ │ │ │ │ │ ├── CarrierData.php │ │ │ │ │ │ ├── CityData.php │ │ │ │ │ │ ├── Data.php │ │ │ │ │ │ ├── FareInfo.php │ │ │ │ │ │ ├── FlightInfo.php │ │ │ │ │ │ ├── FreeBaggageAllowance.php │ │ │ │ │ │ ├── LegInfo.php │ │ │ │ │ │ ├── PassengerCounts.php │ │ │ │ │ │ ├── PricingInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Trips.php │ │ │ │ │ │ ├── SegmentInfo.php │ │ │ │ │ │ ├── SegmentPricing.php │ │ │ │ │ │ ├── SliceInfo.php │ │ │ │ │ │ ├── SliceInput.php │ │ │ │ │ │ ├── TaxData.php │ │ │ │ │ │ ├── TaxInfo.php │ │ │ │ │ │ ├── TimeOfDayRange.php │ │ │ │ │ │ ├── TripOption.php │ │ │ │ │ │ ├── TripOptionsRequest.php │ │ │ │ │ │ ├── TripOptionsResponse.php │ │ │ │ │ │ ├── TripsSearchRequest.php │ │ │ │ │ │ └── TripsSearchResponse.php │ │ │ │ │ │ ├── RealTimeBidding.php │ │ │ │ │ │ ├── RealTimeBidding │ │ │ │ │ │ ├── ActivatePretargetingConfigRequest.php │ │ │ │ │ │ ├── AddTargetedAppsRequest.php │ │ │ │ │ │ ├── AddTargetedPublishersRequest.php │ │ │ │ │ │ ├── AddTargetedSitesRequest.php │ │ │ │ │ │ ├── AdvertiserAndBrand.php │ │ │ │ │ │ ├── AppTargeting.php │ │ │ │ │ │ ├── CloseUserListRequest.php │ │ │ │ │ │ ├── Creative.php │ │ │ │ │ │ ├── CreativeDimensions.php │ │ │ │ │ │ ├── CreativeServingDecision.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DestinationNotCrawlableEvidence.php │ │ │ │ │ │ ├── DestinationNotWorkingEvidence.php │ │ │ │ │ │ ├── DestinationUrlEvidence.php │ │ │ │ │ │ ├── DomainCallEvidence.php │ │ │ │ │ │ ├── DomainCalls.php │ │ │ │ │ │ ├── DownloadSizeEvidence.php │ │ │ │ │ │ ├── GetRemarketingTagResponse.php │ │ │ │ │ │ ├── HtmlContent.php │ │ │ │ │ │ ├── HttpCallEvidence.php │ │ │ │ │ │ ├── HttpCookieEvidence.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ListCreativesResponse.php │ │ │ │ │ │ ├── ListPretargetingConfigsResponse.php │ │ │ │ │ │ ├── ListUserListsResponse.php │ │ │ │ │ │ ├── MediaFile.php │ │ │ │ │ │ ├── NativeContent.php │ │ │ │ │ │ ├── NumericTargetingDimension.php │ │ │ │ │ │ ├── OpenUserListRequest.php │ │ │ │ │ │ ├── PolicyCompliance.php │ │ │ │ │ │ ├── PolicyTopicEntry.php │ │ │ │ │ │ ├── PolicyTopicEvidence.php │ │ │ │ │ │ ├── PretargetingConfig.php │ │ │ │ │ │ ├── RealtimebiddingEmpty.php │ │ │ │ │ │ ├── RemoveTargetedAppsRequest.php │ │ │ │ │ │ ├── RemoveTargetedPublishersRequest.php │ │ │ │ │ │ ├── RemoveTargetedSitesRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Bidders.php │ │ │ │ │ │ │ ├── BiddersCreatives.php │ │ │ │ │ │ │ ├── BiddersPretargetingConfigs.php │ │ │ │ │ │ │ ├── Buyers.php │ │ │ │ │ │ │ ├── BuyersCreatives.php │ │ │ │ │ │ │ └── BuyersUserLists.php │ │ │ │ │ │ ├── StringTargetingDimension.php │ │ │ │ │ │ ├── SuspendPretargetingConfigRequest.php │ │ │ │ │ │ ├── UrlDownloadSize.php │ │ │ │ │ │ ├── UrlRestriction.php │ │ │ │ │ │ ├── UserList.php │ │ │ │ │ │ ├── VideoContent.php │ │ │ │ │ │ ├── VideoMetadata.php │ │ │ │ │ │ ├── WatchCreativesRequest.php │ │ │ │ │ │ └── WatchCreativesResponse.php │ │ │ │ │ │ ├── RecommendationsAI.php │ │ │ │ │ │ ├── RecommendationsAI │ │ │ │ │ │ ├── GoogleApiHttpBody.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1alphaRejoinCatalogMetadata.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1alphaRejoinCatalogResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1alphaTuningMetadata.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1alphaTuningResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1BigQuerySource.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1Catalog.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1CatalogInlineSource.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1CatalogItem.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1CatalogItemCategoryHierarchy.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1CatalogItemLevelConfig.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1CreatePredictionApiKeyRegistrationRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1EventDetail.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1FeatureMap.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1FeatureMapFloatList.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1FeatureMapStringList.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1Image.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportCatalogItemsRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportCatalogItemsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportErrorsConfig.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportMetadata.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportUserEventsRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ImportUserEventsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ListCatalogItemsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ListCatalogsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ListPredictionApiKeyRegistrationsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ListUserEventsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PredictRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PredictResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PredictResponsePredictionResult.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PredictionApiKeyRegistration.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ProductCatalogItem.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ProductCatalogItemExactPrice.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ProductDetail.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1ProductEventDetail.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PurchaseTransaction.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PurgeUserEventsMetadata.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PurgeUserEventsRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1PurgeUserEventsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1RejoinUserEventsMetadata.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1RejoinUserEventsRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1RejoinUserEventsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1UserEvent.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1UserEventImportSummary.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1UserEventInlineSource.php │ │ │ │ │ │ ├── GoogleCloudRecommendationengineV1beta1UserInfo.php │ │ │ │ │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleProtobufEmpty.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogs.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsCatalogItems.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsEventStores.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsEventStoresOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsEventStoresPlacements.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsEventStoresPredictionApiKeyRegistrations.php │ │ │ │ │ │ │ ├── ProjectsLocationsCatalogsEventStoresUserEvents.php │ │ │ │ │ │ │ └── ProjectsLocationsCatalogsOperations.php │ │ │ │ │ │ ├── Recommender.php │ │ │ │ │ │ ├── Recommender │ │ │ │ │ │ ├── GoogleCloudRecommenderV1CostProjection.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1Impact.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1Insight.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1InsightRecommendationReference.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1InsightStateInfo.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1ListInsightsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1ListRecommendationsResponse.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1MarkInsightAcceptedRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1MarkRecommendationClaimedRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1MarkRecommendationFailedRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1MarkRecommendationSucceededRequest.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1Operation.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1OperationGroup.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1Recommendation.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1RecommendationContent.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1RecommendationInsightReference.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1RecommendationStateInfo.php │ │ │ │ │ │ ├── GoogleCloudRecommenderV1ValueMatcher.php │ │ │ │ │ │ ├── GoogleTypeMoney.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsInsightTypes.php │ │ │ │ │ │ │ ├── ProjectsLocationsInsightTypesInsights.php │ │ │ │ │ │ │ ├── ProjectsLocationsRecommenders.php │ │ │ │ │ │ │ └── ProjectsLocationsRecommendersRecommendations.php │ │ │ │ │ │ ├── RemoteBuildExecution.php │ │ │ │ │ │ ├── RemoteBuildExecution │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Action.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ActionResult.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchReadBlobsRequest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchReadBlobsResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchReadBlobsResponseResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchUpdateBlobsRequest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchUpdateBlobsRequestRequest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchUpdateBlobsResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2BatchUpdateBlobsResponseResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2CacheCapabilities.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Command.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2CommandEnvironmentVariable.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Digest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Directory.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2DirectoryNode.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecuteOperationMetadata.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecuteRequest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecuteResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecutedActionMetadata.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecutionCapabilities.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ExecutionPolicy.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2FileNode.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2FindMissingBlobsRequest.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2FindMissingBlobsResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2GetTreeResponse.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2LogFile.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2NodeProperty.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2OutputDirectory.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2OutputFile.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2OutputSymlink.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Platform.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2PlatformProperty.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2PriorityCapabilities.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2PriorityCapabilitiesPriorityRange.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2RequestMetadata.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ResultsCachePolicy.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ServerCapabilities.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2SymlinkNode.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2ToolDetails.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2Tree.php │ │ │ │ │ │ ├── BuildBazelRemoteExecutionV2WaitExecutionRequest.php │ │ │ │ │ │ ├── BuildBazelSemverSemVer.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildbotCommandDurations.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildbotCommandEvents.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildbotCommandStatus.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildbotResourceUsage.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildbotResourceUsageStat.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaAcceleratorConfig.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteInstanceRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaDeleteWorkerPoolRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicy.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetInstanceRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaGetWorkerPoolRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaListInstancesResponse.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsResponse.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaSoleTenancyConfig.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateWorkerPoolRequest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig.php │ │ │ │ │ │ ├── GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2AdminTemp.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2Blob.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandOutputs.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandOverhead.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandResult.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandTask.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2Digest.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2Directory.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata.php │ │ │ │ │ │ ├── GoogleDevtoolsRemoteworkersV1test2FileMetadata.php │ │ │ │ │ │ ├── GoogleLongrunningOperation.php │ │ │ │ │ │ ├── GoogleRpcStatus.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── ActionResults.php │ │ │ │ │ │ │ ├── Actions.php │ │ │ │ │ │ │ ├── Blobs.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ └── V2.php │ │ │ │ │ │ ├── Replicapool.php │ │ │ │ │ │ ├── Replicapool │ │ │ │ │ │ ├── AccessConfig.php │ │ │ │ │ │ ├── Action.php │ │ │ │ │ │ ├── DiskAttachment.php │ │ │ │ │ │ ├── EnvVariable.php │ │ │ │ │ │ ├── ExistingDisk.php │ │ │ │ │ │ ├── HealthCheck.php │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── MetadataItem.php │ │ │ │ │ │ ├── NetworkInterface.php │ │ │ │ │ │ ├── NewDisk.php │ │ │ │ │ │ ├── NewDiskInitializeParams.php │ │ │ │ │ │ ├── Pool.php │ │ │ │ │ │ ├── PoolsDeleteRequest.php │ │ │ │ │ │ ├── PoolsListResponse.php │ │ │ │ │ │ ├── Replica.php │ │ │ │ │ │ ├── ReplicaStatus.php │ │ │ │ │ │ ├── ReplicasDeleteRequest.php │ │ │ │ │ │ ├── ReplicasListResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Pools.php │ │ │ │ │ │ │ └── Replicas.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── Tag.php │ │ │ │ │ │ ├── Template.php │ │ │ │ │ │ └── VmParams.php │ │ │ │ │ │ ├── Replicapoolupdater.php │ │ │ │ │ │ ├── Replicapoolupdater │ │ │ │ │ │ ├── InstanceUpdate.php │ │ │ │ │ │ ├── InstanceUpdateError.php │ │ │ │ │ │ ├── InstanceUpdateErrorErrors.php │ │ │ │ │ │ ├── InstanceUpdateList.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationList.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── RollingUpdates.php │ │ │ │ │ │ │ └── ZoneOperations.php │ │ │ │ │ │ ├── RollingUpdate.php │ │ │ │ │ │ ├── RollingUpdateError.php │ │ │ │ │ │ ├── RollingUpdateErrorErrors.php │ │ │ │ │ │ ├── RollingUpdateList.php │ │ │ │ │ │ └── RollingUpdatePolicy.php │ │ │ │ │ │ ├── Reportcard.php │ │ │ │ │ │ ├── Reportcard │ │ │ │ │ │ ├── Mute.php │ │ │ │ │ │ ├── MutesListResponse.php │ │ │ │ │ │ ├── Notice.php │ │ │ │ │ │ ├── NoticesListResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Mutes.php │ │ │ │ │ │ │ └── Notices.php │ │ │ │ │ │ └── Target.php │ │ │ │ │ │ ├── Reports.php │ │ │ │ │ │ ├── Reports │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── ActivityActor.php │ │ │ │ │ │ ├── ActivityEvents.php │ │ │ │ │ │ ├── ActivityEventsParameters.php │ │ │ │ │ │ ├── ActivityEventsParametersMessageValue.php │ │ │ │ │ │ ├── ActivityEventsParametersMultiMessageValue.php │ │ │ │ │ │ ├── ActivityId.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── NestedParameter.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── CustomerUsageReports.php │ │ │ │ │ │ │ ├── EntityUsageReports.php │ │ │ │ │ │ │ └── UserUsageReport.php │ │ │ │ │ │ ├── UsageReport.php │ │ │ │ │ │ ├── UsageReportEntity.php │ │ │ │ │ │ ├── UsageReportParameters.php │ │ │ │ │ │ ├── UsageReports.php │ │ │ │ │ │ ├── UsageReportsWarnings.php │ │ │ │ │ │ └── UsageReportsWarningsData.php │ │ │ │ │ │ ├── Reseller.php │ │ │ │ │ │ ├── Reseller │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── ChangePlanRequest.php │ │ │ │ │ │ ├── Customer.php │ │ │ │ │ │ ├── RenewalSettings.php │ │ │ │ │ │ ├── ResellernotifyGetwatchdetailsResponse.php │ │ │ │ │ │ ├── ResellernotifyResource.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Customers.php │ │ │ │ │ │ │ ├── Resellernotify.php │ │ │ │ │ │ │ └── Subscriptions.php │ │ │ │ │ │ ├── Seats.php │ │ │ │ │ │ ├── Subscription.php │ │ │ │ │ │ ├── SubscriptionPlan.php │ │ │ │ │ │ ├── SubscriptionPlanCommitmentInterval.php │ │ │ │ │ │ ├── SubscriptionTransferInfo.php │ │ │ │ │ │ ├── SubscriptionTrialSettings.php │ │ │ │ │ │ └── Subscriptions.php │ │ │ │ │ │ ├── Resourceviews.php │ │ │ │ │ │ ├── Resourceviews │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ ├── ListResourceResponseItem.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationList.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── ZoneOperations.php │ │ │ │ │ │ │ └── ZoneViews.php │ │ │ │ │ │ ├── ResourceView.php │ │ │ │ │ │ ├── ServiceEndpoint.php │ │ │ │ │ │ ├── ZoneViewsAddResourcesRequest.php │ │ │ │ │ │ ├── ZoneViewsGetServiceResponse.php │ │ │ │ │ │ ├── ZoneViewsList.php │ │ │ │ │ │ ├── ZoneViewsListResourcesResponse.php │ │ │ │ │ │ ├── ZoneViewsRemoveResourcesRequest.php │ │ │ │ │ │ └── ZoneViewsSetServiceRequest.php │ │ │ │ │ │ ├── SASPortalTesting.php │ │ │ │ │ │ ├── SASPortalTesting │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Customers.php │ │ │ │ │ │ │ ├── CustomersDeployments.php │ │ │ │ │ │ │ ├── CustomersDeploymentsDevices.php │ │ │ │ │ │ │ ├── CustomersDevices.php │ │ │ │ │ │ │ ├── CustomersNodes.php │ │ │ │ │ │ │ ├── CustomersNodesDevices.php │ │ │ │ │ │ │ ├── CustomersNodesNodes.php │ │ │ │ │ │ │ ├── Deployments.php │ │ │ │ │ │ │ ├── DeploymentsDevices.php │ │ │ │ │ │ │ ├── Installer.php │ │ │ │ │ │ │ ├── Nodes.php │ │ │ │ │ │ │ ├── NodesDeployments.php │ │ │ │ │ │ │ ├── NodesDeploymentsDevices.php │ │ │ │ │ │ │ ├── NodesDevices.php │ │ │ │ │ │ │ ├── NodesNodes.php │ │ │ │ │ │ │ ├── NodesNodesDevices.php │ │ │ │ │ │ │ ├── NodesNodesNodes.php │ │ │ │ │ │ │ └── Policies.php │ │ │ │ │ │ ├── SasPortalAssignment.php │ │ │ │ │ │ ├── SasPortalBulkCreateDeviceRequest.php │ │ │ │ │ │ ├── SasPortalBulkCreateDeviceResponse.php │ │ │ │ │ │ ├── SasPortalCreateSignedDeviceRequest.php │ │ │ │ │ │ ├── SasPortalCustomer.php │ │ │ │ │ │ ├── SasPortalDevice.php │ │ │ │ │ │ ├── SasPortalDeviceAirInterface.php │ │ │ │ │ │ ├── SasPortalDeviceConfig.php │ │ │ │ │ │ ├── SasPortalDeviceGrant.php │ │ │ │ │ │ ├── SasPortalDeviceMetadata.php │ │ │ │ │ │ ├── SasPortalDeviceModel.php │ │ │ │ │ │ ├── SasPortalDpaMoveList.php │ │ │ │ │ │ ├── SasPortalEmpty.php │ │ │ │ │ │ ├── SasPortalFrequencyRange.php │ │ │ │ │ │ ├── SasPortalGenerateSecretRequest.php │ │ │ │ │ │ ├── SasPortalGenerateSecretResponse.php │ │ │ │ │ │ ├── SasPortalGetPolicyRequest.php │ │ │ │ │ │ ├── SasPortalInstallationParams.php │ │ │ │ │ │ ├── SasPortalListCustomersResponse.php │ │ │ │ │ │ ├── SasPortalListDevicesResponse.php │ │ │ │ │ │ ├── SasPortalListNodesResponse.php │ │ │ │ │ │ ├── SasPortalMoveDeploymentRequest.php │ │ │ │ │ │ ├── SasPortalMoveDeviceRequest.php │ │ │ │ │ │ ├── SasPortalMoveNodeRequest.php │ │ │ │ │ │ ├── SasPortalNode.php │ │ │ │ │ │ ├── SasPortalOperation.php │ │ │ │ │ │ ├── SasPortalPolicy.php │ │ │ │ │ │ ├── SasPortalSetPolicyRequest.php │ │ │ │ │ │ ├── SasPortalSignDeviceRequest.php │ │ │ │ │ │ ├── SasPortalStatus.php │ │ │ │ │ │ ├── SasPortalTestPermissionsRequest.php │ │ │ │ │ │ ├── SasPortalTestPermissionsResponse.php │ │ │ │ │ │ ├── SasPortalUpdateSignedDeviceRequest.php │ │ │ │ │ │ ├── SasPortalValidateInstallerRequest.php │ │ │ │ │ │ └── SasPortalValidateInstallerResponse.php │ │ │ │ │ │ ├── SQLAdmin.php │ │ │ │ │ │ ├── SQLAdmin │ │ │ │ │ │ ├── AclEntry.php │ │ │ │ │ │ ├── ApiWarning.php │ │ │ │ │ │ ├── BackupConfiguration.php │ │ │ │ │ │ ├── BackupRetentionSettings.php │ │ │ │ │ │ ├── BackupRun.php │ │ │ │ │ │ ├── BackupRunsListResponse.php │ │ │ │ │ │ ├── BinLogCoordinates.php │ │ │ │ │ │ ├── CloneContext.php │ │ │ │ │ │ ├── Database.php │ │ │ │ │ │ ├── DatabaseFlags.php │ │ │ │ │ │ ├── DatabaseInstance.php │ │ │ │ │ │ ├── DatabaseInstanceFailoverReplica.php │ │ │ │ │ │ ├── DatabasesListResponse.php │ │ │ │ │ │ ├── DemoteMasterConfiguration.php │ │ │ │ │ │ ├── DemoteMasterContext.php │ │ │ │ │ │ ├── DemoteMasterMySqlReplicaConfiguration.php │ │ │ │ │ │ ├── DenyMaintenancePeriod.php │ │ │ │ │ │ ├── DiskEncryptionConfiguration.php │ │ │ │ │ │ ├── DiskEncryptionStatus.php │ │ │ │ │ │ ├── ExportContext.php │ │ │ │ │ │ ├── ExportContextCsvExportOptions.php │ │ │ │ │ │ ├── ExportContextSqlExportOptions.php │ │ │ │ │ │ ├── ExportContextSqlExportOptionsMysqlExportOptions.php │ │ │ │ │ │ ├── FailoverContext.php │ │ │ │ │ │ ├── Flag.php │ │ │ │ │ │ ├── FlagsListResponse.php │ │ │ │ │ │ ├── ImportContext.php │ │ │ │ │ │ ├── ImportContextBakImportOptions.php │ │ │ │ │ │ ├── ImportContextBakImportOptionsEncryptionOptions.php │ │ │ │ │ │ ├── ImportContextCsvImportOptions.php │ │ │ │ │ │ ├── InstancesCloneRequest.php │ │ │ │ │ │ ├── InstancesDemoteMasterRequest.php │ │ │ │ │ │ ├── InstancesExportRequest.php │ │ │ │ │ │ ├── InstancesFailoverRequest.php │ │ │ │ │ │ ├── InstancesImportRequest.php │ │ │ │ │ │ ├── InstancesListResponse.php │ │ │ │ │ │ ├── InstancesListServerCasResponse.php │ │ │ │ │ │ ├── InstancesRestoreBackupRequest.php │ │ │ │ │ │ ├── InstancesRotateServerCaRequest.php │ │ │ │ │ │ ├── InstancesTruncateLogRequest.php │ │ │ │ │ │ ├── IpConfiguration.php │ │ │ │ │ │ ├── IpMapping.php │ │ │ │ │ │ ├── LocationPreference.php │ │ │ │ │ │ ├── MaintenanceWindow.php │ │ │ │ │ │ ├── MySqlReplicaConfiguration.php │ │ │ │ │ │ ├── OnPremisesConfiguration.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrors.php │ │ │ │ │ │ ├── OperationsListResponse.php │ │ │ │ │ │ ├── ReplicaConfiguration.php │ │ │ │ │ │ ├── Reschedule.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── BackupRuns.php │ │ │ │ │ │ │ ├── Databases.php │ │ │ │ │ │ │ ├── Flags.php │ │ │ │ │ │ │ ├── Instances.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsInstances.php │ │ │ │ │ │ │ ├── SslCerts.php │ │ │ │ │ │ │ ├── Tiers.php │ │ │ │ │ │ │ └── Users.php │ │ │ │ │ │ ├── RestoreBackupContext.php │ │ │ │ │ │ ├── RotateServerCaContext.php │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ ├── SqlActiveDirectoryConfig.php │ │ │ │ │ │ ├── SqlExternalSyncSettingError.php │ │ │ │ │ │ ├── SqlInstancesRescheduleMaintenanceRequestBody.php │ │ │ │ │ │ ├── SqlInstancesVerifyExternalSyncSettingsResponse.php │ │ │ │ │ │ ├── SqlScheduledMaintenance.php │ │ │ │ │ │ ├── SqlServerDatabaseDetails.php │ │ │ │ │ │ ├── SqlServerUserDetails.php │ │ │ │ │ │ ├── SslCert.php │ │ │ │ │ │ ├── SslCertDetail.php │ │ │ │ │ │ ├── SslCertsCreateEphemeralRequest.php │ │ │ │ │ │ ├── SslCertsInsertRequest.php │ │ │ │ │ │ ├── SslCertsInsertResponse.php │ │ │ │ │ │ ├── SslCertsListResponse.php │ │ │ │ │ │ ├── Tier.php │ │ │ │ │ │ ├── TiersListResponse.php │ │ │ │ │ │ ├── TruncateLogContext.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ └── UsersListResponse.php │ │ │ │ │ │ ├── Safebrowsing.php │ │ │ │ │ │ ├── Safebrowsing │ │ │ │ │ │ ├── Checksum.php │ │ │ │ │ │ ├── ClientInfo.php │ │ │ │ │ │ ├── Constraints.php │ │ │ │ │ │ ├── FetchThreatListUpdatesRequest.php │ │ │ │ │ │ ├── FetchThreatListUpdatesResponse.php │ │ │ │ │ │ ├── FindFullHashesRequest.php │ │ │ │ │ │ ├── FindFullHashesResponse.php │ │ │ │ │ │ ├── FindThreatMatchesRequest.php │ │ │ │ │ │ ├── FindThreatMatchesResponse.php │ │ │ │ │ │ ├── ListThreatListsResponse.php │ │ │ │ │ │ ├── ListUpdateRequest.php │ │ │ │ │ │ ├── ListUpdateResponse.php │ │ │ │ │ │ ├── MetadataEntry.php │ │ │ │ │ │ ├── RawHashes.php │ │ │ │ │ │ ├── RawIndices.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── EncodedFullHashes.php │ │ │ │ │ │ │ ├── EncodedUpdates.php │ │ │ │ │ │ │ ├── FullHashes.php │ │ │ │ │ │ │ ├── ThreatHits.php │ │ │ │ │ │ │ ├── ThreatListUpdates.php │ │ │ │ │ │ │ ├── ThreatLists.php │ │ │ │ │ │ │ └── ThreatMatches.php │ │ │ │ │ │ ├── RiceDeltaEncoding.php │ │ │ │ │ │ ├── SafebrowsingEmpty.php │ │ │ │ │ │ ├── ThreatEntry.php │ │ │ │ │ │ ├── ThreatEntryMetadata.php │ │ │ │ │ │ ├── ThreatEntrySet.php │ │ │ │ │ │ ├── ThreatHit.php │ │ │ │ │ │ ├── ThreatInfo.php │ │ │ │ │ │ ├── ThreatListDescriptor.php │ │ │ │ │ │ ├── ThreatMatch.php │ │ │ │ │ │ ├── ThreatSource.php │ │ │ │ │ │ └── UserInfo.php │ │ │ │ │ │ ├── Sasportal.php │ │ │ │ │ │ ├── Sasportal │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Customers.php │ │ │ │ │ │ │ ├── CustomersDeployments.php │ │ │ │ │ │ │ ├── CustomersDeploymentsDevices.php │ │ │ │ │ │ │ ├── CustomersDevices.php │ │ │ │ │ │ │ ├── CustomersNodes.php │ │ │ │ │ │ │ ├── CustomersNodesDevices.php │ │ │ │ │ │ │ ├── CustomersNodesNodes.php │ │ │ │ │ │ │ ├── Deployments.php │ │ │ │ │ │ │ ├── DeploymentsDevices.php │ │ │ │ │ │ │ ├── Installer.php │ │ │ │ │ │ │ ├── Nodes.php │ │ │ │ │ │ │ ├── NodesDeployments.php │ │ │ │ │ │ │ ├── NodesDeploymentsDevices.php │ │ │ │ │ │ │ ├── NodesDevices.php │ │ │ │ │ │ │ ├── NodesNodes.php │ │ │ │ │ │ │ ├── NodesNodesDevices.php │ │ │ │ │ │ │ ├── NodesNodesNodes.php │ │ │ │ │ │ │ └── Policies.php │ │ │ │ │ │ ├── SasPortalAssignment.php │ │ │ │ │ │ ├── SasPortalBulkCreateDeviceRequest.php │ │ │ │ │ │ ├── SasPortalBulkCreateDeviceResponse.php │ │ │ │ │ │ ├── SasPortalCreateSignedDeviceRequest.php │ │ │ │ │ │ ├── SasPortalCustomer.php │ │ │ │ │ │ ├── SasPortalDevice.php │ │ │ │ │ │ ├── SasPortalDeviceAirInterface.php │ │ │ │ │ │ ├── SasPortalDeviceConfig.php │ │ │ │ │ │ ├── SasPortalDeviceGrant.php │ │ │ │ │ │ ├── SasPortalDeviceMetadata.php │ │ │ │ │ │ ├── SasPortalDeviceModel.php │ │ │ │ │ │ ├── SasPortalDpaMoveList.php │ │ │ │ │ │ ├── SasPortalEmpty.php │ │ │ │ │ │ ├── SasPortalFrequencyRange.php │ │ │ │ │ │ ├── SasPortalGenerateSecretRequest.php │ │ │ │ │ │ ├── SasPortalGenerateSecretResponse.php │ │ │ │ │ │ ├── SasPortalGetPolicyRequest.php │ │ │ │ │ │ ├── SasPortalInstallationParams.php │ │ │ │ │ │ ├── SasPortalListCustomersResponse.php │ │ │ │ │ │ ├── SasPortalListDevicesResponse.php │ │ │ │ │ │ ├── SasPortalListNodesResponse.php │ │ │ │ │ │ ├── SasPortalMoveDeploymentRequest.php │ │ │ │ │ │ ├── SasPortalMoveDeviceRequest.php │ │ │ │ │ │ ├── SasPortalMoveNodeRequest.php │ │ │ │ │ │ ├── SasPortalNode.php │ │ │ │ │ │ ├── SasPortalOperation.php │ │ │ │ │ │ ├── SasPortalPolicy.php │ │ │ │ │ │ ├── SasPortalSetPolicyRequest.php │ │ │ │ │ │ ├── SasPortalSignDeviceRequest.php │ │ │ │ │ │ ├── SasPortalStatus.php │ │ │ │ │ │ ├── SasPortalTestPermissionsRequest.php │ │ │ │ │ │ ├── SasPortalTestPermissionsResponse.php │ │ │ │ │ │ ├── SasPortalUpdateSignedDeviceRequest.php │ │ │ │ │ │ ├── SasPortalValidateInstallerRequest.php │ │ │ │ │ │ └── SasPortalValidateInstallerResponse.php │ │ │ │ │ │ ├── Script.php │ │ │ │ │ │ ├── Script │ │ │ │ │ │ ├── Content.php │ │ │ │ │ │ ├── CreateProjectRequest.php │ │ │ │ │ │ ├── Deployment.php │ │ │ │ │ │ ├── DeploymentConfig.php │ │ │ │ │ │ ├── EntryPoint.php │ │ │ │ │ │ ├── ExecuteStreamResponse.php │ │ │ │ │ │ ├── ExecutionError.php │ │ │ │ │ │ ├── ExecutionRequest.php │ │ │ │ │ │ ├── ExecutionResponse.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeAddOnEntryPoint.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeExecutionApiConfig.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeExecutionApiEntryPoint.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeFunction.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeFunctionSet.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeProcess.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeUser.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeWebAppConfig.php │ │ │ │ │ │ ├── GoogleAppsScriptTypeWebAppEntryPoint.php │ │ │ │ │ │ ├── ListDeploymentsResponse.php │ │ │ │ │ │ ├── ListScriptProcessesResponse.php │ │ │ │ │ │ ├── ListUserProcessesResponse.php │ │ │ │ │ │ ├── ListValue.php │ │ │ │ │ │ ├── ListVersionsResponse.php │ │ │ │ │ │ ├── Metrics.php │ │ │ │ │ │ ├── MetricsValue.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Project.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Processes.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsDeployments.php │ │ │ │ │ │ │ ├── ProjectsVersions.php │ │ │ │ │ │ │ └── Scripts.php │ │ │ │ │ │ ├── ScriptEmpty.php │ │ │ │ │ │ ├── ScriptExecutionResult.php │ │ │ │ │ │ ├── ScriptFile.php │ │ │ │ │ │ ├── ScriptStackTraceElement.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Struct.php │ │ │ │ │ │ ├── UpdateDeploymentRequest.php │ │ │ │ │ │ ├── Value.php │ │ │ │ │ │ └── Version.php │ │ │ │ │ │ ├── SearchConsole.php │ │ │ │ │ │ ├── SearchConsole │ │ │ │ │ │ ├── ApiDataRow.php │ │ │ │ │ │ ├── ApiDimensionFilter.php │ │ │ │ │ │ ├── ApiDimensionFilterGroup.php │ │ │ │ │ │ ├── BlockedResource.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── MobileFriendlyIssue.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Searchanalytics.php │ │ │ │ │ │ │ ├── Sitemaps.php │ │ │ │ │ │ │ ├── Sites.php │ │ │ │ │ │ │ ├── UrlTestingTools.php │ │ │ │ │ │ │ └── UrlTestingToolsMobileFriendlyTest.php │ │ │ │ │ │ ├── ResourceIssue.php │ │ │ │ │ │ ├── RunMobileFriendlyTestRequest.php │ │ │ │ │ │ ├── RunMobileFriendlyTestResponse.php │ │ │ │ │ │ ├── SearchAnalyticsQueryRequest.php │ │ │ │ │ │ ├── SearchAnalyticsQueryResponse.php │ │ │ │ │ │ ├── SitemapsListResponse.php │ │ │ │ │ │ ├── SitesListResponse.php │ │ │ │ │ │ ├── TestStatus.php │ │ │ │ │ │ ├── WmxSite.php │ │ │ │ │ │ ├── WmxSitemap.php │ │ │ │ │ │ └── WmxSitemapContent.php │ │ │ │ │ │ ├── SecretManager.php │ │ │ │ │ │ ├── SecretManager │ │ │ │ │ │ ├── AccessSecretVersionResponse.php │ │ │ │ │ │ ├── AddSecretVersionRequest.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Automatic.php │ │ │ │ │ │ ├── AutomaticStatus.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── CustomerManagedEncryption.php │ │ │ │ │ │ ├── CustomerManagedEncryptionStatus.php │ │ │ │ │ │ ├── DestroySecretVersionRequest.php │ │ │ │ │ │ ├── DisableSecretVersionRequest.php │ │ │ │ │ │ ├── EnableSecretVersionRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListSecretVersionsResponse.php │ │ │ │ │ │ ├── ListSecretsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Replica.php │ │ │ │ │ │ ├── ReplicaStatus.php │ │ │ │ │ │ ├── Replication.php │ │ │ │ │ │ ├── ReplicationStatus.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsSecrets.php │ │ │ │ │ │ │ └── ProjectsSecretsVersions.php │ │ │ │ │ │ ├── Secret.php │ │ │ │ │ │ ├── SecretPayload.php │ │ │ │ │ │ ├── SecretVersion.php │ │ │ │ │ │ ├── SecretmanagerEmpty.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── UserManaged.php │ │ │ │ │ │ └── UserManagedStatus.php │ │ │ │ │ │ ├── SecurityCommandCenter.php │ │ │ │ │ │ ├── SecurityCommandCenter │ │ │ │ │ │ ├── Asset.php │ │ │ │ │ │ ├── AssetDiscoveryConfig.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Finding.php │ │ │ │ │ │ ├── Folder.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1NotificationMessage.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1Resource.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1Finding.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1Folder.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1NotificationMessage.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1Resource.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1RunAssetDiscoveryResponse.php │ │ │ │ │ │ ├── GoogleCloudSecuritycenterV1p1beta1SecurityMarks.php │ │ │ │ │ │ ├── GroupAssetsRequest.php │ │ │ │ │ │ ├── GroupAssetsResponse.php │ │ │ │ │ │ ├── GroupFindingsRequest.php │ │ │ │ │ │ ├── GroupFindingsResponse.php │ │ │ │ │ │ ├── GroupResult.php │ │ │ │ │ │ ├── IamPolicy.php │ │ │ │ │ │ ├── ListAssetsResponse.php │ │ │ │ │ │ ├── ListAssetsResult.php │ │ │ │ │ │ ├── ListFindingsResponse.php │ │ │ │ │ │ ├── ListFindingsResult.php │ │ │ │ │ │ ├── ListNotificationConfigsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListSourcesResponse.php │ │ │ │ │ │ ├── NotificationConfig.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OrganizationSettings.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Folders.php │ │ │ │ │ │ │ ├── FoldersAssets.php │ │ │ │ │ │ │ ├── FoldersSources.php │ │ │ │ │ │ │ ├── FoldersSourcesFindings.php │ │ │ │ │ │ │ ├── Organizations.php │ │ │ │ │ │ │ ├── OrganizationsAssets.php │ │ │ │ │ │ │ ├── OrganizationsNotificationConfigs.php │ │ │ │ │ │ │ ├── OrganizationsOperations.php │ │ │ │ │ │ │ ├── OrganizationsSources.php │ │ │ │ │ │ │ ├── OrganizationsSourcesFindings.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsAssets.php │ │ │ │ │ │ │ ├── ProjectsSources.php │ │ │ │ │ │ │ └── ProjectsSourcesFindings.php │ │ │ │ │ │ ├── RunAssetDiscoveryRequest.php │ │ │ │ │ │ ├── SecurityCenterProperties.php │ │ │ │ │ │ ├── SecurityMarks.php │ │ │ │ │ │ ├── SecuritycenterEmpty.php │ │ │ │ │ │ ├── SecuritycenterResource.php │ │ │ │ │ │ ├── SetFindingStateRequest.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StreamingConfig.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── SemanticTile.php │ │ │ │ │ │ ├── SemanticTile │ │ │ │ │ │ ├── Area.php │ │ │ │ │ │ ├── ExtrudedArea.php │ │ │ │ │ │ ├── Feature.php │ │ │ │ │ │ ├── FeatureTile.php │ │ │ │ │ │ ├── FirstDerivativeElevationGrid.php │ │ │ │ │ │ ├── Geometry.php │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ ├── ModeledVolume.php │ │ │ │ │ │ ├── ProviderInfo.php │ │ │ │ │ │ ├── Relation.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Featuretiles.php │ │ │ │ │ │ │ └── Terraintiles.php │ │ │ │ │ │ ├── RoadInfo.php │ │ │ │ │ │ ├── Row.php │ │ │ │ │ │ ├── SecondDerivativeElevationGrid.php │ │ │ │ │ │ ├── SegmentInfo.php │ │ │ │ │ │ ├── TerrainTile.php │ │ │ │ │ │ ├── TileCoordinates.php │ │ │ │ │ │ ├── TriangleStrip.php │ │ │ │ │ │ ├── Vertex2DList.php │ │ │ │ │ │ └── Vertex3DList.php │ │ │ │ │ │ ├── ServiceBroker.php │ │ │ │ │ │ ├── ServiceBroker │ │ │ │ │ │ ├── GoogleIamV1Binding.php │ │ │ │ │ │ ├── GoogleIamV1Policy.php │ │ │ │ │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ │ │ │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ │ │ │ │ ├── GoogleTypeExpr.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ └── V1.php │ │ │ │ │ │ ├── ServiceConsumerManagement.php │ │ │ │ │ │ ├── ServiceConsumerManagement │ │ │ │ │ │ ├── AddTenantProjectRequest.php │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── ApplyTenantProjectConfigRequest.php │ │ │ │ │ │ ├── AttachTenantProjectRequest.php │ │ │ │ │ │ ├── AuthProvider.php │ │ │ │ │ │ ├── AuthRequirement.php │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── AuthenticationRule.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendRule.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingConfig.php │ │ │ │ │ │ ├── BillingDestination.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ContextRule.php │ │ │ │ │ │ ├── Control.php │ │ │ │ │ │ ├── CreateTenancyUnitRequest.php │ │ │ │ │ │ ├── CustomError.php │ │ │ │ │ │ ├── CustomErrorRule.php │ │ │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ │ │ ├── DeleteTenantProjectRequest.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DocumentationRule.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Enum.php │ │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── Http.php │ │ │ │ │ │ ├── HttpRule.php │ │ │ │ │ │ ├── JwtLocation.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListTenancyUnitsResponse.php │ │ │ │ │ │ ├── LogDescriptor.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── LoggingDestination.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRule.php │ │ │ │ │ │ ├── Mixin.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── MonitoringDestination.php │ │ │ │ │ │ ├── OAuthRequirements.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── PolicyBinding.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── QuotaLimit.php │ │ │ │ │ │ ├── RemoveTenantProjectRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Services.php │ │ │ │ │ │ │ └── ServicesTenancyUnits.php │ │ │ │ │ │ ├── SearchTenancyUnitsResponse.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── ServiceAccountConfig.php │ │ │ │ │ │ ├── ServiceconsumermanagementEmpty.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ │ ├── SystemParameterRule.php │ │ │ │ │ │ ├── SystemParameters.php │ │ │ │ │ │ ├── TenancyUnit.php │ │ │ │ │ │ ├── TenantProjectConfig.php │ │ │ │ │ │ ├── TenantProjectPolicy.php │ │ │ │ │ │ ├── TenantResource.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── UndeleteTenantProjectRequest.php │ │ │ │ │ │ ├── Usage.php │ │ │ │ │ │ ├── UsageRule.php │ │ │ │ │ │ ├── V1AddVisibilityLabelsResponse.php │ │ │ │ │ │ ├── V1Beta1BatchCreateProducerOverridesResponse.php │ │ │ │ │ │ ├── V1Beta1DisableConsumerResponse.php │ │ │ │ │ │ ├── V1Beta1EnableConsumerResponse.php │ │ │ │ │ │ ├── V1Beta1GenerateServiceIdentityResponse.php │ │ │ │ │ │ ├── V1Beta1ImportProducerOverridesResponse.php │ │ │ │ │ │ ├── V1Beta1ImportProducerQuotaPoliciesResponse.php │ │ │ │ │ │ ├── V1Beta1ProducerQuotaPolicy.php │ │ │ │ │ │ ├── V1Beta1QuotaOverride.php │ │ │ │ │ │ ├── V1Beta1RefreshConsumerResponse.php │ │ │ │ │ │ ├── V1Beta1ServiceIdentity.php │ │ │ │ │ │ ├── V1DefaultIdentity.php │ │ │ │ │ │ ├── V1DisableConsumerResponse.php │ │ │ │ │ │ ├── V1EnableConsumerResponse.php │ │ │ │ │ │ ├── V1GenerateDefaultIdentityResponse.php │ │ │ │ │ │ ├── V1GenerateServiceAccountResponse.php │ │ │ │ │ │ ├── V1RefreshConsumerResponse.php │ │ │ │ │ │ ├── V1RemoveVisibilityLabelsResponse.php │ │ │ │ │ │ └── V1ServiceAccount.php │ │ │ │ │ │ ├── ServiceControl.php │ │ │ │ │ │ ├── ServiceControl │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── AttributeContext.php │ │ │ │ │ │ ├── AuditLog.php │ │ │ │ │ │ ├── Auth.php │ │ │ │ │ │ ├── AuthenticationInfo.php │ │ │ │ │ │ ├── AuthorizationInfo.php │ │ │ │ │ │ ├── CheckRequest.php │ │ │ │ │ │ ├── CheckResponse.php │ │ │ │ │ │ ├── FirstPartyPrincipal.php │ │ │ │ │ │ ├── Peer.php │ │ │ │ │ │ ├── ReportRequest.php │ │ │ │ │ │ ├── ReportResponse.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── RequestMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Services.php │ │ │ │ │ │ ├── ResourceInfo.php │ │ │ │ │ │ ├── ResourceLocation.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── ServiceAccountDelegationInfo.php │ │ │ │ │ │ ├── ServicecontrolResource.php │ │ │ │ │ │ ├── SpanContext.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ └── ThirdPartyPrincipal.php │ │ │ │ │ │ ├── ServiceDirectory.php │ │ │ │ │ │ ├── ServiceDirectory │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── ListEndpointsResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListNamespacesResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── ResolveServiceRequest.php │ │ │ │ │ │ ├── ResolveServiceResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsNamespaces.php │ │ │ │ │ │ │ ├── ProjectsLocationsNamespacesServices.php │ │ │ │ │ │ │ └── ProjectsLocationsNamespacesServicesEndpoints.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── ServicedirectoryEmpty.php │ │ │ │ │ │ ├── ServicedirectoryNamespace.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── ServiceManagement.php │ │ │ │ │ │ ├── ServiceManagement │ │ │ │ │ │ ├── Advice.php │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── AuditConfig.php │ │ │ │ │ │ ├── AuditLogConfig.php │ │ │ │ │ │ ├── AuthProvider.php │ │ │ │ │ │ ├── AuthRequirement.php │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── AuthenticationRule.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendRule.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingDestination.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── ChangeReport.php │ │ │ │ │ │ ├── ConfigChange.php │ │ │ │ │ │ ├── ConfigFile.php │ │ │ │ │ │ ├── ConfigRef.php │ │ │ │ │ │ ├── ConfigSource.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ContextRule.php │ │ │ │ │ │ ├── Control.php │ │ │ │ │ │ ├── CustomError.php │ │ │ │ │ │ ├── CustomErrorRule.php │ │ │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ │ │ ├── DeleteServiceStrategy.php │ │ │ │ │ │ ├── Diagnostic.php │ │ │ │ │ │ ├── DisableServiceResponse.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DocumentationRule.php │ │ │ │ │ │ ├── EnableServiceRequest.php │ │ │ │ │ │ ├── EnableServiceResponse.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Enum.php │ │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── FlowErrorDetails.php │ │ │ │ │ │ ├── GenerateConfigReportRequest.php │ │ │ │ │ │ ├── GenerateConfigReportResponse.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── Http.php │ │ │ │ │ │ ├── HttpRule.php │ │ │ │ │ │ ├── JwtLocation.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListServiceConfigsResponse.php │ │ │ │ │ │ ├── ListServiceRolloutsResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── LogDescriptor.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── LoggingDestination.php │ │ │ │ │ │ ├── ManagedService.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRule.php │ │ │ │ │ │ ├── Mixin.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── MonitoringDestination.php │ │ │ │ │ │ ├── OAuthRequirements.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── QuotaLimit.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Services.php │ │ │ │ │ │ │ ├── ServicesConfigs.php │ │ │ │ │ │ │ ├── ServicesConsumers.php │ │ │ │ │ │ │ └── ServicesRollouts.php │ │ │ │ │ │ ├── ResourceReference.php │ │ │ │ │ │ ├── Rollout.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Step.php │ │ │ │ │ │ ├── SubmitConfigSourceRequest.php │ │ │ │ │ │ ├── SubmitConfigSourceResponse.php │ │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ │ ├── SystemParameterRule.php │ │ │ │ │ │ ├── SystemParameters.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── TrafficPercentStrategy.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── UndeleteServiceResponse.php │ │ │ │ │ │ ├── Usage.php │ │ │ │ │ │ └── UsageRule.php │ │ │ │ │ │ ├── ServiceNetworking.php │ │ │ │ │ │ ├── ServiceNetworking │ │ │ │ │ │ ├── AddDnsRecordSetMetadata.php │ │ │ │ │ │ ├── AddDnsRecordSetRequest.php │ │ │ │ │ │ ├── AddDnsZoneMetadata.php │ │ │ │ │ │ ├── AddDnsZoneRequest.php │ │ │ │ │ │ ├── AddDnsZoneResponse.php │ │ │ │ │ │ ├── AddRolesMetadata.php │ │ │ │ │ │ ├── AddRolesRequest.php │ │ │ │ │ │ ├── AddRolesResponse.php │ │ │ │ │ │ ├── AddSubnetworkRequest.php │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── AuthProvider.php │ │ │ │ │ │ ├── AuthRequirement.php │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── AuthenticationRule.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendRule.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingDestination.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── ConsumerConfig.php │ │ │ │ │ │ ├── ConsumerConfigMetadata.php │ │ │ │ │ │ ├── ConsumerProject.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ContextRule.php │ │ │ │ │ │ ├── Control.php │ │ │ │ │ │ ├── CustomError.php │ │ │ │ │ │ ├── CustomErrorRule.php │ │ │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ │ │ ├── DeletePeeredDnsDomainMetadata.php │ │ │ │ │ │ ├── DisableVpcServiceControlsRequest.php │ │ │ │ │ │ ├── DnsRecordSet.php │ │ │ │ │ │ ├── DnsZone.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DocumentationRule.php │ │ │ │ │ │ ├── EnableVpcServiceControlsRequest.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Enum.php │ │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── GoogleCloudServicenetworkingV1ConsumerConfigReservedRange.php │ │ │ │ │ │ ├── GoogleCloudServicenetworkingV1betaSubnetwork.php │ │ │ │ │ │ ├── Http.php │ │ │ │ │ │ ├── HttpRule.php │ │ │ │ │ │ ├── JwtLocation.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── ListConnectionsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListPeeredDnsDomainsResponse.php │ │ │ │ │ │ ├── LogDescriptor.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── LoggingDestination.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRule.php │ │ │ │ │ │ ├── Mixin.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── MonitoringDestination.php │ │ │ │ │ │ ├── OAuthRequirements.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── PeeredDnsDomain.php │ │ │ │ │ │ ├── PeeredDnsDomainMetadata.php │ │ │ │ │ │ ├── PolicyBinding.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── QuotaLimit.php │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ ├── RangeReservation.php │ │ │ │ │ │ ├── RemoveDnsRecordSetMetadata.php │ │ │ │ │ │ ├── RemoveDnsRecordSetRequest.php │ │ │ │ │ │ ├── RemoveDnsRecordSetResponse.php │ │ │ │ │ │ ├── RemoveDnsZoneMetadata.php │ │ │ │ │ │ ├── RemoveDnsZoneRequest.php │ │ │ │ │ │ ├── RemoveDnsZoneResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Services.php │ │ │ │ │ │ │ ├── ServicesConnections.php │ │ │ │ │ │ │ ├── ServicesDnsRecordSets.php │ │ │ │ │ │ │ ├── ServicesDnsZones.php │ │ │ │ │ │ │ ├── ServicesProjects.php │ │ │ │ │ │ │ ├── ServicesProjectsServicenetworkingGlobal.php │ │ │ │ │ │ │ ├── ServicesProjectsServicenetworkingGlobalNetworks.php │ │ │ │ │ │ │ ├── ServicesProjectsServicenetworkingGlobalNetworksPeeredDnsDomains.php │ │ │ │ │ │ │ └── ServicesRoles.php │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ ├── SearchRangeRequest.php │ │ │ │ │ │ ├── SecondaryIpRange.php │ │ │ │ │ │ ├── SecondaryIpRangeSpec.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── ServicenetworkingEmpty.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Subnetwork.php │ │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ │ ├── SystemParameterRule.php │ │ │ │ │ │ ├── SystemParameters.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── UpdateConsumerConfigRequest.php │ │ │ │ │ │ ├── UpdateDnsRecordSetMetadata.php │ │ │ │ │ │ ├── UpdateDnsRecordSetRequest.php │ │ │ │ │ │ ├── Usage.php │ │ │ │ │ │ ├── UsageRule.php │ │ │ │ │ │ ├── ValidateConsumerConfigRequest.php │ │ │ │ │ │ └── ValidateConsumerConfigResponse.php │ │ │ │ │ │ ├── ServiceRegistry.php │ │ │ │ │ │ ├── ServiceRegistry │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── EndpointEndpointVisibility.php │ │ │ │ │ │ ├── EndpointsListResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationError.php │ │ │ │ │ │ ├── OperationErrorErrors.php │ │ │ │ │ │ ├── OperationWarnings.php │ │ │ │ │ │ ├── OperationWarningsData.php │ │ │ │ │ │ ├── OperationsListResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Endpoints.php │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── ServiceUsage.php │ │ │ │ │ │ ├── ServiceUsage │ │ │ │ │ │ ├── AdminQuotaPolicy.php │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── AuthProvider.php │ │ │ │ │ │ ├── AuthRequirement.php │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── AuthenticationRule.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendRule.php │ │ │ │ │ │ ├── BatchCreateAdminOverridesResponse.php │ │ │ │ │ │ ├── BatchCreateConsumerOverridesResponse.php │ │ │ │ │ │ ├── BatchEnableServicesRequest.php │ │ │ │ │ │ ├── BatchEnableServicesResponse.php │ │ │ │ │ │ ├── BatchGetServicesResponse.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingDestination.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ContextRule.php │ │ │ │ │ │ ├── Control.php │ │ │ │ │ │ ├── CustomError.php │ │ │ │ │ │ ├── CustomErrorRule.php │ │ │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ │ │ ├── DisableServiceRequest.php │ │ │ │ │ │ ├── DisableServiceResponse.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DocumentationRule.php │ │ │ │ │ │ ├── EnableFailure.php │ │ │ │ │ │ ├── EnableServiceRequest.php │ │ │ │ │ │ ├── EnableServiceResponse.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Enum.php │ │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── GetServiceIdentityResponse.php │ │ │ │ │ │ ├── GoogleApiService.php │ │ │ │ │ │ ├── GoogleApiServiceusageV1OperationMetadata.php │ │ │ │ │ │ ├── GoogleApiServiceusageV1Service.php │ │ │ │ │ │ ├── GoogleApiServiceusageV1ServiceConfig.php │ │ │ │ │ │ ├── GoogleApiServiceusageV1beta1GetServiceIdentityResponse.php │ │ │ │ │ │ ├── GoogleApiServiceusageV1beta1ServiceIdentity.php │ │ │ │ │ │ ├── Http.php │ │ │ │ │ │ ├── HttpRule.php │ │ │ │ │ │ ├── ImportAdminOverridesResponse.php │ │ │ │ │ │ ├── ImportAdminQuotaPoliciesResponse.php │ │ │ │ │ │ ├── ImportConsumerOverridesResponse.php │ │ │ │ │ │ ├── JwtLocation.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListServicesResponse.php │ │ │ │ │ │ ├── LogDescriptor.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── LoggingDestination.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRule.php │ │ │ │ │ │ ├── Mixin.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── MonitoringDestination.php │ │ │ │ │ │ ├── OAuthRequirements.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── QuotaLimit.php │ │ │ │ │ │ ├── QuotaOverride.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ └── Services.php │ │ │ │ │ │ ├── ServiceIdentity.php │ │ │ │ │ │ ├── ServiceusageEmpty.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ │ ├── SystemParameterRule.php │ │ │ │ │ │ ├── SystemParameters.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── Usage.php │ │ │ │ │ │ └── UsageRule.php │ │ │ │ │ │ ├── ServiceUser.php │ │ │ │ │ │ ├── ServiceUser │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── AuthProvider.php │ │ │ │ │ │ ├── AuthRequirement.php │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── AuthenticationRule.php │ │ │ │ │ │ ├── AuthorizationConfig.php │ │ │ │ │ │ ├── Backend.php │ │ │ │ │ │ ├── BackendRule.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingDestination.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ContextRule.php │ │ │ │ │ │ ├── Control.php │ │ │ │ │ │ ├── CustomError.php │ │ │ │ │ │ ├── CustomErrorRule.php │ │ │ │ │ │ ├── CustomHttpPattern.php │ │ │ │ │ │ ├── DisableServiceRequest.php │ │ │ │ │ │ ├── Documentation.php │ │ │ │ │ │ ├── DocumentationRule.php │ │ │ │ │ │ ├── EnableServiceRequest.php │ │ │ │ │ │ ├── Endpoint.php │ │ │ │ │ │ ├── Enum.php │ │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ │ ├── Experimental.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── Http.php │ │ │ │ │ │ ├── HttpRule.php │ │ │ │ │ │ ├── LabelDescriptor.php │ │ │ │ │ │ ├── ListEnabledServicesResponse.php │ │ │ │ │ │ ├── LogDescriptor.php │ │ │ │ │ │ ├── Logging.php │ │ │ │ │ │ ├── LoggingDestination.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── MetricDescriptor.php │ │ │ │ │ │ ├── MetricDescriptorMetadata.php │ │ │ │ │ │ ├── MetricRule.php │ │ │ │ │ │ ├── Mixin.php │ │ │ │ │ │ ├── MonitoredResourceDescriptor.php │ │ │ │ │ │ ├── Monitoring.php │ │ │ │ │ │ ├── MonitoringDestination.php │ │ │ │ │ │ ├── OAuthRequirements.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── PublishedService.php │ │ │ │ │ │ ├── Quota.php │ │ │ │ │ │ ├── QuotaLimit.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsServices.php │ │ │ │ │ │ │ └── Services.php │ │ │ │ │ │ ├── SearchServicesResponse.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ │ ├── SourceInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Step.php │ │ │ │ │ │ ├── SystemParameter.php │ │ │ │ │ │ ├── SystemParameterRule.php │ │ │ │ │ │ ├── SystemParameters.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── Usage.php │ │ │ │ │ │ └── UsageRule.php │ │ │ │ │ │ ├── Sheets.php │ │ │ │ │ │ ├── Sheets │ │ │ │ │ │ ├── AddBandingRequest.php │ │ │ │ │ │ ├── AddBandingResponse.php │ │ │ │ │ │ ├── AddChartRequest.php │ │ │ │ │ │ ├── AddChartResponse.php │ │ │ │ │ │ ├── AddConditionalFormatRuleRequest.php │ │ │ │ │ │ ├── AddDataSourceRequest.php │ │ │ │ │ │ ├── AddDataSourceResponse.php │ │ │ │ │ │ ├── AddDimensionGroupRequest.php │ │ │ │ │ │ ├── AddDimensionGroupResponse.php │ │ │ │ │ │ ├── AddFilterViewRequest.php │ │ │ │ │ │ ├── AddFilterViewResponse.php │ │ │ │ │ │ ├── AddNamedRangeRequest.php │ │ │ │ │ │ ├── AddNamedRangeResponse.php │ │ │ │ │ │ ├── AddProtectedRangeRequest.php │ │ │ │ │ │ ├── AddProtectedRangeResponse.php │ │ │ │ │ │ ├── AddSheetRequest.php │ │ │ │ │ │ ├── AddSheetResponse.php │ │ │ │ │ │ ├── AddSlicerRequest.php │ │ │ │ │ │ ├── AddSlicerResponse.php │ │ │ │ │ │ ├── AppendCellsRequest.php │ │ │ │ │ │ ├── AppendDimensionRequest.php │ │ │ │ │ │ ├── AppendValuesResponse.php │ │ │ │ │ │ ├── AutoFillRequest.php │ │ │ │ │ │ ├── AutoResizeDimensionsRequest.php │ │ │ │ │ │ ├── BandedRange.php │ │ │ │ │ │ ├── BandingProperties.php │ │ │ │ │ │ ├── BaselineValueFormat.php │ │ │ │ │ │ ├── BasicChartAxis.php │ │ │ │ │ │ ├── BasicChartDomain.php │ │ │ │ │ │ ├── BasicChartSeries.php │ │ │ │ │ │ ├── BasicChartSpec.php │ │ │ │ │ │ ├── BasicFilter.php │ │ │ │ │ │ ├── BatchClearValuesByDataFilterRequest.php │ │ │ │ │ │ ├── BatchClearValuesByDataFilterResponse.php │ │ │ │ │ │ ├── BatchClearValuesRequest.php │ │ │ │ │ │ ├── BatchClearValuesResponse.php │ │ │ │ │ │ ├── BatchGetValuesByDataFilterRequest.php │ │ │ │ │ │ ├── BatchGetValuesByDataFilterResponse.php │ │ │ │ │ │ ├── BatchGetValuesResponse.php │ │ │ │ │ │ ├── BatchUpdateSpreadsheetRequest.php │ │ │ │ │ │ ├── BatchUpdateSpreadsheetResponse.php │ │ │ │ │ │ ├── BatchUpdateValuesByDataFilterRequest.php │ │ │ │ │ │ ├── BatchUpdateValuesByDataFilterResponse.php │ │ │ │ │ │ ├── BatchUpdateValuesRequest.php │ │ │ │ │ │ ├── BatchUpdateValuesResponse.php │ │ │ │ │ │ ├── BigQueryDataSourceSpec.php │ │ │ │ │ │ ├── BigQueryQuerySpec.php │ │ │ │ │ │ ├── BigQueryTableSpec.php │ │ │ │ │ │ ├── BooleanCondition.php │ │ │ │ │ │ ├── BooleanRule.php │ │ │ │ │ │ ├── Border.php │ │ │ │ │ │ ├── Borders.php │ │ │ │ │ │ ├── BubbleChartSpec.php │ │ │ │ │ │ ├── CandlestickChartSpec.php │ │ │ │ │ │ ├── CandlestickData.php │ │ │ │ │ │ ├── CandlestickDomain.php │ │ │ │ │ │ ├── CandlestickSeries.php │ │ │ │ │ │ ├── CellData.php │ │ │ │ │ │ ├── CellFormat.php │ │ │ │ │ │ ├── ChartAxisViewWindowOptions.php │ │ │ │ │ │ ├── ChartCustomNumberFormatOptions.php │ │ │ │ │ │ ├── ChartData.php │ │ │ │ │ │ ├── ChartDateTimeRule.php │ │ │ │ │ │ ├── ChartGroupRule.php │ │ │ │ │ │ ├── ChartHistogramRule.php │ │ │ │ │ │ ├── ChartSourceRange.php │ │ │ │ │ │ ├── ChartSpec.php │ │ │ │ │ │ ├── ClearBasicFilterRequest.php │ │ │ │ │ │ ├── ClearValuesRequest.php │ │ │ │ │ │ ├── ClearValuesResponse.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── ColorStyle.php │ │ │ │ │ │ ├── ConditionValue.php │ │ │ │ │ │ ├── ConditionalFormatRule.php │ │ │ │ │ │ ├── CopyPasteRequest.php │ │ │ │ │ │ ├── CopySheetToAnotherSpreadsheetRequest.php │ │ │ │ │ │ ├── CreateDeveloperMetadataRequest.php │ │ │ │ │ │ ├── CreateDeveloperMetadataResponse.php │ │ │ │ │ │ ├── CutPasteRequest.php │ │ │ │ │ │ ├── DataExecutionStatus.php │ │ │ │ │ │ ├── DataFilter.php │ │ │ │ │ │ ├── DataFilterValueRange.php │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ ├── DataSourceChartProperties.php │ │ │ │ │ │ ├── DataSourceColumn.php │ │ │ │ │ │ ├── DataSourceColumnReference.php │ │ │ │ │ │ ├── DataSourceFormula.php │ │ │ │ │ │ ├── DataSourceObjectReference.php │ │ │ │ │ │ ├── DataSourceObjectReferences.php │ │ │ │ │ │ ├── DataSourceParameter.php │ │ │ │ │ │ ├── DataSourceRefreshDailySchedule.php │ │ │ │ │ │ ├── DataSourceRefreshMonthlySchedule.php │ │ │ │ │ │ ├── DataSourceRefreshSchedule.php │ │ │ │ │ │ ├── DataSourceRefreshWeeklySchedule.php │ │ │ │ │ │ ├── DataSourceSheetDimensionRange.php │ │ │ │ │ │ ├── DataSourceSheetProperties.php │ │ │ │ │ │ ├── DataSourceSpec.php │ │ │ │ │ │ ├── DataSourceTable.php │ │ │ │ │ │ ├── DataValidationRule.php │ │ │ │ │ │ ├── DateTimeRule.php │ │ │ │ │ │ ├── DeleteBandingRequest.php │ │ │ │ │ │ ├── DeleteConditionalFormatRuleRequest.php │ │ │ │ │ │ ├── DeleteConditionalFormatRuleResponse.php │ │ │ │ │ │ ├── DeleteDataSourceRequest.php │ │ │ │ │ │ ├── DeleteDeveloperMetadataRequest.php │ │ │ │ │ │ ├── DeleteDeveloperMetadataResponse.php │ │ │ │ │ │ ├── DeleteDimensionGroupRequest.php │ │ │ │ │ │ ├── DeleteDimensionGroupResponse.php │ │ │ │ │ │ ├── DeleteDimensionRequest.php │ │ │ │ │ │ ├── DeleteDuplicatesRequest.php │ │ │ │ │ │ ├── DeleteDuplicatesResponse.php │ │ │ │ │ │ ├── DeleteEmbeddedObjectRequest.php │ │ │ │ │ │ ├── DeleteFilterViewRequest.php │ │ │ │ │ │ ├── DeleteNamedRangeRequest.php │ │ │ │ │ │ ├── DeleteProtectedRangeRequest.php │ │ │ │ │ │ ├── DeleteRangeRequest.php │ │ │ │ │ │ ├── DeleteSheetRequest.php │ │ │ │ │ │ ├── DeveloperMetadata.php │ │ │ │ │ │ ├── DeveloperMetadataLocation.php │ │ │ │ │ │ ├── DeveloperMetadataLookup.php │ │ │ │ │ │ ├── DimensionGroup.php │ │ │ │ │ │ ├── DimensionProperties.php │ │ │ │ │ │ ├── DimensionRange.php │ │ │ │ │ │ ├── DuplicateFilterViewRequest.php │ │ │ │ │ │ ├── DuplicateFilterViewResponse.php │ │ │ │ │ │ ├── DuplicateSheetRequest.php │ │ │ │ │ │ ├── DuplicateSheetResponse.php │ │ │ │ │ │ ├── Editors.php │ │ │ │ │ │ ├── EmbeddedChart.php │ │ │ │ │ │ ├── EmbeddedObjectPosition.php │ │ │ │ │ │ ├── ErrorValue.php │ │ │ │ │ │ ├── ExtendedValue.php │ │ │ │ │ │ ├── FilterCriteria.php │ │ │ │ │ │ ├── FilterSpec.php │ │ │ │ │ │ ├── FilterView.php │ │ │ │ │ │ ├── FindReplaceRequest.php │ │ │ │ │ │ ├── FindReplaceResponse.php │ │ │ │ │ │ ├── GetSpreadsheetByDataFilterRequest.php │ │ │ │ │ │ ├── GradientRule.php │ │ │ │ │ │ ├── GridCoordinate.php │ │ │ │ │ │ ├── GridData.php │ │ │ │ │ │ ├── GridProperties.php │ │ │ │ │ │ ├── GridRange.php │ │ │ │ │ │ ├── HistogramChartSpec.php │ │ │ │ │ │ ├── HistogramRule.php │ │ │ │ │ │ ├── HistogramSeries.php │ │ │ │ │ │ ├── InsertDimensionRequest.php │ │ │ │ │ │ ├── InsertRangeRequest.php │ │ │ │ │ │ ├── InterpolationPoint.php │ │ │ │ │ │ ├── Interval.php │ │ │ │ │ │ ├── IterativeCalculationSettings.php │ │ │ │ │ │ ├── KeyValueFormat.php │ │ │ │ │ │ ├── LineStyle.php │ │ │ │ │ │ ├── ManualRule.php │ │ │ │ │ │ ├── ManualRuleGroup.php │ │ │ │ │ │ ├── MatchedDeveloperMetadata.php │ │ │ │ │ │ ├── MatchedValueRange.php │ │ │ │ │ │ ├── MergeCellsRequest.php │ │ │ │ │ │ ├── MoveDimensionRequest.php │ │ │ │ │ │ ├── NamedRange.php │ │ │ │ │ │ ├── NumberFormat.php │ │ │ │ │ │ ├── OrgChartSpec.php │ │ │ │ │ │ ├── OverlayPosition.php │ │ │ │ │ │ ├── Padding.php │ │ │ │ │ │ ├── PasteDataRequest.php │ │ │ │ │ │ ├── PieChartSpec.php │ │ │ │ │ │ ├── PivotFilterCriteria.php │ │ │ │ │ │ ├── PivotFilterSpec.php │ │ │ │ │ │ ├── PivotGroup.php │ │ │ │ │ │ ├── PivotGroupLimit.php │ │ │ │ │ │ ├── PivotGroupRule.php │ │ │ │ │ │ ├── PivotGroupSortValueBucket.php │ │ │ │ │ │ ├── PivotGroupValueMetadata.php │ │ │ │ │ │ ├── PivotTable.php │ │ │ │ │ │ ├── PivotValue.php │ │ │ │ │ │ ├── ProtectedRange.php │ │ │ │ │ │ ├── RandomizeRangeRequest.php │ │ │ │ │ │ ├── RefreshDataSourceObjectExecutionStatus.php │ │ │ │ │ │ ├── RefreshDataSourceRequest.php │ │ │ │ │ │ ├── RefreshDataSourceResponse.php │ │ │ │ │ │ ├── RepeatCellRequest.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Spreadsheets.php │ │ │ │ │ │ │ ├── SpreadsheetsDeveloperMetadata.php │ │ │ │ │ │ │ ├── SpreadsheetsSheets.php │ │ │ │ │ │ │ └── SpreadsheetsValues.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── RowData.php │ │ │ │ │ │ ├── ScorecardChartSpec.php │ │ │ │ │ │ ├── SearchDeveloperMetadataRequest.php │ │ │ │ │ │ ├── SearchDeveloperMetadataResponse.php │ │ │ │ │ │ ├── SetBasicFilterRequest.php │ │ │ │ │ │ ├── SetDataValidationRequest.php │ │ │ │ │ │ ├── Sheet.php │ │ │ │ │ │ ├── SheetProperties.php │ │ │ │ │ │ ├── Slicer.php │ │ │ │ │ │ ├── SlicerSpec.php │ │ │ │ │ │ ├── SortRangeRequest.php │ │ │ │ │ │ ├── SortSpec.php │ │ │ │ │ │ ├── SourceAndDestination.php │ │ │ │ │ │ ├── Spreadsheet.php │ │ │ │ │ │ ├── SpreadsheetProperties.php │ │ │ │ │ │ ├── SpreadsheetTheme.php │ │ │ │ │ │ ├── TextFormat.php │ │ │ │ │ │ ├── TextFormatRun.php │ │ │ │ │ │ ├── TextPosition.php │ │ │ │ │ │ ├── TextRotation.php │ │ │ │ │ │ ├── TextToColumnsRequest.php │ │ │ │ │ │ ├── ThemeColorPair.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── TreemapChartColorScale.php │ │ │ │ │ │ ├── TreemapChartSpec.php │ │ │ │ │ │ ├── TrimWhitespaceRequest.php │ │ │ │ │ │ ├── TrimWhitespaceResponse.php │ │ │ │ │ │ ├── UnmergeCellsRequest.php │ │ │ │ │ │ ├── UpdateBandingRequest.php │ │ │ │ │ │ ├── UpdateBordersRequest.php │ │ │ │ │ │ ├── UpdateCellsRequest.php │ │ │ │ │ │ ├── UpdateChartSpecRequest.php │ │ │ │ │ │ ├── UpdateConditionalFormatRuleRequest.php │ │ │ │ │ │ ├── UpdateConditionalFormatRuleResponse.php │ │ │ │ │ │ ├── UpdateDataSourceRequest.php │ │ │ │ │ │ ├── UpdateDataSourceResponse.php │ │ │ │ │ │ ├── UpdateDeveloperMetadataRequest.php │ │ │ │ │ │ ├── UpdateDeveloperMetadataResponse.php │ │ │ │ │ │ ├── UpdateDimensionGroupRequest.php │ │ │ │ │ │ ├── UpdateDimensionPropertiesRequest.php │ │ │ │ │ │ ├── UpdateEmbeddedObjectPositionRequest.php │ │ │ │ │ │ ├── UpdateEmbeddedObjectPositionResponse.php │ │ │ │ │ │ ├── UpdateFilterViewRequest.php │ │ │ │ │ │ ├── UpdateNamedRangeRequest.php │ │ │ │ │ │ ├── UpdateProtectedRangeRequest.php │ │ │ │ │ │ ├── UpdateSheetPropertiesRequest.php │ │ │ │ │ │ ├── UpdateSlicerSpecRequest.php │ │ │ │ │ │ ├── UpdateSpreadsheetPropertiesRequest.php │ │ │ │ │ │ ├── UpdateValuesByDataFilterResponse.php │ │ │ │ │ │ ├── UpdateValuesResponse.php │ │ │ │ │ │ ├── ValueRange.php │ │ │ │ │ │ ├── WaterfallChartColumnStyle.php │ │ │ │ │ │ ├── WaterfallChartCustomSubtotal.php │ │ │ │ │ │ ├── WaterfallChartDomain.php │ │ │ │ │ │ ├── WaterfallChartSeries.php │ │ │ │ │ │ └── WaterfallChartSpec.php │ │ │ │ │ │ ├── ShoppingContent.php │ │ │ │ │ │ ├── ShoppingContent │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AccountAddress.php │ │ │ │ │ │ ├── AccountAdsLink.php │ │ │ │ │ │ ├── AccountBusinessInformation.php │ │ │ │ │ │ ├── AccountCustomerService.php │ │ │ │ │ │ ├── AccountGoogleMyBusinessLink.php │ │ │ │ │ │ ├── AccountIdentifier.php │ │ │ │ │ │ ├── AccountLabel.php │ │ │ │ │ │ ├── AccountStatus.php │ │ │ │ │ │ ├── AccountStatusAccountLevelIssue.php │ │ │ │ │ │ ├── AccountStatusItemLevelIssue.php │ │ │ │ │ │ ├── AccountStatusProducts.php │ │ │ │ │ │ ├── AccountStatusStatistics.php │ │ │ │ │ │ ├── AccountTax.php │ │ │ │ │ │ ├── AccountTaxTaxRule.php │ │ │ │ │ │ ├── AccountUser.php │ │ │ │ │ │ ├── AccountYouTubeChannelLink.php │ │ │ │ │ │ ├── AccountsAuthInfoResponse.php │ │ │ │ │ │ ├── AccountsClaimWebsiteResponse.php │ │ │ │ │ │ ├── AccountsCustomBatchRequest.php │ │ │ │ │ │ ├── AccountsCustomBatchRequestEntry.php │ │ │ │ │ │ ├── AccountsCustomBatchRequestEntryLinkRequest.php │ │ │ │ │ │ ├── AccountsCustomBatchResponse.php │ │ │ │ │ │ ├── AccountsCustomBatchResponseEntry.php │ │ │ │ │ │ ├── AccountsLinkRequest.php │ │ │ │ │ │ ├── AccountsLinkResponse.php │ │ │ │ │ │ ├── AccountsListLinksResponse.php │ │ │ │ │ │ ├── AccountsListResponse.php │ │ │ │ │ │ ├── AccountsUpdateLabelsRequest.php │ │ │ │ │ │ ├── AccountsUpdateLabelsResponse.php │ │ │ │ │ │ ├── AccountstatusesCustomBatchRequest.php │ │ │ │ │ │ ├── AccountstatusesCustomBatchRequestEntry.php │ │ │ │ │ │ ├── AccountstatusesCustomBatchResponse.php │ │ │ │ │ │ ├── AccountstatusesCustomBatchResponseEntry.php │ │ │ │ │ │ ├── AccountstatusesListResponse.php │ │ │ │ │ │ ├── AccounttaxCustomBatchRequest.php │ │ │ │ │ │ ├── AccounttaxCustomBatchRequestEntry.php │ │ │ │ │ │ ├── AccounttaxCustomBatchResponse.php │ │ │ │ │ │ ├── AccounttaxCustomBatchResponseEntry.php │ │ │ │ │ │ ├── AccounttaxListResponse.php │ │ │ │ │ │ ├── Amount.php │ │ │ │ │ │ ├── BusinessDayConfig.php │ │ │ │ │ │ ├── CarrierRate.php │ │ │ │ │ │ ├── CarriersCarrier.php │ │ │ │ │ │ ├── Css.php │ │ │ │ │ │ ├── CustomAttribute.php │ │ │ │ │ │ ├── CustomerReturnReason.php │ │ │ │ │ │ ├── CutoffTime.php │ │ │ │ │ │ ├── Datafeed.php │ │ │ │ │ │ ├── DatafeedFetchSchedule.php │ │ │ │ │ │ ├── DatafeedFormat.php │ │ │ │ │ │ ├── DatafeedStatus.php │ │ │ │ │ │ ├── DatafeedStatusError.php │ │ │ │ │ │ ├── DatafeedStatusExample.php │ │ │ │ │ │ ├── DatafeedTarget.php │ │ │ │ │ │ ├── DatafeedsCustomBatchRequest.php │ │ │ │ │ │ ├── DatafeedsCustomBatchRequestEntry.php │ │ │ │ │ │ ├── DatafeedsCustomBatchResponse.php │ │ │ │ │ │ ├── DatafeedsCustomBatchResponseEntry.php │ │ │ │ │ │ ├── DatafeedsFetchNowResponse.php │ │ │ │ │ │ ├── DatafeedsListResponse.php │ │ │ │ │ │ ├── DatafeedstatusesCustomBatchRequest.php │ │ │ │ │ │ ├── DatafeedstatusesCustomBatchRequestEntry.php │ │ │ │ │ │ ├── DatafeedstatusesCustomBatchResponse.php │ │ │ │ │ │ ├── DatafeedstatusesCustomBatchResponseEntry.php │ │ │ │ │ │ ├── DatafeedstatusesListResponse.php │ │ │ │ │ │ ├── DateTime.php │ │ │ │ │ │ ├── DeliveryTime.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Errors.php │ │ │ │ │ │ ├── GmbAccounts.php │ │ │ │ │ │ ├── GmbAccountsGmbAccount.php │ │ │ │ │ │ ├── Headers.php │ │ │ │ │ │ ├── HolidayCutoff.php │ │ │ │ │ │ ├── HolidaysHoliday.php │ │ │ │ │ │ ├── Installment.php │ │ │ │ │ │ ├── InvoiceSummary.php │ │ │ │ │ │ ├── InvoiceSummaryAdditionalChargeSummary.php │ │ │ │ │ │ ├── LabelIds.php │ │ │ │ │ │ ├── LiaAboutPageSettings.php │ │ │ │ │ │ ├── LiaCountrySettings.php │ │ │ │ │ │ ├── LiaInventorySettings.php │ │ │ │ │ │ ├── LiaOnDisplayToOrderSettings.php │ │ │ │ │ │ ├── LiaPosDataProvider.php │ │ │ │ │ │ ├── LiaSettings.php │ │ │ │ │ │ ├── LiasettingsCustomBatchRequest.php │ │ │ │ │ │ ├── LiasettingsCustomBatchRequestEntry.php │ │ │ │ │ │ ├── LiasettingsCustomBatchResponse.php │ │ │ │ │ │ ├── LiasettingsCustomBatchResponseEntry.php │ │ │ │ │ │ ├── LiasettingsGetAccessibleGmbAccountsResponse.php │ │ │ │ │ │ ├── LiasettingsListPosDataProvidersResponse.php │ │ │ │ │ │ ├── LiasettingsListResponse.php │ │ │ │ │ │ ├── LiasettingsRequestGmbAccessResponse.php │ │ │ │ │ │ ├── LiasettingsRequestInventoryVerificationResponse.php │ │ │ │ │ │ ├── LiasettingsSetInventoryVerificationContactResponse.php │ │ │ │ │ │ ├── LiasettingsSetPosDataProviderResponse.php │ │ │ │ │ │ ├── LinkService.php │ │ │ │ │ │ ├── LinkedAccount.php │ │ │ │ │ │ ├── ListAccountLabelsResponse.php │ │ │ │ │ │ ├── ListCssesResponse.php │ │ │ │ │ │ ├── ListRegionsResponse.php │ │ │ │ │ │ ├── ListRepricingRulesResponse.php │ │ │ │ │ │ ├── LocalInventory.php │ │ │ │ │ │ ├── LocalinventoryCustomBatchRequest.php │ │ │ │ │ │ ├── LocalinventoryCustomBatchRequestEntry.php │ │ │ │ │ │ ├── LocalinventoryCustomBatchResponse.php │ │ │ │ │ │ ├── LocalinventoryCustomBatchResponseEntry.php │ │ │ │ │ │ ├── LocationIdSet.php │ │ │ │ │ │ ├── LoyaltyPoints.php │ │ │ │ │ │ ├── MerchantOrderReturn.php │ │ │ │ │ │ ├── MerchantOrderReturnItem.php │ │ │ │ │ │ ├── MerchantRejectionReason.php │ │ │ │ │ │ ├── MinimumOrderValueTable.php │ │ │ │ │ │ ├── MinimumOrderValueTableStoreCodeSetWithMov.php │ │ │ │ │ │ ├── MonetaryAmount.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ ├── OrderAddress.php │ │ │ │ │ │ ├── OrderCancellation.php │ │ │ │ │ │ ├── OrderCustomer.php │ │ │ │ │ │ ├── OrderCustomerLoyaltyInfo.php │ │ │ │ │ │ ├── OrderCustomerMarketingRightsInfo.php │ │ │ │ │ │ ├── OrderDeliveryDetails.php │ │ │ │ │ │ ├── OrderLineItem.php │ │ │ │ │ │ ├── OrderLineItemAdjustment.php │ │ │ │ │ │ ├── OrderLineItemProduct.php │ │ │ │ │ │ ├── OrderLineItemProductFee.php │ │ │ │ │ │ ├── OrderLineItemProductVariantAttribute.php │ │ │ │ │ │ ├── OrderLineItemReturnInfo.php │ │ │ │ │ │ ├── OrderLineItemShippingDetails.php │ │ │ │ │ │ ├── OrderLineItemShippingDetailsMethod.php │ │ │ │ │ │ ├── OrderMerchantProvidedAnnotation.php │ │ │ │ │ │ ├── OrderOrderAnnotation.php │ │ │ │ │ │ ├── OrderPickupDetails.php │ │ │ │ │ │ ├── OrderPickupDetailsCollector.php │ │ │ │ │ │ ├── OrderPromotion.php │ │ │ │ │ │ ├── OrderPromotionItem.php │ │ │ │ │ │ ├── OrderRefund.php │ │ │ │ │ │ ├── OrderReportDisbursement.php │ │ │ │ │ │ ├── OrderReportTransaction.php │ │ │ │ │ │ ├── OrderReturn.php │ │ │ │ │ │ ├── OrderShipment.php │ │ │ │ │ │ ├── OrderShipmentLineItemShipment.php │ │ │ │ │ │ ├── OrderShipmentScheduledDeliveryDetails.php │ │ │ │ │ │ ├── OrderTrackingSignal.php │ │ │ │ │ │ ├── OrderTrackingSignalLineItemDetails.php │ │ │ │ │ │ ├── OrderTrackingSignalShipmentLineItemMapping.php │ │ │ │ │ │ ├── OrderTrackingSignalShippingInfo.php │ │ │ │ │ │ ├── OrderinvoicesCreateChargeInvoiceRequest.php │ │ │ │ │ │ ├── OrderinvoicesCreateChargeInvoiceResponse.php │ │ │ │ │ │ ├── OrderinvoicesCreateRefundInvoiceRequest.php │ │ │ │ │ │ ├── OrderinvoicesCreateRefundInvoiceResponse.php │ │ │ │ │ │ ├── OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption.php │ │ │ │ │ │ ├── OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption.php │ │ │ │ │ │ ├── OrderreportsListDisbursementsResponse.php │ │ │ │ │ │ ├── OrderreportsListTransactionsResponse.php │ │ │ │ │ │ ├── OrderreturnsAcknowledgeRequest.php │ │ │ │ │ │ ├── OrderreturnsAcknowledgeResponse.php │ │ │ │ │ │ ├── OrderreturnsCreateOrderReturnRequest.php │ │ │ │ │ │ ├── OrderreturnsCreateOrderReturnResponse.php │ │ │ │ │ │ ├── OrderreturnsLineItem.php │ │ │ │ │ │ ├── OrderreturnsListResponse.php │ │ │ │ │ │ ├── OrderreturnsPartialRefund.php │ │ │ │ │ │ ├── OrderreturnsProcessRequest.php │ │ │ │ │ │ ├── OrderreturnsProcessResponse.php │ │ │ │ │ │ ├── OrderreturnsRefundOperation.php │ │ │ │ │ │ ├── OrderreturnsRejectOperation.php │ │ │ │ │ │ ├── OrderreturnsReturnItem.php │ │ │ │ │ │ ├── OrdersAcknowledgeRequest.php │ │ │ │ │ │ ├── OrdersAcknowledgeResponse.php │ │ │ │ │ │ ├── OrdersAdvanceTestOrderResponse.php │ │ │ │ │ │ ├── OrdersCancelLineItemRequest.php │ │ │ │ │ │ ├── OrdersCancelLineItemResponse.php │ │ │ │ │ │ ├── OrdersCancelRequest.php │ │ │ │ │ │ ├── OrdersCancelResponse.php │ │ │ │ │ │ ├── OrdersCancelTestOrderByCustomerRequest.php │ │ │ │ │ │ ├── OrdersCancelTestOrderByCustomerResponse.php │ │ │ │ │ │ ├── OrdersCreateTestOrderRequest.php │ │ │ │ │ │ ├── OrdersCreateTestOrderResponse.php │ │ │ │ │ │ ├── OrdersCreateTestReturnRequest.php │ │ │ │ │ │ ├── OrdersCreateTestReturnResponse.php │ │ │ │ │ │ ├── OrdersCustomBatchRequestEntryCreateTestReturnReturnItem.php │ │ │ │ │ │ ├── OrdersCustomBatchRequestEntryRefundItemItem.php │ │ │ │ │ │ ├── OrdersCustomBatchRequestEntryRefundItemShipping.php │ │ │ │ │ │ ├── OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo.php │ │ │ │ │ │ ├── OrdersGetByMerchantOrderIdResponse.php │ │ │ │ │ │ ├── OrdersGetTestOrderTemplateResponse.php │ │ │ │ │ │ ├── OrdersInStoreRefundLineItemRequest.php │ │ │ │ │ │ ├── OrdersInStoreRefundLineItemResponse.php │ │ │ │ │ │ ├── OrdersListResponse.php │ │ │ │ │ │ ├── OrdersRefundItemRequest.php │ │ │ │ │ │ ├── OrdersRefundItemResponse.php │ │ │ │ │ │ ├── OrdersRefundOrderRequest.php │ │ │ │ │ │ ├── OrdersRefundOrderResponse.php │ │ │ │ │ │ ├── OrdersRejectReturnLineItemRequest.php │ │ │ │ │ │ ├── OrdersRejectReturnLineItemResponse.php │ │ │ │ │ │ ├── OrdersReturnRefundLineItemRequest.php │ │ │ │ │ │ ├── OrdersReturnRefundLineItemResponse.php │ │ │ │ │ │ ├── OrdersSetLineItemMetadataRequest.php │ │ │ │ │ │ ├── OrdersSetLineItemMetadataResponse.php │ │ │ │ │ │ ├── OrdersShipLineItemsRequest.php │ │ │ │ │ │ ├── OrdersShipLineItemsResponse.php │ │ │ │ │ │ ├── OrdersUpdateLineItemShippingDetailsRequest.php │ │ │ │ │ │ ├── OrdersUpdateLineItemShippingDetailsResponse.php │ │ │ │ │ │ ├── OrdersUpdateMerchantOrderIdRequest.php │ │ │ │ │ │ ├── OrdersUpdateMerchantOrderIdResponse.php │ │ │ │ │ │ ├── OrdersUpdateShipmentRequest.php │ │ │ │ │ │ ├── OrdersUpdateShipmentResponse.php │ │ │ │ │ │ ├── PickupCarrierService.php │ │ │ │ │ │ ├── PickupServicesPickupService.php │ │ │ │ │ │ ├── PosCustomBatchRequest.php │ │ │ │ │ │ ├── PosCustomBatchRequestEntry.php │ │ │ │ │ │ ├── PosCustomBatchResponse.php │ │ │ │ │ │ ├── PosCustomBatchResponseEntry.php │ │ │ │ │ │ ├── PosDataProviders.php │ │ │ │ │ │ ├── PosDataProvidersPosDataProvider.php │ │ │ │ │ │ ├── PosInventory.php │ │ │ │ │ │ ├── PosInventoryRequest.php │ │ │ │ │ │ ├── PosInventoryResponse.php │ │ │ │ │ │ ├── PosListResponse.php │ │ │ │ │ │ ├── PosSale.php │ │ │ │ │ │ ├── PosSaleRequest.php │ │ │ │ │ │ ├── PosSaleResponse.php │ │ │ │ │ │ ├── PosStore.php │ │ │ │ │ │ ├── PostalCodeGroup.php │ │ │ │ │ │ ├── PostalCodeRange.php │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ ├── PriceAmount.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── ProductAmount.php │ │ │ │ │ │ ├── ProductProductDetail.php │ │ │ │ │ │ ├── ProductShipping.php │ │ │ │ │ │ ├── ProductShippingDimension.php │ │ │ │ │ │ ├── ProductShippingWeight.php │ │ │ │ │ │ ├── ProductStatus.php │ │ │ │ │ │ ├── ProductStatusDestinationStatus.php │ │ │ │ │ │ ├── ProductStatusItemLevelIssue.php │ │ │ │ │ │ ├── ProductSubscriptionCost.php │ │ │ │ │ │ ├── ProductTax.php │ │ │ │ │ │ ├── ProductUnitPricingBaseMeasure.php │ │ │ │ │ │ ├── ProductUnitPricingMeasure.php │ │ │ │ │ │ ├── ProductsCustomBatchRequest.php │ │ │ │ │ │ ├── ProductsCustomBatchRequestEntry.php │ │ │ │ │ │ ├── ProductsCustomBatchResponse.php │ │ │ │ │ │ ├── ProductsCustomBatchResponseEntry.php │ │ │ │ │ │ ├── ProductsListResponse.php │ │ │ │ │ │ ├── ProductstatusesCustomBatchRequest.php │ │ │ │ │ │ ├── ProductstatusesCustomBatchRequestEntry.php │ │ │ │ │ │ ├── ProductstatusesCustomBatchResponse.php │ │ │ │ │ │ ├── ProductstatusesCustomBatchResponseEntry.php │ │ │ │ │ │ ├── ProductstatusesListResponse.php │ │ │ │ │ │ ├── PubsubNotificationSettings.php │ │ │ │ │ │ ├── RateGroup.php │ │ │ │ │ │ ├── RefundReason.php │ │ │ │ │ │ ├── Region.php │ │ │ │ │ │ ├── RegionGeoTargetArea.php │ │ │ │ │ │ ├── RegionPostalCodeArea.php │ │ │ │ │ │ ├── RegionPostalCodeAreaPostalCodeRange.php │ │ │ │ │ │ ├── RegionalInventory.php │ │ │ │ │ │ ├── RegionalinventoryCustomBatchRequest.php │ │ │ │ │ │ ├── RegionalinventoryCustomBatchRequestEntry.php │ │ │ │ │ │ ├── RegionalinventoryCustomBatchResponse.php │ │ │ │ │ │ ├── RegionalinventoryCustomBatchResponseEntry.php │ │ │ │ │ │ ├── RepricingRule.php │ │ │ │ │ │ ├── RepricingRuleEffectiveTime.php │ │ │ │ │ │ ├── RepricingRuleEffectiveTimeFixedTimePeriod.php │ │ │ │ │ │ ├── RepricingRuleEligibleOfferMatcher.php │ │ │ │ │ │ ├── RepricingRuleEligibleOfferMatcherStringMatcher.php │ │ │ │ │ │ ├── RepricingRuleRestriction.php │ │ │ │ │ │ ├── RepricingRuleRestrictionBoundary.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsLabels.php │ │ │ │ │ │ │ ├── Accountstatuses.php │ │ │ │ │ │ │ ├── Accounttax.php │ │ │ │ │ │ │ ├── Csses.php │ │ │ │ │ │ │ ├── Datafeeds.php │ │ │ │ │ │ │ ├── Datafeedstatuses.php │ │ │ │ │ │ │ ├── Liasettings.php │ │ │ │ │ │ │ ├── Localinventory.php │ │ │ │ │ │ │ ├── Orderinvoices.php │ │ │ │ │ │ │ ├── Orderreports.php │ │ │ │ │ │ │ ├── Orderreturns.php │ │ │ │ │ │ │ ├── Orders.php │ │ │ │ │ │ │ ├── Ordertrackingsignals.php │ │ │ │ │ │ │ ├── Pos.php │ │ │ │ │ │ │ ├── Products.php │ │ │ │ │ │ │ ├── Productstatuses.php │ │ │ │ │ │ │ ├── Pubsubnotificationsettings.php │ │ │ │ │ │ │ ├── Regionalinventory.php │ │ │ │ │ │ │ ├── Regions.php │ │ │ │ │ │ │ ├── Repricingrules.php │ │ │ │ │ │ │ ├── Returnaddress.php │ │ │ │ │ │ │ ├── Returnpolicy.php │ │ │ │ │ │ │ ├── Settlementreports.php │ │ │ │ │ │ │ ├── Settlementtransactions.php │ │ │ │ │ │ │ └── Shippingsettings.php │ │ │ │ │ │ ├── ReturnAddress.php │ │ │ │ │ │ ├── ReturnAddressAddress.php │ │ │ │ │ │ ├── ReturnPolicy.php │ │ │ │ │ │ ├── ReturnPolicyPolicy.php │ │ │ │ │ │ ├── ReturnPolicySeasonalOverride.php │ │ │ │ │ │ ├── ReturnPricingInfo.php │ │ │ │ │ │ ├── ReturnShipment.php │ │ │ │ │ │ ├── ReturnaddressCustomBatchRequest.php │ │ │ │ │ │ ├── ReturnaddressCustomBatchRequestEntry.php │ │ │ │ │ │ ├── ReturnaddressCustomBatchResponse.php │ │ │ │ │ │ ├── ReturnaddressCustomBatchResponseEntry.php │ │ │ │ │ │ ├── ReturnaddressListResponse.php │ │ │ │ │ │ ├── ReturnpolicyCustomBatchRequest.php │ │ │ │ │ │ ├── ReturnpolicyCustomBatchRequestEntry.php │ │ │ │ │ │ ├── ReturnpolicyCustomBatchResponse.php │ │ │ │ │ │ ├── ReturnpolicyCustomBatchResponseEntry.php │ │ │ │ │ │ ├── ReturnpolicyListResponse.php │ │ │ │ │ │ ├── Row.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── SettlementReport.php │ │ │ │ │ │ ├── SettlementTransaction.php │ │ │ │ │ │ ├── SettlementTransactionAmount.php │ │ │ │ │ │ ├── SettlementTransactionAmountCommission.php │ │ │ │ │ │ ├── SettlementTransactionIdentifiers.php │ │ │ │ │ │ ├── SettlementTransactionTransaction.php │ │ │ │ │ │ ├── SettlementreportsListResponse.php │ │ │ │ │ │ ├── SettlementtransactionsListResponse.php │ │ │ │ │ │ ├── ShipmentInvoice.php │ │ │ │ │ │ ├── ShipmentInvoiceLineItemInvoice.php │ │ │ │ │ │ ├── ShipmentTrackingInfo.php │ │ │ │ │ │ ├── ShippingSettings.php │ │ │ │ │ │ ├── ShippingsettingsCustomBatchRequest.php │ │ │ │ │ │ ├── ShippingsettingsCustomBatchRequestEntry.php │ │ │ │ │ │ ├── ShippingsettingsCustomBatchResponse.php │ │ │ │ │ │ ├── ShippingsettingsCustomBatchResponseEntry.php │ │ │ │ │ │ ├── ShippingsettingsGetSupportedCarriersResponse.php │ │ │ │ │ │ ├── ShippingsettingsGetSupportedHolidaysResponse.php │ │ │ │ │ │ ├── ShippingsettingsGetSupportedPickupServicesResponse.php │ │ │ │ │ │ ├── ShippingsettingsListResponse.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TestOrder.php │ │ │ │ │ │ ├── TestOrderAddress.php │ │ │ │ │ │ ├── TestOrderDeliveryDetails.php │ │ │ │ │ │ ├── TestOrderLineItem.php │ │ │ │ │ │ ├── TestOrderLineItemProduct.php │ │ │ │ │ │ ├── TestOrderPickupDetails.php │ │ │ │ │ │ ├── TestOrderPickupDetailsPickupPerson.php │ │ │ │ │ │ ├── TimeZone.php │ │ │ │ │ │ ├── TransitTable.php │ │ │ │ │ │ ├── TransitTableTransitTimeRow.php │ │ │ │ │ │ ├── TransitTableTransitTimeRowTransitTimeValue.php │ │ │ │ │ │ ├── UnitInvoice.php │ │ │ │ │ │ ├── UnitInvoiceAdditionalCharge.php │ │ │ │ │ │ ├── UnitInvoiceTaxLine.php │ │ │ │ │ │ ├── Value.php │ │ │ │ │ │ └── Weight.php │ │ │ │ │ │ ├── SiteVerification.php │ │ │ │ │ │ ├── SiteVerification │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── WebResource.php │ │ │ │ │ │ ├── SiteVerificationWebResourceGettokenRequest.php │ │ │ │ │ │ ├── SiteVerificationWebResourceGettokenRequestSite.php │ │ │ │ │ │ ├── SiteVerificationWebResourceGettokenResponse.php │ │ │ │ │ │ ├── SiteVerificationWebResourceListResponse.php │ │ │ │ │ │ ├── SiteVerificationWebResourceResource.php │ │ │ │ │ │ └── SiteVerificationWebResourceResourceSite.php │ │ │ │ │ │ ├── Slides.php │ │ │ │ │ │ ├── Slides │ │ │ │ │ │ ├── AffineTransform.php │ │ │ │ │ │ ├── AutoText.php │ │ │ │ │ │ ├── BatchUpdatePresentationRequest.php │ │ │ │ │ │ ├── BatchUpdatePresentationResponse.php │ │ │ │ │ │ ├── Bullet.php │ │ │ │ │ │ ├── ColorScheme.php │ │ │ │ │ │ ├── ColorStop.php │ │ │ │ │ │ ├── CreateImageRequest.php │ │ │ │ │ │ ├── CreateImageResponse.php │ │ │ │ │ │ ├── CreateLineRequest.php │ │ │ │ │ │ ├── CreateLineResponse.php │ │ │ │ │ │ ├── CreateParagraphBulletsRequest.php │ │ │ │ │ │ ├── CreateShapeRequest.php │ │ │ │ │ │ ├── CreateShapeResponse.php │ │ │ │ │ │ ├── CreateSheetsChartRequest.php │ │ │ │ │ │ ├── CreateSheetsChartResponse.php │ │ │ │ │ │ ├── CreateSlideRequest.php │ │ │ │ │ │ ├── CreateSlideResponse.php │ │ │ │ │ │ ├── CreateTableRequest.php │ │ │ │ │ │ ├── CreateTableResponse.php │ │ │ │ │ │ ├── CreateVideoRequest.php │ │ │ │ │ │ ├── CreateVideoResponse.php │ │ │ │ │ │ ├── CropProperties.php │ │ │ │ │ │ ├── DeleteObjectRequest.php │ │ │ │ │ │ ├── DeleteParagraphBulletsRequest.php │ │ │ │ │ │ ├── DeleteTableColumnRequest.php │ │ │ │ │ │ ├── DeleteTableRowRequest.php │ │ │ │ │ │ ├── DeleteTextRequest.php │ │ │ │ │ │ ├── Dimension.php │ │ │ │ │ │ ├── DuplicateObjectRequest.php │ │ │ │ │ │ ├── DuplicateObjectResponse.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── GroupObjectsRequest.php │ │ │ │ │ │ ├── GroupObjectsResponse.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImageProperties.php │ │ │ │ │ │ ├── InsertTableColumnsRequest.php │ │ │ │ │ │ ├── InsertTableRowsRequest.php │ │ │ │ │ │ ├── InsertTextRequest.php │ │ │ │ │ │ ├── LayoutPlaceholderIdMapping.php │ │ │ │ │ │ ├── LayoutProperties.php │ │ │ │ │ │ ├── LayoutReference.php │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ ├── LineConnection.php │ │ │ │ │ │ ├── LineFill.php │ │ │ │ │ │ ├── LineProperties.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── MasterProperties.php │ │ │ │ │ │ ├── MergeTableCellsRequest.php │ │ │ │ │ │ ├── NestingLevel.php │ │ │ │ │ │ ├── NotesProperties.php │ │ │ │ │ │ ├── OpaqueColor.php │ │ │ │ │ │ ├── OptionalColor.php │ │ │ │ │ │ ├── Outline.php │ │ │ │ │ │ ├── OutlineFill.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── PageBackgroundFill.php │ │ │ │ │ │ ├── PageElement.php │ │ │ │ │ │ ├── PageElementProperties.php │ │ │ │ │ │ ├── PageProperties.php │ │ │ │ │ │ ├── ParagraphMarker.php │ │ │ │ │ │ ├── ParagraphStyle.php │ │ │ │ │ │ ├── Placeholder.php │ │ │ │ │ │ ├── Presentation.php │ │ │ │ │ │ ├── Range.php │ │ │ │ │ │ ├── Recolor.php │ │ │ │ │ │ ├── RefreshSheetsChartRequest.php │ │ │ │ │ │ ├── ReplaceAllShapesWithImageRequest.php │ │ │ │ │ │ ├── ReplaceAllShapesWithImageResponse.php │ │ │ │ │ │ ├── ReplaceAllShapesWithSheetsChartRequest.php │ │ │ │ │ │ ├── ReplaceAllShapesWithSheetsChartResponse.php │ │ │ │ │ │ ├── ReplaceAllTextRequest.php │ │ │ │ │ │ ├── ReplaceAllTextResponse.php │ │ │ │ │ │ ├── ReplaceImageRequest.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── RerouteLineRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Presentations.php │ │ │ │ │ │ │ └── PresentationsPages.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── RgbColor.php │ │ │ │ │ │ ├── Shadow.php │ │ │ │ │ │ ├── Shape.php │ │ │ │ │ │ ├── ShapeBackgroundFill.php │ │ │ │ │ │ ├── ShapeProperties.php │ │ │ │ │ │ ├── SheetsChart.php │ │ │ │ │ │ ├── SheetsChartProperties.php │ │ │ │ │ │ ├── Size.php │ │ │ │ │ │ ├── SlideProperties.php │ │ │ │ │ │ ├── SlidesList.php │ │ │ │ │ │ ├── SolidFill.php │ │ │ │ │ │ ├── StretchedPictureFill.php │ │ │ │ │ │ ├── SubstringMatchCriteria.php │ │ │ │ │ │ ├── Table.php │ │ │ │ │ │ ├── TableBorderCell.php │ │ │ │ │ │ ├── TableBorderFill.php │ │ │ │ │ │ ├── TableBorderProperties.php │ │ │ │ │ │ ├── TableBorderRow.php │ │ │ │ │ │ ├── TableCell.php │ │ │ │ │ │ ├── TableCellBackgroundFill.php │ │ │ │ │ │ ├── TableCellLocation.php │ │ │ │ │ │ ├── TableCellProperties.php │ │ │ │ │ │ ├── TableColumnProperties.php │ │ │ │ │ │ ├── TableRange.php │ │ │ │ │ │ ├── TableRow.php │ │ │ │ │ │ ├── TableRowProperties.php │ │ │ │ │ │ ├── TextContent.php │ │ │ │ │ │ ├── TextElement.php │ │ │ │ │ │ ├── TextRun.php │ │ │ │ │ │ ├── TextStyle.php │ │ │ │ │ │ ├── ThemeColorPair.php │ │ │ │ │ │ ├── Thumbnail.php │ │ │ │ │ │ ├── UngroupObjectsRequest.php │ │ │ │ │ │ ├── UnmergeTableCellsRequest.php │ │ │ │ │ │ ├── UpdateImagePropertiesRequest.php │ │ │ │ │ │ ├── UpdateLineCategoryRequest.php │ │ │ │ │ │ ├── UpdateLinePropertiesRequest.php │ │ │ │ │ │ ├── UpdatePageElementAltTextRequest.php │ │ │ │ │ │ ├── UpdatePageElementTransformRequest.php │ │ │ │ │ │ ├── UpdatePageElementsZOrderRequest.php │ │ │ │ │ │ ├── UpdatePagePropertiesRequest.php │ │ │ │ │ │ ├── UpdateParagraphStyleRequest.php │ │ │ │ │ │ ├── UpdateShapePropertiesRequest.php │ │ │ │ │ │ ├── UpdateSlidesPositionRequest.php │ │ │ │ │ │ ├── UpdateTableBorderPropertiesRequest.php │ │ │ │ │ │ ├── UpdateTableCellPropertiesRequest.php │ │ │ │ │ │ ├── UpdateTableColumnPropertiesRequest.php │ │ │ │ │ │ ├── UpdateTableRowPropertiesRequest.php │ │ │ │ │ │ ├── UpdateTextStyleRequest.php │ │ │ │ │ │ ├── UpdateVideoPropertiesRequest.php │ │ │ │ │ │ ├── Video.php │ │ │ │ │ │ ├── VideoProperties.php │ │ │ │ │ │ ├── WeightedFontFamily.php │ │ │ │ │ │ ├── WordArt.php │ │ │ │ │ │ └── WriteControl.php │ │ │ │ │ │ ├── SmartDeviceManagement.php │ │ │ │ │ │ ├── SmartDeviceManagement │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1Device.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ExecuteDeviceCommandRequest.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ExecuteDeviceCommandResponse.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ListDevicesResponse.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ListRoomsResponse.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ListStructuresResponse.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1ParentRelation.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1Room.php │ │ │ │ │ │ ├── GoogleHomeEnterpriseSdmV1Structure.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Enterprises.php │ │ │ │ │ │ │ ├── EnterprisesDevices.php │ │ │ │ │ │ │ ├── EnterprisesStructures.php │ │ │ │ │ │ │ └── EnterprisesStructuresRooms.php │ │ │ │ │ │ ├── Spanner.php │ │ │ │ │ │ ├── Spanner │ │ │ │ │ │ ├── Backup.php │ │ │ │ │ │ ├── BackupInfo.php │ │ │ │ │ │ ├── BatchCreateSessionsRequest.php │ │ │ │ │ │ ├── BatchCreateSessionsResponse.php │ │ │ │ │ │ ├── BeginTransactionRequest.php │ │ │ │ │ │ ├── Binding.php │ │ │ │ │ │ ├── ChildLink.php │ │ │ │ │ │ ├── CommitRequest.php │ │ │ │ │ │ ├── CommitResponse.php │ │ │ │ │ │ ├── CreateBackupMetadata.php │ │ │ │ │ │ ├── CreateDatabaseMetadata.php │ │ │ │ │ │ ├── CreateDatabaseRequest.php │ │ │ │ │ │ ├── CreateInstanceMetadata.php │ │ │ │ │ │ ├── CreateInstanceRequest.php │ │ │ │ │ │ ├── CreateSessionRequest.php │ │ │ │ │ │ ├── Database.php │ │ │ │ │ │ ├── Delete.php │ │ │ │ │ │ ├── ExecuteBatchDmlRequest.php │ │ │ │ │ │ ├── ExecuteBatchDmlResponse.php │ │ │ │ │ │ ├── ExecuteSqlRequest.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── GetDatabaseDdlResponse.php │ │ │ │ │ │ ├── GetIamPolicyRequest.php │ │ │ │ │ │ ├── GetPolicyOptions.php │ │ │ │ │ │ ├── Instance.php │ │ │ │ │ │ ├── InstanceConfig.php │ │ │ │ │ │ ├── KeyRange.php │ │ │ │ │ │ ├── KeySet.php │ │ │ │ │ │ ├── ListBackupOperationsResponse.php │ │ │ │ │ │ ├── ListBackupsResponse.php │ │ │ │ │ │ ├── ListDatabaseOperationsResponse.php │ │ │ │ │ │ ├── ListDatabasesResponse.php │ │ │ │ │ │ ├── ListInstanceConfigsResponse.php │ │ │ │ │ │ ├── ListInstancesResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListSessionsResponse.php │ │ │ │ │ │ ├── Mutation.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationProgress.php │ │ │ │ │ │ ├── OptimizeRestoredDatabaseMetadata.php │ │ │ │ │ │ ├── PartialResultSet.php │ │ │ │ │ │ ├── Partition.php │ │ │ │ │ │ ├── PartitionOptions.php │ │ │ │ │ │ ├── PartitionQueryRequest.php │ │ │ │ │ │ ├── PartitionReadRequest.php │ │ │ │ │ │ ├── PartitionResponse.php │ │ │ │ │ │ ├── PartitionedDml.php │ │ │ │ │ │ ├── PlanNode.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── QueryOptions.php │ │ │ │ │ │ ├── QueryPlan.php │ │ │ │ │ │ ├── ReadOnly.php │ │ │ │ │ │ ├── ReadRequest.php │ │ │ │ │ │ ├── ReadWrite.php │ │ │ │ │ │ ├── ReplicaInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsInstanceConfigs.php │ │ │ │ │ │ │ ├── ProjectsInstances.php │ │ │ │ │ │ │ ├── ProjectsInstancesBackupOperations.php │ │ │ │ │ │ │ ├── ProjectsInstancesBackups.php │ │ │ │ │ │ │ ├── ProjectsInstancesBackupsOperations.php │ │ │ │ │ │ │ ├── ProjectsInstancesDatabaseOperations.php │ │ │ │ │ │ │ ├── ProjectsInstancesDatabases.php │ │ │ │ │ │ │ ├── ProjectsInstancesDatabasesOperations.php │ │ │ │ │ │ │ ├── ProjectsInstancesDatabasesSessions.php │ │ │ │ │ │ │ └── ProjectsInstancesOperations.php │ │ │ │ │ │ ├── RestoreDatabaseMetadata.php │ │ │ │ │ │ ├── RestoreDatabaseRequest.php │ │ │ │ │ │ ├── RestoreInfo.php │ │ │ │ │ │ ├── ResultSet.php │ │ │ │ │ │ ├── ResultSetMetadata.php │ │ │ │ │ │ ├── ResultSetStats.php │ │ │ │ │ │ ├── RollbackRequest.php │ │ │ │ │ │ ├── Session.php │ │ │ │ │ │ ├── SetIamPolicyRequest.php │ │ │ │ │ │ ├── ShortRepresentation.php │ │ │ │ │ │ ├── SpannerEmpty.php │ │ │ │ │ │ ├── Statement.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StructType.php │ │ │ │ │ │ ├── TestIamPermissionsRequest.php │ │ │ │ │ │ ├── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Transaction.php │ │ │ │ │ │ ├── TransactionOptions.php │ │ │ │ │ │ ├── TransactionSelector.php │ │ │ │ │ │ ├── Type.php │ │ │ │ │ │ ├── UpdateDatabaseDdlMetadata.php │ │ │ │ │ │ ├── UpdateDatabaseDdlRequest.php │ │ │ │ │ │ ├── UpdateInstanceMetadata.php │ │ │ │ │ │ ├── UpdateInstanceRequest.php │ │ │ │ │ │ └── Write.php │ │ │ │ │ │ ├── Spectrum.php │ │ │ │ │ │ ├── Spectrum │ │ │ │ │ │ ├── AntennaCharacteristics.php │ │ │ │ │ │ ├── DatabaseSpec.php │ │ │ │ │ │ ├── DbUpdateSpec.php │ │ │ │ │ │ ├── DeviceCapabilities.php │ │ │ │ │ │ ├── DeviceDescriptor.php │ │ │ │ │ │ ├── DeviceOwner.php │ │ │ │ │ │ ├── DeviceValidity.php │ │ │ │ │ │ ├── EventTime.php │ │ │ │ │ │ ├── FrequencyRange.php │ │ │ │ │ │ ├── GeoLocation.php │ │ │ │ │ │ ├── GeoLocationEllipse.php │ │ │ │ │ │ ├── GeoLocationPoint.php │ │ │ │ │ │ ├── GeoLocationPolygon.php │ │ │ │ │ │ ├── GeoSpectrumSchedule.php │ │ │ │ │ │ ├── PawsGetSpectrumBatchRequest.php │ │ │ │ │ │ ├── PawsGetSpectrumBatchResponse.php │ │ │ │ │ │ ├── PawsGetSpectrumRequest.php │ │ │ │ │ │ ├── PawsGetSpectrumResponse.php │ │ │ │ │ │ ├── PawsInitRequest.php │ │ │ │ │ │ ├── PawsInitResponse.php │ │ │ │ │ │ ├── PawsNotifySpectrumUseRequest.php │ │ │ │ │ │ ├── PawsNotifySpectrumUseResponse.php │ │ │ │ │ │ ├── PawsRegisterRequest.php │ │ │ │ │ │ ├── PawsRegisterResponse.php │ │ │ │ │ │ ├── PawsVerifyDeviceRequest.php │ │ │ │ │ │ ├── PawsVerifyDeviceResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Paws.php │ │ │ │ │ │ ├── RulesetInfo.php │ │ │ │ │ │ ├── SpectrumMessage.php │ │ │ │ │ │ ├── SpectrumSchedule.php │ │ │ │ │ │ ├── Vcard.php │ │ │ │ │ │ ├── VcardAddress.php │ │ │ │ │ │ ├── VcardTelephone.php │ │ │ │ │ │ └── VcardTypedText.php │ │ │ │ │ │ ├── Speech.php │ │ │ │ │ │ ├── Speech │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── LongRunningRecognizeMetadata.php │ │ │ │ │ │ ├── LongRunningRecognizeRequest.php │ │ │ │ │ │ ├── LongRunningRecognizeResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── RecognitionAudio.php │ │ │ │ │ │ ├── RecognitionConfig.php │ │ │ │ │ │ ├── RecognitionMetadata.php │ │ │ │ │ │ ├── RecognizeRequest.php │ │ │ │ │ │ ├── RecognizeResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── Speech.php │ │ │ │ │ │ ├── SpeakerDiarizationConfig.php │ │ │ │ │ │ ├── SpeechContext.php │ │ │ │ │ │ ├── SpeechRecognitionAlternative.php │ │ │ │ │ │ ├── SpeechRecognitionResult.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ └── WordInfo.php │ │ │ │ │ │ ├── Storage.php │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ ├── Bucket.php │ │ │ │ │ │ ├── BucketAccessControl.php │ │ │ │ │ │ ├── BucketAccessControlProjectTeam.php │ │ │ │ │ │ ├── BucketAccessControls.php │ │ │ │ │ │ ├── BucketBilling.php │ │ │ │ │ │ ├── BucketCors.php │ │ │ │ │ │ ├── BucketEncryption.php │ │ │ │ │ │ ├── BucketIamConfiguration.php │ │ │ │ │ │ ├── BucketIamConfigurationBucketPolicyOnly.php │ │ │ │ │ │ ├── BucketIamConfigurationUniformBucketLevelAccess.php │ │ │ │ │ │ ├── BucketLifecycle.php │ │ │ │ │ │ ├── BucketLifecycleRule.php │ │ │ │ │ │ ├── BucketLifecycleRuleAction.php │ │ │ │ │ │ ├── BucketLifecycleRuleCondition.php │ │ │ │ │ │ ├── BucketLogging.php │ │ │ │ │ │ ├── BucketOwner.php │ │ │ │ │ │ ├── BucketRetentionPolicy.php │ │ │ │ │ │ ├── BucketVersioning.php │ │ │ │ │ │ ├── BucketWebsite.php │ │ │ │ │ │ ├── Buckets.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── ComposeRequest.php │ │ │ │ │ │ ├── ComposeRequestSourceObjects.php │ │ │ │ │ │ ├── ComposeRequestSourceObjectsObjectPreconditions.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── HmacKey.php │ │ │ │ │ │ ├── HmacKeyMetadata.php │ │ │ │ │ │ ├── HmacKeysMetadata.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── Notifications.php │ │ │ │ │ │ ├── ObjectAccessControl.php │ │ │ │ │ │ ├── ObjectAccessControlProjectTeam.php │ │ │ │ │ │ ├── ObjectAccessControls.php │ │ │ │ │ │ ├── Objects.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── PolicyBindings.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── BucketAccessControls.php │ │ │ │ │ │ │ ├── Buckets.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── DefaultObjectAccessControls.php │ │ │ │ │ │ │ ├── Notifications.php │ │ │ │ │ │ │ ├── ObjectAccessControls.php │ │ │ │ │ │ │ ├── Objects.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsHmacKeys.php │ │ │ │ │ │ │ └── ProjectsServiceAccount.php │ │ │ │ │ │ ├── RewriteResponse.php │ │ │ │ │ │ ├── ServiceAccount.php │ │ │ │ │ │ ├── StorageObject.php │ │ │ │ │ │ ├── StorageObjectCustomerEncryption.php │ │ │ │ │ │ ├── StorageObjectOwner.php │ │ │ │ │ │ └── TestIamPermissionsResponse.php │ │ │ │ │ │ ├── Storagetransfer.php │ │ │ │ │ │ ├── Storagetransfer │ │ │ │ │ │ ├── AwsAccessKey.php │ │ │ │ │ │ ├── AwsS3Data.php │ │ │ │ │ │ ├── AzureBlobStorageData.php │ │ │ │ │ │ ├── AzureCredentials.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── ErrorLogEntry.php │ │ │ │ │ │ ├── ErrorSummary.php │ │ │ │ │ │ ├── GcsData.php │ │ │ │ │ │ ├── GoogleServiceAccount.php │ │ │ │ │ │ ├── HttpData.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListTransferJobsResponse.php │ │ │ │ │ │ ├── NotificationConfig.php │ │ │ │ │ │ ├── ObjectConditions.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── PauseTransferOperationRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── GoogleServiceAccounts.php │ │ │ │ │ │ │ ├── TransferJobs.php │ │ │ │ │ │ │ └── TransferOperations.php │ │ │ │ │ │ ├── ResumeTransferOperationRequest.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StoragetransferEmpty.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── TransferCounters.php │ │ │ │ │ │ ├── TransferJob.php │ │ │ │ │ │ ├── TransferOperation.php │ │ │ │ │ │ ├── TransferOptions.php │ │ │ │ │ │ ├── TransferSpec.php │ │ │ │ │ │ └── UpdateTransferJobRequest.php │ │ │ │ │ │ ├── StreetViewPublish.php │ │ │ │ │ │ ├── StreetViewPublish │ │ │ │ │ │ ├── BatchDeletePhotosRequest.php │ │ │ │ │ │ ├── BatchDeletePhotosResponse.php │ │ │ │ │ │ ├── BatchGetPhotosResponse.php │ │ │ │ │ │ ├── BatchUpdatePhotosRequest.php │ │ │ │ │ │ ├── BatchUpdatePhotosResponse.php │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── Level.php │ │ │ │ │ │ ├── ListPhotosResponse.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ ├── PhotoId.php │ │ │ │ │ │ ├── PhotoResponse.php │ │ │ │ │ │ ├── Place.php │ │ │ │ │ │ ├── Pose.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Photo.php │ │ │ │ │ │ │ └── Photos.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StreetviewpublishEmpty.php │ │ │ │ │ │ ├── UpdatePhotoRequest.php │ │ │ │ │ │ └── UploadRef.php │ │ │ │ │ │ ├── Surveys.php │ │ │ │ │ │ ├── Surveys │ │ │ │ │ │ ├── FieldMask.php │ │ │ │ │ │ ├── PageInfo.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Results.php │ │ │ │ │ │ │ └── Surveys.php │ │ │ │ │ │ ├── ResultsGetRequest.php │ │ │ │ │ │ ├── ResultsMask.php │ │ │ │ │ │ ├── Survey.php │ │ │ │ │ │ ├── SurveyAudience.php │ │ │ │ │ │ ├── SurveyCost.php │ │ │ │ │ │ ├── SurveyQuestion.php │ │ │ │ │ │ ├── SurveyQuestionImage.php │ │ │ │ │ │ ├── SurveyRejection.php │ │ │ │ │ │ ├── SurveyResults.php │ │ │ │ │ │ ├── SurveysDeleteResponse.php │ │ │ │ │ │ ├── SurveysListResponse.php │ │ │ │ │ │ ├── SurveysStartRequest.php │ │ │ │ │ │ ├── SurveysStartResponse.php │ │ │ │ │ │ ├── SurveysStopResponse.php │ │ │ │ │ │ └── TokenPagination.php │ │ │ │ │ │ ├── SystemsManagement.php │ │ │ │ │ │ ├── SystemsManagement │ │ │ │ │ │ ├── AptSettings.php │ │ │ │ │ │ ├── CancelPatchJobRequest.php │ │ │ │ │ │ ├── ExecStep.php │ │ │ │ │ │ ├── ExecStepConfig.php │ │ │ │ │ │ ├── ExecutePatchJobRequest.php │ │ │ │ │ │ ├── FixedOrPercent.php │ │ │ │ │ │ ├── GcsObject.php │ │ │ │ │ │ ├── GooSettings.php │ │ │ │ │ │ ├── ListPatchDeploymentsResponse.php │ │ │ │ │ │ ├── ListPatchJobInstanceDetailsResponse.php │ │ │ │ │ │ ├── ListPatchJobsResponse.php │ │ │ │ │ │ ├── MonthlySchedule.php │ │ │ │ │ │ ├── OneTimeSchedule.php │ │ │ │ │ │ ├── OsconfigEmpty.php │ │ │ │ │ │ ├── PatchConfig.php │ │ │ │ │ │ ├── PatchDeployment.php │ │ │ │ │ │ ├── PatchInstanceFilter.php │ │ │ │ │ │ ├── PatchInstanceFilterGroupLabel.php │ │ │ │ │ │ ├── PatchJob.php │ │ │ │ │ │ ├── PatchJobInstanceDetails.php │ │ │ │ │ │ ├── PatchJobInstanceDetailsSummary.php │ │ │ │ │ │ ├── PatchRollout.php │ │ │ │ │ │ ├── RecurringSchedule.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsPatchDeployments.php │ │ │ │ │ │ │ ├── ProjectsPatchJobs.php │ │ │ │ │ │ │ └── ProjectsPatchJobsInstanceDetails.php │ │ │ │ │ │ ├── TimeOfDay.php │ │ │ │ │ │ ├── TimeZone.php │ │ │ │ │ │ ├── WeekDayOfMonth.php │ │ │ │ │ │ ├── WeeklySchedule.php │ │ │ │ │ │ ├── WindowsUpdateSettings.php │ │ │ │ │ │ ├── YumSettings.php │ │ │ │ │ │ └── ZypperSettings.php │ │ │ │ │ │ ├── TPU.php │ │ │ │ │ │ ├── TPU │ │ │ │ │ │ ├── AcceleratorType.php │ │ │ │ │ │ ├── ListAcceleratorTypesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListNodesResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListTensorFlowVersionsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── NetworkEndpoint.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── ReimageNodeRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsAcceleratorTypes.php │ │ │ │ │ │ │ ├── ProjectsLocationsNodes.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsTensorflowVersions.php │ │ │ │ │ │ ├── SchedulingConfig.php │ │ │ │ │ │ ├── StartNodeRequest.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── StopNodeRequest.php │ │ │ │ │ │ ├── Symptom.php │ │ │ │ │ │ ├── TensorFlowVersion.php │ │ │ │ │ │ └── TpuEmpty.php │ │ │ │ │ │ ├── TagManager.php │ │ │ │ │ │ ├── TagManager │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AccountAccess.php │ │ │ │ │ │ ├── BuiltInVariable.php │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ ├── Condition.php │ │ │ │ │ │ ├── Container.php │ │ │ │ │ │ ├── ContainerAccess.php │ │ │ │ │ │ ├── ContainerVersion.php │ │ │ │ │ │ ├── ContainerVersionHeader.php │ │ │ │ │ │ ├── CreateBuiltInVariableResponse.php │ │ │ │ │ │ ├── CreateContainerVersionRequestVersionOptions.php │ │ │ │ │ │ ├── CreateContainerVersionResponse.php │ │ │ │ │ │ ├── CustomTemplate.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── Folder.php │ │ │ │ │ │ ├── FolderEntities.php │ │ │ │ │ │ ├── GalleryReference.php │ │ │ │ │ │ ├── GetWorkspaceStatusResponse.php │ │ │ │ │ │ ├── ListAccountsResponse.php │ │ │ │ │ │ ├── ListContainerVersionsResponse.php │ │ │ │ │ │ ├── ListContainersResponse.php │ │ │ │ │ │ ├── ListEnabledBuiltInVariablesResponse.php │ │ │ │ │ │ ├── ListEnvironmentsResponse.php │ │ │ │ │ │ ├── ListFoldersResponse.php │ │ │ │ │ │ ├── ListTagsResponse.php │ │ │ │ │ │ ├── ListTemplatesResponse.php │ │ │ │ │ │ ├── ListTriggersResponse.php │ │ │ │ │ │ ├── ListUserPermissionsResponse.php │ │ │ │ │ │ ├── ListVariablesResponse.php │ │ │ │ │ │ ├── ListWorkspacesResponse.php │ │ │ │ │ │ ├── ListZonesResponse.php │ │ │ │ │ │ ├── MergeConflict.php │ │ │ │ │ │ ├── Parameter.php │ │ │ │ │ │ ├── PublishContainerVersionResponse.php │ │ │ │ │ │ ├── QuickPreviewResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Accounts.php │ │ │ │ │ │ │ ├── AccountsContainers.php │ │ │ │ │ │ │ ├── AccountsContainersEnvironments.php │ │ │ │ │ │ │ ├── AccountsContainersVersionHeaders.php │ │ │ │ │ │ │ ├── AccountsContainersVersions.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspaces.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesBuiltInVariables.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesFolders.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesTags.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesTemplates.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesTriggers.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesVariables.php │ │ │ │ │ │ │ ├── AccountsContainersWorkspacesZones.php │ │ │ │ │ │ │ └── AccountsUserPermissions.php │ │ │ │ │ │ ├── RevertBuiltInVariableResponse.php │ │ │ │ │ │ ├── RevertFolderResponse.php │ │ │ │ │ │ ├── RevertTagResponse.php │ │ │ │ │ │ ├── RevertTemplateResponse.php │ │ │ │ │ │ ├── RevertTriggerResponse.php │ │ │ │ │ │ ├── RevertVariableResponse.php │ │ │ │ │ │ ├── RevertZoneResponse.php │ │ │ │ │ │ ├── SetupTag.php │ │ │ │ │ │ ├── SyncStatus.php │ │ │ │ │ │ ├── SyncWorkspaceResponse.php │ │ │ │ │ │ ├── Tag.php │ │ │ │ │ │ ├── TeardownTag.php │ │ │ │ │ │ ├── Trigger.php │ │ │ │ │ │ ├── UserPermission.php │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ ├── VariableFormatValue.php │ │ │ │ │ │ ├── Workspace.php │ │ │ │ │ │ ├── Zone.php │ │ │ │ │ │ ├── ZoneBoundary.php │ │ │ │ │ │ ├── ZoneChildContainer.php │ │ │ │ │ │ └── ZoneTypeRestriction.php │ │ │ │ │ │ ├── Taskqueue.php │ │ │ │ │ │ ├── Taskqueue │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Taskqueues.php │ │ │ │ │ │ │ └── Tasks.php │ │ │ │ │ │ ├── Task.php │ │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ │ ├── TaskQueueAcl.php │ │ │ │ │ │ ├── TaskQueueStats.php │ │ │ │ │ │ ├── Tasks.php │ │ │ │ │ │ └── Tasks2.php │ │ │ │ │ │ ├── Tasks.php │ │ │ │ │ │ ├── Tasks │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Tasklists.php │ │ │ │ │ │ │ └── Tasks.php │ │ │ │ │ │ ├── Task.php │ │ │ │ │ │ ├── TaskLinks.php │ │ │ │ │ │ ├── TaskList.php │ │ │ │ │ │ ├── TaskLists.php │ │ │ │ │ │ └── Tasks.php │ │ │ │ │ │ ├── Testing.php │ │ │ │ │ │ ├── Testing │ │ │ │ │ │ ├── Account.php │ │ │ │ │ │ ├── AndroidDevice.php │ │ │ │ │ │ ├── AndroidDeviceCatalog.php │ │ │ │ │ │ ├── AndroidDeviceList.php │ │ │ │ │ │ ├── AndroidInstrumentationTest.php │ │ │ │ │ │ ├── AndroidMatrix.php │ │ │ │ │ │ ├── AndroidModel.php │ │ │ │ │ │ ├── AndroidRoboTest.php │ │ │ │ │ │ ├── AndroidRuntimeConfiguration.php │ │ │ │ │ │ ├── AndroidTestLoop.php │ │ │ │ │ │ ├── AndroidVersion.php │ │ │ │ │ │ ├── Apk.php │ │ │ │ │ │ ├── ApkDetail.php │ │ │ │ │ │ ├── ApkManifest.php │ │ │ │ │ │ ├── AppBundle.php │ │ │ │ │ │ ├── CancelTestMatrixResponse.php │ │ │ │ │ │ ├── ClientInfo.php │ │ │ │ │ │ ├── ClientInfoDetail.php │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ ├── DeviceFile.php │ │ │ │ │ │ ├── DeviceIpBlock.php │ │ │ │ │ │ ├── DeviceIpBlockCatalog.php │ │ │ │ │ │ ├── Distribution.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── EnvironmentMatrix.php │ │ │ │ │ │ ├── EnvironmentVariable.php │ │ │ │ │ │ ├── FileReference.php │ │ │ │ │ │ ├── GetApkDetailsResponse.php │ │ │ │ │ │ ├── GoogleAuto.php │ │ │ │ │ │ ├── GoogleCloudStorage.php │ │ │ │ │ │ ├── IntentFilter.php │ │ │ │ │ │ ├── IosDevice.php │ │ │ │ │ │ ├── IosDeviceCatalog.php │ │ │ │ │ │ ├── IosDeviceFile.php │ │ │ │ │ │ ├── IosDeviceList.php │ │ │ │ │ │ ├── IosModel.php │ │ │ │ │ │ ├── IosRuntimeConfiguration.php │ │ │ │ │ │ ├── IosTestLoop.php │ │ │ │ │ │ ├── IosTestSetup.php │ │ │ │ │ │ ├── IosVersion.php │ │ │ │ │ │ ├── IosXcTest.php │ │ │ │ │ │ ├── LauncherActivityIntent.php │ │ │ │ │ │ ├── Locale.php │ │ │ │ │ │ ├── ManualSharding.php │ │ │ │ │ │ ├── NetworkConfiguration.php │ │ │ │ │ │ ├── NetworkConfigurationCatalog.php │ │ │ │ │ │ ├── ObbFile.php │ │ │ │ │ │ ├── Orientation.php │ │ │ │ │ │ ├── ProvidedSoftwareCatalog.php │ │ │ │ │ │ ├── RegularFile.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── ApplicationDetailService.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsTestMatrices.php │ │ │ │ │ │ │ └── TestEnvironmentCatalog.php │ │ │ │ │ │ ├── ResultStorage.php │ │ │ │ │ │ ├── RoboDirective.php │ │ │ │ │ │ ├── RoboStartingIntent.php │ │ │ │ │ │ ├── Shard.php │ │ │ │ │ │ ├── ShardingOption.php │ │ │ │ │ │ ├── StartActivityIntent.php │ │ │ │ │ │ ├── SystraceSetup.php │ │ │ │ │ │ ├── TestDetails.php │ │ │ │ │ │ ├── TestEnvironmentCatalog.php │ │ │ │ │ │ ├── TestExecution.php │ │ │ │ │ │ ├── TestMatrix.php │ │ │ │ │ │ ├── TestSetup.php │ │ │ │ │ │ ├── TestSpecification.php │ │ │ │ │ │ ├── TestTargetsForShard.php │ │ │ │ │ │ ├── ToolResultsExecution.php │ │ │ │ │ │ ├── ToolResultsHistory.php │ │ │ │ │ │ ├── ToolResultsStep.php │ │ │ │ │ │ ├── TrafficRule.php │ │ │ │ │ │ ├── UniformSharding.php │ │ │ │ │ │ └── XcodeVersion.php │ │ │ │ │ │ ├── Texttospeech.php │ │ │ │ │ │ ├── Texttospeech │ │ │ │ │ │ ├── AudioConfig.php │ │ │ │ │ │ ├── ListVoicesResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ └── Voices.php │ │ │ │ │ │ ├── SynthesisInput.php │ │ │ │ │ │ ├── SynthesizeSpeechRequest.php │ │ │ │ │ │ ├── SynthesizeSpeechResponse.php │ │ │ │ │ │ ├── Voice.php │ │ │ │ │ │ └── VoiceSelectionParams.php │ │ │ │ │ │ ├── ToolResults.php │ │ │ │ │ │ ├── ToolResults │ │ │ │ │ │ ├── ANR.php │ │ │ │ │ │ ├── AndroidAppInfo.php │ │ │ │ │ │ ├── AndroidInstrumentationTest.php │ │ │ │ │ │ ├── AndroidRoboTest.php │ │ │ │ │ │ ├── AndroidTest.php │ │ │ │ │ │ ├── AndroidTestLoop.php │ │ │ │ │ │ ├── Any.php │ │ │ │ │ │ ├── AppStartTime.php │ │ │ │ │ │ ├── AvailableDeepLinks.php │ │ │ │ │ │ ├── BasicPerfSampleSeries.php │ │ │ │ │ │ ├── BatchCreatePerfSamplesRequest.php │ │ │ │ │ │ ├── BatchCreatePerfSamplesResponse.php │ │ │ │ │ │ ├── BlankScreen.php │ │ │ │ │ │ ├── CPUInfo.php │ │ │ │ │ │ ├── CrashDialogError.php │ │ │ │ │ │ ├── DeviceOutOfMemory.php │ │ │ │ │ │ ├── Duration.php │ │ │ │ │ │ ├── EncounteredLoginScreen.php │ │ │ │ │ │ ├── EncounteredNonAndroidUiWidgetScreen.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── EnvironmentDimensionValueEntry.php │ │ │ │ │ │ ├── Execution.php │ │ │ │ │ │ ├── FailedToInstall.php │ │ │ │ │ │ ├── FailureDetail.php │ │ │ │ │ │ ├── FatalException.php │ │ │ │ │ │ ├── FileReference.php │ │ │ │ │ │ ├── GraphicsStats.php │ │ │ │ │ │ ├── GraphicsStatsBucket.php │ │ │ │ │ │ ├── History.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── InAppPurchasesFound.php │ │ │ │ │ │ ├── InconclusiveDetail.php │ │ │ │ │ │ ├── IndividualOutcome.php │ │ │ │ │ │ ├── InsufficientCoverage.php │ │ │ │ │ │ ├── IosAppCrashed.php │ │ │ │ │ │ ├── IosAppInfo.php │ │ │ │ │ │ ├── IosRoboTest.php │ │ │ │ │ │ ├── IosTest.php │ │ │ │ │ │ ├── IosTestLoop.php │ │ │ │ │ │ ├── IosXcTest.php │ │ │ │ │ │ ├── LauncherActivityNotFound.php │ │ │ │ │ │ ├── ListEnvironmentsResponse.php │ │ │ │ │ │ ├── ListExecutionsResponse.php │ │ │ │ │ │ ├── ListHistoriesResponse.php │ │ │ │ │ │ ├── ListPerfSampleSeriesResponse.php │ │ │ │ │ │ ├── ListPerfSamplesResponse.php │ │ │ │ │ │ ├── ListScreenshotClustersResponse.php │ │ │ │ │ │ ├── ListStepAccessibilityClustersResponse.php │ │ │ │ │ │ ├── ListStepThumbnailsResponse.php │ │ │ │ │ │ ├── ListStepsResponse.php │ │ │ │ │ │ ├── ListTestCasesResponse.php │ │ │ │ │ │ ├── MatrixDimensionDefinition.php │ │ │ │ │ │ ├── MemoryInfo.php │ │ │ │ │ │ ├── MergedResult.php │ │ │ │ │ │ ├── MultiStep.php │ │ │ │ │ │ ├── NativeCrash.php │ │ │ │ │ │ ├── NonSdkApi.php │ │ │ │ │ │ ├── NonSdkApiInsight.php │ │ │ │ │ │ ├── NonSdkApiUsageViolation.php │ │ │ │ │ │ ├── NonSdkApiUsageViolationReport.php │ │ │ │ │ │ ├── Outcome.php │ │ │ │ │ │ ├── OverlappingUIElements.php │ │ │ │ │ │ ├── PendingGoogleUpdateInsight.php │ │ │ │ │ │ ├── PerfEnvironment.php │ │ │ │ │ │ ├── PerfMetricsSummary.php │ │ │ │ │ │ ├── PerfSample.php │ │ │ │ │ │ ├── PerfSampleSeries.php │ │ │ │ │ │ ├── PerformedGoogleLogin.php │ │ │ │ │ │ ├── PerformedMonkeyActions.php │ │ │ │ │ │ ├── PrimaryStep.php │ │ │ │ │ │ ├── ProjectSettings.php │ │ │ │ │ │ ├── PublishXunitXmlFilesRequest.php │ │ │ │ │ │ ├── RegionProto.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsHistories.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutions.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsClusters.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsEnvironments.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsSteps.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsStepsPerfMetricsSummary.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsStepsPerfSampleSeries.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsStepsPerfSampleSeriesSamples.php │ │ │ │ │ │ │ ├── ProjectsHistoriesExecutionsStepsTestCases.php │ │ │ │ │ │ │ └── ProjectsHistoriesExecutionsStepsThumbnails.php │ │ │ │ │ │ ├── ResultsStorage.php │ │ │ │ │ │ ├── RoboScriptExecution.php │ │ │ │ │ │ ├── SafeHtmlProto.php │ │ │ │ │ │ ├── Screen.php │ │ │ │ │ │ ├── ScreenshotCluster.php │ │ │ │ │ │ ├── ShardSummary.php │ │ │ │ │ │ ├── SkippedDetail.php │ │ │ │ │ │ ├── Specification.php │ │ │ │ │ │ ├── StackTrace.php │ │ │ │ │ │ ├── StartActivityNotFound.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Step.php │ │ │ │ │ │ ├── StepDimensionValueEntry.php │ │ │ │ │ │ ├── StepLabelsEntry.php │ │ │ │ │ │ ├── StepSummary.php │ │ │ │ │ │ ├── SuccessDetail.php │ │ │ │ │ │ ├── SuggestionClusterProto.php │ │ │ │ │ │ ├── SuggestionProto.php │ │ │ │ │ │ ├── TestCase.php │ │ │ │ │ │ ├── TestCaseReference.php │ │ │ │ │ │ ├── TestExecutionStep.php │ │ │ │ │ │ ├── TestIssue.php │ │ │ │ │ │ ├── TestSuiteOverview.php │ │ │ │ │ │ ├── TestTiming.php │ │ │ │ │ │ ├── Thumbnail.php │ │ │ │ │ │ ├── Timestamp.php │ │ │ │ │ │ ├── ToolExecution.php │ │ │ │ │ │ ├── ToolExecutionStep.php │ │ │ │ │ │ ├── ToolExitCode.php │ │ │ │ │ │ ├── ToolOutputReference.php │ │ │ │ │ │ ├── UIElementTooDeep.php │ │ │ │ │ │ ├── UnspecifiedWarning.php │ │ │ │ │ │ ├── UnusedRoboDirective.php │ │ │ │ │ │ ├── UpgradeInsight.php │ │ │ │ │ │ ├── UsedRoboDirective.php │ │ │ │ │ │ └── UsedRoboIgnoreDirective.php │ │ │ │ │ │ ├── Tracing.php │ │ │ │ │ │ ├── Tracing │ │ │ │ │ │ ├── Annotation.php │ │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ ├── BatchWriteSpansRequest.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── Links.php │ │ │ │ │ │ ├── ListSpansResponse.php │ │ │ │ │ │ ├── ListTracesResponse.php │ │ │ │ │ │ ├── Module.php │ │ │ │ │ │ ├── NetworkEvent.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsTraces.php │ │ │ │ │ │ │ └── ProjectsTracesSpans.php │ │ │ │ │ │ ├── Span.php │ │ │ │ │ │ ├── StackFrame.php │ │ │ │ │ │ ├── StackFrames.php │ │ │ │ │ │ ├── StackTrace.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TimeEvent.php │ │ │ │ │ │ ├── TimeEvents.php │ │ │ │ │ │ ├── Trace.php │ │ │ │ │ │ ├── TracingEmpty.php │ │ │ │ │ │ └── TruncatableString.php │ │ │ │ │ │ ├── TrafficDirectorService.php │ │ │ │ │ │ ├── TrafficDirectorService │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── BuildVersion.php │ │ │ │ │ │ ├── ClientConfig.php │ │ │ │ │ │ ├── ClientStatusRequest.php │ │ │ │ │ │ ├── ClientStatusResponse.php │ │ │ │ │ │ ├── ClustersConfigDump.php │ │ │ │ │ │ ├── DoubleMatcher.php │ │ │ │ │ │ ├── DoubleRange.php │ │ │ │ │ │ ├── DynamicCluster.php │ │ │ │ │ │ ├── DynamicListener.php │ │ │ │ │ │ ├── DynamicListenerState.php │ │ │ │ │ │ ├── DynamicRouteConfig.php │ │ │ │ │ │ ├── DynamicScopedRouteConfigs.php │ │ │ │ │ │ ├── Extension.php │ │ │ │ │ │ ├── GoogleRE2.php │ │ │ │ │ │ ├── InlineScopedRouteConfigs.php │ │ │ │ │ │ ├── ListMatcher.php │ │ │ │ │ │ ├── ListenersConfigDump.php │ │ │ │ │ │ ├── Locality.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── NodeMatcher.php │ │ │ │ │ │ ├── NullMatch.php │ │ │ │ │ │ ├── PathSegment.php │ │ │ │ │ │ ├── PerXdsConfig.php │ │ │ │ │ │ ├── Pipe.php │ │ │ │ │ │ ├── RegexMatcher.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Discovery.php │ │ │ │ │ │ ├── RoutesConfigDump.php │ │ │ │ │ │ ├── ScopedRoutesConfigDump.php │ │ │ │ │ │ ├── SemanticVersion.php │ │ │ │ │ │ ├── SocketAddress.php │ │ │ │ │ │ ├── StaticCluster.php │ │ │ │ │ │ ├── StaticListener.php │ │ │ │ │ │ ├── StaticRouteConfig.php │ │ │ │ │ │ ├── StringMatcher.php │ │ │ │ │ │ ├── StructMatcher.php │ │ │ │ │ │ ├── UpdateFailureState.php │ │ │ │ │ │ └── ValueMatcher.php │ │ │ │ │ │ ├── Transcoder.php │ │ │ │ │ │ ├── Transcoder │ │ │ │ │ │ ├── AdBreak.php │ │ │ │ │ │ ├── Aes128Encryption.php │ │ │ │ │ │ ├── Animation.php │ │ │ │ │ │ ├── AnimationEnd.php │ │ │ │ │ │ ├── AnimationFade.php │ │ │ │ │ │ ├── AnimationStatic.php │ │ │ │ │ │ ├── Audio.php │ │ │ │ │ │ ├── AudioAtom.php │ │ │ │ │ │ ├── AudioChannel.php │ │ │ │ │ │ ├── AudioChannelInput.php │ │ │ │ │ │ ├── AudioStream.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── Crop.php │ │ │ │ │ │ ├── Deblock.php │ │ │ │ │ │ ├── Denoise.php │ │ │ │ │ │ ├── EditAtom.php │ │ │ │ │ │ ├── ElementaryStream.php │ │ │ │ │ │ ├── Encryption.php │ │ │ │ │ │ ├── FailureDetail.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Input.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── JobConfig.php │ │ │ │ │ │ ├── JobTemplate.php │ │ │ │ │ │ ├── ListJobTemplatesResponse.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── Manifest.php │ │ │ │ │ │ ├── MpegCommonEncryption.php │ │ │ │ │ │ ├── MuxStream.php │ │ │ │ │ │ ├── NormalizedCoordinate.php │ │ │ │ │ │ ├── OriginUri.php │ │ │ │ │ │ ├── Output.php │ │ │ │ │ │ ├── Overlay.php │ │ │ │ │ │ ├── PreprocessingConfig.php │ │ │ │ │ │ ├── Progress.php │ │ │ │ │ │ ├── PubsubDestination.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsJobTemplates.php │ │ │ │ │ │ │ └── ProjectsLocationsJobs.php │ │ │ │ │ │ ├── SampleAesEncryption.php │ │ │ │ │ │ ├── SegmentSettings.php │ │ │ │ │ │ ├── SpriteSheet.php │ │ │ │ │ │ ├── TextAtom.php │ │ │ │ │ │ ├── TextInput.php │ │ │ │ │ │ ├── TextStream.php │ │ │ │ │ │ ├── TranscoderEmpty.php │ │ │ │ │ │ └── VideoStream.php │ │ │ │ │ │ ├── Translate.php │ │ │ │ │ │ ├── Translate │ │ │ │ │ │ ├── BatchTranslateTextRequest.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── DetectLanguageRequest.php │ │ │ │ │ │ ├── DetectLanguageResponse.php │ │ │ │ │ │ ├── DetectedLanguage.php │ │ │ │ │ │ ├── GcsDestination.php │ │ │ │ │ │ ├── GcsSource.php │ │ │ │ │ │ ├── Glossary.php │ │ │ │ │ │ ├── GlossaryInputConfig.php │ │ │ │ │ │ ├── InputConfig.php │ │ │ │ │ │ ├── LanguageCodePair.php │ │ │ │ │ │ ├── LanguageCodesSet.php │ │ │ │ │ │ ├── ListGlossariesResponse.php │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OutputConfig.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsGlossaries.php │ │ │ │ │ │ │ └── ProjectsLocationsOperations.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── SupportedLanguage.php │ │ │ │ │ │ ├── SupportedLanguages.php │ │ │ │ │ │ ├── TranslateEmpty.php │ │ │ │ │ │ ├── TranslateTextGlossaryConfig.php │ │ │ │ │ │ ├── TranslateTextRequest.php │ │ │ │ │ │ ├── TranslateTextResponse.php │ │ │ │ │ │ ├── Translation.php │ │ │ │ │ │ └── WaitOperationRequest.php │ │ │ │ │ │ ├── Urlshortener.php │ │ │ │ │ │ ├── Urlshortener │ │ │ │ │ │ ├── AnalyticsSnapshot.php │ │ │ │ │ │ ├── AnalyticsSummary.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Url.php │ │ │ │ │ │ ├── StringCount.php │ │ │ │ │ │ ├── Url.php │ │ │ │ │ │ └── UrlHistory.php │ │ │ │ │ │ ├── Vault.php │ │ │ │ │ │ ├── Vault │ │ │ │ │ │ ├── AccountCount.php │ │ │ │ │ │ ├── AccountCountError.php │ │ │ │ │ │ ├── AccountInfo.php │ │ │ │ │ │ ├── AddHeldAccountResult.php │ │ │ │ │ │ ├── AddHeldAccountsRequest.php │ │ │ │ │ │ ├── AddHeldAccountsResponse.php │ │ │ │ │ │ ├── AddMatterPermissionsRequest.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── CloseMatterRequest.php │ │ │ │ │ │ ├── CloseMatterResponse.php │ │ │ │ │ │ ├── CloudStorageFile.php │ │ │ │ │ │ ├── CloudStorageSink.php │ │ │ │ │ │ ├── CorpusQuery.php │ │ │ │ │ │ ├── CountArtifactsMetadata.php │ │ │ │ │ │ ├── CountArtifactsRequest.php │ │ │ │ │ │ ├── CountArtifactsResponse.php │ │ │ │ │ │ ├── DriveExportOptions.php │ │ │ │ │ │ ├── DriveOptions.php │ │ │ │ │ │ ├── Export.php │ │ │ │ │ │ ├── ExportOptions.php │ │ │ │ │ │ ├── ExportStats.php │ │ │ │ │ │ ├── GroupsCountResult.php │ │ │ │ │ │ ├── GroupsExportOptions.php │ │ │ │ │ │ ├── HangoutsChatExportOptions.php │ │ │ │ │ │ ├── HangoutsChatInfo.php │ │ │ │ │ │ ├── HangoutsChatOptions.php │ │ │ │ │ │ ├── HeldAccount.php │ │ │ │ │ │ ├── HeldDriveQuery.php │ │ │ │ │ │ ├── HeldGroupsQuery.php │ │ │ │ │ │ ├── HeldHangoutsChatQuery.php │ │ │ │ │ │ ├── HeldMailQuery.php │ │ │ │ │ │ ├── HeldOrgUnit.php │ │ │ │ │ │ ├── HeldVoiceQuery.php │ │ │ │ │ │ ├── Hold.php │ │ │ │ │ │ ├── ListExportsResponse.php │ │ │ │ │ │ ├── ListHeldAccountsResponse.php │ │ │ │ │ │ ├── ListHoldsResponse.php │ │ │ │ │ │ ├── ListMattersResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListSavedQueriesResponse.php │ │ │ │ │ │ ├── MailCountResult.php │ │ │ │ │ │ ├── MailExportOptions.php │ │ │ │ │ │ ├── MailOptions.php │ │ │ │ │ │ ├── Matter.php │ │ │ │ │ │ ├── MatterPermission.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OrgUnitInfo.php │ │ │ │ │ │ ├── Query.php │ │ │ │ │ │ ├── RemoveHeldAccountsRequest.php │ │ │ │ │ │ ├── RemoveHeldAccountsResponse.php │ │ │ │ │ │ ├── RemoveMatterPermissionsRequest.php │ │ │ │ │ │ ├── ReopenMatterRequest.php │ │ │ │ │ │ ├── ReopenMatterResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Matters.php │ │ │ │ │ │ │ ├── MattersExports.php │ │ │ │ │ │ │ ├── MattersHolds.php │ │ │ │ │ │ │ ├── MattersHoldsAccounts.php │ │ │ │ │ │ │ ├── MattersSavedQueries.php │ │ │ │ │ │ │ └── Operations.php │ │ │ │ │ │ ├── SavedQuery.php │ │ │ │ │ │ ├── SharedDriveInfo.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── TeamDriveInfo.php │ │ │ │ │ │ ├── UndeleteMatterRequest.php │ │ │ │ │ │ ├── UserInfo.php │ │ │ │ │ │ ├── VaultEmpty.php │ │ │ │ │ │ ├── VoiceExportOptions.php │ │ │ │ │ │ └── VoiceOptions.php │ │ │ │ │ │ ├── Verifiedaccess.php │ │ │ │ │ │ ├── Verifiedaccess │ │ │ │ │ │ ├── Challenge.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Challenge.php │ │ │ │ │ │ ├── SignedData.php │ │ │ │ │ │ ├── VerifiedaccessEmpty.php │ │ │ │ │ │ ├── VerifyChallengeResponseRequest.php │ │ │ │ │ │ └── VerifyChallengeResponseResult.php │ │ │ │ │ │ ├── Vision.php │ │ │ │ │ │ ├── Vision │ │ │ │ │ │ ├── AddProductToProductSetRequest.php │ │ │ │ │ │ ├── AnnotateFileRequest.php │ │ │ │ │ │ ├── AnnotateFileResponse.php │ │ │ │ │ │ ├── AnnotateImageRequest.php │ │ │ │ │ │ ├── AnnotateImageResponse.php │ │ │ │ │ │ ├── AsyncAnnotateFileRequest.php │ │ │ │ │ │ ├── AsyncAnnotateFileResponse.php │ │ │ │ │ │ ├── AsyncBatchAnnotateFilesRequest.php │ │ │ │ │ │ ├── AsyncBatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── AsyncBatchAnnotateImagesRequest.php │ │ │ │ │ │ ├── AsyncBatchAnnotateImagesResponse.php │ │ │ │ │ │ ├── BatchAnnotateFilesRequest.php │ │ │ │ │ │ ├── BatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── BatchAnnotateImagesRequest.php │ │ │ │ │ │ ├── BatchAnnotateImagesResponse.php │ │ │ │ │ │ ├── BatchOperationMetadata.php │ │ │ │ │ │ ├── Block.php │ │ │ │ │ │ ├── BoundingPoly.php │ │ │ │ │ │ ├── CancelOperationRequest.php │ │ │ │ │ │ ├── Color.php │ │ │ │ │ │ ├── ColorInfo.php │ │ │ │ │ │ ├── CropHint.php │ │ │ │ │ │ ├── CropHintsAnnotation.php │ │ │ │ │ │ ├── CropHintsParams.php │ │ │ │ │ │ ├── DetectedBreak.php │ │ │ │ │ │ ├── DetectedLanguage.php │ │ │ │ │ │ ├── DominantColorsAnnotation.php │ │ │ │ │ │ ├── EntityAnnotation.php │ │ │ │ │ │ ├── FaceAnnotation.php │ │ │ │ │ │ ├── Feature.php │ │ │ │ │ │ ├── GcsDestination.php │ │ │ │ │ │ ├── GcsSource.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1AnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1AnnotateImageResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1AsyncAnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Block.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ColorInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1CropHint.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1CropHintsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1DominantColorsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1EntityAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1FaceAnnotationLandmark.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ImageAnnotationContext.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ImageProperties.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1LocalizedObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1LocationInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Page.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Paragraph.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Position.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Product.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ProductKeyValue.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ProductSearchResults.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ProductSearchResultsGroupedResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ProductSearchResultsObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1ProductSearchResultsResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Property.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1SafeSearchAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Symbol.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1WebDetection.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1WebDetectionWebEntity.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1WebDetectionWebImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1WebDetectionWebLabel.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1WebDetectionWebPage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p1beta1Word.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1AnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1AnnotateImageResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1AsyncAnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1AsyncBatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Block.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ColorInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1CropHint.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1CropHintsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1DominantColorsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1EntityAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1FaceAnnotationLandmark.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ImageAnnotationContext.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ImageProperties.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1LocalizedObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1LocationInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Page.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Paragraph.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Position.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Product.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ProductKeyValue.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ProductSearchResults.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ProductSearchResultsGroupedResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ProductSearchResultsObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1ProductSearchResultsResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Property.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1SafeSearchAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Symbol.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1TextAnnotationDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1TextAnnotationDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1TextAnnotationTextProperty.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1WebDetection.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1WebDetectionWebEntity.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1WebDetectionWebImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1WebDetectionWebLabel.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1WebDetectionWebPage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p2beta1Word.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1AnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1AnnotateImageResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1AsyncAnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1AsyncBatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1BatchOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Block.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ColorInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1CropHint.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1CropHintsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1DominantColorsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1EntityAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1FaceAnnotationLandmark.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ImageAnnotationContext.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ImageProperties.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ImportProductSetsResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1LocalizedObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1LocationInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Page.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Paragraph.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Position.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Product.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ProductKeyValue.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ProductSearchResults.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ProductSearchResultsGroupedResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ProductSearchResultsObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ProductSearchResultsResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Property.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1ReferenceImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1SafeSearchAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Symbol.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1TextAnnotationDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1TextAnnotationDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1TextAnnotationTextProperty.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1WebDetection.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1WebDetectionWebEntity.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1WebDetectionWebImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1WebDetectionWebLabel.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1WebDetectionWebPage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p3beta1Word.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1AnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1AnnotateImageResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1AsyncAnnotateFileResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1AsyncBatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1AsyncBatchAnnotateImagesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1BatchAnnotateFilesResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1BatchOperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Block.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1BoundingPoly.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Celebrity.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ColorInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1CropHint.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1CropHintsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1DominantColorsAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1EntityAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1FaceAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1FaceAnnotationLandmark.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1FaceRecognitionResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1GcsDestination.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1GcsSource.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ImageAnnotationContext.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ImageProperties.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ImportProductSetsResponse.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1InputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1LocalizedObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1LocationInfo.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1NormalizedVertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1OperationMetadata.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1OutputConfig.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Page.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Paragraph.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Position.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Product.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ProductKeyValue.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ProductSearchResults.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ProductSearchResultsGroupedResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ProductSearchResultsObjectAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ProductSearchResultsResult.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Property.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1ReferenceImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1SafeSearchAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Symbol.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1TextAnnotation.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1TextAnnotationDetectedBreak.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1TextAnnotationDetectedLanguage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1TextAnnotationTextProperty.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Vertex.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1WebDetection.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1WebDetectionWebEntity.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1WebDetectionWebImage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1WebDetectionWebLabel.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1WebDetectionWebPage.php │ │ │ │ │ │ ├── GoogleCloudVisionV1p4beta1Word.php │ │ │ │ │ │ ├── GroupedResult.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── ImageAnnotationContext.php │ │ │ │ │ │ ├── ImageContext.php │ │ │ │ │ │ ├── ImageProperties.php │ │ │ │ │ │ ├── ImageSource.php │ │ │ │ │ │ ├── ImportProductSetsGcsSource.php │ │ │ │ │ │ ├── ImportProductSetsInputConfig.php │ │ │ │ │ │ ├── ImportProductSetsRequest.php │ │ │ │ │ │ ├── ImportProductSetsResponse.php │ │ │ │ │ │ ├── InputConfig.php │ │ │ │ │ │ ├── KeyValue.php │ │ │ │ │ │ ├── Landmark.php │ │ │ │ │ │ ├── LatLng.php │ │ │ │ │ │ ├── LatLongRect.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListProductSetsResponse.php │ │ │ │ │ │ ├── ListProductsInProductSetResponse.php │ │ │ │ │ │ ├── ListProductsResponse.php │ │ │ │ │ │ ├── ListReferenceImagesResponse.php │ │ │ │ │ │ ├── LocalizedObjectAnnotation.php │ │ │ │ │ │ ├── LocationInfo.php │ │ │ │ │ │ ├── NormalizedVertex.php │ │ │ │ │ │ ├── ObjectAnnotation.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── OutputConfig.php │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ │ ├── Position.php │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ ├── ProductSearchParams.php │ │ │ │ │ │ ├── ProductSearchResults.php │ │ │ │ │ │ ├── ProductSet.php │ │ │ │ │ │ ├── ProductSetPurgeConfig.php │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ ├── PurgeProductsRequest.php │ │ │ │ │ │ ├── ReferenceImage.php │ │ │ │ │ │ ├── RemoveProductFromProductSetRequest.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ │ ├── Images.php │ │ │ │ │ │ │ ├── Locations.php │ │ │ │ │ │ │ ├── LocationsOperations.php │ │ │ │ │ │ │ ├── Operations.php │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsFiles.php │ │ │ │ │ │ │ ├── ProjectsImages.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsFiles.php │ │ │ │ │ │ │ ├── ProjectsLocationsImages.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ ├── ProjectsLocationsProductSets.php │ │ │ │ │ │ │ ├── ProjectsLocationsProductSetsProducts.php │ │ │ │ │ │ │ ├── ProjectsLocationsProducts.php │ │ │ │ │ │ │ ├── ProjectsLocationsProductsReferenceImages.php │ │ │ │ │ │ │ └── ProjectsOperations.php │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ ├── SafeSearchAnnotation.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Symbol.php │ │ │ │ │ │ ├── TextAnnotation.php │ │ │ │ │ │ ├── TextProperty.php │ │ │ │ │ │ ├── Vertex.php │ │ │ │ │ │ ├── VisionEmpty.php │ │ │ │ │ │ ├── WebDetection.php │ │ │ │ │ │ ├── WebDetectionParams.php │ │ │ │ │ │ ├── WebEntity.php │ │ │ │ │ │ ├── WebImage.php │ │ │ │ │ │ ├── WebLabel.php │ │ │ │ │ │ ├── WebPage.php │ │ │ │ │ │ └── Word.php │ │ │ │ │ │ ├── WebSecurityScanner.php │ │ │ │ │ │ ├── WebSecurityScanner │ │ │ │ │ │ ├── Authentication.php │ │ │ │ │ │ ├── CrawledUrl.php │ │ │ │ │ │ ├── CustomAccount.php │ │ │ │ │ │ ├── Finding.php │ │ │ │ │ │ ├── FindingTypeStats.php │ │ │ │ │ │ ├── GoogleAccount.php │ │ │ │ │ │ ├── Header.php │ │ │ │ │ │ ├── ListCrawledUrlsResponse.php │ │ │ │ │ │ ├── ListFindingTypeStatsResponse.php │ │ │ │ │ │ ├── ListFindingsResponse.php │ │ │ │ │ │ ├── ListScanConfigsResponse.php │ │ │ │ │ │ ├── ListScanRunsResponse.php │ │ │ │ │ │ ├── OutdatedLibrary.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsScanConfigs.php │ │ │ │ │ │ │ ├── ProjectsScanConfigsScanRuns.php │ │ │ │ │ │ │ ├── ProjectsScanConfigsScanRunsCrawledUrls.php │ │ │ │ │ │ │ ├── ProjectsScanConfigsScanRunsFindingTypeStats.php │ │ │ │ │ │ │ └── ProjectsScanConfigsScanRunsFindings.php │ │ │ │ │ │ ├── ScanConfig.php │ │ │ │ │ │ ├── ScanRun.php │ │ │ │ │ │ ├── Schedule.php │ │ │ │ │ │ ├── StartScanRunRequest.php │ │ │ │ │ │ ├── StopScanRunRequest.php │ │ │ │ │ │ ├── ViolatingResource.php │ │ │ │ │ │ ├── VulnerableHeaders.php │ │ │ │ │ │ ├── VulnerableParameters.php │ │ │ │ │ │ ├── WebsecurityscannerEmpty.php │ │ │ │ │ │ └── Xss.php │ │ │ │ │ │ ├── Webfonts.php │ │ │ │ │ │ ├── Webfonts │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ └── Webfonts.php │ │ │ │ │ │ ├── Webfont.php │ │ │ │ │ │ └── WebfontList.php │ │ │ │ │ │ ├── Webmasters.php │ │ │ │ │ │ ├── Webmasters │ │ │ │ │ │ ├── ApiDataRow.php │ │ │ │ │ │ ├── ApiDimensionFilter.php │ │ │ │ │ │ ├── ApiDimensionFilterGroup.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Searchanalytics.php │ │ │ │ │ │ │ ├── Sitemaps.php │ │ │ │ │ │ │ └── Sites.php │ │ │ │ │ │ ├── SearchAnalyticsQueryRequest.php │ │ │ │ │ │ ├── SearchAnalyticsQueryResponse.php │ │ │ │ │ │ ├── SitemapsListResponse.php │ │ │ │ │ │ ├── SitesListResponse.php │ │ │ │ │ │ ├── WmxSite.php │ │ │ │ │ │ ├── WmxSitemap.php │ │ │ │ │ │ └── WmxSitemapContent.php │ │ │ │ │ │ ├── WorkflowExecutions.php │ │ │ │ │ │ ├── WorkflowExecutions │ │ │ │ │ │ ├── CancelExecutionRequest.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Execution.php │ │ │ │ │ │ ├── ListExecutionsResponse.php │ │ │ │ │ │ └── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsWorkflows.php │ │ │ │ │ │ │ └── ProjectsLocationsWorkflowsExecutions.php │ │ │ │ │ │ ├── Workflows.php │ │ │ │ │ │ ├── Workflows │ │ │ │ │ │ ├── ListLocationsResponse.php │ │ │ │ │ │ ├── ListOperationsResponse.php │ │ │ │ │ │ ├── ListWorkflowsResponse.php │ │ │ │ │ │ ├── Location.php │ │ │ │ │ │ ├── Operation.php │ │ │ │ │ │ ├── OperationMetadata.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ │ ├── ProjectsLocations.php │ │ │ │ │ │ │ ├── ProjectsLocationsOperations.php │ │ │ │ │ │ │ └── ProjectsLocationsWorkflows.php │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ ├── Workflow.php │ │ │ │ │ │ └── WorkflowsEmpty.php │ │ │ │ │ │ ├── YouTube.php │ │ │ │ │ │ ├── YouTube │ │ │ │ │ │ ├── AbuseReport.php │ │ │ │ │ │ ├── AbuseType.php │ │ │ │ │ │ ├── AccessPolicy.php │ │ │ │ │ │ ├── Activity.php │ │ │ │ │ │ ├── ActivityContentDetails.php │ │ │ │ │ │ ├── ActivityContentDetailsBulletin.php │ │ │ │ │ │ ├── ActivityContentDetailsChannelItem.php │ │ │ │ │ │ ├── ActivityContentDetailsComment.php │ │ │ │ │ │ ├── ActivityContentDetailsFavorite.php │ │ │ │ │ │ ├── ActivityContentDetailsLike.php │ │ │ │ │ │ ├── ActivityContentDetailsPlaylistItem.php │ │ │ │ │ │ ├── ActivityContentDetailsPromotedItem.php │ │ │ │ │ │ ├── ActivityContentDetailsRecommendation.php │ │ │ │ │ │ ├── ActivityContentDetailsSocial.php │ │ │ │ │ │ ├── ActivityContentDetailsSubscription.php │ │ │ │ │ │ ├── ActivityContentDetailsUpload.php │ │ │ │ │ │ ├── ActivityListResponse.php │ │ │ │ │ │ ├── ActivitySnippet.php │ │ │ │ │ │ ├── Caption.php │ │ │ │ │ │ ├── CaptionListResponse.php │ │ │ │ │ │ ├── CaptionSnippet.php │ │ │ │ │ │ ├── CdnSettings.php │ │ │ │ │ │ ├── Channel.php │ │ │ │ │ │ ├── ChannelAuditDetails.php │ │ │ │ │ │ ├── ChannelBannerResource.php │ │ │ │ │ │ ├── ChannelBrandingSettings.php │ │ │ │ │ │ ├── ChannelContentDetails.php │ │ │ │ │ │ ├── ChannelContentDetailsRelatedPlaylists.php │ │ │ │ │ │ ├── ChannelContentOwnerDetails.php │ │ │ │ │ │ ├── ChannelConversionPing.php │ │ │ │ │ │ ├── ChannelConversionPings.php │ │ │ │ │ │ ├── ChannelListResponse.php │ │ │ │ │ │ ├── ChannelLocalization.php │ │ │ │ │ │ ├── ChannelProfileDetails.php │ │ │ │ │ │ ├── ChannelSection.php │ │ │ │ │ │ ├── ChannelSectionContentDetails.php │ │ │ │ │ │ ├── ChannelSectionListResponse.php │ │ │ │ │ │ ├── ChannelSectionLocalization.php │ │ │ │ │ │ ├── ChannelSectionSnippet.php │ │ │ │ │ │ ├── ChannelSectionTargeting.php │ │ │ │ │ │ ├── ChannelSettings.php │ │ │ │ │ │ ├── ChannelSnippet.php │ │ │ │ │ │ ├── ChannelStatistics.php │ │ │ │ │ │ ├── ChannelStatus.php │ │ │ │ │ │ ├── ChannelToStoreLinkDetails.php │ │ │ │ │ │ ├── ChannelTopicDetails.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── CommentListResponse.php │ │ │ │ │ │ ├── CommentSnippet.php │ │ │ │ │ │ ├── CommentSnippetAuthorChannelId.php │ │ │ │ │ │ ├── CommentThread.php │ │ │ │ │ │ ├── CommentThreadListResponse.php │ │ │ │ │ │ ├── CommentThreadReplies.php │ │ │ │ │ │ ├── CommentThreadSnippet.php │ │ │ │ │ │ ├── ContentRating.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── GeoPoint.php │ │ │ │ │ │ ├── I18nLanguage.php │ │ │ │ │ │ ├── I18nLanguageListResponse.php │ │ │ │ │ │ ├── I18nLanguageSnippet.php │ │ │ │ │ │ ├── I18nRegion.php │ │ │ │ │ │ ├── I18nRegionListResponse.php │ │ │ │ │ │ ├── I18nRegionSnippet.php │ │ │ │ │ │ ├── ImageSettings.php │ │ │ │ │ │ ├── IngestionInfo.php │ │ │ │ │ │ ├── InvideoBranding.php │ │ │ │ │ │ ├── InvideoPosition.php │ │ │ │ │ │ ├── InvideoTiming.php │ │ │ │ │ │ ├── LanguageTag.php │ │ │ │ │ │ ├── LevelDetails.php │ │ │ │ │ │ ├── LiveBroadcast.php │ │ │ │ │ │ ├── LiveBroadcastContentDetails.php │ │ │ │ │ │ ├── LiveBroadcastListResponse.php │ │ │ │ │ │ ├── LiveBroadcastSnippet.php │ │ │ │ │ │ ├── LiveBroadcastStatistics.php │ │ │ │ │ │ ├── LiveBroadcastStatus.php │ │ │ │ │ │ ├── LiveChatBan.php │ │ │ │ │ │ ├── LiveChatBanSnippet.php │ │ │ │ │ │ ├── LiveChatFanFundingEventDetails.php │ │ │ │ │ │ ├── LiveChatMessage.php │ │ │ │ │ │ ├── LiveChatMessageAuthorDetails.php │ │ │ │ │ │ ├── LiveChatMessageDeletedDetails.php │ │ │ │ │ │ ├── LiveChatMessageListResponse.php │ │ │ │ │ │ ├── LiveChatMessageRetractedDetails.php │ │ │ │ │ │ ├── LiveChatMessageSnippet.php │ │ │ │ │ │ ├── LiveChatModerator.php │ │ │ │ │ │ ├── LiveChatModeratorListResponse.php │ │ │ │ │ │ ├── LiveChatModeratorSnippet.php │ │ │ │ │ │ ├── LiveChatSuperChatDetails.php │ │ │ │ │ │ ├── LiveChatSuperStickerDetails.php │ │ │ │ │ │ ├── LiveChatTextMessageDetails.php │ │ │ │ │ │ ├── LiveChatUserBannedMessageDetails.php │ │ │ │ │ │ ├── LiveStream.php │ │ │ │ │ │ ├── LiveStreamConfigurationIssue.php │ │ │ │ │ │ ├── LiveStreamContentDetails.php │ │ │ │ │ │ ├── LiveStreamHealthStatus.php │ │ │ │ │ │ ├── LiveStreamListResponse.php │ │ │ │ │ │ ├── LiveStreamSnippet.php │ │ │ │ │ │ ├── LiveStreamStatus.php │ │ │ │ │ │ ├── LocalizedProperty.php │ │ │ │ │ │ ├── LocalizedString.php │ │ │ │ │ │ ├── Member.php │ │ │ │ │ │ ├── MemberListResponse.php │ │ │ │ │ │ ├── MemberSnippet.php │ │ │ │ │ │ ├── MembershipsDetails.php │ │ │ │ │ │ ├── MembershipsDuration.php │ │ │ │ │ │ ├── MembershipsDurationAtLevel.php │ │ │ │ │ │ ├── MembershipsLevel.php │ │ │ │ │ │ ├── MembershipsLevelListResponse.php │ │ │ │ │ │ ├── MembershipsLevelSnippet.php │ │ │ │ │ │ ├── MonitorStreamInfo.php │ │ │ │ │ │ ├── PageInfo.php │ │ │ │ │ │ ├── Playlist.php │ │ │ │ │ │ ├── PlaylistContentDetails.php │ │ │ │ │ │ ├── PlaylistItem.php │ │ │ │ │ │ ├── PlaylistItemContentDetails.php │ │ │ │ │ │ ├── PlaylistItemListResponse.php │ │ │ │ │ │ ├── PlaylistItemSnippet.php │ │ │ │ │ │ ├── PlaylistItemStatus.php │ │ │ │ │ │ ├── PlaylistListResponse.php │ │ │ │ │ │ ├── PlaylistLocalization.php │ │ │ │ │ │ ├── PlaylistPlayer.php │ │ │ │ │ │ ├── PlaylistSnippet.php │ │ │ │ │ │ ├── PlaylistStatus.php │ │ │ │ │ │ ├── PropertyValue.php │ │ │ │ │ │ ├── RelatedEntity.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── AbuseReports.php │ │ │ │ │ │ │ ├── Activities.php │ │ │ │ │ │ │ ├── Captions.php │ │ │ │ │ │ │ ├── ChannelBanners.php │ │ │ │ │ │ │ ├── ChannelSections.php │ │ │ │ │ │ │ ├── Channels.php │ │ │ │ │ │ │ ├── CommentThreads.php │ │ │ │ │ │ │ ├── Comments.php │ │ │ │ │ │ │ ├── I18nLanguages.php │ │ │ │ │ │ │ ├── I18nRegions.php │ │ │ │ │ │ │ ├── LiveBroadcasts.php │ │ │ │ │ │ │ ├── LiveChatBans.php │ │ │ │ │ │ │ ├── LiveChatMessages.php │ │ │ │ │ │ │ ├── LiveChatModerators.php │ │ │ │ │ │ │ ├── LiveStreams.php │ │ │ │ │ │ │ ├── Members.php │ │ │ │ │ │ │ ├── MembershipsLevels.php │ │ │ │ │ │ │ ├── PlaylistItems.php │ │ │ │ │ │ │ ├── Playlists.php │ │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ │ ├── Sponsors.php │ │ │ │ │ │ │ ├── Subscriptions.php │ │ │ │ │ │ │ ├── SuperChatEvents.php │ │ │ │ │ │ │ ├── Tests.php │ │ │ │ │ │ │ ├── ThirdPartyLinks.php │ │ │ │ │ │ │ ├── Thumbnails.php │ │ │ │ │ │ │ ├── VideoAbuseReportReasons.php │ │ │ │ │ │ │ ├── VideoCategories.php │ │ │ │ │ │ │ ├── Videos.php │ │ │ │ │ │ │ └── Watermarks.php │ │ │ │ │ │ ├── ResourceId.php │ │ │ │ │ │ ├── SearchListResponse.php │ │ │ │ │ │ ├── SearchResult.php │ │ │ │ │ │ ├── SearchResultSnippet.php │ │ │ │ │ │ ├── Sponsor.php │ │ │ │ │ │ ├── SponsorListResponse.php │ │ │ │ │ │ ├── SponsorSnippet.php │ │ │ │ │ │ ├── Subscription.php │ │ │ │ │ │ ├── SubscriptionContentDetails.php │ │ │ │ │ │ ├── SubscriptionListResponse.php │ │ │ │ │ │ ├── SubscriptionSnippet.php │ │ │ │ │ │ ├── SubscriptionSubscriberSnippet.php │ │ │ │ │ │ ├── SuperChatEvent.php │ │ │ │ │ │ ├── SuperChatEventListResponse.php │ │ │ │ │ │ ├── SuperChatEventSnippet.php │ │ │ │ │ │ ├── SuperStickerMetadata.php │ │ │ │ │ │ ├── TestItem.php │ │ │ │ │ │ ├── TestItemTestItemSnippet.php │ │ │ │ │ │ ├── ThirdPartyLink.php │ │ │ │ │ │ ├── ThirdPartyLinkSnippet.php │ │ │ │ │ │ ├── ThirdPartyLinkStatus.php │ │ │ │ │ │ ├── Thumbnail.php │ │ │ │ │ │ ├── ThumbnailDetails.php │ │ │ │ │ │ ├── ThumbnailSetResponse.php │ │ │ │ │ │ ├── TokenPagination.php │ │ │ │ │ │ ├── Video.php │ │ │ │ │ │ ├── VideoAbuseReport.php │ │ │ │ │ │ ├── VideoAbuseReportReason.php │ │ │ │ │ │ ├── VideoAbuseReportReasonListResponse.php │ │ │ │ │ │ ├── VideoAbuseReportReasonSnippet.php │ │ │ │ │ │ ├── VideoAbuseReportSecondaryReason.php │ │ │ │ │ │ ├── VideoAgeGating.php │ │ │ │ │ │ ├── VideoCategory.php │ │ │ │ │ │ ├── VideoCategoryListResponse.php │ │ │ │ │ │ ├── VideoCategorySnippet.php │ │ │ │ │ │ ├── VideoContentDetails.php │ │ │ │ │ │ ├── VideoContentDetailsRegionRestriction.php │ │ │ │ │ │ ├── VideoFileDetails.php │ │ │ │ │ │ ├── VideoFileDetailsAudioStream.php │ │ │ │ │ │ ├── VideoFileDetailsVideoStream.php │ │ │ │ │ │ ├── VideoListResponse.php │ │ │ │ │ │ ├── VideoLiveStreamingDetails.php │ │ │ │ │ │ ├── VideoLocalization.php │ │ │ │ │ │ ├── VideoMonetizationDetails.php │ │ │ │ │ │ ├── VideoPlayer.php │ │ │ │ │ │ ├── VideoProcessingDetails.php │ │ │ │ │ │ ├── VideoProcessingDetailsProcessingProgress.php │ │ │ │ │ │ ├── VideoProjectDetails.php │ │ │ │ │ │ ├── VideoRating.php │ │ │ │ │ │ ├── VideoRatingListResponse.php │ │ │ │ │ │ ├── VideoRecordingDetails.php │ │ │ │ │ │ ├── VideoSnippet.php │ │ │ │ │ │ ├── VideoStatistics.php │ │ │ │ │ │ ├── VideoStatus.php │ │ │ │ │ │ ├── VideoSuggestions.php │ │ │ │ │ │ ├── VideoSuggestionsTagSuggestion.php │ │ │ │ │ │ ├── VideoTopicDetails.php │ │ │ │ │ │ └── WatchSettings.php │ │ │ │ │ │ ├── YouTubeAnalytics.php │ │ │ │ │ │ ├── YouTubeAnalytics │ │ │ │ │ │ ├── EmptyResponse.php │ │ │ │ │ │ ├── ErrorProto.php │ │ │ │ │ │ ├── Errors.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── GroupContentDetails.php │ │ │ │ │ │ ├── GroupItem.php │ │ │ │ │ │ ├── GroupItemResource.php │ │ │ │ │ │ ├── GroupSnippet.php │ │ │ │ │ │ ├── ListGroupItemsResponse.php │ │ │ │ │ │ ├── ListGroupsResponse.php │ │ │ │ │ │ ├── QueryResponse.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ │ ├── GroupItems.php │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ └── Reports.php │ │ │ │ │ │ └── ResultTableColumnHeader.php │ │ │ │ │ │ ├── YouTubeReporting.php │ │ │ │ │ │ └── YouTubeReporting │ │ │ │ │ │ ├── GdataBlobstore2Info.php │ │ │ │ │ │ ├── GdataCompositeMedia.php │ │ │ │ │ │ ├── GdataContentTypeInfo.php │ │ │ │ │ │ ├── GdataDiffChecksumsResponse.php │ │ │ │ │ │ ├── GdataDiffDownloadResponse.php │ │ │ │ │ │ ├── GdataDiffUploadRequest.php │ │ │ │ │ │ ├── GdataDiffUploadResponse.php │ │ │ │ │ │ ├── GdataDiffVersionResponse.php │ │ │ │ │ │ ├── GdataDownloadParameters.php │ │ │ │ │ │ ├── GdataMedia.php │ │ │ │ │ │ ├── GdataObjectId.php │ │ │ │ │ │ ├── Job.php │ │ │ │ │ │ ├── ListJobsResponse.php │ │ │ │ │ │ ├── ListReportTypesResponse.php │ │ │ │ │ │ ├── ListReportsResponse.php │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ ├── ReportType.php │ │ │ │ │ │ ├── Resource │ │ │ │ │ │ ├── Jobs.php │ │ │ │ │ │ ├── JobsReports.php │ │ │ │ │ │ ├── Media.php │ │ │ │ │ │ └── ReportTypes.php │ │ │ │ │ │ └── YoutubereportingEmpty.php │ │ │ │ ├── synth.metadata │ │ │ │ └── synth.py │ │ │ └── auth │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autoload.php │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── AccessToken.php │ │ │ │ ├── ApplicationDefaultCredentials.php │ │ │ │ ├── Cache │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── Item.php │ │ │ │ ├── MemoryCacheItemPool.php │ │ │ │ └── SysVCacheItemPool.php │ │ │ │ ├── CacheTrait.php │ │ │ │ ├── Credentials │ │ │ │ ├── AppIdentityCredentials.php │ │ │ │ ├── GCECredentials.php │ │ │ │ ├── IAMCredentials.php │ │ │ │ ├── InsecureCredentials.php │ │ │ │ ├── ServiceAccountCredentials.php │ │ │ │ ├── ServiceAccountJwtAccessCredentials.php │ │ │ │ └── UserRefreshCredentials.php │ │ │ │ ├── CredentialsLoader.php │ │ │ │ ├── FetchAuthTokenCache.php │ │ │ │ ├── FetchAuthTokenInterface.php │ │ │ │ ├── GCECache.php │ │ │ │ ├── GetQuotaProjectInterface.php │ │ │ │ ├── HttpHandler │ │ │ │ ├── Guzzle5HttpHandler.php │ │ │ │ ├── Guzzle6HttpHandler.php │ │ │ │ ├── Guzzle7HttpHandler.php │ │ │ │ ├── HttpClientCache.php │ │ │ │ └── HttpHandlerFactory.php │ │ │ │ ├── Iam.php │ │ │ │ ├── Middleware │ │ │ │ ├── AuthTokenMiddleware.php │ │ │ │ ├── ScopedAccessTokenMiddleware.php │ │ │ │ └── SimpleMiddleware.php │ │ │ │ ├── OAuth2.php │ │ │ │ ├── ProjectIdProviderInterface.php │ │ │ │ ├── ServiceAccountSignerTrait.php │ │ │ │ ├── SignBlobInterface.php │ │ │ │ ├── Subscriber │ │ │ │ ├── AuthTokenSubscriber.php │ │ │ │ ├── ScopedAccessTokenSubscriber.php │ │ │ │ └── SimpleSubscriber.php │ │ │ │ └── UpdateMetadataInterface.php │ │ │ ├── guzzlehttp │ │ │ ├── guzzle │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADING.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── BodySummarizer.php │ │ │ │ │ ├── BodySummarizerInterface.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── ClientTrait.php │ │ │ │ │ ├── Cookie │ │ │ │ │ ├── CookieJar.php │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ ├── FileCookieJar.php │ │ │ │ │ ├── SessionCookieJar.php │ │ │ │ │ └── SetCookie.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── RequestException.php │ │ │ │ │ ├── ServerException.php │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ └── TransferException.php │ │ │ │ │ ├── Handler │ │ │ │ │ ├── CurlFactory.php │ │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ │ ├── CurlHandler.php │ │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ │ ├── EasyHandle.php │ │ │ │ │ ├── HeaderProcessor.php │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ ├── Proxy.php │ │ │ │ │ └── StreamHandler.php │ │ │ │ │ ├── HandlerStack.php │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ ├── MessageFormatterInterface.php │ │ │ │ │ ├── Middleware.php │ │ │ │ │ ├── Pool.php │ │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ ├── TransferStats.php │ │ │ │ │ ├── Utils.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ ├── promises │ │ │ │ ├── .php_cs.dist │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpstan-baseline.neon │ │ │ │ ├── phpstan.neon.dist │ │ │ │ ├── psalm.xml │ │ │ │ └── src │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ ├── CancellationException.php │ │ │ │ │ ├── Coroutine.php │ │ │ │ │ ├── Create.php │ │ │ │ │ ├── Each.php │ │ │ │ │ ├── EachPromise.php │ │ │ │ │ ├── FulfilledPromise.php │ │ │ │ │ ├── Is.php │ │ │ │ │ ├── Promise.php │ │ │ │ │ ├── PromiseInterface.php │ │ │ │ │ ├── PromisorInterface.php │ │ │ │ │ ├── RejectedPromise.php │ │ │ │ │ ├── RejectionException.php │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ │ ├── Utils.php │ │ │ │ │ ├── functions.php │ │ │ │ │ └── functions_include.php │ │ │ └── psr7 │ │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ ├── stale.yml │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── integration.yml │ │ │ │ │ └── static.yml │ │ │ │ ├── .php_cs.dist │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── AppendStream.php │ │ │ │ ├── BufferStream.php │ │ │ │ ├── CachingStream.php │ │ │ │ ├── DroppingStream.php │ │ │ │ ├── FnStream.php │ │ │ │ ├── Header.php │ │ │ │ ├── InflateStream.php │ │ │ │ ├── LazyOpenStream.php │ │ │ │ ├── LimitStream.php │ │ │ │ ├── Message.php │ │ │ │ ├── MessageTrait.php │ │ │ │ ├── MimeType.php │ │ │ │ ├── MultipartStream.php │ │ │ │ ├── NoSeekStream.php │ │ │ │ ├── PumpStream.php │ │ │ │ ├── Query.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Rfc7230.php │ │ │ │ ├── ServerRequest.php │ │ │ │ ├── Stream.php │ │ │ │ ├── StreamDecoratorTrait.php │ │ │ │ ├── StreamWrapper.php │ │ │ │ ├── UploadedFile.php │ │ │ │ ├── Uri.php │ │ │ │ ├── UriComparator.php │ │ │ │ ├── UriNormalizer.php │ │ │ │ ├── UriResolver.php │ │ │ │ ├── Utils.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ │ ├── justinrainbow │ │ │ └── json-schema │ │ │ │ ├── .php_cs.dist │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── demo │ │ │ │ ├── README.md │ │ │ │ ├── data.json │ │ │ │ ├── demo.php │ │ │ │ └── schema.json │ │ │ │ ├── dist │ │ │ │ └── schema │ │ │ │ │ ├── json-schema-draft-03.json │ │ │ │ │ └── json-schema-draft-04.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── src │ │ │ │ └── JsonSchema │ │ │ │ ├── Constraints │ │ │ │ ├── BaseConstraint.php │ │ │ │ ├── CollectionConstraint.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── ConstraintInterface.php │ │ │ │ ├── EnumConstraint.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FormatConstraint.php │ │ │ │ ├── NumberConstraint.php │ │ │ │ ├── ObjectConstraint.php │ │ │ │ ├── SchemaConstraint.php │ │ │ │ ├── StringConstraint.php │ │ │ │ ├── TypeCheck │ │ │ │ │ ├── LooseTypeCheck.php │ │ │ │ │ ├── StrictTypeCheck.php │ │ │ │ │ └── TypeCheckInterface.php │ │ │ │ ├── TypeConstraint.php │ │ │ │ └── UndefinedConstraint.php │ │ │ │ ├── Entity │ │ │ │ └── JsonPointer.php │ │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidConfigException.php │ │ │ │ ├── InvalidSchemaException.php │ │ │ │ ├── InvalidSchemaMediaTypeException.php │ │ │ │ ├── InvalidSourceUriException.php │ │ │ │ ├── JsonDecodingException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── UnresolvableJsonPointerException.php │ │ │ │ ├── UriResolverException.php │ │ │ │ └── ValidationException.php │ │ │ │ ├── Iterator │ │ │ │ └── ObjectIterator.php │ │ │ │ ├── Rfc3339.php │ │ │ │ ├── SchemaStorage.php │ │ │ │ ├── SchemaStorageInterface.php │ │ │ │ ├── Uri │ │ │ │ ├── Retrievers │ │ │ │ │ ├── AbstractRetriever.php │ │ │ │ │ ├── Curl.php │ │ │ │ │ ├── FileGetContents.php │ │ │ │ │ ├── PredefinedArray.php │ │ │ │ │ └── UriRetrieverInterface.php │ │ │ │ ├── UriResolver.php │ │ │ │ └── UriRetriever.php │ │ │ │ ├── UriResolverInterface.php │ │ │ │ ├── UriRetrieverInterface.php │ │ │ │ └── Validator.php │ │ │ ├── monolog │ │ │ └── monolog │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpstan.neon.dist │ │ │ │ └── src │ │ │ │ └── Monolog │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── Formatter │ │ │ │ ├── ChromePHPFormatter.php │ │ │ │ ├── ElasticaFormatter.php │ │ │ │ ├── FlowdockFormatter.php │ │ │ │ ├── FluentdFormatter.php │ │ │ │ ├── FormatterInterface.php │ │ │ │ ├── GelfMessageFormatter.php │ │ │ │ ├── HtmlFormatter.php │ │ │ │ ├── JsonFormatter.php │ │ │ │ ├── LineFormatter.php │ │ │ │ ├── LogglyFormatter.php │ │ │ │ ├── LogstashFormatter.php │ │ │ │ ├── MongoDBFormatter.php │ │ │ │ ├── NormalizerFormatter.php │ │ │ │ ├── ScalarFormatter.php │ │ │ │ └── WildfireFormatter.php │ │ │ │ ├── Handler │ │ │ │ ├── AbstractHandler.php │ │ │ │ ├── AbstractProcessingHandler.php │ │ │ │ ├── AbstractSyslogHandler.php │ │ │ │ ├── AmqpHandler.php │ │ │ │ ├── BrowserConsoleHandler.php │ │ │ │ ├── BufferHandler.php │ │ │ │ ├── ChromePHPHandler.php │ │ │ │ ├── CouchDBHandler.php │ │ │ │ ├── CubeHandler.php │ │ │ │ ├── Curl │ │ │ │ │ └── Util.php │ │ │ │ ├── DeduplicationHandler.php │ │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ │ ├── DynamoDbHandler.php │ │ │ │ ├── ElasticSearchHandler.php │ │ │ │ ├── ErrorLogHandler.php │ │ │ │ ├── FilterHandler.php │ │ │ │ ├── FingersCrossed │ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ │ ├── FingersCrossedHandler.php │ │ │ │ ├── FirePHPHandler.php │ │ │ │ ├── FleepHookHandler.php │ │ │ │ ├── FlowdockHandler.php │ │ │ │ ├── FormattableHandlerInterface.php │ │ │ │ ├── FormattableHandlerTrait.php │ │ │ │ ├── GelfHandler.php │ │ │ │ ├── GroupHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HandlerWrapper.php │ │ │ │ ├── HipChatHandler.php │ │ │ │ ├── IFTTTHandler.php │ │ │ │ ├── InsightOpsHandler.php │ │ │ │ ├── LogEntriesHandler.php │ │ │ │ ├── LogglyHandler.php │ │ │ │ ├── MailHandler.php │ │ │ │ ├── MandrillHandler.php │ │ │ │ ├── MissingExtensionException.php │ │ │ │ ├── MongoDBHandler.php │ │ │ │ ├── NativeMailerHandler.php │ │ │ │ ├── NewRelicHandler.php │ │ │ │ ├── NullHandler.php │ │ │ │ ├── PHPConsoleHandler.php │ │ │ │ ├── ProcessableHandlerInterface.php │ │ │ │ ├── ProcessableHandlerTrait.php │ │ │ │ ├── PsrHandler.php │ │ │ │ ├── PushoverHandler.php │ │ │ │ ├── RavenHandler.php │ │ │ │ ├── RedisHandler.php │ │ │ │ ├── RollbarHandler.php │ │ │ │ ├── RotatingFileHandler.php │ │ │ │ ├── SamplingHandler.php │ │ │ │ ├── Slack │ │ │ │ │ └── SlackRecord.php │ │ │ │ ├── SlackHandler.php │ │ │ │ ├── SlackWebhookHandler.php │ │ │ │ ├── SlackbotHandler.php │ │ │ │ ├── SocketHandler.php │ │ │ │ ├── StreamHandler.php │ │ │ │ ├── SwiftMailerHandler.php │ │ │ │ ├── SyslogHandler.php │ │ │ │ ├── SyslogUdp │ │ │ │ │ └── UdpSocket.php │ │ │ │ ├── SyslogUdpHandler.php │ │ │ │ ├── TestHandler.php │ │ │ │ ├── WhatFailureGroupHandler.php │ │ │ │ └── ZendMonitorHandler.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Processor │ │ │ │ ├── GitProcessor.php │ │ │ │ ├── IntrospectionProcessor.php │ │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ │ ├── MemoryProcessor.php │ │ │ │ ├── MemoryUsageProcessor.php │ │ │ │ ├── MercurialProcessor.php │ │ │ │ ├── ProcessIdProcessor.php │ │ │ │ ├── ProcessorInterface.php │ │ │ │ ├── PsrLogMessageProcessor.php │ │ │ │ ├── TagProcessor.php │ │ │ │ ├── UidProcessor.php │ │ │ │ └── WebProcessor.php │ │ │ │ ├── Registry.php │ │ │ │ ├── ResettableInterface.php │ │ │ │ ├── SignalHandler.php │ │ │ │ └── Utils.php │ │ │ ├── myclabs │ │ │ └── deep-copy │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── doc │ │ │ │ ├── clone.png │ │ │ │ ├── deep-clone.png │ │ │ │ ├── deep-copy.png │ │ │ │ └── graph.png │ │ │ │ ├── fixtures │ │ │ │ ├── f001 │ │ │ │ │ ├── A.php │ │ │ │ │ └── B.php │ │ │ │ ├── f002 │ │ │ │ │ └── A.php │ │ │ │ ├── f003 │ │ │ │ │ └── Foo.php │ │ │ │ ├── f004 │ │ │ │ │ └── UnclonableItem.php │ │ │ │ ├── f005 │ │ │ │ │ └── Foo.php │ │ │ │ ├── f006 │ │ │ │ │ ├── A.php │ │ │ │ │ └── B.php │ │ │ │ ├── f007 │ │ │ │ │ ├── FooDateInterval.php │ │ │ │ │ └── FooDateTimeZone.php │ │ │ │ └── f008 │ │ │ │ │ ├── A.php │ │ │ │ │ └── B.php │ │ │ │ └── src │ │ │ │ └── DeepCopy │ │ │ │ ├── DeepCopy.php │ │ │ │ ├── Exception │ │ │ │ ├── CloneException.php │ │ │ │ └── PropertyException.php │ │ │ │ ├── Filter │ │ │ │ ├── Doctrine │ │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ │ └── DoctrineProxyFilter.php │ │ │ │ ├── Filter.php │ │ │ │ ├── KeepFilter.php │ │ │ │ ├── ReplaceFilter.php │ │ │ │ └── SetNullFilter.php │ │ │ │ ├── Matcher │ │ │ │ ├── Doctrine │ │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── PropertyMatcher.php │ │ │ │ ├── PropertyNameMatcher.php │ │ │ │ └── PropertyTypeMatcher.php │ │ │ │ ├── Reflection │ │ │ │ └── ReflectionHelper.php │ │ │ │ ├── TypeFilter │ │ │ │ ├── Date │ │ │ │ │ └── DateIntervalFilter.php │ │ │ │ ├── ReplaceFilter.php │ │ │ │ ├── ShallowCopyFilter.php │ │ │ │ ├── Spl │ │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ │ └── TypeFilter.php │ │ │ │ ├── TypeMatcher │ │ │ │ └── TypeMatcher.php │ │ │ │ └── deep_copy.php │ │ │ ├── paragonie │ │ │ ├── constant_time_encoding │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── psalm.xml │ │ │ │ ├── src │ │ │ │ │ ├── Base32.php │ │ │ │ │ ├── Base32Hex.php │ │ │ │ │ ├── Base64.php │ │ │ │ │ ├── Base64DotSlash.php │ │ │ │ │ ├── Base64DotSlashOrdered.php │ │ │ │ │ ├── Base64UrlSafe.php │ │ │ │ │ ├── Binary.php │ │ │ │ │ ├── EncoderInterface.php │ │ │ │ │ ├── Encoding.php │ │ │ │ │ ├── Hex.php │ │ │ │ │ └── RFC4648.php │ │ │ │ └── tests │ │ │ │ │ ├── Base32HexTest.php │ │ │ │ │ ├── Base32Test.php │ │ │ │ │ ├── Base64DotSlashOrderedTest.php │ │ │ │ │ ├── Base64DotSlashTest.php │ │ │ │ │ ├── Base64Test.php │ │ │ │ │ ├── Base64UrlSafeTest.php │ │ │ │ │ ├── EncodingTest.php │ │ │ │ │ ├── HexTest.php │ │ │ │ │ ├── RFC4648Test.php │ │ │ │ │ └── autoload.php │ │ │ └── random_compat │ │ │ │ ├── LICENSE │ │ │ │ ├── composer.json │ │ │ │ ├── dist │ │ │ │ ├── random_compat.phar.pubkey │ │ │ │ └── random_compat.phar.pubkey.asc │ │ │ │ ├── lib │ │ │ │ ├── byte_safe_strings.php │ │ │ │ ├── cast_to_int.php │ │ │ │ ├── error_polyfill.php │ │ │ │ ├── random.php │ │ │ │ ├── random_bytes_com_dotnet.php │ │ │ │ ├── random_bytes_dev_urandom.php │ │ │ │ ├── random_bytes_libsodium.php │ │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ │ ├── random_bytes_mcrypt.php │ │ │ │ └── random_int.php │ │ │ │ └── phpunit-autoload.php │ │ │ ├── phpcompatibility │ │ │ └── php-compatibility │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── PHPCSAliases.php │ │ │ │ ├── PHPCompatibility │ │ │ │ ├── AbstractComplexVersionSniff.php │ │ │ │ ├── AbstractFunctionCallParameterSniff.php │ │ │ │ ├── AbstractNewFeatureSniff.php │ │ │ │ ├── AbstractRemovedFeatureSniff.php │ │ │ │ ├── ComplexVersionInterface.php │ │ │ │ ├── PHPCSHelper.php │ │ │ │ ├── Sniff.php │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ForbiddenAbstractPrivateMethodsSniff.php │ │ │ │ │ │ ├── NewAnonymousClassesSniff.php │ │ │ │ │ │ ├── NewClassesSniff.php │ │ │ │ │ │ ├── NewConstVisibilitySniff.php │ │ │ │ │ │ ├── NewLateStaticBindingSniff.php │ │ │ │ │ │ ├── NewTypedPropertiesSniff.php │ │ │ │ │ │ └── RemovedOrphanedParentSniff.php │ │ │ │ │ ├── Constants │ │ │ │ │ │ ├── NewConstantsSniff.php │ │ │ │ │ │ ├── NewMagicClassConstantSniff.php │ │ │ │ │ │ └── RemovedConstantsSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── DiscouragedSwitchContinueSniff.php │ │ │ │ │ │ ├── ForbiddenBreakContinueOutsideLoopSniff.php │ │ │ │ │ │ ├── ForbiddenBreakContinueVariableArgumentsSniff.php │ │ │ │ │ │ ├── ForbiddenSwitchWithMultipleDefaultBlocksSniff.php │ │ │ │ │ │ ├── NewExecutionDirectivesSniff.php │ │ │ │ │ │ ├── NewForeachExpressionReferencingSniff.php │ │ │ │ │ │ ├── NewListInForeachSniff.php │ │ │ │ │ │ └── NewMultiCatchSniff.php │ │ │ │ │ ├── Extensions │ │ │ │ │ │ └── RemovedExtensionsSniff.php │ │ │ │ │ ├── FunctionDeclarations │ │ │ │ │ │ ├── ForbiddenParameterShadowSuperGlobalsSniff.php │ │ │ │ │ │ ├── ForbiddenParametersWithSameNameSniff.php │ │ │ │ │ │ ├── ForbiddenToStringParametersSniff.php │ │ │ │ │ │ ├── ForbiddenVariableNamesInClosureUseSniff.php │ │ │ │ │ │ ├── NewClosureSniff.php │ │ │ │ │ │ ├── NewExceptionsFromToStringSniff.php │ │ │ │ │ │ ├── NewNullableTypesSniff.php │ │ │ │ │ │ ├── NewParamTypeDeclarationsSniff.php │ │ │ │ │ │ ├── NewReturnTypeDeclarationsSniff.php │ │ │ │ │ │ └── NonStaticMagicMethodsSniff.php │ │ │ │ │ ├── FunctionNameRestrictions │ │ │ │ │ │ ├── NewMagicMethodsSniff.php │ │ │ │ │ │ ├── RemovedMagicAutoloadSniff.php │ │ │ │ │ │ ├── RemovedNamespacedAssertSniff.php │ │ │ │ │ │ ├── RemovedPHP4StyleConstructorsSniff.php │ │ │ │ │ │ └── ReservedFunctionNamesSniff.php │ │ │ │ │ ├── FunctionUse │ │ │ │ │ │ ├── ArgumentFunctionsReportCurrentValueSniff.php │ │ │ │ │ │ ├── ArgumentFunctionsUsageSniff.php │ │ │ │ │ │ ├── NewFunctionParametersSniff.php │ │ │ │ │ │ ├── NewFunctionsSniff.php │ │ │ │ │ │ ├── OptionalToRequiredFunctionParametersSniff.php │ │ │ │ │ │ ├── RemovedFunctionParametersSniff.php │ │ │ │ │ │ ├── RemovedFunctionsSniff.php │ │ │ │ │ │ └── RequiredToOptionalFunctionParametersSniff.php │ │ │ │ │ ├── Generators │ │ │ │ │ │ └── NewGeneratorReturnSniff.php │ │ │ │ │ ├── IniDirectives │ │ │ │ │ │ ├── NewIniDirectivesSniff.php │ │ │ │ │ │ └── RemovedIniDirectivesSniff.php │ │ │ │ │ ├── InitialValue │ │ │ │ │ │ ├── NewConstantArraysUsingConstSniff.php │ │ │ │ │ │ ├── NewConstantArraysUsingDefineSniff.php │ │ │ │ │ │ ├── NewConstantScalarExpressionsSniff.php │ │ │ │ │ │ └── NewHeredocSniff.php │ │ │ │ │ ├── Interfaces │ │ │ │ │ │ ├── InternalInterfacesSniff.php │ │ │ │ │ │ └── NewInterfacesSniff.php │ │ │ │ │ ├── Keywords │ │ │ │ │ │ ├── CaseSensitiveKeywordsSniff.php │ │ │ │ │ │ ├── ForbiddenNamesAsDeclaredSniff.php │ │ │ │ │ │ ├── ForbiddenNamesAsInvokedFunctionsSniff.php │ │ │ │ │ │ ├── ForbiddenNamesSniff.php │ │ │ │ │ │ └── NewKeywordsSniff.php │ │ │ │ │ ├── LanguageConstructs │ │ │ │ │ │ ├── NewEmptyNonVariableSniff.php │ │ │ │ │ │ └── NewLanguageConstructsSniff.php │ │ │ │ │ ├── Lists │ │ │ │ │ │ ├── AssignmentOrderSniff.php │ │ │ │ │ │ ├── ForbiddenEmptyListAssignmentSniff.php │ │ │ │ │ │ ├── NewKeyedListSniff.php │ │ │ │ │ │ ├── NewListReferenceAssignmentSniff.php │ │ │ │ │ │ └── NewShortListSniff.php │ │ │ │ │ ├── MethodUse │ │ │ │ │ │ ├── ForbiddenToStringParametersSniff.php │ │ │ │ │ │ └── NewDirectCallsToCloneSniff.php │ │ │ │ │ ├── Miscellaneous │ │ │ │ │ │ ├── NewPHPOpenTagEOFSniff.php │ │ │ │ │ │ ├── RemovedAlternativePHPTagsSniff.php │ │ │ │ │ │ └── ValidIntegersSniff.php │ │ │ │ │ ├── Operators │ │ │ │ │ │ ├── ChangedConcatOperatorPrecedenceSniff.php │ │ │ │ │ │ ├── ForbiddenNegativeBitshiftSniff.php │ │ │ │ │ │ ├── NewOperatorsSniff.php │ │ │ │ │ │ ├── NewShortTernarySniff.php │ │ │ │ │ │ └── RemovedTernaryAssociativitySniff.php │ │ │ │ │ ├── ParameterValues │ │ │ │ │ │ ├── ForbiddenGetClassNullSniff.php │ │ │ │ │ │ ├── ForbiddenStripTagsSelfClosingXHTMLSniff.php │ │ │ │ │ │ ├── NewArrayReduceInitialTypeSniff.php │ │ │ │ │ │ ├── NewFopenModesSniff.php │ │ │ │ │ │ ├── NewHTMLEntitiesEncodingDefaultSniff.php │ │ │ │ │ │ ├── NewHashAlgorithmsSniff.php │ │ │ │ │ │ ├── NewIDNVariantDefaultSniff.php │ │ │ │ │ │ ├── NewIconvMbstringCharsetDefaultSniff.php │ │ │ │ │ │ ├── NewNegativeStringOffsetSniff.php │ │ │ │ │ │ ├── NewPCREModifiersSniff.php │ │ │ │ │ │ ├── NewPackFormatSniff.php │ │ │ │ │ │ ├── NewPasswordAlgoConstantValuesSniff.php │ │ │ │ │ │ ├── NewProcOpenCmdArraySniff.php │ │ │ │ │ │ ├── NewStripTagsAllowableTagsArraySniff.php │ │ │ │ │ │ ├── RemovedHashAlgorithmsSniff.php │ │ │ │ │ │ ├── RemovedIconvEncodingSniff.php │ │ │ │ │ │ ├── RemovedImplodeFlexibleParamOrderSniff.php │ │ │ │ │ │ ├── RemovedMbStrrposEncodingThirdParamSniff.php │ │ │ │ │ │ ├── RemovedMbstringModifiersSniff.php │ │ │ │ │ │ ├── RemovedNonCryptoHashSniff.php │ │ │ │ │ │ ├── RemovedPCREModifiersSniff.php │ │ │ │ │ │ └── RemovedSetlocaleStringSniff.php │ │ │ │ │ ├── Syntax │ │ │ │ │ │ ├── ForbiddenCallTimePassByReferenceSniff.php │ │ │ │ │ │ ├── NewArrayStringDereferencingSniff.php │ │ │ │ │ │ ├── NewArrayUnpackingSniff.php │ │ │ │ │ │ ├── NewClassMemberAccessSniff.php │ │ │ │ │ │ ├── NewDynamicAccessToStaticSniff.php │ │ │ │ │ │ ├── NewFlexibleHeredocNowdocSniff.php │ │ │ │ │ │ ├── NewFunctionArrayDereferencingSniff.php │ │ │ │ │ │ ├── NewFunctionCallTrailingCommaSniff.php │ │ │ │ │ │ ├── NewShortArraySniff.php │ │ │ │ │ │ ├── RemovedCurlyBraceArrayAccessSniff.php │ │ │ │ │ │ └── RemovedNewReferenceSniff.php │ │ │ │ │ ├── TextStrings │ │ │ │ │ │ └── NewUnicodeEscapeSequenceSniff.php │ │ │ │ │ ├── TypeCasts │ │ │ │ │ │ ├── NewTypeCastsSniff.php │ │ │ │ │ │ └── RemovedTypeCastsSniff.php │ │ │ │ │ ├── Upgrade │ │ │ │ │ │ ├── LowPHPCSSniff.php │ │ │ │ │ │ └── LowPHPSniff.php │ │ │ │ │ ├── UseDeclarations │ │ │ │ │ │ ├── NewGroupUseDeclarationsSniff.php │ │ │ │ │ │ └── NewUseConstFunctionSniff.php │ │ │ │ │ └── Variables │ │ │ │ │ │ ├── ForbiddenGlobalVariableVariableSniff.php │ │ │ │ │ │ ├── ForbiddenThisUseContextsSniff.php │ │ │ │ │ │ ├── NewUniformVariableSyntaxSniff.php │ │ │ │ │ │ └── RemovedPredefinedGlobalVariablesSniff.php │ │ │ │ └── ruleset.xml │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── phpunit-bootstrap.php │ │ │ ├── phpdocumentor │ │ │ ├── reflection-common │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Element.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Fqsen.php │ │ │ │ │ ├── Location.php │ │ │ │ │ ├── Project.php │ │ │ │ │ └── ProjectFactory.php │ │ │ ├── reflection-docblock │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── DocBlock.php │ │ │ │ │ ├── DocBlock │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── DescriptionFactory.php │ │ │ │ │ ├── ExampleFinder.php │ │ │ │ │ ├── Serializer.php │ │ │ │ │ ├── StandardTagFactory.php │ │ │ │ │ ├── Tag.php │ │ │ │ │ ├── TagFactory.php │ │ │ │ │ └── Tags │ │ │ │ │ │ ├── Author.php │ │ │ │ │ │ ├── BaseTag.php │ │ │ │ │ │ ├── Covers.php │ │ │ │ │ │ ├── Deprecated.php │ │ │ │ │ │ ├── Example.php │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── StaticMethod.php │ │ │ │ │ │ └── Strategy.php │ │ │ │ │ │ ├── Formatter.php │ │ │ │ │ │ ├── Formatter │ │ │ │ │ │ ├── AlignFormatter.php │ │ │ │ │ │ └── PassthroughFormatter.php │ │ │ │ │ │ ├── Generic.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ ├── PropertyRead.php │ │ │ │ │ │ ├── PropertyWrite.php │ │ │ │ │ │ ├── Reference │ │ │ │ │ │ ├── Fqsen.php │ │ │ │ │ │ ├── Reference.php │ │ │ │ │ │ └── Url.php │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ ├── See.php │ │ │ │ │ │ ├── Since.php │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ ├── Throws.php │ │ │ │ │ │ ├── Uses.php │ │ │ │ │ │ ├── Var_.php │ │ │ │ │ │ └── Version.php │ │ │ │ │ ├── DocBlockFactory.php │ │ │ │ │ └── DocBlockFactoryInterface.php │ │ │ └── type-resolver │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── FqsenResolver.php │ │ │ │ ├── Type.php │ │ │ │ ├── TypeResolver.php │ │ │ │ └── Types │ │ │ │ ├── Array_.php │ │ │ │ ├── Boolean.php │ │ │ │ ├── Callable_.php │ │ │ │ ├── Compound.php │ │ │ │ ├── Context.php │ │ │ │ ├── ContextFactory.php │ │ │ │ ├── Float_.php │ │ │ │ ├── Integer.php │ │ │ │ ├── Iterable_.php │ │ │ │ ├── Mixed_.php │ │ │ │ ├── Null_.php │ │ │ │ ├── Nullable.php │ │ │ │ ├── Object_.php │ │ │ │ ├── Parent_.php │ │ │ │ ├── Resource_.php │ │ │ │ ├── Scalar.php │ │ │ │ ├── Self_.php │ │ │ │ ├── Static_.php │ │ │ │ ├── String_.php │ │ │ │ ├── This.php │ │ │ │ └── Void_.php │ │ │ ├── phpseclib │ │ │ └── phpseclib │ │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── BACKERS.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── composer.json │ │ │ │ └── phpseclib │ │ │ │ ├── Common │ │ │ │ └── Functions │ │ │ │ │ └── Strings.php │ │ │ │ ├── Crypt │ │ │ │ ├── AES.php │ │ │ │ ├── Blowfish.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── Common │ │ │ │ │ ├── AsymmetricKey.php │ │ │ │ │ ├── BlockCipher.php │ │ │ │ │ ├── Formats │ │ │ │ │ │ ├── Keys │ │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ │ ├── PKCS.php │ │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ │ └── PuTTY.php │ │ │ │ │ │ └── Signature │ │ │ │ │ │ │ └── Raw.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ ├── StreamCipher.php │ │ │ │ │ ├── SymmetricKey.php │ │ │ │ │ └── Traits │ │ │ │ │ │ ├── Fingerprint.php │ │ │ │ │ │ └── PasswordProtected.php │ │ │ │ ├── DES.php │ │ │ │ ├── DH.php │ │ │ │ ├── DH │ │ │ │ │ ├── Formats │ │ │ │ │ │ └── Keys │ │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ │ └── PKCS8.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ └── PublicKey.php │ │ │ │ ├── DSA.php │ │ │ │ ├── DSA │ │ │ │ │ ├── Formats │ │ │ │ │ │ ├── Keys │ │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ └── Signature │ │ │ │ │ │ │ ├── ASN1.php │ │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ │ └── SSH2.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ └── PublicKey.php │ │ │ │ ├── EC.php │ │ │ │ ├── EC │ │ │ │ │ ├── BaseCurves │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ ├── Binary.php │ │ │ │ │ │ ├── KoblitzPrime.php │ │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ │ ├── Prime.php │ │ │ │ │ │ └── TwistedEdwards.php │ │ │ │ │ ├── Curves │ │ │ │ │ │ ├── Curve25519.php │ │ │ │ │ │ ├── Curve448.php │ │ │ │ │ │ ├── Ed25519.php │ │ │ │ │ │ ├── Ed448.php │ │ │ │ │ │ ├── brainpoolP160r1.php │ │ │ │ │ │ ├── brainpoolP160t1.php │ │ │ │ │ │ ├── brainpoolP192r1.php │ │ │ │ │ │ ├── brainpoolP192t1.php │ │ │ │ │ │ ├── brainpoolP224r1.php │ │ │ │ │ │ ├── brainpoolP224t1.php │ │ │ │ │ │ ├── brainpoolP256r1.php │ │ │ │ │ │ ├── brainpoolP256t1.php │ │ │ │ │ │ ├── brainpoolP320r1.php │ │ │ │ │ │ ├── brainpoolP320t1.php │ │ │ │ │ │ ├── brainpoolP384r1.php │ │ │ │ │ │ ├── brainpoolP384t1.php │ │ │ │ │ │ ├── brainpoolP512r1.php │ │ │ │ │ │ ├── brainpoolP512t1.php │ │ │ │ │ │ ├── nistb233.php │ │ │ │ │ │ ├── nistb409.php │ │ │ │ │ │ ├── nistk163.php │ │ │ │ │ │ ├── nistk233.php │ │ │ │ │ │ ├── nistk283.php │ │ │ │ │ │ ├── nistk409.php │ │ │ │ │ │ ├── nistp192.php │ │ │ │ │ │ ├── nistp224.php │ │ │ │ │ │ ├── nistp256.php │ │ │ │ │ │ ├── nistp384.php │ │ │ │ │ │ ├── nistp521.php │ │ │ │ │ │ ├── nistt571.php │ │ │ │ │ │ ├── prime192v1.php │ │ │ │ │ │ ├── prime192v2.php │ │ │ │ │ │ ├── prime192v3.php │ │ │ │ │ │ ├── prime239v1.php │ │ │ │ │ │ ├── prime239v2.php │ │ │ │ │ │ ├── prime239v3.php │ │ │ │ │ │ ├── prime256v1.php │ │ │ │ │ │ ├── secp112r1.php │ │ │ │ │ │ ├── secp112r2.php │ │ │ │ │ │ ├── secp128r1.php │ │ │ │ │ │ ├── secp128r2.php │ │ │ │ │ │ ├── secp160k1.php │ │ │ │ │ │ ├── secp160r1.php │ │ │ │ │ │ ├── secp160r2.php │ │ │ │ │ │ ├── secp192k1.php │ │ │ │ │ │ ├── secp192r1.php │ │ │ │ │ │ ├── secp224k1.php │ │ │ │ │ │ ├── secp224r1.php │ │ │ │ │ │ ├── secp256k1.php │ │ │ │ │ │ ├── secp256r1.php │ │ │ │ │ │ ├── secp384r1.php │ │ │ │ │ │ ├── secp521r1.php │ │ │ │ │ │ ├── sect113r1.php │ │ │ │ │ │ ├── sect113r2.php │ │ │ │ │ │ ├── sect131r1.php │ │ │ │ │ │ ├── sect131r2.php │ │ │ │ │ │ ├── sect163k1.php │ │ │ │ │ │ ├── sect163r1.php │ │ │ │ │ │ ├── sect163r2.php │ │ │ │ │ │ ├── sect193r1.php │ │ │ │ │ │ ├── sect193r2.php │ │ │ │ │ │ ├── sect233k1.php │ │ │ │ │ │ ├── sect233r1.php │ │ │ │ │ │ ├── sect239k1.php │ │ │ │ │ │ ├── sect283k1.php │ │ │ │ │ │ ├── sect283r1.php │ │ │ │ │ │ ├── sect409k1.php │ │ │ │ │ │ ├── sect409r1.php │ │ │ │ │ │ ├── sect571k1.php │ │ │ │ │ │ └── sect571r1.php │ │ │ │ │ ├── Formats │ │ │ │ │ │ ├── Keys │ │ │ │ │ │ │ ├── Common.php │ │ │ │ │ │ │ ├── MontgomeryPrivate.php │ │ │ │ │ │ │ ├── MontgomeryPublic.php │ │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ │ ├── XML.php │ │ │ │ │ │ │ └── libsodium.php │ │ │ │ │ │ └── Signature │ │ │ │ │ │ │ ├── ASN1.php │ │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ │ └── SSH2.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ └── PublicKey.php │ │ │ │ ├── Hash.php │ │ │ │ ├── PublicKeyLoader.php │ │ │ │ ├── RC2.php │ │ │ │ ├── RC4.php │ │ │ │ ├── RSA.php │ │ │ │ ├── RSA │ │ │ │ │ ├── Formats │ │ │ │ │ │ └── Keys │ │ │ │ │ │ │ ├── MSBLOB.php │ │ │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ │ │ ├── PSS.php │ │ │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ │ │ ├── Raw.php │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ └── PublicKey.php │ │ │ │ ├── Random.php │ │ │ │ ├── Rijndael.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── TripleDES.php │ │ │ │ └── Twofish.php │ │ │ │ ├── Exception │ │ │ │ ├── BadConfigurationException.php │ │ │ │ ├── BadDecryptionException.php │ │ │ │ ├── BadModeException.php │ │ │ │ ├── ConnectionClosedException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── InconsistentSetupException.php │ │ │ │ ├── InsufficientSetupException.php │ │ │ │ ├── NoKeyLoadedException.php │ │ │ │ ├── NoSupportedAlgorithmsException.php │ │ │ │ ├── UnableToConnectException.php │ │ │ │ ├── UnsupportedAlgorithmException.php │ │ │ │ ├── UnsupportedCurveException.php │ │ │ │ ├── UnsupportedFormatException.php │ │ │ │ └── UnsupportedOperationException.php │ │ │ │ ├── File │ │ │ │ ├── ANSI.php │ │ │ │ ├── ASN1.php │ │ │ │ ├── ASN1 │ │ │ │ │ ├── Element.php │ │ │ │ │ └── Maps │ │ │ │ │ │ ├── AccessDescription.php │ │ │ │ │ │ ├── AdministrationDomainName.php │ │ │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ │ │ ├── AnotherName.php │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ ├── AttributeType.php │ │ │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ ├── AuthorityInfoAccessSyntax.php │ │ │ │ │ │ ├── AuthorityKeyIdentifier.php │ │ │ │ │ │ ├── BaseDistance.php │ │ │ │ │ │ ├── BasicConstraints.php │ │ │ │ │ │ ├── BuiltInDomainDefinedAttribute.php │ │ │ │ │ │ ├── BuiltInDomainDefinedAttributes.php │ │ │ │ │ │ ├── BuiltInStandardAttributes.php │ │ │ │ │ │ ├── CPSuri.php │ │ │ │ │ │ ├── CRLDistributionPoints.php │ │ │ │ │ │ ├── CRLNumber.php │ │ │ │ │ │ ├── CRLReason.php │ │ │ │ │ │ ├── CertPolicyId.php │ │ │ │ │ │ ├── Certificate.php │ │ │ │ │ │ ├── CertificateIssuer.php │ │ │ │ │ │ ├── CertificateList.php │ │ │ │ │ │ ├── CertificatePolicies.php │ │ │ │ │ │ ├── CertificateSerialNumber.php │ │ │ │ │ │ ├── CertificationRequest.php │ │ │ │ │ │ ├── CertificationRequestInfo.php │ │ │ │ │ │ ├── Characteristic_two.php │ │ │ │ │ │ ├── CountryName.php │ │ │ │ │ │ ├── Curve.php │ │ │ │ │ │ ├── DHParameter.php │ │ │ │ │ │ ├── DSAParams.php │ │ │ │ │ │ ├── DSAPrivateKey.php │ │ │ │ │ │ ├── DSAPublicKey.php │ │ │ │ │ │ ├── DigestInfo.php │ │ │ │ │ │ ├── DirectoryString.php │ │ │ │ │ │ ├── DisplayText.php │ │ │ │ │ │ ├── DistributionPoint.php │ │ │ │ │ │ ├── DistributionPointName.php │ │ │ │ │ │ ├── DssSigValue.php │ │ │ │ │ │ ├── ECParameters.php │ │ │ │ │ │ ├── ECPoint.php │ │ │ │ │ │ ├── ECPrivateKey.php │ │ │ │ │ │ ├── EDIPartyName.php │ │ │ │ │ │ ├── EcdsaSigValue.php │ │ │ │ │ │ ├── EncryptedData.php │ │ │ │ │ │ ├── EncryptedPrivateKeyInfo.php │ │ │ │ │ │ ├── ExtKeyUsageSyntax.php │ │ │ │ │ │ ├── Extension.php │ │ │ │ │ │ ├── ExtensionAttribute.php │ │ │ │ │ │ ├── ExtensionAttributes.php │ │ │ │ │ │ ├── Extensions.php │ │ │ │ │ │ ├── FieldElement.php │ │ │ │ │ │ ├── FieldID.php │ │ │ │ │ │ ├── GeneralName.php │ │ │ │ │ │ ├── GeneralNames.php │ │ │ │ │ │ ├── GeneralSubtree.php │ │ │ │ │ │ ├── GeneralSubtrees.php │ │ │ │ │ │ ├── HashAlgorithm.php │ │ │ │ │ │ ├── HoldInstructionCode.php │ │ │ │ │ │ ├── InvalidityDate.php │ │ │ │ │ │ ├── IssuerAltName.php │ │ │ │ │ │ ├── IssuingDistributionPoint.php │ │ │ │ │ │ ├── KeyIdentifier.php │ │ │ │ │ │ ├── KeyPurposeId.php │ │ │ │ │ │ ├── KeyUsage.php │ │ │ │ │ │ ├── MaskGenAlgorithm.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── NameConstraints.php │ │ │ │ │ │ ├── NetworkAddress.php │ │ │ │ │ │ ├── NoticeReference.php │ │ │ │ │ │ ├── NumericUserIdentifier.php │ │ │ │ │ │ ├── ORAddress.php │ │ │ │ │ │ ├── OneAsymmetricKey.php │ │ │ │ │ │ ├── OrganizationName.php │ │ │ │ │ │ ├── OrganizationalUnitNames.php │ │ │ │ │ │ ├── OtherPrimeInfo.php │ │ │ │ │ │ ├── OtherPrimeInfos.php │ │ │ │ │ │ ├── PBEParameter.php │ │ │ │ │ │ ├── PBES2params.php │ │ │ │ │ │ ├── PBKDF2params.php │ │ │ │ │ │ ├── PBMAC1params.php │ │ │ │ │ │ ├── PKCS9String.php │ │ │ │ │ │ ├── Pentanomial.php │ │ │ │ │ │ ├── PersonalName.php │ │ │ │ │ │ ├── PolicyInformation.php │ │ │ │ │ │ ├── PolicyMappings.php │ │ │ │ │ │ ├── PolicyQualifierId.php │ │ │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ │ │ ├── PostalAddress.php │ │ │ │ │ │ ├── Prime_p.php │ │ │ │ │ │ ├── PrivateDomainName.php │ │ │ │ │ │ ├── PrivateKey.php │ │ │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ │ │ ├── PrivateKeyUsagePeriod.php │ │ │ │ │ │ ├── PublicKey.php │ │ │ │ │ │ ├── PublicKeyAndChallenge.php │ │ │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ │ │ ├── RC2CBCParameter.php │ │ │ │ │ │ ├── RDNSequence.php │ │ │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ │ │ ├── RSAPublicKey.php │ │ │ │ │ │ ├── RSASSA_PSS_params.php │ │ │ │ │ │ ├── ReasonFlags.php │ │ │ │ │ │ ├── RelativeDistinguishedName.php │ │ │ │ │ │ ├── RevokedCertificate.php │ │ │ │ │ │ ├── SignedPublicKeyAndChallenge.php │ │ │ │ │ │ ├── SpecifiedECDomain.php │ │ │ │ │ │ ├── SubjectAltName.php │ │ │ │ │ │ ├── SubjectDirectoryAttributes.php │ │ │ │ │ │ ├── SubjectInfoAccessSyntax.php │ │ │ │ │ │ ├── SubjectPublicKeyInfo.php │ │ │ │ │ │ ├── TBSCertList.php │ │ │ │ │ │ ├── TBSCertificate.php │ │ │ │ │ │ ├── TerminalIdentifier.php │ │ │ │ │ │ ├── Time.php │ │ │ │ │ │ ├── Trinomial.php │ │ │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ │ │ ├── UserNotice.php │ │ │ │ │ │ ├── Validity.php │ │ │ │ │ │ ├── netscape_ca_policy_url.php │ │ │ │ │ │ ├── netscape_cert_type.php │ │ │ │ │ │ └── netscape_comment.php │ │ │ │ └── X509.php │ │ │ │ ├── Math │ │ │ │ ├── BigInteger.php │ │ │ │ ├── BigInteger │ │ │ │ │ └── Engines │ │ │ │ │ │ ├── BCMath.php │ │ │ │ │ │ ├── BCMath │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ ├── BuiltIn.php │ │ │ │ │ │ ├── DefaultEngine.php │ │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ │ └── Reductions │ │ │ │ │ │ │ ├── Barrett.php │ │ │ │ │ │ │ └── EvalBarrett.php │ │ │ │ │ │ ├── Engine.php │ │ │ │ │ │ ├── GMP.php │ │ │ │ │ │ ├── GMP │ │ │ │ │ │ └── DefaultEngine.php │ │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ │ ├── PHP.php │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ ├── DefaultEngine.php │ │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ │ ├── OpenSSL.php │ │ │ │ │ │ └── Reductions │ │ │ │ │ │ │ ├── Barrett.php │ │ │ │ │ │ │ ├── Classic.php │ │ │ │ │ │ │ ├── EvalBarrett.php │ │ │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ │ │ ├── MontgomeryMult.php │ │ │ │ │ │ │ └── PowerOfTwo.php │ │ │ │ │ │ ├── PHP32.php │ │ │ │ │ │ └── PHP64.php │ │ │ │ ├── BinaryField.php │ │ │ │ ├── BinaryField │ │ │ │ │ └── Integer.php │ │ │ │ ├── Common │ │ │ │ │ ├── FiniteField.php │ │ │ │ │ └── FiniteField │ │ │ │ │ │ └── Integer.php │ │ │ │ ├── PrimeField.php │ │ │ │ └── PrimeField │ │ │ │ │ └── Integer.php │ │ │ │ ├── Net │ │ │ │ ├── SFTP.php │ │ │ │ ├── SFTP │ │ │ │ │ └── Stream.php │ │ │ │ └── SSH2.php │ │ │ │ ├── System │ │ │ │ └── SSH │ │ │ │ │ ├── Agent.php │ │ │ │ │ ├── Agent │ │ │ │ │ └── Identity.php │ │ │ │ │ └── Common │ │ │ │ │ └── Traits │ │ │ │ │ └── ReadBytes.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── openssl.cnf │ │ │ ├── phpspec │ │ │ └── prophecy │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── Prophecy │ │ │ │ ├── Argument.php │ │ │ │ ├── Argument │ │ │ │ ├── ArgumentsWildcard.php │ │ │ │ └── Token │ │ │ │ │ ├── AnyValueToken.php │ │ │ │ │ ├── AnyValuesToken.php │ │ │ │ │ ├── ApproximateValueToken.php │ │ │ │ │ ├── ArrayCountToken.php │ │ │ │ │ ├── ArrayEntryToken.php │ │ │ │ │ ├── ArrayEveryEntryToken.php │ │ │ │ │ ├── CallbackToken.php │ │ │ │ │ ├── ExactValueToken.php │ │ │ │ │ ├── IdenticalValueToken.php │ │ │ │ │ ├── LogicalAndToken.php │ │ │ │ │ ├── LogicalNotToken.php │ │ │ │ │ ├── ObjectStateToken.php │ │ │ │ │ ├── StringContainsToken.php │ │ │ │ │ ├── TokenInterface.php │ │ │ │ │ └── TypeToken.php │ │ │ │ ├── Call │ │ │ │ ├── Call.php │ │ │ │ └── CallCenter.php │ │ │ │ ├── Comparator │ │ │ │ ├── ClosureComparator.php │ │ │ │ ├── Factory.php │ │ │ │ └── ProphecyComparator.php │ │ │ │ ├── Doubler │ │ │ │ ├── CachedDoubler.php │ │ │ │ ├── ClassPatch │ │ │ │ │ ├── ClassPatchInterface.php │ │ │ │ │ ├── DisableConstructorPatch.php │ │ │ │ │ ├── HhvmExceptionPatch.php │ │ │ │ │ ├── KeywordPatch.php │ │ │ │ │ ├── MagicCallPatch.php │ │ │ │ │ ├── ProphecySubjectPatch.php │ │ │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ │ │ ├── SplFileInfoPatch.php │ │ │ │ │ ├── ThrowablePatch.php │ │ │ │ │ └── TraversablePatch.php │ │ │ │ ├── DoubleInterface.php │ │ │ │ ├── Doubler.php │ │ │ │ ├── Generator │ │ │ │ │ ├── ClassCodeGenerator.php │ │ │ │ │ ├── ClassCreator.php │ │ │ │ │ ├── ClassMirror.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── ArgumentNode.php │ │ │ │ │ │ ├── ClassNode.php │ │ │ │ │ │ └── MethodNode.php │ │ │ │ │ ├── ReflectionInterface.php │ │ │ │ │ └── TypeHintReference.php │ │ │ │ ├── LazyDouble.php │ │ │ │ └── NameGenerator.php │ │ │ │ ├── Exception │ │ │ │ ├── Call │ │ │ │ │ └── UnexpectedCallException.php │ │ │ │ ├── Doubler │ │ │ │ │ ├── ClassCreatorException.php │ │ │ │ │ ├── ClassMirrorException.php │ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ │ ├── DoubleException.php │ │ │ │ │ ├── DoublerException.php │ │ │ │ │ ├── InterfaceNotFoundException.php │ │ │ │ │ ├── MethodNotExtendableException.php │ │ │ │ │ ├── MethodNotFoundException.php │ │ │ │ │ └── ReturnByReferenceException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── Prediction │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ ├── FailedPredictionException.php │ │ │ │ │ ├── NoCallsException.php │ │ │ │ │ ├── PredictionException.php │ │ │ │ │ ├── UnexpectedCallsCountException.php │ │ │ │ │ └── UnexpectedCallsException.php │ │ │ │ └── Prophecy │ │ │ │ │ ├── MethodProphecyException.php │ │ │ │ │ ├── ObjectProphecyException.php │ │ │ │ │ └── ProphecyException.php │ │ │ │ ├── PhpDocumentor │ │ │ │ ├── ClassAndInterfaceTagRetriever.php │ │ │ │ ├── ClassTagRetriever.php │ │ │ │ ├── LegacyClassTagRetriever.php │ │ │ │ └── MethodTagRetrieverInterface.php │ │ │ │ ├── Prediction │ │ │ │ ├── CallPrediction.php │ │ │ │ ├── CallTimesPrediction.php │ │ │ │ ├── CallbackPrediction.php │ │ │ │ ├── NoCallsPrediction.php │ │ │ │ └── PredictionInterface.php │ │ │ │ ├── Promise │ │ │ │ ├── CallbackPromise.php │ │ │ │ ├── PromiseInterface.php │ │ │ │ ├── ReturnArgumentPromise.php │ │ │ │ ├── ReturnPromise.php │ │ │ │ └── ThrowPromise.php │ │ │ │ ├── Prophecy │ │ │ │ ├── MethodProphecy.php │ │ │ │ ├── ObjectProphecy.php │ │ │ │ ├── ProphecyInterface.php │ │ │ │ ├── ProphecySubjectInterface.php │ │ │ │ ├── Revealer.php │ │ │ │ └── RevealerInterface.php │ │ │ │ ├── Prophet.php │ │ │ │ └── Util │ │ │ │ ├── ExportUtil.php │ │ │ │ └── StringUtil.php │ │ │ ├── phpunit │ │ │ ├── php-code-coverage │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── ChangeLog-2.2.md │ │ │ │ ├── ChangeLog-3.0.md │ │ │ │ ├── ChangeLog-3.1.md │ │ │ │ ├── ChangeLog-3.2.md │ │ │ │ ├── ChangeLog-3.3.md │ │ │ │ ├── ChangeLog-4.0.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ ├── CodeCoverage.php │ │ │ │ │ ├── Driver │ │ │ │ │ │ ├── Driver.php │ │ │ │ │ │ ├── HHVM.php │ │ │ │ │ │ ├── PHPDBG.php │ │ │ │ │ │ └── Xdebug.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── AbstractNode.php │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Iterator.php │ │ │ │ │ ├── Report │ │ │ │ │ │ ├── Clover.php │ │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ │ ├── Html │ │ │ │ │ │ │ ├── Facade.php │ │ │ │ │ │ │ ├── Renderer.php │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ │ │ ├── PHP.php │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ └── Xml │ │ │ │ │ │ │ ├── Coverage.php │ │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ │ ├── Facade.php │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ │ ├── Project.php │ │ │ │ │ │ │ ├── Report.php │ │ │ │ │ │ │ ├── Tests.php │ │ │ │ │ │ │ ├── Totals.php │ │ │ │ │ │ │ └── Unit.php │ │ │ │ │ └── Util.php │ │ │ │ └── tests │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── _files │ │ │ │ │ ├── BankAccount-clover.xml │ │ │ │ │ ├── BankAccount-crap4j.xml │ │ │ │ │ ├── BankAccount-text.txt │ │ │ │ │ ├── BankAccount.php │ │ │ │ │ ├── BankAccountTest.php │ │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ │ ├── CoverageClassTest.php │ │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ │ ├── CoveredClass.php │ │ │ │ │ ├── CoveredFunction.php │ │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ │ ├── NamespaceCoveredClass.php │ │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ │ ├── Report │ │ │ │ │ │ ├── HTML │ │ │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ │ │ └── index.xml │ │ │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ │ │ ├── ignored-lines-clover.xml │ │ │ │ │ ├── ignored-lines-crap4j.xml │ │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ │ │ ├── source_with_ignore.php │ │ │ │ │ ├── source_with_namespace.php │ │ │ │ │ ├── source_with_oneline_annotations.php │ │ │ │ │ ├── source_without_ignore.php │ │ │ │ │ └── source_without_namespace.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ └── tests │ │ │ │ │ ├── BuilderTest.php │ │ │ │ │ ├── CloverTest.php │ │ │ │ │ ├── CodeCoverageTest.php │ │ │ │ │ ├── Crap4jTest.php │ │ │ │ │ ├── FilterTest.php │ │ │ │ │ ├── HTMLTest.php │ │ │ │ │ ├── TextTest.php │ │ │ │ │ ├── UtilTest.php │ │ │ │ │ └── XMLTest.php │ │ │ ├── php-file-iterator │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── Iterator.php │ │ │ ├── php-text-template │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── Template.php │ │ │ ├── php-timer │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ └── Timer.php │ │ │ │ └── tests │ │ │ │ │ └── TimerTest.php │ │ │ ├── php-token-stream │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── build │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── composer.json │ │ │ │ ├── src │ │ │ │ │ ├── Token.php │ │ │ │ │ └── Token │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ └── Stream │ │ │ │ │ │ └── CachingFactory.php │ │ │ │ └── tests │ │ │ │ │ ├── Token │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── ClosureTest.php │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ ├── IncludeTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ └── NamespaceTest.php │ │ │ │ │ ├── TokenTest.php │ │ │ │ │ ├── _fixture │ │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ │ ├── classInNamespace.php │ │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ │ │ ├── closure.php │ │ │ │ │ ├── issue19.php │ │ │ │ │ ├── issue30.php │ │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ │ ├── source.php │ │ │ │ │ ├── source2.php │ │ │ │ │ ├── source3.php │ │ │ │ │ ├── source4.php │ │ │ │ │ └── source5.php │ │ │ │ │ └── bootstrap.php │ │ │ ├── phpunit-mock-objects │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ └── Framework │ │ │ │ │ │ └── MockObject │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── Identity.php │ │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ │ ├── Match.php │ │ │ │ │ │ ├── MethodNameMatch.php │ │ │ │ │ │ ├── Namespace.php │ │ │ │ │ │ ├── ParametersMatch.php │ │ │ │ │ │ └── Stub.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ └── RuntimeException.php │ │ │ │ │ │ ├── Generator.php │ │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── Invocation │ │ │ │ │ │ ├── Object.php │ │ │ │ │ │ └── Static.php │ │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ │ ├── Invokable.php │ │ │ │ │ │ ├── Matcher.php │ │ │ │ │ │ ├── Matcher │ │ │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ │ │ ├── AnyParameters.php │ │ │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ │ │ ├── InvokedCount.php │ │ │ │ │ │ ├── InvokedRecorder.php │ │ │ │ │ │ ├── MethodName.php │ │ │ │ │ │ ├── Parameters.php │ │ │ │ │ │ └── StatelessInvocation.php │ │ │ │ │ │ ├── MockBuilder.php │ │ │ │ │ │ ├── MockObject.php │ │ │ │ │ │ ├── Stub.php │ │ │ │ │ │ ├── Stub │ │ │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── MatcherCollection.php │ │ │ │ │ │ ├── Return.php │ │ │ │ │ │ ├── ReturnArgument.php │ │ │ │ │ │ ├── ReturnCallback.php │ │ │ │ │ │ ├── ReturnReference.php │ │ │ │ │ │ ├── ReturnSelf.php │ │ │ │ │ │ └── ReturnValueMap.php │ │ │ │ │ │ └── Verifiable.php │ │ │ │ └── tests │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ ├── MockBuilderTest.php │ │ │ │ │ ├── MockObject │ │ │ │ │ ├── Builder │ │ │ │ │ │ └── InvocationMockerTest.php │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── 232.phpt │ │ │ │ │ │ ├── abstract_class.phpt │ │ │ │ │ │ ├── class.phpt │ │ │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ │ │ ├── class_partial.phpt │ │ │ │ │ │ ├── class_with_method_named_method.phpt │ │ │ │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ │ │ │ ├── interface.phpt │ │ │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ │ │ ├── namespaced_class.phpt │ │ │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ │ │ ├── nullable_types.phpt │ │ │ │ │ │ ├── proxy.phpt │ │ │ │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ │ │ │ ├── return_type_declarations_self.phpt │ │ │ │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ │ │ │ ├── return_type_declarations_void.phpt │ │ │ │ │ │ ├── scalar_type_declarations.phpt │ │ │ │ │ │ ├── wsdl_class.phpt │ │ │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ │ │ └── wsdl_class_partial.phpt │ │ │ │ │ ├── Invocation │ │ │ │ │ │ ├── ObjectTest.php │ │ │ │ │ │ └── StaticTest.php │ │ │ │ │ ├── Matcher │ │ │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ │ │ └── class_with_deprecated_method.phpt │ │ │ │ │ ├── MockObjectTest.php │ │ │ │ │ ├── ProxyObjectTest.php │ │ │ │ │ ├── _fixture │ │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ │ ├── AbstractTrait.php │ │ │ │ │ ├── AnInterface.php │ │ │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ │ │ ├── AnotherInterface.php │ │ │ │ │ ├── Bar.php │ │ │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ │ │ ├── ClassWithStaticMethod.php │ │ │ │ │ ├── Foo.php │ │ │ │ │ ├── FunctionCallback.php │ │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ │ │ ├── MethodCallback.php │ │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ │ ├── MockTestInterface.php │ │ │ │ │ ├── Mockable.php │ │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ │ ├── SingletonClass.php │ │ │ │ │ ├── SomeClass.php │ │ │ │ │ ├── StaticMockTestClass.php │ │ │ │ │ ├── StringableClass.php │ │ │ │ │ └── TraversableMockTestInterface.php │ │ │ │ │ └── bootstrap.php │ │ │ └── phpunit │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs.dist │ │ │ │ ├── .stickler.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── ChangeLog-5.7.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit │ │ │ │ ├── phpunit.xml │ │ │ │ ├── phpunit.xsd │ │ │ │ ├── src │ │ │ │ ├── Exception.php │ │ │ │ ├── Extensions │ │ │ │ │ ├── GroupTestSuite.php │ │ │ │ │ ├── PhptTestCase.php │ │ │ │ │ ├── PhptTestSuite.php │ │ │ │ │ ├── RepeatedTest.php │ │ │ │ │ ├── TestDecorator.php │ │ │ │ │ └── TicketListener.php │ │ │ │ ├── ForwardCompatibility │ │ │ │ │ ├── Assert.php │ │ │ │ │ ├── AssertionFailedError.php │ │ │ │ │ ├── BaseTestListener.php │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── TestListener.php │ │ │ │ │ └── TestSuite.php │ │ │ │ ├── Framework │ │ │ │ │ ├── Assert.php │ │ │ │ │ ├── Assert │ │ │ │ │ │ └── Functions.php │ │ │ │ │ ├── AssertionFailedError.php │ │ │ │ │ ├── BaseTestListener.php │ │ │ │ │ ├── CodeCoverageException.php │ │ │ │ │ ├── Constraint.php │ │ │ │ │ ├── Constraint │ │ │ │ │ │ ├── And.php │ │ │ │ │ │ ├── ArrayHasKey.php │ │ │ │ │ │ ├── ArraySubset.php │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ ├── Callback.php │ │ │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ │ │ ├── Composite.php │ │ │ │ │ │ ├── Count.php │ │ │ │ │ │ ├── DirectoryExists.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── ExceptionCode.php │ │ │ │ │ │ ├── ExceptionMessage.php │ │ │ │ │ │ ├── ExceptionMessageRegExp.php │ │ │ │ │ │ ├── FileExists.php │ │ │ │ │ │ ├── GreaterThan.php │ │ │ │ │ │ ├── IsAnything.php │ │ │ │ │ │ ├── IsEmpty.php │ │ │ │ │ │ ├── IsEqual.php │ │ │ │ │ │ ├── IsFalse.php │ │ │ │ │ │ ├── IsFinite.php │ │ │ │ │ │ ├── IsIdentical.php │ │ │ │ │ │ ├── IsInfinite.php │ │ │ │ │ │ ├── IsInstanceOf.php │ │ │ │ │ │ ├── IsJson.php │ │ │ │ │ │ ├── IsNan.php │ │ │ │ │ │ ├── IsNull.php │ │ │ │ │ │ ├── IsReadable.php │ │ │ │ │ │ ├── IsTrue.php │ │ │ │ │ │ ├── IsType.php │ │ │ │ │ │ ├── IsWritable.php │ │ │ │ │ │ ├── JsonMatches.php │ │ │ │ │ │ ├── JsonMatches │ │ │ │ │ │ │ └── ErrorMessageProvider.php │ │ │ │ │ │ ├── LessThan.php │ │ │ │ │ │ ├── Not.php │ │ │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ │ │ ├── Or.php │ │ │ │ │ │ ├── PCREMatch.php │ │ │ │ │ │ ├── SameSize.php │ │ │ │ │ │ ├── StringContains.php │ │ │ │ │ │ ├── StringEndsWith.php │ │ │ │ │ │ ├── StringMatches.php │ │ │ │ │ │ ├── StringStartsWith.php │ │ │ │ │ │ ├── TraversableContains.php │ │ │ │ │ │ ├── TraversableContainsOnly.php │ │ │ │ │ │ └── Xor.php │ │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── Error │ │ │ │ │ │ ├── Deprecated.php │ │ │ │ │ │ ├── Notice.php │ │ │ │ │ │ └── Warning.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── ExceptionWrapper.php │ │ │ │ │ ├── ExpectationFailedException.php │ │ │ │ │ ├── IncompleteTest.php │ │ │ │ │ ├── IncompleteTestCase.php │ │ │ │ │ ├── IncompleteTestError.php │ │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ │ ├── OutputError.php │ │ │ │ │ ├── RiskyTest.php │ │ │ │ │ ├── RiskyTestError.php │ │ │ │ │ ├── SelfDescribing.php │ │ │ │ │ ├── SkippedTest.php │ │ │ │ │ ├── SkippedTestCase.php │ │ │ │ │ ├── SkippedTestError.php │ │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ │ ├── SyntheticError.php │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── TestFailure.php │ │ │ │ │ ├── TestListener.php │ │ │ │ │ ├── TestResult.php │ │ │ │ │ ├── TestSuite.php │ │ │ │ │ ├── TestSuite │ │ │ │ │ │ └── DataProvider.php │ │ │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ │ │ ├── Warning.php │ │ │ │ │ └── WarningTestCase.php │ │ │ │ ├── Runner │ │ │ │ │ ├── BaseTestRunner.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ ├── Exclude.php │ │ │ │ │ │ │ └── Include.php │ │ │ │ │ │ └── Test.php │ │ │ │ │ ├── StandardTestSuiteLoader.php │ │ │ │ │ ├── TestSuiteLoader.php │ │ │ │ │ └── Version.php │ │ │ │ ├── TextUI │ │ │ │ │ ├── Command.php │ │ │ │ │ ├── ResultPrinter.php │ │ │ │ │ └── TestRunner.php │ │ │ │ └── Util │ │ │ │ │ ├── Blacklist.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── ConfigurationGenerator.php │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ ├── Fileloader.php │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Getopt.php │ │ │ │ │ ├── GlobalState.php │ │ │ │ │ ├── InvalidArgumentHelper.php │ │ │ │ │ ├── Log │ │ │ │ │ ├── JSON.php │ │ │ │ │ ├── JUnit.php │ │ │ │ │ ├── TAP.php │ │ │ │ │ └── TeamCity.php │ │ │ │ │ ├── PHP.php │ │ │ │ │ ├── PHP │ │ │ │ │ ├── Default.php │ │ │ │ │ ├── Template │ │ │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ │ │ ├── Windows.php │ │ │ │ │ └── eval-stdin.php │ │ │ │ │ ├── Printer.php │ │ │ │ │ ├── Regex.php │ │ │ │ │ ├── String.php │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── TestDox │ │ │ │ │ ├── NamePrettifier.php │ │ │ │ │ ├── ResultPrinter.php │ │ │ │ │ └── ResultPrinter │ │ │ │ │ │ ├── HTML.php │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ └── XML.php │ │ │ │ │ ├── TestSuiteIterator.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── XML.php │ │ │ │ └── tests │ │ │ │ ├── Extensions │ │ │ │ ├── PhptTestCaseTest.php │ │ │ │ └── RepeatedTestTest.php │ │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ │ ├── Framework │ │ │ │ ├── AssertTest.php │ │ │ │ ├── BaseTestListenerTest.php │ │ │ │ ├── Constraint │ │ │ │ │ ├── ArraySubsetTest.php │ │ │ │ │ ├── CountTest.php │ │ │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ │ │ ├── ExceptionMessageTest.php │ │ │ │ │ ├── IsJsonTest.php │ │ │ │ │ ├── JsonMatches │ │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ │ └── JsonMatchesTest.php │ │ │ │ ├── ConstraintTest.php │ │ │ │ ├── SuiteTest.php │ │ │ │ ├── TestCaseTest.php │ │ │ │ ├── TestFailureTest.php │ │ │ │ ├── TestImplementorTest.php │ │ │ │ └── TestListenerTest.php │ │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── Issue74Test.php │ │ │ │ │ │ └── NewException.php │ │ │ │ │ ├── 244 │ │ │ │ │ │ └── Issue244Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ ├── Issue322Test.php │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ ├── 433 │ │ │ │ │ │ └── Issue433Test.php │ │ │ │ │ ├── 445 │ │ │ │ │ │ └── Issue445Test.php │ │ │ │ │ ├── 498 │ │ │ │ │ │ └── Issue498Test.php │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ ├── 581 │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ ├── 765 │ │ │ │ │ │ └── Issue765Test.php │ │ │ │ │ ├── 797 │ │ │ │ │ │ ├── Issue797Test.php │ │ │ │ │ │ └── bootstrap797.php │ │ │ │ │ ├── 873 │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ ├── 1149 │ │ │ │ │ │ └── Issue1149Test.php │ │ │ │ │ ├── 1216 │ │ │ │ │ │ ├── Issue1216Test.php │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ └── phpunit1216.xml │ │ │ │ │ ├── 1265 │ │ │ │ │ │ ├── Issue1265Test.php │ │ │ │ │ │ └── phpunit1265.xml │ │ │ │ │ ├── 1330 │ │ │ │ │ │ ├── Issue1330Test.php │ │ │ │ │ │ └── phpunit1330.xml │ │ │ │ │ ├── 1335 │ │ │ │ │ │ ├── Issue1335Test.php │ │ │ │ │ │ └── bootstrap1335.php │ │ │ │ │ ├── 1337 │ │ │ │ │ │ └── Issue1337Test.php │ │ │ │ │ ├── 1348 │ │ │ │ │ │ └── Issue1348Test.php │ │ │ │ │ ├── 1351 │ │ │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ │ │ └── Issue1351Test.php │ │ │ │ │ ├── 1374 │ │ │ │ │ │ └── Issue1374Test.php │ │ │ │ │ ├── 1437 │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ ├── 1468 │ │ │ │ │ │ └── Issue1468Test.php │ │ │ │ │ ├── 1471 │ │ │ │ │ │ └── Issue1471Test.php │ │ │ │ │ ├── 1472 │ │ │ │ │ │ └── Issue1472Test.php │ │ │ │ │ ├── 1570 │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ ├── 2137 │ │ │ │ │ │ └── Issue2137Test.php │ │ │ │ │ ├── 2145 │ │ │ │ │ │ └── Issue2145Test.php │ │ │ │ │ ├── 2158 │ │ │ │ │ │ ├── Issue2158Test.php │ │ │ │ │ │ └── constant.inc │ │ │ │ │ ├── 2299 │ │ │ │ │ │ └── Issue2299Test.php │ │ │ │ │ ├── 2366 │ │ │ │ │ │ └── Issue2366Test.php │ │ │ │ │ ├── 2380 │ │ │ │ │ │ └── Issue2380Test.php │ │ │ │ │ ├── 2382 │ │ │ │ │ │ └── Issue2382Test.php │ │ │ │ │ ├── 2435 │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ ├── 2731 │ │ │ │ │ │ └── Issue2731Test.php │ │ │ │ │ ├── 2758 │ │ │ │ │ │ ├── Issue2758Test.php │ │ │ │ │ │ ├── Issue2758TestListener.php │ │ │ │ │ │ └── phpunit.xml │ │ │ │ │ ├── 2811 │ │ │ │ │ │ └── Issue2811Test.php │ │ │ │ │ ├── 2972 │ │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ │ ├── 1149.phpt │ │ │ │ │ ├── 1216.phpt │ │ │ │ │ ├── 1265.phpt │ │ │ │ │ ├── 1330.phpt │ │ │ │ │ ├── 1335.phpt │ │ │ │ │ ├── 1337.phpt │ │ │ │ │ ├── 1348.phpt │ │ │ │ │ ├── 1351.phpt │ │ │ │ │ ├── 1374.phpt │ │ │ │ │ ├── 1437.phpt │ │ │ │ │ ├── 1468.phpt │ │ │ │ │ ├── 1471.phpt │ │ │ │ │ ├── 1472.phpt │ │ │ │ │ ├── 1570.phpt │ │ │ │ │ ├── 2137-filter.phpt │ │ │ │ │ ├── 2137-no_filter.phpt │ │ │ │ │ ├── 2145.phpt │ │ │ │ │ ├── 2158.phpt │ │ │ │ │ ├── 2366.phpt │ │ │ │ │ ├── 2380.phpt │ │ │ │ │ ├── 2382.phpt │ │ │ │ │ ├── 2435.phpt │ │ │ │ │ ├── 244.phpt │ │ │ │ │ ├── 2731.phpt │ │ │ │ │ ├── 2758.phpt │ │ │ │ │ ├── 2811.phpt │ │ │ │ │ ├── 2972.phpt │ │ │ │ │ ├── 322.phpt │ │ │ │ │ ├── 433.phpt │ │ │ │ │ ├── 445.phpt │ │ │ │ │ ├── 498.phpt │ │ │ │ │ ├── 503.phpt │ │ │ │ │ ├── 581.phpt │ │ │ │ │ ├── 74.phpt │ │ │ │ │ ├── 765.phpt │ │ │ │ │ ├── 797.phpt │ │ │ │ │ ├── 863.phpt │ │ │ │ │ ├── 873-php5.phpt │ │ │ │ │ └── 873-php7.phpt │ │ │ │ └── Trac │ │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ ├── 578 │ │ │ │ │ └── Issue578Test.php │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ ├── 783 │ │ │ │ │ ├── ChildSuite.php │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── TwoTest.php │ │ │ │ │ ├── 1021 │ │ │ │ │ └── Issue1021Test.php │ │ │ │ │ ├── 1021.phpt │ │ │ │ │ ├── 523.phpt │ │ │ │ │ ├── 578.phpt │ │ │ │ │ ├── 684.phpt │ │ │ │ │ └── 783.phpt │ │ │ │ ├── Runner │ │ │ │ └── BaseTestRunnerTest.php │ │ │ │ ├── TextUI │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── abstract-test-class.phpt │ │ │ │ ├── assertion.phpt │ │ │ │ ├── code-coverage-ignore.phpt │ │ │ │ ├── colors-always.phpt │ │ │ │ ├── concrete-test-class.phpt │ │ │ │ ├── custom-printer-debug.phpt │ │ │ │ ├── custom-printer-verbose.phpt │ │ │ │ ├── dataprovider-debug.phpt │ │ │ │ ├── dataprovider-issue-2833.phpt │ │ │ │ ├── dataprovider-issue-2859.phpt │ │ │ │ ├── dataprovider-issue-2922.phpt │ │ │ │ ├── dataprovider-log-xml-isolation.phpt │ │ │ │ ├── dataprovider-log-xml.phpt │ │ │ │ ├── dataprovider-testdox.phpt │ │ │ │ ├── debug.phpt │ │ │ │ ├── default-isolation.phpt │ │ │ │ ├── default.phpt │ │ │ │ ├── dependencies-clone.phpt │ │ │ │ ├── dependencies-isolation.phpt │ │ │ │ ├── dependencies.phpt │ │ │ │ ├── dependencies2-isolation.phpt │ │ │ │ ├── dependencies2.phpt │ │ │ │ ├── dependencies3-isolation.phpt │ │ │ │ ├── dependencies3.phpt │ │ │ │ ├── disable-code-coverage-ignore.phpt │ │ │ │ ├── empty-testcase.phpt │ │ │ │ ├── exception-stack.phpt │ │ │ │ ├── exclude-group-isolation.phpt │ │ │ │ ├── exclude-group.phpt │ │ │ │ ├── failure-isolation.phpt │ │ │ │ ├── failure-reverse-list.phpt │ │ │ │ ├── failure.phpt │ │ │ │ ├── fatal-isolation.phpt │ │ │ │ ├── filter-class-isolation.phpt │ │ │ │ ├── filter-class.phpt │ │ │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-number.phpt │ │ │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-only-range.phpt │ │ │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-only-string.phpt │ │ │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-range.phpt │ │ │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-regexp.phpt │ │ │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ │ │ ├── filter-dataprovider-by-string.phpt │ │ │ │ ├── filter-method-case-insensitive.phpt │ │ │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ │ │ ├── filter-method-isolation.phpt │ │ │ │ ├── filter-method.phpt │ │ │ │ ├── filter-no-results.phpt │ │ │ │ ├── forward-compatibility.phpt │ │ │ │ ├── group-isolation.phpt │ │ │ │ ├── group.phpt │ │ │ │ ├── help.phpt │ │ │ │ ├── help2.phpt │ │ │ │ ├── ini-isolation.phpt │ │ │ │ ├── list-groups.phpt │ │ │ │ ├── list-suites.phpt │ │ │ │ ├── log-json-post-66021.phpt │ │ │ │ ├── log-junit.phpt │ │ │ │ ├── log-tap.phpt │ │ │ │ ├── log-teamcity.phpt │ │ │ │ ├── mycommand.phpt │ │ │ │ ├── options-after-arguments.phpt │ │ │ │ ├── output-isolation.phpt │ │ │ │ ├── phar-extension-suppressed.phpt │ │ │ │ ├── phar-extension.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-stderr.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── repeat.phpt │ │ │ │ ├── report-useless-tests-incomplete.phpt │ │ │ │ ├── report-useless-tests-isolation.phpt │ │ │ │ ├── report-useless-tests.phpt │ │ │ │ ├── stop-on-warning-via-cli.phpt │ │ │ │ ├── stop-on-warning-via-config.phpt │ │ │ │ ├── tap.phpt │ │ │ │ ├── teamcity-inner-exceptions.phpt │ │ │ │ ├── teamcity.phpt │ │ │ │ ├── test-suffix-multiple.phpt │ │ │ │ ├── test-suffix-single.phpt │ │ │ │ ├── testdox-exclude-group.phpt │ │ │ │ ├── testdox-group.phpt │ │ │ │ ├── testdox-html.phpt │ │ │ │ ├── testdox-text.phpt │ │ │ │ ├── testdox-xml.phpt │ │ │ │ └── testdox.phpt │ │ │ │ ├── Util │ │ │ │ ├── ConfigurationTest.php │ │ │ │ ├── GetoptTest.php │ │ │ │ ├── GlobalStateTest.php │ │ │ │ ├── PHPTest.php │ │ │ │ ├── RegexTest.php │ │ │ │ ├── TestDox │ │ │ │ │ └── NamePrettifierTest.php │ │ │ │ ├── TestTest.php │ │ │ │ └── XMLTest.php │ │ │ │ ├── _files │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ArrayAccessible.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── Author.php │ │ │ │ ├── BankAccount.php │ │ │ │ ├── BankAccountTest.php │ │ │ │ ├── BankAccountTest.test.php │ │ │ │ ├── BankAccountTest2.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── BeforeAndAfterTest.php │ │ │ │ ├── BeforeClassAndAfterClassTest.php │ │ │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ │ │ ├── Book.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── ClonedDependencyTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── CoveredClass.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── DataProviderDebugTest.php │ │ │ │ ├── DataProviderDependencyTest.php │ │ │ │ ├── DataProviderFilterTest.php │ │ │ │ ├── DataProviderIncompleteTest.php │ │ │ │ ├── DataProviderIssue2833 │ │ │ │ │ ├── FirstTest.php │ │ │ │ │ └── SecondTest.php │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ └── tests │ │ │ │ │ │ └── another │ │ │ │ │ │ └── TestWithDataProviderTest.php │ │ │ │ ├── DataProviderIssue2922 │ │ │ │ │ ├── FirstTest.php │ │ │ │ │ └── SecondTest.php │ │ │ │ ├── DataProviderSkippedTest.php │ │ │ │ ├── DataProviderTest.php │ │ │ │ ├── DataProviderTestDoxTest.php │ │ │ │ ├── DependencyFailureTest.php │ │ │ │ ├── DependencySuccessTest.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── DoubleTestCase.php │ │ │ │ ├── DummyException.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ │ ├── ExceptionInSetUpTest.php │ │ │ │ ├── ExceptionInTearDownTest.php │ │ │ │ ├── ExceptionInTest.php │ │ │ │ ├── ExceptionNamespaceTest.php │ │ │ │ ├── ExceptionStackTest.php │ │ │ │ ├── ExceptionTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── FailureTest.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── IgnoreCodeCoverageClass.php │ │ │ │ ├── IgnoreCodeCoverageClassTest.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── IniTest.php │ │ │ │ ├── IsolationTest.php │ │ │ │ ├── JsonData │ │ │ │ │ ├── arrayObject.json │ │ │ │ │ └── simpleObject.json │ │ │ │ ├── MockRunner.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── MultiDependencyTest.php │ │ │ │ ├── MultipleDataProviderTest.php │ │ │ │ ├── MyCommand.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── NamespaceCoveredClass.php │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── OutputTestCase.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ │ ├── RequirementsTest.php │ │ │ │ ├── SampleArrayAccess.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── Singleton.php │ │ │ │ ├── StackTest.php │ │ │ │ ├── StatusTest.php │ │ │ │ ├── StopOnWarningTestSuite.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Success.php │ │ │ │ ├── TemplateMethodsTest.php │ │ │ │ ├── TestAutoreferenced.php │ │ │ │ ├── TestDoxGroupTest.php │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── TestIterator.php │ │ │ │ ├── TestIterator2.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── TestWithTest.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── bar.xml │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── configuration.xml │ │ │ │ ├── configuration_empty.xml │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── configuration_xinclude.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── foo.xml │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ ├── tests │ │ │ │ │ │ └── OneTest.php │ │ │ │ │ └── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ │ ├── structureExpected.xml │ │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ │ └── structureWrongNumberOfNodes.xml │ │ │ │ └── bootstrap.php │ │ │ ├── psr │ │ │ ├── cache │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── CacheException.php │ │ │ │ │ ├── CacheItemInterface.php │ │ │ │ │ ├── CacheItemPoolInterface.php │ │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── http-client │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── ClientExceptionInterface.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── NetworkExceptionInterface.php │ │ │ │ │ └── RequestExceptionInterface.php │ │ │ ├── http-message │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ ├── ResponseInterface.php │ │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ │ ├── StreamInterface.php │ │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ │ └── UriInterface.php │ │ │ └── log │ │ │ │ ├── LICENSE │ │ │ │ ├── Psr │ │ │ │ └── Log │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ ├── NullLogger.php │ │ │ │ │ └── Test │ │ │ │ │ ├── DummyTest.php │ │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ │ └── TestLogger.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── ralouphie │ │ │ └── getallheaders │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── getallheaders.php │ │ │ ├── sebastian │ │ │ ├── code-unit-reverse-lookup │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ └── Wizard.php │ │ │ │ └── tests │ │ │ │ │ └── WizardTest.php │ │ │ ├── comparator │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── build │ │ │ │ │ └── travis-ci.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ │ ├── ArrayComparator.php │ │ │ │ │ ├── Comparator.php │ │ │ │ │ ├── ComparisonFailure.php │ │ │ │ │ ├── DOMNodeComparator.php │ │ │ │ │ ├── DateTimeComparator.php │ │ │ │ │ ├── DoubleComparator.php │ │ │ │ │ ├── ExceptionComparator.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── MockObjectComparator.php │ │ │ │ │ ├── NumericComparator.php │ │ │ │ │ ├── ObjectComparator.php │ │ │ │ │ ├── ResourceComparator.php │ │ │ │ │ ├── ScalarComparator.php │ │ │ │ │ ├── SplObjectStorageComparator.php │ │ │ │ │ └── TypeComparator.php │ │ │ │ └── tests │ │ │ │ │ ├── ArrayComparatorTest.php │ │ │ │ │ ├── DOMNodeComparatorTest.php │ │ │ │ │ ├── DateTimeComparatorTest.php │ │ │ │ │ ├── DoubleComparatorTest.php │ │ │ │ │ ├── ExceptionComparatorTest.php │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ ├── MockObjectComparatorTest.php │ │ │ │ │ ├── NumericComparatorTest.php │ │ │ │ │ ├── ObjectComparatorTest.php │ │ │ │ │ ├── ResourceComparatorTest.php │ │ │ │ │ ├── ScalarComparatorTest.php │ │ │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ │ │ ├── TypeComparatorTest.php │ │ │ │ │ ├── _files │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── Book.php │ │ │ │ │ ├── ClassWithToString.php │ │ │ │ │ ├── SampleClass.php │ │ │ │ │ ├── Struct.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassComparator.php │ │ │ │ │ ├── autoload.php │ │ │ │ │ └── bootstrap.php │ │ │ ├── diff │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ ├── Chunk.php │ │ │ │ │ ├── Diff.php │ │ │ │ │ ├── Differ.php │ │ │ │ │ ├── LCS │ │ │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ │ ├── Line.php │ │ │ │ │ └── Parser.php │ │ │ │ └── tests │ │ │ │ │ ├── ChunkTest.php │ │ │ │ │ ├── DiffTest.php │ │ │ │ │ ├── DifferTest.php │ │ │ │ │ ├── LCS │ │ │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ │ │ └── TimeEfficientImplementationTest.php │ │ │ │ │ ├── LineTest.php │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ └── fixtures │ │ │ │ │ ├── patch.txt │ │ │ │ │ └── patch2.txt │ │ │ ├── environment │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ ├── Console.php │ │ │ │ │ └── Runtime.php │ │ │ │ └── tests │ │ │ │ │ ├── ConsoleTest.php │ │ │ │ │ └── RuntimeTest.php │ │ │ ├── exporter │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ │ └── Exporter.php │ │ │ │ └── tests │ │ │ │ │ └── ExporterTest.php │ │ │ ├── global-state │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ │ ├── Blacklist.php │ │ │ │ │ ├── CodeExporter.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Restorer.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ └── Snapshot.php │ │ │ │ └── tests │ │ │ │ │ ├── BlacklistTest.php │ │ │ │ │ ├── SnapshotTest.php │ │ │ │ │ └── _fixture │ │ │ │ │ ├── BlacklistedChildClass.php │ │ │ │ │ ├── BlacklistedClass.php │ │ │ │ │ ├── BlacklistedImplementor.php │ │ │ │ │ ├── BlacklistedInterface.php │ │ │ │ │ ├── SnapshotClass.php │ │ │ │ │ ├── SnapshotDomDocument.php │ │ │ │ │ ├── SnapshotFunctions.php │ │ │ │ │ └── SnapshotTrait.php │ │ │ ├── object-enumerator │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── .travis.yml │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml │ │ │ │ ├── src │ │ │ │ │ ├── Enumerator.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── InvalidArgumentException.php │ │ │ │ └── tests │ │ │ │ │ ├── EnumeratorTest.php │ │ │ │ │ └── Fixtures │ │ │ │ │ └── ExceptionThrower.php │ │ │ ├── recursion-context │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── composer.json │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── src │ │ │ │ │ ├── Context.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── InvalidArgumentException.php │ │ │ │ └── tests │ │ │ │ │ └── ContextTest.php │ │ │ ├── resource-operations │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.xml │ │ │ │ ├── build │ │ │ │ │ └── generate.php │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── ResourceOperations.php │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .php_cs │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── Version.php │ │ │ ├── seld │ │ │ ├── jsonlint │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ │ └── Seld │ │ │ │ │ └── JsonLint │ │ │ │ │ ├── DuplicateKeyException.php │ │ │ │ │ ├── JsonParser.php │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── ParsingException.php │ │ │ │ │ └── Undefined.php │ │ │ └── phar-utils │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── composer.lock │ │ │ │ └── src │ │ │ │ ├── Linter.php │ │ │ │ └── Timestamps.php │ │ │ ├── squizlabs │ │ │ └── php_codesniffer │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CodeSniffer.conf.dist │ │ │ │ ├── CodeSniffer.php │ │ │ │ ├── CodeSniffer │ │ │ │ ├── CLI.php │ │ │ │ ├── DocGenerators │ │ │ │ │ ├── Generator.php │ │ │ │ │ ├── HTML.php │ │ │ │ │ ├── Markdown.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Exception.php │ │ │ │ ├── File.php │ │ │ │ ├── Fixer.php │ │ │ │ ├── Report.php │ │ │ │ ├── Reporting.php │ │ │ │ ├── Reports │ │ │ │ │ ├── Cbf.php │ │ │ │ │ ├── Checkstyle.php │ │ │ │ │ ├── Csv.php │ │ │ │ │ ├── Diff.php │ │ │ │ │ ├── Emacs.php │ │ │ │ │ ├── Full.php │ │ │ │ │ ├── Gitblame.php │ │ │ │ │ ├── Hgblame.php │ │ │ │ │ ├── Info.php │ │ │ │ │ ├── Json.php │ │ │ │ │ ├── Junit.php │ │ │ │ │ ├── Notifysend.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── Summary.php │ │ │ │ │ ├── Svnblame.php │ │ │ │ │ ├── VersionControl.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Sniff.php │ │ │ │ ├── Standards │ │ │ │ │ ├── AbstractPatternSniff.php │ │ │ │ │ ├── AbstractScopeSniff.php │ │ │ │ │ ├── AbstractVariableSniff.php │ │ │ │ │ ├── Generic │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── FixmeStandard.xml │ │ │ │ │ │ │ │ └── TodoStandard.xml │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ │ │ │ │ └── JSHintStandard.xml │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ │ │ │ │ └── OneInterfacePerFileStandard.xml │ │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ │ │ │ │ └── SpaceAfterCastStandard.xml │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ │ │ │ │ └── NestingLevelStandard.xml │ │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── DocCommentSniff.php │ │ │ │ │ │ │ │ ├── FixmeSniff.php │ │ │ │ │ │ │ │ └── TodoSniff.php │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ └── InlineControlStructureSniff.php │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── CSSLintSniff.php │ │ │ │ │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ │ │ │ │ ├── ESLintSniff.php │ │ │ │ │ │ │ │ └── JSHintSniff.php │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ │ │ │ │ ├── LineLengthSniff.php │ │ │ │ │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ │ │ │ │ └── SpaceAfterNotSniff.php │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ │ │ │ │ └── NestingLevelSniff.php │ │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ │ │ │ │ ├── SyntaxSniff.php │ │ │ │ │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── IncorrectPatternException.php │ │ │ │ │ ├── MySource │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ │ │ │ │ ├── Channels │ │ │ │ │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ │ │ │ │ └── UnusedSystemSniff.php │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ └── FunctionCommentSniff.php │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ │ │ │ │ └── FirebugConsoleSniff.php │ │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ │ ├── AssignThisSniff.php │ │ │ │ │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ │ │ │ │ └── Strings │ │ │ │ │ │ │ │ └── JoinStringsSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── PEAR │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ │ │ │ │ └── InlineCommentStandard.xml │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ ├── IncludingFileStandard.xml │ │ │ │ │ │ │ │ └── LineLengthStandard.xml │ │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ │ └── InlineCommentSniff.php │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ │ └── MultiLineConditionSniff.php │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ └── IncludingFileSniff.php │ │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── PHPCS │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── PSR1 │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ │ └── Files │ │ │ │ │ │ │ │ └── SideEffectsStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ └── SideEffectsSniff.php │ │ │ │ │ │ │ └── Methods │ │ │ │ │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── PSR2 │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ │ │ │ │ ├── Methods │ │ │ │ │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ │ │ │ │ └── Namespaces │ │ │ │ │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ │ │ │ │ └── UseDeclarationStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ │ │ │ │ └── EndFileNewlineSniff.php │ │ │ │ │ │ │ ├── Methods │ │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ │ │ │ │ └── MethodDeclarationSniff.php │ │ │ │ │ │ │ └── Namespaces │ │ │ │ │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── Squiz │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ │ │ │ │ └── SelfMemberReferenceStandard.xml │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentStandard.xml │ │ │ │ │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ │ │ │ │ ├── Scope │ │ │ │ │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ │ └── EchoedStringsStandard.xml │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ │ │ │ │ ├── FunctionOpeningBraceStandard.xml │ │ │ │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ │ │ │ │ └── SemicolonSpacingStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ │ ├── Arrays │ │ │ │ │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ │ │ │ │ ├── MissingColonSniff.php │ │ │ │ │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ │ │ │ │ ├── OpacitySniff.php │ │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ │ └── ShorthandSizeSniff.php │ │ │ │ │ │ │ ├── Classes │ │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ │ │ │ │ └── ValidClassNameSniff.php │ │ │ │ │ │ │ ├── Commenting │ │ │ │ │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ │ │ │ │ └── VariableCommentSniff.php │ │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── JSLintSniff.php │ │ │ │ │ │ │ │ └── JavaScriptLintSniff.php │ │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ │ └── FileExtensionSniff.php │ │ │ │ │ │ │ ├── Formatting │ │ │ │ │ │ │ │ └── OperatorBracketSniff.php │ │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ │ │ │ │ ├── Operators │ │ │ │ │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ │ │ │ │ ├── PHP │ │ │ │ │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ │ │ │ │ ├── DisallowObEndFlushSniff.php │ │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ │ │ │ │ ├── EvalSniff.php │ │ │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ │ │ │ │ ├── HeredocSniff.php │ │ │ │ │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ │ │ │ │ ├── Scope │ │ │ │ │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ │ │ │ │ └── StaticThisUsageSniff.php │ │ │ │ │ │ │ ├── Strings │ │ │ │ │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ │ │ │ │ └── EchoedStringsSniff.php │ │ │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ └── Zend │ │ │ │ │ │ ├── Docs │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── CodeAnalyzerStandard.xml │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── ClosingTagStandard.xml │ │ │ │ │ │ └── NamingConventions │ │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ └── CodeAnalyzerSniff.php │ │ │ │ │ │ ├── Files │ │ │ │ │ │ │ └── ClosingTagSniff.php │ │ │ │ │ │ └── NamingConventions │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── Tokenizers │ │ │ │ │ ├── CSS.php │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── JS.php │ │ │ │ │ └── PHP.php │ │ │ │ └── Tokens.php │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── licence.txt │ │ │ │ ├── phpcs.xml.dist │ │ │ │ └── scripts │ │ │ │ ├── build-phar.php │ │ │ │ ├── phpcbf │ │ │ │ ├── phpcbf.bat │ │ │ │ ├── phpcs │ │ │ │ ├── phpcs-svn-pre-commit │ │ │ │ └── phpcs.bat │ │ │ ├── symfony │ │ │ ├── console │ │ │ │ ├── .gitignore │ │ │ │ ├── Application.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Command │ │ │ │ │ ├── Command.php │ │ │ │ │ ├── HelpCommand.php │ │ │ │ │ ├── ListCommand.php │ │ │ │ │ └── LockableTrait.php │ │ │ │ ├── CommandLoader │ │ │ │ │ ├── CommandLoaderInterface.php │ │ │ │ │ ├── ContainerCommandLoader.php │ │ │ │ │ └── FactoryCommandLoader.php │ │ │ │ ├── ConsoleEvents.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── AddConsoleCommandPass.php │ │ │ │ ├── Descriptor │ │ │ │ │ ├── ApplicationDescription.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── DescriptorInterface.php │ │ │ │ │ ├── JsonDescriptor.php │ │ │ │ │ ├── MarkdownDescriptor.php │ │ │ │ │ ├── TextDescriptor.php │ │ │ │ │ └── XmlDescriptor.php │ │ │ │ ├── Event │ │ │ │ │ ├── ConsoleCommandEvent.php │ │ │ │ │ ├── ConsoleErrorEvent.php │ │ │ │ │ ├── ConsoleEvent.php │ │ │ │ │ ├── ConsoleExceptionEvent.php │ │ │ │ │ └── ConsoleTerminateEvent.php │ │ │ │ ├── EventListener │ │ │ │ │ └── ErrorListener.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CommandNotFoundException.php │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── InvalidOptionException.php │ │ │ │ │ ├── LogicException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── OutputFormatter.php │ │ │ │ │ ├── OutputFormatterInterface.php │ │ │ │ │ ├── OutputFormatterStyle.php │ │ │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ │ │ └── OutputFormatterStyleStack.php │ │ │ │ ├── Helper │ │ │ │ │ ├── DebugFormatterHelper.php │ │ │ │ │ ├── DescriptorHelper.php │ │ │ │ │ ├── FormatterHelper.php │ │ │ │ │ ├── Helper.php │ │ │ │ │ ├── HelperInterface.php │ │ │ │ │ ├── HelperSet.php │ │ │ │ │ ├── InputAwareHelper.php │ │ │ │ │ ├── ProcessHelper.php │ │ │ │ │ ├── ProgressBar.php │ │ │ │ │ ├── ProgressIndicator.php │ │ │ │ │ ├── QuestionHelper.php │ │ │ │ │ ├── SymfonyQuestionHelper.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── TableCell.php │ │ │ │ │ ├── TableSeparator.php │ │ │ │ │ └── TableStyle.php │ │ │ │ ├── Input │ │ │ │ │ ├── ArgvInput.php │ │ │ │ │ ├── ArrayInput.php │ │ │ │ │ ├── Input.php │ │ │ │ │ ├── InputArgument.php │ │ │ │ │ ├── InputAwareInterface.php │ │ │ │ │ ├── InputDefinition.php │ │ │ │ │ ├── InputInterface.php │ │ │ │ │ ├── InputOption.php │ │ │ │ │ ├── StreamableInputInterface.php │ │ │ │ │ └── StringInput.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Logger │ │ │ │ │ └── ConsoleLogger.php │ │ │ │ ├── Output │ │ │ │ │ ├── BufferedOutput.php │ │ │ │ │ ├── ConsoleOutput.php │ │ │ │ │ ├── ConsoleOutputInterface.php │ │ │ │ │ ├── NullOutput.php │ │ │ │ │ ├── Output.php │ │ │ │ │ ├── OutputInterface.php │ │ │ │ │ └── StreamOutput.php │ │ │ │ ├── Question │ │ │ │ │ ├── ChoiceQuestion.php │ │ │ │ │ ├── ConfirmationQuestion.php │ │ │ │ │ └── Question.php │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ └── bin │ │ │ │ │ │ └── hiddeninput.exe │ │ │ │ ├── Style │ │ │ │ │ ├── OutputStyle.php │ │ │ │ │ ├── StyleInterface.php │ │ │ │ │ └── SymfonyStyle.php │ │ │ │ ├── Terminal.php │ │ │ │ ├── Tester │ │ │ │ │ ├── ApplicationTester.php │ │ │ │ │ └── CommandTester.php │ │ │ │ ├── Tests │ │ │ │ │ ├── ApplicationTest.php │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── CommandTest.php │ │ │ │ │ │ ├── HelpCommandTest.php │ │ │ │ │ │ ├── ListCommandTest.php │ │ │ │ │ │ └── LockableTraitTest.php │ │ │ │ │ ├── CommandLoader │ │ │ │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ │ │ │ └── FactoryCommandLoaderTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ └── AddConsoleCommandPassTest.php │ │ │ │ │ ├── Descriptor │ │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ │ ├── ApplicationDescriptionTest.php │ │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ │ │ ├── ObjectsProvider.php │ │ │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ │ │ └── XmlDescriptorTest.php │ │ │ │ │ ├── EventListener │ │ │ │ │ │ └── ErrorListenerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── BarBucCommand.php │ │ │ │ │ │ ├── DescriptorApplication1.php │ │ │ │ │ │ ├── DescriptorApplication2.php │ │ │ │ │ │ ├── DescriptorApplicationMbString.php │ │ │ │ │ │ ├── DescriptorCommand1.php │ │ │ │ │ │ ├── DescriptorCommand2.php │ │ │ │ │ │ ├── DescriptorCommand3.php │ │ │ │ │ │ ├── DescriptorCommand4.php │ │ │ │ │ │ ├── DescriptorCommandMbString.php │ │ │ │ │ │ ├── DummyOutput.php │ │ │ │ │ │ ├── Foo1Command.php │ │ │ │ │ │ ├── Foo2Command.php │ │ │ │ │ │ ├── Foo3Command.php │ │ │ │ │ │ ├── Foo4Command.php │ │ │ │ │ │ ├── Foo5Command.php │ │ │ │ │ │ ├── Foo6Command.php │ │ │ │ │ │ ├── FooCommand.php │ │ │ │ │ │ ├── FooHiddenCommand.php │ │ │ │ │ │ ├── FooLock2Command.php │ │ │ │ │ │ ├── FooLockCommand.php │ │ │ │ │ │ ├── FooOptCommand.php │ │ │ │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ │ │ │ ├── FooSubnamespaced1Command.php │ │ │ │ │ │ ├── FooSubnamespaced2Command.php │ │ │ │ │ │ ├── FoobarCommand.php │ │ │ │ │ │ ├── Style │ │ │ │ │ │ │ └── SymfonyStyle │ │ │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ │ ├── command_0.php │ │ │ │ │ │ │ │ ├── command_1.php │ │ │ │ │ │ │ │ ├── command_10.php │ │ │ │ │ │ │ │ ├── command_11.php │ │ │ │ │ │ │ │ ├── command_12.php │ │ │ │ │ │ │ │ ├── command_13.php │ │ │ │ │ │ │ │ ├── command_14.php │ │ │ │ │ │ │ │ ├── command_15.php │ │ │ │ │ │ │ │ ├── command_16.php │ │ │ │ │ │ │ │ ├── command_17.php │ │ │ │ │ │ │ │ ├── command_2.php │ │ │ │ │ │ │ │ ├── command_3.php │ │ │ │ │ │ │ │ ├── command_4.php │ │ │ │ │ │ │ │ ├── command_5.php │ │ │ │ │ │ │ │ ├── command_6.php │ │ │ │ │ │ │ │ ├── command_7.php │ │ │ │ │ │ │ │ ├── command_8.php │ │ │ │ │ │ │ │ ├── command_9.php │ │ │ │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ │ │ │ └── output │ │ │ │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ │ │ │ ├── output_0.txt │ │ │ │ │ │ │ │ ├── output_1.txt │ │ │ │ │ │ │ │ ├── output_10.txt │ │ │ │ │ │ │ │ ├── output_11.txt │ │ │ │ │ │ │ │ ├── output_12.txt │ │ │ │ │ │ │ │ ├── output_13.txt │ │ │ │ │ │ │ │ ├── output_14.txt │ │ │ │ │ │ │ │ ├── output_15.txt │ │ │ │ │ │ │ │ ├── output_16.txt │ │ │ │ │ │ │ │ ├── output_17.txt │ │ │ │ │ │ │ │ ├── output_2.txt │ │ │ │ │ │ │ │ ├── output_3.txt │ │ │ │ │ │ │ │ ├── output_4.txt │ │ │ │ │ │ │ │ ├── output_5.txt │ │ │ │ │ │ │ │ ├── output_6.txt │ │ │ │ │ │ │ │ ├── output_7.txt │ │ │ │ │ │ │ │ ├── output_8.txt │ │ │ │ │ │ │ │ └── output_9.txt │ │ │ │ │ │ ├── TestAmbiguousCommandRegistering.php │ │ │ │ │ │ ├── TestAmbiguousCommandRegistering2.php │ │ │ │ │ │ ├── TestCommand.php │ │ │ │ │ │ ├── application_1.json │ │ │ │ │ │ ├── application_1.md │ │ │ │ │ │ ├── application_1.txt │ │ │ │ │ │ ├── application_1.xml │ │ │ │ │ │ ├── application_2.json │ │ │ │ │ │ ├── application_2.md │ │ │ │ │ │ ├── application_2.txt │ │ │ │ │ │ ├── application_2.xml │ │ │ │ │ │ ├── application_filtered_namespace.txt │ │ │ │ │ │ ├── application_gethelp.txt │ │ │ │ │ │ ├── application_mbstring.md │ │ │ │ │ │ ├── application_mbstring.txt │ │ │ │ │ │ ├── application_renderexception1.txt │ │ │ │ │ │ ├── application_renderexception2.txt │ │ │ │ │ │ ├── application_renderexception3.txt │ │ │ │ │ │ ├── application_renderexception3decorated.txt │ │ │ │ │ │ ├── application_renderexception4.txt │ │ │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ │ │ │ ├── application_renderexception_linebreaks.txt │ │ │ │ │ │ ├── application_run1.txt │ │ │ │ │ │ ├── application_run2.txt │ │ │ │ │ │ ├── application_run3.txt │ │ │ │ │ │ ├── application_run4.txt │ │ │ │ │ │ ├── command_1.json │ │ │ │ │ │ ├── command_1.md │ │ │ │ │ │ ├── command_1.txt │ │ │ │ │ │ ├── command_1.xml │ │ │ │ │ │ ├── command_2.json │ │ │ │ │ │ ├── command_2.md │ │ │ │ │ │ ├── command_2.txt │ │ │ │ │ │ ├── command_2.xml │ │ │ │ │ │ ├── command_mbstring.md │ │ │ │ │ │ ├── command_mbstring.txt │ │ │ │ │ │ ├── input_argument_1.json │ │ │ │ │ │ ├── input_argument_1.md │ │ │ │ │ │ ├── input_argument_1.txt │ │ │ │ │ │ ├── input_argument_1.xml │ │ │ │ │ │ ├── input_argument_2.json │ │ │ │ │ │ ├── input_argument_2.md │ │ │ │ │ │ ├── input_argument_2.txt │ │ │ │ │ │ ├── input_argument_2.xml │ │ │ │ │ │ ├── input_argument_3.json │ │ │ │ │ │ ├── input_argument_3.md │ │ │ │ │ │ ├── input_argument_3.txt │ │ │ │ │ │ ├── input_argument_3.xml │ │ │ │ │ │ ├── input_argument_4.json │ │ │ │ │ │ ├── input_argument_4.md │ │ │ │ │ │ ├── input_argument_4.txt │ │ │ │ │ │ ├── input_argument_4.xml │ │ │ │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ │ │ │ ├── input_argument_with_style.json │ │ │ │ │ │ ├── input_argument_with_style.md │ │ │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ │ │ ├── input_argument_with_style.xml │ │ │ │ │ │ ├── input_definition_1.json │ │ │ │ │ │ ├── input_definition_1.md │ │ │ │ │ │ ├── input_definition_1.txt │ │ │ │ │ │ ├── input_definition_1.xml │ │ │ │ │ │ ├── input_definition_2.json │ │ │ │ │ │ ├── input_definition_2.md │ │ │ │ │ │ ├── input_definition_2.txt │ │ │ │ │ │ ├── input_definition_2.xml │ │ │ │ │ │ ├── input_definition_3.json │ │ │ │ │ │ ├── input_definition_3.md │ │ │ │ │ │ ├── input_definition_3.txt │ │ │ │ │ │ ├── input_definition_3.xml │ │ │ │ │ │ ├── input_definition_4.json │ │ │ │ │ │ ├── input_definition_4.md │ │ │ │ │ │ ├── input_definition_4.txt │ │ │ │ │ │ ├── input_definition_4.xml │ │ │ │ │ │ ├── input_option_1.json │ │ │ │ │ │ ├── input_option_1.md │ │ │ │ │ │ ├── input_option_1.txt │ │ │ │ │ │ ├── input_option_1.xml │ │ │ │ │ │ ├── input_option_2.json │ │ │ │ │ │ ├── input_option_2.md │ │ │ │ │ │ ├── input_option_2.txt │ │ │ │ │ │ ├── input_option_2.xml │ │ │ │ │ │ ├── input_option_3.json │ │ │ │ │ │ ├── input_option_3.md │ │ │ │ │ │ ├── input_option_3.txt │ │ │ │ │ │ ├── input_option_3.xml │ │ │ │ │ │ ├── input_option_4.json │ │ │ │ │ │ ├── input_option_4.md │ │ │ │ │ │ ├── input_option_4.txt │ │ │ │ │ │ ├── input_option_4.xml │ │ │ │ │ │ ├── input_option_5.json │ │ │ │ │ │ ├── input_option_5.md │ │ │ │ │ │ ├── input_option_5.txt │ │ │ │ │ │ ├── input_option_5.xml │ │ │ │ │ │ ├── input_option_6.json │ │ │ │ │ │ ├── input_option_6.md │ │ │ │ │ │ ├── input_option_6.txt │ │ │ │ │ │ ├── input_option_6.xml │ │ │ │ │ │ ├── input_option_with_default_inf_value.json │ │ │ │ │ │ ├── input_option_with_default_inf_value.md │ │ │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ │ │ │ ├── input_option_with_style.json │ │ │ │ │ │ ├── input_option_with_style.md │ │ │ │ │ │ ├── input_option_with_style.txt │ │ │ │ │ │ ├── input_option_with_style.xml │ │ │ │ │ │ ├── input_option_with_style_array.json │ │ │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ │ │ ├── input_option_with_style_array.xml │ │ │ │ │ │ └── stream_output_file.txt │ │ │ │ │ ├── Formatter │ │ │ │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ │ │ │ ├── OutputFormatterStyleTest.php │ │ │ │ │ │ └── OutputFormatterTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ │ │ │ ├── FormatterHelperTest.php │ │ │ │ │ │ ├── HelperSetTest.php │ │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ │ ├── ProcessHelperTest.php │ │ │ │ │ │ ├── ProgressBarTest.php │ │ │ │ │ │ ├── ProgressIndicatorTest.php │ │ │ │ │ │ ├── QuestionHelperTest.php │ │ │ │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ │ │ │ ├── TableStyleTest.php │ │ │ │ │ │ └── TableTest.php │ │ │ │ │ ├── Input │ │ │ │ │ │ ├── ArgvInputTest.php │ │ │ │ │ │ ├── ArrayInputTest.php │ │ │ │ │ │ ├── InputArgumentTest.php │ │ │ │ │ │ ├── InputDefinitionTest.php │ │ │ │ │ │ ├── InputOptionTest.php │ │ │ │ │ │ ├── InputTest.php │ │ │ │ │ │ └── StringInputTest.php │ │ │ │ │ ├── Logger │ │ │ │ │ │ └── ConsoleLoggerTest.php │ │ │ │ │ ├── Output │ │ │ │ │ │ ├── ConsoleOutputTest.php │ │ │ │ │ │ ├── NullOutputTest.php │ │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ │ └── StreamOutputTest.php │ │ │ │ │ ├── Question │ │ │ │ │ │ ├── ChoiceQuestionTest.php │ │ │ │ │ │ └── ConfirmationQuestionTest.php │ │ │ │ │ ├── Style │ │ │ │ │ │ └── SymfonyStyleTest.php │ │ │ │ │ ├── TerminalTest.php │ │ │ │ │ └── Tester │ │ │ │ │ │ ├── ApplicationTesterTest.php │ │ │ │ │ │ └── CommandTesterTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── css-selector │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CssSelector.php │ │ │ │ ├── CssSelectorConverter.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── ExpressionErrorException.php │ │ │ │ │ ├── InternalErrorException.php │ │ │ │ │ ├── ParseException.php │ │ │ │ │ └── SyntaxErrorException.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Node │ │ │ │ │ ├── AbstractNode.php │ │ │ │ │ ├── AttributeNode.php │ │ │ │ │ ├── ClassNode.php │ │ │ │ │ ├── CombinedSelectorNode.php │ │ │ │ │ ├── ElementNode.php │ │ │ │ │ ├── FunctionNode.php │ │ │ │ │ ├── HashNode.php │ │ │ │ │ ├── NegationNode.php │ │ │ │ │ ├── NodeInterface.php │ │ │ │ │ ├── PseudoNode.php │ │ │ │ │ ├── SelectorNode.php │ │ │ │ │ └── Specificity.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── CommentHandler.php │ │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ │ ├── HashHandler.php │ │ │ │ │ │ ├── IdentifierHandler.php │ │ │ │ │ │ ├── NumberHandler.php │ │ │ │ │ │ ├── StringHandler.php │ │ │ │ │ │ └── WhitespaceHandler.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ ├── Reader.php │ │ │ │ │ ├── Shortcut │ │ │ │ │ │ ├── ClassParser.php │ │ │ │ │ │ ├── ElementParser.php │ │ │ │ │ │ ├── EmptyStringParser.php │ │ │ │ │ │ └── HashParser.php │ │ │ │ │ ├── Token.php │ │ │ │ │ ├── TokenStream.php │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ ├── Tokenizer.php │ │ │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ │ │ └── TokenizerPatterns.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── CssSelectorConverterTest.php │ │ │ │ │ ├── CssSelectorTest.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ │ │ ├── ClassNodeTest.php │ │ │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ │ │ ├── ElementNodeTest.php │ │ │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ │ │ ├── HashNodeTest.php │ │ │ │ │ │ ├── NegationNodeTest.php │ │ │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ │ │ └── SpecificityTest.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ ├── Shortcut │ │ │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ │ │ └── HashParserTest.php │ │ │ │ │ │ └── TokenStreamTest.php │ │ │ │ │ └── XPath │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── ids.html │ │ │ │ │ │ ├── lang.xml │ │ │ │ │ │ └── shakespear.html │ │ │ │ │ │ └── TranslatorTest.php │ │ │ │ ├── XPath │ │ │ │ │ ├── Extension │ │ │ │ │ │ ├── AbstractExtension.php │ │ │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ │ │ ├── CombinationExtension.php │ │ │ │ │ │ ├── ExtensionInterface.php │ │ │ │ │ │ ├── FunctionExtension.php │ │ │ │ │ │ ├── HtmlExtension.php │ │ │ │ │ │ ├── NodeExtension.php │ │ │ │ │ │ └── PseudoClassExtension.php │ │ │ │ │ ├── Translator.php │ │ │ │ │ ├── TranslatorInterface.php │ │ │ │ │ └── XPathExpr.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── debug │ │ │ │ ├── .gitignore │ │ │ │ ├── BufferingLogger.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Debug.php │ │ │ │ ├── DebugClassLoader.php │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ │ ├── ContextErrorException.php │ │ │ │ │ ├── FatalErrorException.php │ │ │ │ │ ├── FatalThrowableError.php │ │ │ │ │ ├── FlattenException.php │ │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ │ ├── SilencedErrorContext.php │ │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ │ └── UndefinedMethodException.php │ │ │ │ ├── ExceptionHandler.php │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ └── ext │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── config.m4 │ │ │ │ │ │ ├── config.w32 │ │ │ │ │ │ ├── php_symfony_debug.h │ │ │ │ │ │ ├── symfony_debug.c │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── 001.phpt │ │ │ │ │ │ ├── 002.phpt │ │ │ │ │ │ ├── 002_1.phpt │ │ │ │ │ │ └── 003.phpt │ │ │ │ ├── Tests │ │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── AnnotatedClass.php │ │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ │ ├── DefinitionInEvaluatedCode.php │ │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ │ │ │ │ ├── ExtendedFinalMethod.php │ │ │ │ │ │ ├── FinalClasses.php │ │ │ │ │ │ ├── FinalMethod.php │ │ │ │ │ │ ├── FinalMethod2Trait.php │ │ │ │ │ │ ├── InternalClass.php │ │ │ │ │ │ ├── InternalInterface.php │ │ │ │ │ │ ├── InternalTrait.php │ │ │ │ │ │ ├── InternalTrait2.php │ │ │ │ │ │ ├── LoggerThatSetAnErrorHandler.php │ │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ │ ├── Throwing.php │ │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ │ ├── TraitWithInternalMethod.php │ │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ │ ├── psr4 │ │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ │ ├── Fixtures2 │ │ │ │ │ │ └── RequiredTwice.php │ │ │ │ │ ├── HeaderMock.php │ │ │ │ │ └── phpt │ │ │ │ │ │ ├── debug_class_loader.phpt │ │ │ │ │ │ ├── decorate_exception_hander.phpt │ │ │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── dom-crawler │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Crawler.php │ │ │ │ ├── Field │ │ │ │ │ ├── ChoiceFormField.php │ │ │ │ │ ├── FileFormField.php │ │ │ │ │ ├── FormField.php │ │ │ │ │ ├── InputFormField.php │ │ │ │ │ └── TextareaFormField.php │ │ │ │ ├── Form.php │ │ │ │ ├── FormFieldRegistry.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Link.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── CrawlerTest.php │ │ │ │ │ ├── Field │ │ │ │ │ │ ├── ChoiceFormFieldTest.php │ │ │ │ │ │ ├── FileFormFieldTest.php │ │ │ │ │ │ ├── FormFieldTest.php │ │ │ │ │ │ ├── FormFieldTestCase.php │ │ │ │ │ │ ├── InputFormFieldTest.php │ │ │ │ │ │ └── TextareaFormFieldTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── no-extension │ │ │ │ │ │ └── windows-1250.html │ │ │ │ │ ├── FormTest.php │ │ │ │ │ └── LinkTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── filesystem │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── IOException.php │ │ │ │ │ └── IOExceptionInterface.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── LICENSE │ │ │ │ ├── LockHandler.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── ExceptionTest.php │ │ │ │ │ ├── FilesystemTest.php │ │ │ │ │ ├── FilesystemTestCase.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── MockStream │ │ │ │ │ │ │ └── MockStream.php │ │ │ │ │ └── LockHandlerTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── finder │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Comparator │ │ │ │ │ ├── Comparator.php │ │ │ │ │ ├── DateComparator.php │ │ │ │ │ └── NumberComparator.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ └── ExceptionInterface.php │ │ │ │ ├── Finder.php │ │ │ │ ├── Glob.php │ │ │ │ ├── Iterator │ │ │ │ │ ├── CustomFilterIterator.php │ │ │ │ │ ├── DateRangeFilterIterator.php │ │ │ │ │ ├── DepthRangeFilterIterator.php │ │ │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ │ │ ├── FileTypeFilterIterator.php │ │ │ │ │ ├── FilecontentFilterIterator.php │ │ │ │ │ ├── FilenameFilterIterator.php │ │ │ │ │ ├── FilterIterator.php │ │ │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ │ │ ├── PathFilterIterator.php │ │ │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ │ │ ├── SizeRangeFilterIterator.php │ │ │ │ │ └── SortableIterator.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SplFileInfo.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Comparator │ │ │ │ │ │ ├── ComparatorTest.php │ │ │ │ │ │ ├── DateComparatorTest.php │ │ │ │ │ │ └── NumberComparatorTest.php │ │ │ │ │ ├── FinderTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── .dot │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ │ └── abc.dat │ │ │ │ │ │ │ │ └── ab.dat │ │ │ │ │ │ │ └── a.dat │ │ │ │ │ │ ├── copy │ │ │ │ │ │ │ └── A │ │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ │ │ │ └── a.dat.copy │ │ │ │ │ │ ├── dolor.txt │ │ │ │ │ │ ├── ipsum.txt │ │ │ │ │ │ ├── lorem.txt │ │ │ │ │ │ ├── one │ │ │ │ │ │ │ ├── .dot │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ │ │ │ └── dir │ │ │ │ │ │ │ │ └── bar.dat │ │ │ │ │ │ └── with space │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── GlobTest.php │ │ │ │ │ └── Iterator │ │ │ │ │ │ ├── CustomFilterIteratorTest.php │ │ │ │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ │ │ │ ├── FilterIteratorTest.php │ │ │ │ │ │ ├── Iterator.php │ │ │ │ │ │ ├── IteratorTestCase.php │ │ │ │ │ │ ├── MockFileListIterator.php │ │ │ │ │ │ ├── MockSplFileInfo.php │ │ │ │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ │ │ │ ├── PathFilterIteratorTest.php │ │ │ │ │ │ ├── RealIteratorTestCase.php │ │ │ │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ │ │ │ └── SortableIteratorTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── polyfill-ctype │ │ │ │ ├── Ctype.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── polyfill-intl-idn │ │ │ │ ├── Idn.php │ │ │ │ ├── Info.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ └── unidata │ │ │ │ │ │ ├── DisallowedRanges.php │ │ │ │ │ │ ├── Regex.php │ │ │ │ │ │ ├── deviation.php │ │ │ │ │ │ ├── disallowed.php │ │ │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ │ │ ├── ignored.php │ │ │ │ │ │ ├── mapped.php │ │ │ │ │ │ └── virama.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── polyfill-intl-normalizer │ │ │ │ ├── LICENSE │ │ │ │ ├── Normalizer.php │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── Normalizer.php │ │ │ │ │ └── unidata │ │ │ │ │ │ ├── canonicalComposition.php │ │ │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ │ │ ├── combiningClass.php │ │ │ │ │ │ └── compatibilityDecomposition.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── polyfill-mbstring │ │ │ │ ├── LICENSE │ │ │ │ ├── Mbstring.php │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ ├── mb_convert_variables.php8 │ │ │ │ │ └── unidata │ │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ │ │ └── upperCase.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── polyfill-php70 │ │ │ │ ├── LICENSE │ │ │ │ ├── Php70.php │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── ArithmeticError.php │ │ │ │ │ │ ├── AssertionError.php │ │ │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── ParseError.php │ │ │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ │ │ └── TypeError.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── polyfill-php72 │ │ │ │ ├── LICENSE │ │ │ │ ├── Php72.php │ │ │ │ ├── README.md │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── process │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Exception │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogicException.php │ │ │ │ │ ├── ProcessFailedException.php │ │ │ │ │ ├── ProcessTimedOutException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── ExecutableFinder.php │ │ │ │ ├── InputStream.php │ │ │ │ ├── LICENSE │ │ │ │ ├── PhpExecutableFinder.php │ │ │ │ ├── PhpProcess.php │ │ │ │ ├── Pipes │ │ │ │ │ ├── AbstractPipes.php │ │ │ │ │ ├── PipesInterface.php │ │ │ │ │ ├── UnixPipes.php │ │ │ │ │ └── WindowsPipes.php │ │ │ │ ├── Process.php │ │ │ │ ├── ProcessBuilder.php │ │ │ │ ├── ProcessUtils.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── ErrorProcessInitiator.php │ │ │ │ │ ├── ExecutableFinderTest.php │ │ │ │ │ ├── NonStopableProcess.php │ │ │ │ │ ├── PhpExecutableFinderTest.php │ │ │ │ │ ├── PhpProcessTest.php │ │ │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ │ │ ├── ProcessBuilderTest.php │ │ │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ │ │ ├── ProcessTest.php │ │ │ │ │ ├── ProcessUtilsTest.php │ │ │ │ │ └── SignalListener.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ └── yaml │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Command │ │ │ │ └── LintCommand.php │ │ │ │ ├── Dumper.php │ │ │ │ ├── Escaper.php │ │ │ │ ├── Exception │ │ │ │ ├── DumpException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ParseException.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Inline.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Parser.php │ │ │ │ ├── README.md │ │ │ │ ├── Tag │ │ │ │ └── TaggedValue.php │ │ │ │ ├── Tests │ │ │ │ ├── Command │ │ │ │ │ └── LintCommandTest.php │ │ │ │ ├── DumperTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── YtsAnchorAlias.yml │ │ │ │ │ ├── YtsBasicTests.yml │ │ │ │ │ ├── YtsBlockMapping.yml │ │ │ │ │ ├── YtsDocumentSeparator.yml │ │ │ │ │ ├── YtsErrorTests.yml │ │ │ │ │ ├── YtsFlowCollections.yml │ │ │ │ │ ├── YtsFoldedScalars.yml │ │ │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ │ │ ├── YtsSpecificationExamples.yml │ │ │ │ │ ├── YtsTypeTransfers.yml │ │ │ │ │ ├── arrow.gif │ │ │ │ │ ├── booleanMappingKeys.yml │ │ │ │ │ ├── embededPhp.yml │ │ │ │ │ ├── escapedCharacters.yml │ │ │ │ │ ├── index.yml │ │ │ │ │ ├── legacyBooleanMappingKeys.yml │ │ │ │ │ ├── legacyNonStringKeys.yml │ │ │ │ │ ├── legacyNullMappingKey.yml │ │ │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ │ │ ├── multiple_lines_as_literal_block_for_tagged_values.yml │ │ │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ │ │ ├── nonStringKeys.yml │ │ │ │ │ ├── not_readable.yml │ │ │ │ │ ├── nullMappingKey.yml │ │ │ │ │ ├── numericMappingKeys.yml │ │ │ │ │ ├── sfComments.yml │ │ │ │ │ ├── sfCompact.yml │ │ │ │ │ ├── sfMergeKey.yml │ │ │ │ │ ├── sfObjects.yml │ │ │ │ │ ├── sfQuotes.yml │ │ │ │ │ ├── sfTests.yml │ │ │ │ │ └── unindentedCollections.yml │ │ │ │ ├── InlineTest.php │ │ │ │ ├── ParseExceptionTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ └── YamlTest.php │ │ │ │ ├── Unescaper.php │ │ │ │ ├── Yaml.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ └── webmozart │ │ │ └── assert │ │ │ ├── .editorconfig │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── psalm.xml │ │ │ └── src │ │ │ ├── Assert.php │ │ │ └── Mixin.php │ └── markerclusterer.js ├── index.php ├── langs │ ├── ca_ES │ │ └── google.lang │ ├── de_AT │ │ └── google.lang │ ├── de_CH │ │ └── google.lang │ ├── de_DE │ │ └── google.lang │ ├── en_US │ │ └── google.lang │ ├── es_ES │ │ └── google.lang │ ├── fr_BE │ │ └── google.lang │ ├── fr_FR │ │ └── google.lang │ ├── it_IT │ │ └── google.lang │ ├── nl_NL │ │ └── google.lang │ ├── no_NO │ │ └── google.lang │ ├── pt_BR │ │ └── google.lang │ ├── pt_PT │ │ └── google.lang │ ├── ro_RO │ │ └── google.lang │ ├── ru_RU │ │ └── google.lang │ └── uk_UA │ │ └── google.lang ├── lib │ ├── google.lib.php │ ├── google_calendar.lib.php │ └── google_contact.lib.php ├── oauth2callback.php ├── sql │ ├── 3.6.0-3.7.0.sql │ ├── 3.7.0-6.0.0.sql │ ├── llx_google_maps.key.sql │ └── llx_google_maps.sql └── test │ └── phpunit │ └── gContactTest.php ├── ifttt ├── README.md ├── admin │ └── index.php ├── core │ └── modules │ │ └── modIFTTT.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── object_ifttt.png ├── langs │ └── en_US │ │ └── ifttt.lang └── public │ └── ifttt │ └── index.php ├── includes └── ckfinder │ ├── README.md │ ├── config.js │ └── config.php ├── ipphone ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ └── setup.php ├── core │ └── modules │ │ └── modIPPhone.class.php ├── gpl-3.0.html ├── img │ ├── dolicloud_favicon.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_phone.png │ └── phone.png ├── langs │ ├── ca_ES │ │ └── ipphone.lang │ ├── en_US │ │ └── ipphone.lang │ ├── es_ES │ │ └── ipphone.lang │ └── fr_FR │ │ └── ipphone.lang └── public │ └── service.php ├── mantis ├── COPYING ├── README.md ├── admin │ └── mantis.php ├── class │ └── mantis.class.php ├── core │ └── modules │ │ └── modMantis.class.php ├── img │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png ├── index.php ├── mantis.php └── mantistop.php ├── memcached ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── memcached.php │ └── memcached_stats.php ├── core │ └── modules │ │ └── modMemcached.class.php ├── img │ ├── comparison_with_blackfire.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── memcached_screenshot_1.png ├── langs │ ├── ca_ES │ │ └── memcached.lang │ ├── en_US │ │ └── memcached.lang │ ├── es_ES │ │ └── memcached.lang │ └── fr_FR │ │ └── memcached.lang └── lib │ └── memcached.lib.php ├── monitoring ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── monitoring.php ├── class │ └── monitoring_probes.class.php ├── core │ └── modules │ │ └── modMonitoring.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── graph.png │ ├── monitor.png │ ├── screen_shot_monitoring.png │ └── screen_shot_monitoring_2.png ├── index.php ├── langs │ ├── ca_ES │ │ └── monitoring.lang │ ├── en_US │ │ └── monitoring.lang │ ├── es_ES │ │ └── monitoring.lang │ └── fr_FR │ │ └── monitoring.lang ├── lib │ └── monitoring.lib.php ├── probes.php ├── rrd.txt ├── scripts │ └── monitor_daemon.php └── sql │ ├── 1.0.0-3.4.0.sql │ ├── llx_monitoring_probes.key.sql │ └── llx_monitoring_probes.sql ├── moretemplates ├── COPYING ├── README.md ├── admin │ └── moretemplates.php ├── core │ └── modules │ │ ├── commande │ │ └── doc │ │ │ └── pdf_edison.modules.php │ │ ├── facture │ │ └── doc │ │ │ ├── pdf_oursin.modules.php │ │ │ └── pdf_tourteau.modules.php │ │ └── modMoreTemplates.class.php ├── img │ └── dolidroid_512x512_en.png ├── langs │ ├── ca_ES │ │ └── moretemplates.lang │ ├── en_US │ │ └── moretemplates.lang │ ├── es_ES │ │ └── moretemplates.lang │ └── fr_FR │ │ └── moretemplates.lang └── scripts │ ├── import-product.php │ └── materiel.net.php ├── mywidgets ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── mywidgets.php ├── core │ ├── boxes │ │ ├── README.md │ │ └── mywidgets.php │ └── modules │ │ └── modMyWidgets.class.php ├── img │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png └── langs │ ├── en_US │ └── mywidgets.lang │ └── fr_FR │ └── mywidgets.lang ├── netatmo ├── .editorconfig ├── .gitattributes ├── .gitignore ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ └── makepack-netatmo.conf ├── core │ └── modules │ │ └── modNetatmo.class.php ├── css │ └── netatmo.css.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── netatmo.png │ └── object_netatmo.png ├── includes │ ├── Examples │ │ ├── CLI_Therm_API_Example.php │ │ ├── CLI_WS_API_Example.php │ │ ├── CLI_Webhooks_Registration_Example.php │ │ ├── CLI_Welcome_API_Example.php │ │ ├── Config.php │ │ ├── Utils.php │ │ ├── WEB_AuthorizationGrant_Example.php │ │ └── Webhook_Server_Example.php │ ├── README.md │ └── src │ │ ├── Clients │ │ ├── NAThermApiClient.php │ │ ├── NAWSApiClient.php │ │ └── NAWelcomeApiClient.php │ │ ├── Constants │ │ └── AppliCommonPublic.php │ │ ├── Exceptions │ │ ├── NAClientException.php │ │ └── NASDKException.php │ │ ├── Handlers │ │ └── NAResponseHandler.php │ │ ├── Netatmo │ │ ├── Clients │ │ │ ├── NAApiClient.php │ │ │ ├── NAThermApiClient.php │ │ │ ├── NAWSApiClient.php │ │ │ └── NAWelcomeApiClient.php │ │ ├── Common │ │ │ ├── NABatteryLevelIndoorModule.php │ │ │ ├── NABatteryLevelModule.php │ │ │ ├── NABatteryLevelThermostat.php │ │ │ ├── NABatteryLevelWindGaugeModule.php │ │ │ ├── NACameraAlimSubStatus.php │ │ │ ├── NACameraEventInfo.php │ │ │ ├── NACameraEventType.php │ │ │ ├── NACameraHomeInfo.php │ │ │ ├── NACameraImageInfo.php │ │ │ ├── NACameraInfo.php │ │ │ ├── NACameraPersonInfo.php │ │ │ ├── NACameraSDEvent.php │ │ │ ├── NACameraStatus.php │ │ │ ├── NACameraVideoStatus.php │ │ │ ├── NAClientErrorCode.php │ │ │ ├── NARadioRssiTreshold.php │ │ │ ├── NARestErrorCode.php │ │ │ ├── NASDKErrorCode.php │ │ │ ├── NAScopes.php │ │ │ ├── NAStationSensorsMinMax.php │ │ │ ├── NAThermZone.php │ │ │ ├── NAUserUnit.php │ │ │ └── NAWifiRssiThreshold.php │ │ ├── Exceptions │ │ │ ├── NAApiErrorType.php │ │ │ ├── NAClientException.php │ │ │ ├── NACurlErrorType.php │ │ │ ├── NAInternalErrorType.php │ │ │ ├── NAJsonErrorType.php │ │ │ ├── NANotLoggedErrorType.php │ │ │ └── NASDKException.php │ │ ├── Handlers │ │ │ └── NAResponseHandler.php │ │ ├── Objects │ │ │ ├── NACamera.php │ │ │ ├── NAEvent.php │ │ │ ├── NAHome.php │ │ │ ├── NAObject.php │ │ │ ├── NAObjectWithPicture.php │ │ │ └── NAPerson.php │ │ └── autoload.php │ │ └── Objects │ │ ├── NACamera.php │ │ ├── NAEvent.php │ │ ├── NAHome.php │ │ ├── NAObject.php │ │ └── NAPerson.php ├── js │ └── netatmo.js.php ├── langs │ ├── en_US │ │ └── netatmo.lang │ └── fr_FR │ │ └── netatmo.lang ├── lib │ └── netatmo.lib.php ├── modulebuilder.txt ├── netatmoindex.php ├── public │ ├── netatmo.php │ └── playvideo.html └── test │ └── phpunit │ └── NetatmoFunctionalTest.php ├── numberingpack ├── COPYING ├── core │ └── modules │ │ ├── modNumberingPack.class.php │ │ └── societe │ │ ├── mod_codeclient_lion.php │ │ └── mod_codeclient_zebre.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── numbering.png └── langs │ ├── ca_ES │ └── numberingpack.lang │ ├── en_US │ └── numberingpack.lang │ ├── es_ES │ └── numberingpack.lang │ └── fr_FR │ └── numberingpack.lang ├── numberwords ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── numberwords.php ├── core │ ├── modules │ │ └── modNumberWords.class.php │ └── substitutions │ │ └── functions_numberwords.lib.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── numberwords.png ├── includes │ └── Numbers │ │ ├── ChangeLog │ │ ├── Math │ │ └── BigInteger.php │ │ ├── README │ │ ├── Words.php │ │ └── Words │ │ ├── lang.bg.php │ │ ├── lang.cs.php │ │ ├── lang.de.php │ │ ├── lang.dk.php │ │ ├── lang.el_CY.php │ │ ├── lang.el_GR.php │ │ ├── lang.en_100.php │ │ ├── lang.en_AU.php │ │ ├── lang.en_CA.php │ │ ├── lang.en_GB.php │ │ ├── lang.en_IN.php │ │ ├── lang.en_NZ.php │ │ ├── lang.en_SA.php │ │ ├── lang.en_US.php │ │ ├── lang.en_ZA.php │ │ ├── lang.es.php │ │ ├── lang.es_AR.php │ │ ├── lang.es_MX.php │ │ ├── lang.et.php │ │ ├── lang.fr.php │ │ ├── lang.fr_BE.php │ │ ├── lang.he.php │ │ ├── lang.hu_HU.php │ │ ├── lang.id.php │ │ ├── lang.it_IT.php │ │ ├── lang.lt.php │ │ ├── lang.nl.php │ │ ├── lang.pl.php │ │ ├── lang.pt_BR.php │ │ ├── lang.ru.php │ │ └── lang.sv.php └── langs │ ├── ca_ES │ └── numberwords.lang │ ├── de_AT │ └── numberwords.lang │ ├── de_CH │ └── numberwords.lang │ ├── de_DE │ └── numberwords.lang │ ├── el_CY │ └── numberwords.lang │ ├── el_GR │ └── numberwords.lang │ ├── en_US │ └── numberwords.lang │ ├── es_ES │ └── numberwords.lang │ ├── fr_BE │ └── numberwords.lang │ ├── fr_FR │ └── numberwords.lang │ ├── it_IT │ └── numberwords.lang │ ├── nl_NL │ └── numberwords.lang │ ├── no_NO │ └── numberwords.lang │ ├── pt_BR │ └── numberwords.lang │ ├── pt_PT │ └── numberwords.lang │ ├── ro_RO │ └── numberwords.lang │ ├── ru_RU │ └── numberwords.lang │ └── uk_UA │ └── numberwords.lang ├── openstreetmap ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── openstreetmap_maps.php ├── core │ └── modules │ │ └── modOpenStreetMap.class.php ├── gpl-3.0.html ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_openstreetmap.png │ ├── openstreetmap_logo.png │ └── screen_shot_openstreetmap.png ├── langs │ ├── ca_ES │ │ └── openstreetmap.lang │ ├── en_US │ │ └── openstreetmap.lang │ ├── es_ES │ │ └── openstreetmap.lang │ ├── fr_FR │ │ └── openstreetmap.lang │ └── no_NO │ │ └── openstreetmap.lang ├── lib │ └── openstreetmap.lib.php └── maps.php ├── ovh ├── COPYING ├── ChangeLog.md ├── README-update-ovh-lib-with-composer.txt ├── README.md ├── admin │ ├── about.php │ ├── ovh_click2dial.php │ ├── ovh_importinvoice.php │ ├── ovh_other.php │ ├── ovh_setup.php │ ├── ovh_sms_setup.php │ └── ovh_smsrecap.php ├── class │ ├── actions_ovh.class.php │ ├── ovhserver.class.php │ └── ovhsms.class.php ├── composer.json ├── composer.lock ├── core │ ├── modules │ │ └── modOvh.class.php │ └── triggers │ │ └── interface_99_modOvh_OvhTriggers.class.php ├── doc │ └── spec │ │ └── cti.asciidoc ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── logo_ovh.jpg │ ├── object_ovh.png │ ├── object_server.svg │ ├── ovh.png │ ├── phone.png │ ├── screen_shot_click2dial.png │ ├── screen_shot_dedicated_servers.png │ ├── screen_shot_invoiceimport.png │ ├── screen_shot_sms.png │ ├── screen_shot_sms_setup.png │ └── server.svg ├── importovhinvoice.php ├── includes │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ ├── guzzlehttp │ │ ├── guzzle │ │ │ ├── .php_cs │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Client.php │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── Cookie │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ │ ├── Exception │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── SeekException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ │ ├── Handler │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ │ ├── HandlerStack.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Pool.php │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ ├── RequestOptions.php │ │ │ │ ├── RetryMiddleware.php │ │ │ │ ├── TransferStats.php │ │ │ │ ├── UriTemplate.php │ │ │ │ ├── Utils.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ ├── promises │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AggregateException.php │ │ │ │ ├── CancellationException.php │ │ │ │ ├── Coroutine.php │ │ │ │ ├── Create.php │ │ │ │ ├── Each.php │ │ │ │ ├── EachPromise.php │ │ │ │ ├── FulfilledPromise.php │ │ │ │ ├── Is.php │ │ │ │ ├── Promise.php │ │ │ │ ├── PromiseInterface.php │ │ │ │ ├── PromisorInterface.php │ │ │ │ ├── RejectedPromise.php │ │ │ │ ├── RejectionException.php │ │ │ │ ├── TaskQueue.php │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ ├── Utils.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ └── psr7 │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── bc.yml │ │ │ │ ├── ci.yml │ │ │ │ ├── integration.yml │ │ │ │ └── static.yml │ │ │ ├── .php_cs.dist │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── ovh │ │ └── ovh │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.rst │ │ │ ├── LICENSE │ │ │ ├── MIGRATION.rst │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── create-Redirection │ │ │ │ ├── api_create_redirection.md │ │ │ │ └── apiv6.php │ │ │ ├── hosting-attachedDomain │ │ │ │ ├── api_attach_domain_to_web_hosting.md │ │ │ │ ├── createAttachedDomain.php │ │ │ │ ├── deleteAttachedDomain.php │ │ │ │ └── listAttachedDomains.php │ │ │ └── hosting-getCapabilities │ │ │ │ ├── api_get_hosting_capacities.md │ │ │ │ └── apiv6.php │ │ │ ├── img │ │ │ └── logo.png │ │ │ ├── phpunit.xml.dist │ │ │ ├── scripts │ │ │ ├── bump-version.sh │ │ │ ├── release_binary.sh │ │ │ └── update-copyright.sh │ │ │ ├── src │ │ │ ├── Api.php │ │ │ └── Exceptions │ │ │ │ ├── ApiException.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ └── NotLoggedException.php │ │ │ └── tests │ │ │ ├── ApiFunctionalTest.php │ │ │ ├── ApiTest.php │ │ │ └── bootstrap.php │ ├── paragonie │ │ └── random_compat │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ │ └── lib │ │ │ ├── byte_safe_strings.php │ │ │ ├── cast_to_int.php │ │ │ ├── error_polyfill.php │ │ │ ├── random.php │ │ │ ├── random_bytes_com_dotnet.php │ │ │ ├── random_bytes_dev_urandom.php │ │ │ ├── random_bytes_libsodium.php │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ ├── random_bytes_mcrypt.php │ │ │ └── random_int.php │ ├── psr │ │ └── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── ralouphie │ │ └── getallheaders │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── getallheaders.php │ └── symfony │ │ ├── polyfill-intl-idn │ │ ├── Idn.php │ │ ├── Info.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ ├── bootstrap.php │ │ └── composer.json │ │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ └── composer.json │ │ ├── polyfill-php70 │ │ ├── LICENSE │ │ ├── Php70.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── ArithmeticError.php │ │ │ │ ├── AssertionError.php │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ ├── Error.php │ │ │ │ ├── ParseError.php │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ └── TypeError.php │ │ ├── bootstrap.php │ │ └── composer.json │ │ └── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json ├── langs │ ├── ca_ES │ │ └── ovh.lang │ ├── de_AT │ │ └── ovh.lang │ ├── de_CH │ │ └── ovh.lang │ ├── de_DE │ │ └── ovh.lang │ ├── en_US │ │ └── ovh.lang │ ├── es_ES │ │ └── ovh.lang │ ├── fr_BE │ │ └── ovh.lang │ ├── fr_FR │ │ └── ovh.lang │ ├── it_IT │ │ └── ovh.lang │ ├── nl_NL │ │ └── ovh.lang │ ├── no_NO │ │ └── ovh.lang │ ├── pt_BR │ │ └── ovh.lang │ ├── pt_PT │ │ └── ovh.lang │ ├── ro_RO │ │ └── ovh.lang │ ├── ru_RU │ │ └── ovh.lang │ └── uk_UA │ │ └── ovh.lang ├── lib │ └── ovh.lib.php ├── ovh_listinfoserver.php ├── scripts │ └── importovhinvoice.php ├── sms_member.php ├── sms_thirdparty.php ├── sql │ └── llx_c_action_trigger.sql └── wrapper.php ├── payplugdolicloud ├── .gitignore ├── .tx │ └── config ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ └── makepack-payplugdolicloud.conf ├── class │ └── actions_payplugdolicloud.class.php ├── core │ └── modules │ │ └── modPayplugDolicloud.class.php ├── img │ ├── README.md │ └── object_payplugdolicloud.png ├── langs │ └── en_US │ │ └── payplugdolicloud.lang ├── lib │ └── payplugdolicloud.lib.php ├── modulebuilder.txt ├── payplugdolicloudindex.php └── sql │ └── dolibarr_allversions.sql ├── phpsysinfo ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── phpsysinfo.php ├── core │ └── modules │ │ └── modPHPSysInfo.class.php ├── frames.php ├── frametop.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── screen_shot_phpsysinfo.png ├── includes │ └── phpsysinfo │ │ ├── .gitignore │ │ ├── .htaccess │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── COPYING │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── README_PLUGIN.md │ │ ├── composer.json │ │ ├── data │ │ ├── ModelTranslation.txt │ │ ├── distros.ini │ │ ├── languages.ini │ │ └── osnames.ini │ │ ├── gfx │ │ ├── ajax-loader.gif │ │ ├── ajaxLoader.gif │ │ ├── attention.gif │ │ ├── blank.gif │ │ ├── body.gif │ │ ├── bullet_toggle_minus.gif │ │ ├── bullet_toggle_plus.gif │ │ ├── close.gif │ │ ├── down_black.gif │ │ ├── down_gray.gif │ │ ├── favicon.gif │ │ ├── favicon.ico │ │ ├── html.gif │ │ ├── htmlwarn.gif │ │ ├── images │ │ │ ├── 4MLinux.png │ │ │ ├── AIX.png │ │ │ ├── ALT.png │ │ │ ├── Alpine.png │ │ │ ├── Amazon.png │ │ │ ├── Android.png │ │ │ ├── Apple.png │ │ │ ├── Arch.png │ │ │ ├── BOSS.png │ │ │ ├── Calculate.png │ │ │ ├── Canaima.png │ │ │ ├── CentOS.png │ │ │ ├── Chakra.png │ │ │ ├── ClearOS.png │ │ │ ├── Cloud.png │ │ │ ├── Cobalt.png │ │ │ ├── CoreOS.png │ │ │ ├── Crux.png │ │ │ ├── Darwin.png │ │ │ ├── Debian.png │ │ │ ├── Deepin.png │ │ │ ├── DragonFly.png │ │ │ ├── Eisfair.png │ │ │ ├── Fedora.png │ │ │ ├── Foresight.png │ │ │ ├── FreeBSD.png │ │ │ ├── Frugalware.png │ │ │ ├── Fuduntu.png │ │ │ ├── Generations.png │ │ │ ├── Gentoo.png │ │ │ ├── Gobo.png │ │ │ ├── HPUX.png │ │ │ ├── Haiku.png │ │ │ ├── Handy.png │ │ │ ├── HipServ.png │ │ │ ├── IPFire.png │ │ │ ├── KaOS.png │ │ │ ├── Korora.png │ │ │ ├── LFS.png │ │ │ ├── Linaro.png │ │ │ ├── Lunar.png │ │ │ ├── Mageia.png │ │ │ ├── Mandrake.png │ │ │ ├── Manjaro.png │ │ │ ├── Mer.png │ │ │ ├── Minix.png │ │ │ ├── Mint.png │ │ │ ├── NetBSD.png │ │ │ ├── Netrunner.png │ │ │ ├── NixOS.png │ │ │ ├── OpenBSD.png │ │ │ ├── OpenMamba.png │ │ │ ├── OpenMandriva.png │ │ │ ├── Oracle.png │ │ │ ├── PCLinuxOS.png │ │ │ ├── PLD.png │ │ │ ├── Parsix.png │ │ │ ├── Pear.png │ │ │ ├── Peppermint.png │ │ │ ├── Pisi.png │ │ │ ├── Porteus.png │ │ │ ├── Puppy.png │ │ │ ├── QNX.png │ │ │ ├── QTS.png │ │ │ ├── Qubes.png │ │ │ ├── ROSA.png │ │ │ ├── Raspbian.png │ │ │ ├── ReactOS.png │ │ │ ├── RedFlag.png │ │ │ ├── RedHat.png │ │ │ ├── Rubix.png │ │ │ ├── SMEServer.png │ │ │ ├── SMS.png │ │ │ ├── SUSE.png │ │ │ ├── Sabayon.png │ │ │ ├── Salix.png │ │ │ ├── Scientific.png │ │ │ ├── Semplice.png │ │ │ ├── Slackware.png │ │ │ ├── Slax.png │ │ │ ├── SliTaz.png │ │ │ ├── Solus.png │ │ │ ├── SolusOS.png │ │ │ ├── SolydXK.png │ │ │ ├── StartOS.png │ │ │ ├── SteamOS.png │ │ │ ├── SunOS.png │ │ │ ├── Synology.png │ │ │ ├── Tails.png │ │ │ ├── Tanglu.png │ │ │ ├── TinyCore.png │ │ │ ├── Tizen.png │ │ │ ├── Trisquel.png │ │ │ ├── Trustix.png │ │ │ ├── Turbo.png │ │ │ ├── Ubuntu.png │ │ │ ├── UltimateEdition.png │ │ │ ├── Vector.png │ │ │ ├── VortexBox.png │ │ │ ├── Win2000.png │ │ │ ├── Win8.png │ │ │ ├── WinVista.png │ │ │ ├── WinXP.png │ │ │ ├── Zenwalk.png │ │ │ ├── Zorin.png │ │ │ ├── antiX.png │ │ │ ├── elementaryOS.png │ │ │ ├── free-eos.png │ │ │ ├── gNewSense.png │ │ │ ├── iycc.png │ │ │ ├── openSUSE.png │ │ │ ├── pfSense.png │ │ │ └── unknown.png │ │ ├── logo_32.gif │ │ ├── next.gif │ │ ├── prev.gif │ │ ├── reload.gif │ │ ├── right_black.gif │ │ ├── right_gray.gif │ │ ├── sort_asc.gif │ │ ├── sort_both.gif │ │ ├── sort_desc.gif │ │ └── treeTable │ │ │ ├── blank.gif │ │ │ ├── tv-collapsable-last.gif │ │ │ ├── tv-collapsable.gif │ │ │ ├── tv-expandable-last.gif │ │ │ ├── tv-expandable.gif │ │ │ ├── tv-item-last.gif │ │ │ ├── tv-item.gif │ │ │ └── vertline.gif │ │ ├── includes │ │ ├── autoloader.inc.php │ │ ├── class.CommonFunctions.inc.php │ │ ├── class.Parser.inc.php │ │ ├── error │ │ │ └── class.PSI_Error.inc.php │ │ ├── interface │ │ │ ├── class.PSI_Interface_OS.inc.php │ │ │ ├── class.PSI_Interface_Output.inc.php │ │ │ ├── class.PSI_Interface_Plugin.inc.php │ │ │ ├── class.PSI_Interface_Sensor.inc.php │ │ │ └── class.PSI_Interface_UPS.inc.php │ │ ├── js │ │ │ ├── README │ │ │ └── class.JavaScriptPacker.inc.php │ │ ├── mb │ │ │ ├── class.coretemp.inc.php │ │ │ ├── class.freeipmi.inc.php │ │ │ ├── class.hddtemp.inc.php │ │ │ ├── class.healthd.inc.php │ │ │ ├── class.hwmon.inc.php │ │ │ ├── class.hwsensors.inc.php │ │ │ ├── class.ipmi.inc.php │ │ │ ├── class.ipmiutil.inc.php │ │ │ ├── class.k8temp.inc.php │ │ │ ├── class.lmsensors.inc.php │ │ │ ├── class.mbm5.inc.php │ │ │ ├── class.mbmon.inc.php │ │ │ ├── class.ohm.inc.php │ │ │ ├── class.pitemp.inc.php │ │ │ ├── class.qtssnmp.inc.php │ │ │ ├── class.sensors.inc.php │ │ │ ├── class.speedfan.inc.php │ │ │ └── class.thermalzone.inc.php │ │ ├── os │ │ │ ├── class.AIX.inc.php │ │ │ ├── class.Android.inc.php │ │ │ ├── class.BSDCommon.inc.php │ │ │ ├── class.Darwin.inc.php │ │ │ ├── class.DragonFly.inc.php │ │ │ ├── class.FreeBSD.inc.php │ │ │ ├── class.HPUX.inc.php │ │ │ ├── class.Haiku.inc.php │ │ │ ├── class.Linux.inc.php │ │ │ ├── class.Minix.inc.php │ │ │ ├── class.NetBSD.inc.php │ │ │ ├── class.OS.inc.php │ │ │ ├── class.OpenBSD.inc.php │ │ │ ├── class.QNX.inc.php │ │ │ ├── class.SunOS.inc.php │ │ │ └── class.WINNT.inc.php │ │ ├── output │ │ │ ├── class.Output.inc.php │ │ │ ├── class.Template.inc.php │ │ │ ├── class.Webpage.inc.php │ │ │ ├── class.WebpageXML.inc.php │ │ │ └── class.WebpageXSLT.inc.php │ │ ├── plugin │ │ │ └── class.PSI_Plugin.inc.php │ │ ├── to │ │ │ ├── class.MBInfo.inc.php │ │ │ ├── class.System.inc.php │ │ │ ├── class.UPSInfo.inc.php │ │ │ └── device │ │ │ │ ├── class.CpuDevice.inc.php │ │ │ │ ├── class.DiskDevice.inc.php │ │ │ │ ├── class.HWDevice.inc.php │ │ │ │ ├── class.NetDevice.inc.php │ │ │ │ ├── class.SensorDevice.inc.php │ │ │ │ └── class.UPSDevice.inc.php │ │ ├── ups │ │ │ ├── class.apcupsd.inc.php │ │ │ ├── class.nut.inc.php │ │ │ ├── class.pmset.inc.php │ │ │ ├── class.powersoftplus.inc.php │ │ │ ├── class.snmpups.inc.php │ │ │ └── class.ups.inc.php │ │ └── xml │ │ │ ├── class.SimpleXMLExtended.inc.php │ │ │ └── class.XML.inc.php │ │ ├── index.php │ │ ├── js.php │ │ ├── js │ │ ├── jQuery │ │ │ ├── README │ │ │ ├── README_bootstrap │ │ │ ├── jquery-1.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.ifixpng.js │ │ │ ├── jquery.jgrowl.js │ │ │ ├── jquery.js │ │ │ ├── jquery.nyroModal.js │ │ │ ├── jquery.timers.js │ │ │ ├── jquery.treeTable.js │ │ │ └── jquery.treegrid.js │ │ ├── phpSysInfo │ │ │ ├── phpsysinfo.js │ │ │ └── phpsysinfo_bootstrap.js │ │ └── vendor │ │ │ ├── README │ │ │ ├── bootstrap.min.js │ │ │ ├── console-shim.js │ │ │ ├── html5shiv-printshiv.js │ │ │ ├── respond.js │ │ │ ├── sorttable.js │ │ │ └── transparency.js │ │ ├── language │ │ ├── ast.xml │ │ ├── bg.xml │ │ ├── ca.xml │ │ ├── cz.xml │ │ ├── da.xml │ │ ├── de.xml │ │ ├── en.xml │ │ ├── es.xml │ │ ├── et.xml │ │ ├── fi.xml │ │ ├── fr.xml │ │ ├── gl.xml │ │ ├── gr.xml │ │ ├── he.xml │ │ ├── hu.xml │ │ ├── is.xml │ │ ├── it.xml │ │ ├── ja.xml │ │ ├── ko.xml │ │ ├── language.php │ │ ├── nl.xml │ │ ├── no.xml │ │ ├── pl.xml │ │ ├── pt-br.xml │ │ ├── pt-pt.xml │ │ ├── ro.xml │ │ ├── ru.xml │ │ ├── sk.xml │ │ ├── sl.xml │ │ ├── sv.xml │ │ ├── th.xml │ │ ├── tr.xml │ │ ├── translation-plugin.xsd │ │ ├── translation.xsd │ │ ├── tw.xml │ │ ├── uk.xml │ │ └── zh.xml │ │ ├── phpsysinfo.ini.new │ │ ├── phpsysinfo.xslt │ │ ├── phpsysinfo3.xsd │ │ ├── plugins │ │ ├── bat │ │ │ ├── bat_bootstrap.html │ │ │ ├── class.bat.inc.php │ │ │ ├── js │ │ │ │ ├── bat.js │ │ │ │ └── bat_bootstrap.js │ │ │ └── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ ├── dmraid │ │ │ ├── class.dmraid.inc.php │ │ │ ├── css │ │ │ │ └── dmraid.css │ │ │ ├── dmraid_bootstrap.html │ │ │ ├── gfx │ │ │ │ ├── error.png │ │ │ │ ├── harddrivefail.png │ │ │ │ ├── harddriveok.png │ │ │ │ ├── harddrivespare.png │ │ │ │ └── harddrivewarn.png │ │ │ ├── js │ │ │ │ ├── dmraid.js │ │ │ │ └── dmraid_bootstrap.js │ │ │ └── lang │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ ├── ipmiinfo │ │ │ ├── class.ipmiinfo.inc.php │ │ │ ├── ipmiinfo_bootstrap.html │ │ │ ├── js │ │ │ │ ├── ipmiinfo.js │ │ │ │ └── ipmiinfo_bootstrap.js │ │ │ └── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ ├── mdstatus │ │ │ ├── class.mdstatus.inc.php │ │ │ ├── css │ │ │ │ └── mdstatus.css │ │ │ ├── gfx │ │ │ │ ├── error.png │ │ │ │ ├── harddrivefail.png │ │ │ │ ├── harddriveok.png │ │ │ │ └── harddrivespare.png │ │ │ ├── js │ │ │ │ ├── mdstatus.js │ │ │ │ └── mdstatus_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── gr.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── mdstatus_bootstrap.html │ │ ├── ps │ │ │ ├── class.ps.inc.php │ │ │ ├── js │ │ │ │ ├── ps.js │ │ │ │ └── ps_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── gr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── ps_bootstrap.html │ │ ├── psstatus │ │ │ ├── class.psstatus.inc.php │ │ │ ├── css │ │ │ │ └── psstatus.css │ │ │ ├── gfx │ │ │ │ ├── offline.gif │ │ │ │ └── online.gif │ │ │ ├── js │ │ │ │ ├── psstatus.js │ │ │ │ └── psstatus_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── gr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── psstatus_bootstrap.html │ │ ├── quotas │ │ │ ├── class.quotas.inc.php │ │ │ ├── css │ │ │ │ └── quotas.css │ │ │ ├── js │ │ │ │ ├── quotas.js │ │ │ │ └── quotas_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── quotas_bootstrap.html │ │ ├── smart │ │ │ ├── class.smart.inc.php │ │ │ ├── css │ │ │ │ └── smart.css │ │ │ ├── js │ │ │ │ ├── smart.js │ │ │ │ └── smart_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── gr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── smart_bootstrap.html │ │ ├── snmppinfo │ │ │ ├── class.snmppinfo.inc.php │ │ │ ├── js │ │ │ │ ├── snmppinfo.js │ │ │ │ └── snmppinfo_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── snmppinfo_bootstrap.html │ │ ├── updatenotifier │ │ │ ├── class.updatenotifier.inc.php │ │ │ ├── js │ │ │ │ ├── updatenotifier.js │ │ │ │ └── updatenotifier_bootstrap.js │ │ │ ├── lang │ │ │ │ ├── cz.xml │ │ │ │ ├── de.xml │ │ │ │ ├── en.xml │ │ │ │ ├── fr.xml │ │ │ │ ├── pl.xml │ │ │ │ ├── ro.xml │ │ │ │ └── ru.xml │ │ │ └── updatenotifier_bootstrap.html │ │ └── uprecords │ │ │ ├── class.uprecords.inc.php │ │ │ ├── js │ │ │ ├── uprecords.js │ │ │ └── uprecords_bootstrap.js │ │ │ ├── lang │ │ │ ├── en.xml │ │ │ ├── fr.xml │ │ │ ├── hu.xml │ │ │ ├── pl.xml │ │ │ ├── ro.xml │ │ │ └── ru.xml │ │ │ └── uprecords_bootstrap.html │ │ ├── read_config.php │ │ ├── sample │ │ ├── distrotest │ │ │ ├── 4MLinux │ │ │ │ └── 10.0-server.txt │ │ │ ├── ALT │ │ │ │ ├── 6.0.0.txt │ │ │ │ ├── 7.0.0-Simply.txt │ │ │ │ └── 7.0.1.txt │ │ │ ├── Alpine │ │ │ │ └── 2.6.4.txt │ │ │ ├── Amazon │ │ │ │ └── 2013.09.txt │ │ │ ├── Arch │ │ │ │ ├── 2011.08.19-ISO.txt │ │ │ │ ├── 2013.11.01.txt │ │ │ │ └── 2014.01.05.txt │ │ │ ├── BOSS │ │ │ │ ├── 1.0-server.txt │ │ │ │ └── 5.0.txt │ │ │ ├── Calculate │ │ │ │ └── 13.11.txt │ │ │ ├── Canaima │ │ │ │ └── 4.1.txt │ │ │ ├── CentOS │ │ │ │ ├── 5.6.txt │ │ │ │ ├── 6.5-SF.txt │ │ │ │ ├── 6.5.txt │ │ │ │ └── 7.1.1503.txt │ │ │ ├── Chakra │ │ │ │ └── 2013.02.txt │ │ │ ├── ClearOS │ │ │ │ └── 6.4.0-Beta.txt │ │ │ ├── Cloud │ │ │ │ ├── 5.10.txt │ │ │ │ └── 6.4.txt │ │ │ ├── CoreOS │ │ │ │ └── 367.1.0.txt │ │ │ ├── Crux │ │ │ │ └── 2.8.txt │ │ │ ├── Debian │ │ │ │ ├── 5.0.3.txt │ │ │ │ ├── 6.0.6.txt │ │ │ │ ├── 8-20140106-netinstall.txt │ │ │ │ └── 8-20140106.txt │ │ │ ├── Deepin │ │ │ │ └── 2013.txt │ │ │ ├── Eisfair │ │ │ │ ├── 1-2.6.5.txt │ │ │ │ └── 2-1.8.1.txt │ │ │ ├── Fedora │ │ │ │ ├── 20-lsb.txt │ │ │ │ ├── 20.txt │ │ │ │ └── 4.txt │ │ │ ├── Foresight │ │ │ │ └── 2.5.3.txt │ │ │ ├── Frugalware │ │ │ │ └── 1.9.txt │ │ │ ├── Fuduntu │ │ │ │ └── 2013.2.txt │ │ │ ├── Generations │ │ │ │ └── 3.1.txt │ │ │ ├── Gentoo │ │ │ │ ├── 2.2-NAME.txt │ │ │ │ └── 2.2.txt │ │ │ ├── Gobo │ │ │ │ └── 015.beta2.txt │ │ │ ├── Handy │ │ │ │ └── 2.0.txt │ │ │ ├── HipServ │ │ │ │ └── 2.6.txt │ │ │ ├── IPFire │ │ │ │ └── 2.13.txt │ │ │ ├── KaOS │ │ │ │ └── 2014.0301.txt │ │ │ ├── Korora │ │ │ │ └── 20.txt │ │ │ ├── Linaro │ │ │ │ └── 13.12.txt │ │ │ ├── Lunar │ │ │ │ └── 1.7.0-rc2.txt │ │ │ ├── Mageia │ │ │ │ └── 4.txt │ │ │ ├── Mandrake │ │ │ │ ├── 2011.0.txt │ │ │ │ └── 9.2.txt │ │ │ ├── Manjaro │ │ │ │ └── 0.8.8.txt │ │ │ ├── Mer │ │ │ │ └── 0.2011.txt │ │ │ ├── Mint │ │ │ │ ├── 13.txt │ │ │ │ ├── 14.txt │ │ │ │ └── 15.txt │ │ │ ├── Netrunner │ │ │ │ ├── 13.06-SE.txt │ │ │ │ ├── 13.06.txt │ │ │ │ └── 2014.04.txt │ │ │ ├── NixOS │ │ │ │ └── 13.10.txt │ │ │ ├── OpenMamba │ │ │ │ └── 3.0.1.txt │ │ │ ├── OpenMandriva │ │ │ │ └── 2013.0-RC1.txt │ │ │ ├── Oracle │ │ │ │ ├── 5.10-el.txt │ │ │ │ └── 6.3.txt │ │ │ ├── PCLinuxOS │ │ │ │ └── 2012.06.txt │ │ │ ├── PLD │ │ │ │ ├── 2.99.txt │ │ │ │ └── 3.0.txt │ │ │ ├── Parsix │ │ │ │ ├── 5.0.txt │ │ │ │ └── 6.0.txt │ │ │ ├── Pear │ │ │ │ ├── 5.00.txt │ │ │ │ ├── 6.1-LTS.txt │ │ │ │ ├── 6.1.txt │ │ │ │ └── 7.0.txt │ │ │ ├── Peppermint │ │ │ │ ├── 3.txt │ │ │ │ └── 4-20131113.txt │ │ │ ├── Pisi │ │ │ │ └── 1.0.txt │ │ │ ├── Porteus │ │ │ │ └── 2.1.txt │ │ │ ├── Puppy │ │ │ │ ├── 431.txt │ │ │ │ ├── 5.3-wary.txt │ │ │ │ ├── 5.3.3-slacko.txt │ │ │ │ └── 528-lucid.txt │ │ │ ├── QTS │ │ │ │ └── 3.1.2.txt │ │ │ ├── Qubes │ │ │ │ └── 3.0.txt │ │ │ ├── ROSA │ │ │ │ ├── 2012.0.0-11-LTS.txt │ │ │ │ ├── 2012.0.0-6-LTS.txt │ │ │ │ ├── 2012.1.0-20.txt │ │ │ │ └── 6.5-Server.txt │ │ │ ├── Raspbian │ │ │ │ ├── 7.txt │ │ │ │ └── 8.0.txt │ │ │ ├── RedFlag │ │ │ │ └── 8.0.txt │ │ │ ├── RedHat │ │ │ │ ├── 6.0.txt │ │ │ │ └── 7.0-Beta.txt │ │ │ ├── SMEServer │ │ │ │ ├── 8.1beta3.txt │ │ │ │ └── 9.0beta3.txt │ │ │ ├── SMS │ │ │ │ └── 2.0.5.txt │ │ │ ├── Sabayon │ │ │ │ └── 14.01.txt │ │ │ ├── Salix │ │ │ │ └── 14.0.txt │ │ │ ├── Scientific │ │ │ │ ├── 6.3-lsb.txt │ │ │ │ ├── 6.3.txt │ │ │ │ └── 6.4.txt │ │ │ ├── Semplice │ │ │ │ └── 6.txt │ │ │ ├── Slackware │ │ │ │ └── 14.0.txt │ │ │ ├── Slax │ │ │ │ └── 7.0.1.txt │ │ │ ├── SliTaz │ │ │ │ └── 2014.02.16-cooking.txt │ │ │ ├── Solus │ │ │ │ └── 1.0-rc1.txt │ │ │ ├── SolusOS │ │ │ │ ├── 1.3.txt │ │ │ │ └── 2-alpha7.txt │ │ │ ├── SolydXK │ │ │ │ ├── 2014.01-K.txt │ │ │ │ └── 2014.01-X.txt │ │ │ ├── StartOS │ │ │ │ ├── 5.0.txt │ │ │ │ └── 6.0.txt │ │ │ ├── SteamOS │ │ │ │ └── 1.0-beta.txt │ │ │ ├── Synology │ │ │ │ └── 4.1-2668.txt │ │ │ ├── Tails │ │ │ │ └── 0.22.1.txt │ │ │ ├── Tanglu │ │ │ │ └── 2.0-beta2.txt │ │ │ ├── TinyCore │ │ │ │ └── 5.0.alpha4.txt │ │ │ ├── Tizen │ │ │ │ ├── 2.2.0-Magnolia.txt │ │ │ │ └── 2.2.0-Tizen.txt │ │ │ ├── Trisquel │ │ │ │ └── 6.0.txt │ │ │ ├── Turbo │ │ │ │ └── 12.5.txt │ │ │ ├── Ubuntu │ │ │ │ ├── 10.04.txt │ │ │ │ ├── 12.04.txt │ │ │ │ └── 13.10.txt │ │ │ ├── UltimateEdition │ │ │ │ └── 3.9.txt │ │ │ ├── Vector │ │ │ │ └── 647.0.txt │ │ │ ├── VortexBox │ │ │ │ ├── 2.2.txt │ │ │ │ └── 2.3-beta.txt │ │ │ ├── Zenwalk │ │ │ │ └── 7.4.txt │ │ │ ├── Zorin │ │ │ │ ├── 6.txt │ │ │ │ ├── 7.txt │ │ │ │ └── 8.txt │ │ │ ├── antiX │ │ │ │ └── 2012.07.06.txt │ │ │ ├── elementaryOS │ │ │ │ └── 0.2.txt │ │ │ ├── gNewSense │ │ │ │ └── 3.0.txt │ │ │ └── openSUSE │ │ │ │ ├── 11.3.txt │ │ │ │ └── 13.1.txt │ │ ├── logs │ │ │ ├── log_android21.txt │ │ │ ├── log_android412.txt │ │ │ ├── log_bluestacks.txt │ │ │ ├── log_debian7.txt │ │ │ └── log_sf.txt │ │ ├── main │ │ │ ├── 1-cpuinfo.txt │ │ │ ├── 1-dfiP.txt │ │ │ ├── 1-dfkP.txt │ │ │ ├── 1-mount.txt │ │ │ ├── README │ │ │ ├── cpuinfo1.txt │ │ │ ├── cpuinfo2.txt │ │ │ ├── cpuinfo3.txt │ │ │ ├── cpuinfo4.txt │ │ │ ├── cpuinfo5.txt │ │ │ ├── cpuinfo6.txt │ │ │ ├── cpuinfo7.txt │ │ │ ├── cpuinfo8.txt │ │ │ ├── cpuinfo9.txt │ │ │ ├── dev1.txt │ │ │ ├── df1.txt │ │ │ ├── mount1.txt │ │ │ ├── pmset1.txt │ │ │ ├── pmset2.txt │ │ │ ├── pmset3.txt │ │ │ ├── pmset4.txt │ │ │ ├── swaps1.txt │ │ │ ├── vm_stat1.txt │ │ │ ├── vm_stat2.txt │ │ │ └── vm_stat3.txt │ │ ├── motherboard │ │ │ ├── hwsensors │ │ │ │ ├── hwsensors1.txt │ │ │ │ ├── hwsensors2.txt │ │ │ │ ├── hwsensors3.txt │ │ │ │ ├── hwsensors4.txt │ │ │ │ └── hwsensors5.txt │ │ │ ├── ipmi-sensors │ │ │ │ └── ipmi-sensors1.txt │ │ │ ├── ipmitool │ │ │ │ └── ipmitool1.txt │ │ │ ├── ipmiutil │ │ │ │ └── ipmiutil1.txt │ │ │ ├── lmsensors │ │ │ │ ├── lmsensors1.txt │ │ │ │ ├── lmsensors10.txt │ │ │ │ ├── lmsensors2.txt │ │ │ │ ├── lmsensors3.txt │ │ │ │ ├── lmsensors4.txt │ │ │ │ ├── lmsensors5.txt │ │ │ │ ├── lmsensors6.txt │ │ │ │ ├── lmsensors7.txt │ │ │ │ ├── lmsensors8.txt │ │ │ │ └── lmsensors9.txt │ │ │ └── mbm5 │ │ │ │ └── MBM51.csv │ │ ├── plugin_bat │ │ │ ├── README │ │ │ ├── ac_state1.txt │ │ │ ├── battery_info1.txt │ │ │ ├── battery_state1.txt │ │ │ ├── log_LenovoT530.txt │ │ │ ├── log_android233.txt │ │ │ ├── log_android412.txt │ │ │ ├── log_android422.txt │ │ │ ├── log_darwin_1.txt │ │ │ ├── log_freebsd_1.txt │ │ │ ├── log_freebsd_2.txt │ │ │ ├── log_test_1.txt │ │ │ ├── log_test_2.txt │ │ │ └── log_vbox.txt │ │ ├── plugin_dmraid │ │ │ ├── dmraid1.txt │ │ │ ├── dmraid2.txt │ │ │ ├── dmraid3.txt │ │ │ ├── dmraid4.txt │ │ │ └── dmraid5.txt │ │ ├── plugin_mdstat │ │ │ ├── README │ │ │ ├── raid1.txt │ │ │ ├── raid10.txt │ │ │ ├── raid11.txt │ │ │ ├── raid12.txt │ │ │ ├── raid2.txt │ │ │ ├── raid3.txt │ │ │ ├── raid4.txt │ │ │ ├── raid5.txt │ │ │ ├── raid6.txt │ │ │ ├── raid7.txt │ │ │ ├── raid8.txt │ │ │ └── raid9.txt │ │ ├── plugin_ps │ │ │ ├── README │ │ │ ├── ps1.txt │ │ │ └── ps2.txt │ │ ├── plugin_psstatus │ │ │ ├── README │ │ │ └── psstatus1.txt │ │ ├── plugin_quotas │ │ │ ├── README │ │ │ └── quotas1.txt │ │ ├── plugin_smart │ │ │ ├── smart0.txt │ │ │ └── smart1.txt │ │ ├── plugin_updatenotifier │ │ │ ├── ubuntu-landscape │ │ │ └── universal-format │ │ ├── processes │ │ │ └── processes.txt │ │ └── ups │ │ │ ├── 1-upscDell2700.txt │ │ │ ├── 1-upscPW5110.txt │ │ │ ├── 1-upscl.txt │ │ │ ├── apcaccess1.txt │ │ │ └── powersoftplus1.txt │ │ ├── templates │ │ ├── aqua.css │ │ ├── aqua │ │ │ └── aq_background.gif │ │ ├── blue.css │ │ ├── blue │ │ │ ├── bar.png │ │ │ ├── barwarn.png │ │ │ ├── bg.png │ │ │ └── title.png │ │ ├── clean.css │ │ ├── cleansyn.css │ │ ├── cream.css │ │ ├── cream │ │ │ └── bg.gif │ │ ├── dark_bootstrap.css │ │ ├── green_bootstrap.css │ │ ├── html │ │ │ ├── error_config.html │ │ │ ├── index_all.html │ │ │ ├── index_bootstrap.html │ │ │ └── index_dynamic.html │ │ ├── idash.css │ │ ├── idash │ │ │ ├── bg.png │ │ │ ├── html.gif │ │ │ └── htmlwarn.gif │ │ ├── jstyle_blue.css │ │ ├── jstyle_green.css │ │ ├── nextgen.css │ │ ├── nextgen │ │ │ └── nextgen_bg.png │ │ ├── phpsysinfo.css │ │ ├── phpsysinfo_bootstrap.css │ │ ├── phpsysinfo_bootstrap.css.new │ │ ├── plugin │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.jgrowl.css │ │ │ ├── jquery.treeTable.css │ │ │ └── nyroModal.full.css │ │ ├── two.css │ │ ├── two │ │ │ └── gradient.png │ │ └── vendor │ │ │ └── bootstrap.min.css │ │ ├── tools │ │ ├── MakeRelease.sh │ │ ├── README │ │ ├── aptana │ │ │ ├── js.xml │ │ │ └── php.xml │ │ ├── check.sh │ │ ├── checkdistro.php │ │ ├── distrotest.php │ │ ├── lint.bat │ │ └── speedfan │ │ │ ├── SpeedFanGet_bin.zip │ │ │ └── SpeedFanGet_src.zip │ │ └── xml.php ├── index.php └── langs │ ├── ca_ES │ └── phpsysinfo.lang │ ├── en_US │ └── phpsysinfo.lang │ ├── es_ES │ └── phpsysinfo.lang │ └── fr_FR │ └── phpsysinfo.lang ├── pibarcode ├── COPYING ├── ChangeLog.md ├── README.md ├── core │ └── modules │ │ ├── barcode │ │ └── pibarcode.modules.php │ │ └── modPiBarcode.class.php ├── img │ ├── barcode.png │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png └── includes │ └── barcode │ ├── genbarcode │ ├── GPL │ ├── README │ └── genbarcode │ └── pi_barcode │ └── pi_barcode.php ├── prestashopget ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .tx │ └── config ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ ├── doxygen │ │ └── prestashopget.doxyfile │ └── makepack-prestashopget.conf ├── class │ └── actions_prestashopget.class.php ├── core │ ├── boxes │ │ ├── README.md │ │ └── prestashopgetwidget1.php │ ├── modules │ │ └── modPrestashopGet.class.php │ └── triggers │ │ ├── README.md │ │ └── interface_99_modPrestashopGet_PrestashopGetTriggers.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── gfdl.png │ ├── gplv3.png │ ├── object_prestashopget.png │ └── prestashopget.png ├── index.php ├── langs │ ├── en_US │ │ └── prestashopget.lang │ └── fr_FR │ │ └── prestashopget.lang ├── lib │ └── prestashopget.lib.php └── modulebuilder.txt ├── revertinvoice ├── .editorconfig ├── .gitattributes ├── .gitignore ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ └── makepack-revertinvoice.conf ├── core │ ├── modules │ │ └── modRevertInvoice.class.php │ └── triggers │ │ └── interface_99_modRevertInvoice_RevertInvoiceTriggers.class.php ├── css │ └── revertinvoice.css.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_revertinvoice.png │ └── revertinvoice.png ├── js │ └── revertinvoice.js.php ├── langs │ ├── en_US │ │ └── revertinvoice.lang │ └── fr_FR │ │ └── revertinvoice.lang ├── lib │ └── revertinvoice.lib.php └── modulebuilder.txt ├── saftpt ├── admin │ └── saftpt.php ├── class │ ├── html.formsaftpt.class.php │ └── saftpt.class.php ├── core │ └── modules │ │ └── modSaftPt.class.php ├── exportsaft.php ├── index.php └── langs │ └── pt_PT │ └── saftpt.lang ├── scanner ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ └── scannersetuppage.php ├── config.php ├── core │ └── modules │ │ └── modScanner.class.php ├── functions.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_scanner.png │ ├── scan.jpg │ ├── scanner.png │ ├── scanner_large.png │ └── screen_shot_scanner_1.png ├── index.php └── langs │ ├── ca_ES │ └── scanner.lang │ ├── en_US │ └── scanner.lang │ ├── es_ES │ └── scanner.lang │ ├── fr_FR │ └── scanner.lang │ └── nl_NL │ └── scanner.lang ├── selectbank ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── selectbank.php ├── class │ └── actions_selectbank.class.php ├── core │ └── modules │ │ └── modSelectBank.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_selectbank.png │ ├── screen_shot_selectbank.png │ └── selectbank.png └── langs │ ├── en_US │ └── selectbank.lang │ └── fr_FR │ └── selectbank.lang ├── sendgrid ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── importinvoice.php │ └── setup.php ├── core │ └── modules │ │ └── modSendGrid.class.php ├── css │ └── sendgrid.css.php ├── doc │ └── spec │ │ └── cti.asciidoc ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_sendgrid.png │ └── server.svg ├── importinvoice.php ├── langs │ └── en_US │ │ └── sendgrid.lang ├── lib │ └── sendgrid.lib.php └── scripts │ └── importovhinvoice.php ├── skincoloreditor ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ ├── advancededitor.php │ └── quickeditor.php ├── core │ └── modules │ │ └── modSkinColorEditor.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_skincoloreditor.png │ ├── screen_shot_skincolor.png │ ├── screen_shot_skincolor_2.png │ └── screen_shot_skincolor_3.png ├── langs │ ├── ca_ES │ │ └── skincoloreditor.lang │ ├── en_US │ │ └── skincoloreditor.lang │ ├── es_ES │ │ └── skincoloreditor.lang │ └── fr_FR │ │ └── skincoloreditor.lang └── usercolors.php ├── stancerdolicloud ├── .gitignore ├── .tx │ └── config ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── build │ └── makepack-stancerdolicloud.conf ├── class │ └── actions_stancerdolicloud.class.php ├── core │ └── modules │ │ └── modStancerDolicloud.class.php ├── img │ ├── README.md │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ └── object_stancerdolicloud.png ├── langs │ └── en_US │ │ └── stancerdolicloud.lang ├── lib │ └── stancerdolicloud.lib.php ├── modulebuilder.txt ├── sql │ └── dolibarr_allversions.sql ├── stancerdolicloudindex.php └── test │ └── phpunit │ └── functionnal │ └── StancerDolicloudFunctionalTest.php ├── statistic ├── COPYING ├── ChangeLog.md ├── README.md ├── core │ └── modules │ │ ├── modStat.class.php │ │ └── statistic │ │ ├── modules_statistic.php │ │ └── pdf_statistic_test.modules.php ├── index.php ├── langs │ └── fr_FR │ │ └── statistic.lang └── stock.php ├── submiteverywhere ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ └── submiteverywheresetuppage.php ├── card.php ├── class │ └── SubmitewMessage.class.php ├── core │ ├── lib │ │ └── submiteverywhere.lib.php │ └── modules │ │ └── modSubmitEveryWhere.class.php ├── img │ ├── digg.png │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── email.png │ ├── facebook.png │ ├── googleplus.png │ ├── linkedin.png │ ├── twitter.png │ ├── viadeo.png │ └── web.png ├── index.php ├── langs │ ├── ca_ES │ │ └── submiteverywhere.lang │ ├── en_US │ │ └── submiteverywhere.lang │ ├── es_ES │ │ └── submiteverywhere.lang │ └── fr_FR │ │ └── submiteverywhere.lang ├── list.php └── sql │ ├── llx_submitew_message.sql │ ├── llx_submitew_targets.key.sql │ ├── llx_submitew_targets.sql │ ├── llx_submitew_targets_params.key.sql │ └── llx_submitew_targets_params.sql ├── tawkto ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ ├── about.php │ └── setup.php ├── class │ ├── actions_tawkto.class.php │ └── index.html ├── core │ ├── index.html │ └── modules │ │ ├── index.html │ │ └── modTawkTo.class.php ├── img │ ├── dolicloud_logo.png │ ├── dolidroid_512x512_en.png │ ├── object_tawkto.png │ └── tawkto_screenshot.png ├── includes │ └── index.html ├── index.php └── langs │ ├── en_US │ └── tawkto.lang │ └── fr_FR │ └── tawkto.lang ├── themespack ├── COPYING ├── core │ └── modules │ │ └── modThemesPack.class.php └── theme │ ├── bluelagoon │ ├── AUTHOR │ ├── alert │ │ ├── bottom.gif │ │ ├── bottom_left.gif │ │ ├── bottom_right.gif │ │ ├── left.gif │ │ ├── overlay.png │ │ ├── progress.gif │ │ ├── right.gif │ │ ├── top.gif │ │ ├── top_left.gif │ │ └── top_right.gif │ ├── img │ │ ├── 1downarrow.png │ │ ├── 1downarrow_selected.png │ │ ├── 1leftarrow.png │ │ ├── 1leftarrow_selected.png │ │ ├── 1rightarrow.png │ │ ├── 1rightarrow_selected.png │ │ ├── 1uparrow.png │ │ ├── 1uparrow_selected.png │ │ ├── addfile.png │ │ ├── alerte.png │ │ ├── background.png │ │ ├── button_bg.png │ │ ├── button_edit.png │ │ ├── calc.png │ │ ├── calendar.png │ │ ├── call.png │ │ ├── call_out.png │ │ ├── delete.png │ │ ├── disable.png │ │ ├── edit.png │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── editdelete.png │ │ ├── error.png │ │ ├── file.png │ │ ├── filenew.png │ │ ├── filter.png │ │ ├── folder-open.png │ │ ├── folder.png │ │ ├── help.png │ │ ├── high.png │ │ ├── history.png │ │ ├── icon_status_green.png │ │ ├── icon_status_green_light.png │ │ ├── icon_status_red.png │ │ ├── icon_status_red_light.png │ │ ├── info.png │ │ ├── lock.png │ │ ├── logout.png │ │ ├── next.png │ │ ├── object_account.png │ │ ├── object_action.png │ │ ├── object_barcode.png │ │ ├── object_bill.png │ │ ├── object_billa.png │ │ ├── object_billd.png │ │ ├── object_billr.png │ │ ├── object_book.png │ │ ├── object_bookmark.png │ │ ├── object_calendar.png │ │ ├── object_category-expanded.png │ │ ├── object_category.png │ │ ├── object_commercial.png │ │ ├── object_company.png │ │ ├── object_contact.png │ │ ├── object_contract.png │ │ ├── object_dir.png │ │ ├── object_email.png │ │ ├── object_energie.png │ │ ├── object_generic.png │ │ ├── object_globe.png │ │ ├── object_group.png │ │ ├── object_intervention.png │ │ ├── object_label.png │ │ ├── object_list.png │ │ ├── object_order.png │ │ ├── object_payment.png │ │ ├── object_phoning.png │ │ ├── object_product.png │ │ ├── object_project.png │ │ ├── object_projectpub.png │ │ ├── object_projecttask.png │ │ ├── object_propal.png │ │ ├── object_reduc.png │ │ ├── object_rss.png │ │ ├── object_sending.png │ │ ├── object_service.png │ │ ├── object_stock.png │ │ ├── object_task.png │ │ ├── object_technic.png │ │ ├── object_trip.png │ │ ├── object_user.png │ │ ├── off.png │ │ ├── on.png │ │ ├── pdf2.png │ │ ├── pdf3.png │ │ ├── previous.png │ │ ├── printer.png │ │ ├── puce.png │ │ ├── recent.png │ │ ├── redstar.png │ │ ├── refresh.png │ │ ├── reload.png │ │ ├── search.png │ │ ├── searchclear.png │ │ ├── setup.png │ │ ├── split.png │ │ ├── star.png │ │ ├── statut0.png │ │ ├── statut1.png │ │ ├── statut2.png │ │ ├── statut3.png │ │ ├── statut4.png │ │ ├── statut5.png │ │ ├── statut6.png │ │ ├── statut7.png │ │ ├── stcomm-1.png │ │ ├── stcomm-1_grayed.png │ │ ├── stcomm0.png │ │ ├── stcomm0_grayed.png │ │ ├── stcomm1.png │ │ ├── stcomm1_grayed.png │ │ ├── stcomm2.png │ │ ├── stcomm2_grayed.png │ │ ├── stcomm3.png │ │ ├── stcomm3_grayed.png │ │ ├── stcomm4.png │ │ ├── stcomm4_grayed.png │ │ ├── task.png │ │ ├── tick.png │ │ ├── title.gif │ │ ├── title.png │ │ ├── unlock.png │ │ ├── uparrow.png │ │ ├── vcard.png │ │ ├── view.png │ │ ├── warning.png │ │ └── working.gif │ ├── index.php │ ├── screenshot.jpg │ ├── style.css.php │ ├── thumb.png │ └── tpl │ │ ├── README │ │ └── index.php │ ├── freelug │ ├── AUTHOR │ ├── ckeditor │ │ └── config.js │ ├── graph-color.php │ ├── img │ │ ├── 1downarrow.png │ │ ├── 1downarrow_selected.png │ │ ├── 1leftarrow.png │ │ ├── 1leftarrow_selected.png │ │ ├── 1rightarrow.png │ │ ├── 1rightarrow_selected.png │ │ ├── 1uparrow.png │ │ ├── 1uparrow_selected.png │ │ ├── 1updownarrow.png │ │ ├── addfile.png │ │ ├── background.png │ │ ├── button_bg.png │ │ ├── button_edit.png │ │ ├── calc.png │ │ ├── calendar.png │ │ ├── call.png │ │ ├── call_out.png │ │ ├── delete.png │ │ ├── detail.png │ │ ├── disable.png │ │ ├── edit.png │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── editdelete.png │ │ ├── error.png │ │ ├── favicon.ico │ │ ├── file.png │ │ ├── filenew.png │ │ ├── filter.png │ │ ├── folder-open.png │ │ ├── folder.png │ │ ├── grip.png │ │ ├── help.png │ │ ├── high.png │ │ ├── history.png │ │ ├── info.png │ │ ├── lock.png │ │ ├── logout.png │ │ ├── next.png │ │ ├── object_account.png │ │ ├── object_action.png │ │ ├── object_barcode.png │ │ ├── object_bill.png │ │ ├── object_billa.png │ │ ├── object_billd.png │ │ ├── object_billr.png │ │ ├── object_book.png │ │ ├── object_bookmark.png │ │ ├── object_calendar.png │ │ ├── object_calendarday.png │ │ ├── object_calendarweek.png │ │ ├── object_category-expanded.png │ │ ├── object_category.png │ │ ├── object_commercial.png │ │ ├── object_company.png │ │ ├── object_contact.png │ │ ├── object_contract.png │ │ ├── object_dir.png │ │ ├── object_email.png │ │ ├── object_energie.png │ │ ├── object_generic.png │ │ ├── object_globe.png │ │ ├── object_group.png │ │ ├── object_intervention.png │ │ ├── object_label.png │ │ ├── object_list.png │ │ ├── object_order.png │ │ ├── object_payment.png │ │ ├── object_phoning.png │ │ ├── object_product.png │ │ ├── object_project.png │ │ ├── object_projectpub.png │ │ ├── object_projecttask.png │ │ ├── object_propal.png │ │ ├── object_reduc.png │ │ ├── object_rss.png │ │ ├── object_sending.png │ │ ├── object_service.png │ │ ├── object_stock.png │ │ ├── object_task.png │ │ ├── object_technic.png │ │ ├── object_trip.png │ │ ├── object_user.png │ │ ├── off.png │ │ ├── on.png │ │ ├── pdf2.png │ │ ├── pdf3.png │ │ ├── previous.png │ │ ├── printer.png │ │ ├── puce.png │ │ ├── recent.png │ │ ├── redstar.png │ │ ├── refresh.png │ │ ├── reload.png │ │ ├── rightarrow.png │ │ ├── search.png │ │ ├── searchclear.png │ │ ├── setup.png │ │ ├── split.png │ │ ├── star.png │ │ ├── stats.png │ │ ├── statut0.png │ │ ├── statut1.png │ │ ├── statut2.png │ │ ├── statut3.png │ │ ├── statut4.png │ │ ├── statut5.png │ │ ├── statut6.png │ │ ├── statut7.png │ │ ├── statut8.png │ │ ├── statut9.png │ │ ├── stcomm-1.png │ │ ├── stcomm-1_grayed.png │ │ ├── stcomm0.png │ │ ├── stcomm0_grayed.png │ │ ├── stcomm1.png │ │ ├── stcomm1_grayed.png │ │ ├── stcomm2.png │ │ ├── stcomm2_grayed.png │ │ ├── stcomm3.png │ │ ├── stcomm3_grayed.png │ │ ├── stcomm4.png │ │ ├── stcomm4_grayed.png │ │ ├── switch_off.png │ │ ├── switch_on.png │ │ ├── task.png │ │ ├── tick.png │ │ ├── title.gif │ │ ├── title.png │ │ ├── unlock.png │ │ ├── uparrow.png │ │ ├── vcard.png │ │ ├── view.png │ │ ├── warning.png │ │ └── working.gif │ ├── index.php │ ├── style.css.php │ ├── thumb.png │ └── tpl │ │ ├── README │ │ └── index.php │ └── yellow │ ├── AUTHOR │ ├── ckeditor │ └── config.js │ ├── graph-color.php │ ├── img │ ├── 1downarrow.png │ ├── 1downarrow_selected.png │ ├── 1leftarrow.png │ ├── 1leftarrow_selected.png │ ├── 1rightarrow.png │ ├── 1rightarrow_selected.png │ ├── 1uparrow.png │ ├── 1uparrow_selected.png │ ├── 1updownarrow.png │ ├── addfile.png │ ├── button_bg.png │ ├── button_edit.png │ ├── calc.png │ ├── calendar.png │ ├── call.png │ ├── call_out.png │ ├── delete.png │ ├── detail.png │ ├── disable.png │ ├── edit.png │ ├── edit_add.png │ ├── edit_remove.png │ ├── editdelete.png │ ├── error.png │ ├── favicon.ico │ ├── file.png │ ├── filenew.png │ ├── filter.png │ ├── folder-open.png │ ├── folder.png │ ├── grip.png │ ├── help.png │ ├── high.png │ ├── icon_status_green.png │ ├── icon_status_green_light.png │ ├── icon_status_red.png │ ├── icon_status_red_light.png │ ├── info.png │ ├── lock.png │ ├── logout.png │ ├── next.png │ ├── object_account.png │ ├── object_action.png │ ├── object_barcode.png │ ├── object_bill.png │ ├── object_billa.png │ ├── object_billd.png │ ├── object_billr.png │ ├── object_book.png │ ├── object_bookmark.png │ ├── object_calendar.png │ ├── object_calendarday.png │ ├── object_calendarweek.png │ ├── object_category-expanded.png │ ├── object_category.png │ ├── object_commercial.png │ ├── object_company.png │ ├── object_contact.png │ ├── object_contract.png │ ├── object_dir.png │ ├── object_email.png │ ├── object_energie.png │ ├── object_generic.png │ ├── object_globe.png │ ├── object_group.png │ ├── object_intervention.png │ ├── object_label.png │ ├── object_list.png │ ├── object_order.png │ ├── object_payment.png │ ├── object_phoning.png │ ├── object_product.png │ ├── object_project.png │ ├── object_projectpub.png │ ├── object_projecttask.png │ ├── object_propal.png │ ├── object_reduc.png │ ├── object_rss.png │ ├── object_sending.png │ ├── object_service.png │ ├── object_stock.png │ ├── object_task.png │ ├── object_technic.png │ ├── object_trip.png │ ├── object_user.png │ ├── off.png │ ├── on.png │ ├── pdf2.png │ ├── pdf3.png │ ├── previous.png │ ├── printer.png │ ├── puce.png │ ├── recent.png │ ├── redstar.png │ ├── refresh.png │ ├── reload.png │ ├── rightarrow.png │ ├── search.png │ ├── searchclear.png │ ├── setup.png │ ├── split.png │ ├── star.png │ ├── stats.png │ ├── statut0.png │ ├── statut1.png │ ├── statut2.png │ ├── statut3.png │ ├── statut4.png │ ├── statut5.png │ ├── statut6.png │ ├── statut7.png │ ├── statut8.png │ ├── statut9.png │ ├── stcomm-1.png │ ├── stcomm-1_grayed.png │ ├── stcomm0.png │ ├── stcomm0_grayed.png │ ├── stcomm1.png │ ├── stcomm1_grayed.png │ ├── stcomm2.png │ ├── stcomm2_grayed.png │ ├── stcomm3.png │ ├── stcomm3_grayed.png │ ├── stcomm4.png │ ├── stcomm4_grayed.png │ ├── switch_off.png │ ├── switch_on.png │ ├── tick.png │ ├── title.gif │ ├── title.png │ ├── unlock.png │ ├── uparrow.png │ ├── vcard.png │ ├── view.png │ ├── warning.png │ └── working.gif │ ├── index.php │ ├── style.css.php │ ├── thumb.png │ └── tpl │ ├── README │ └── index.php ├── tvacerfa ├── COPYING ├── ChangeLog.md ├── README.md ├── admin │ └── tvacerfa.php ├── core │ └── modules │ │ └── modTvaCerfa.class.php ├── img │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png ├── langs │ ├── ca_ES │ │ └── tvacerfa.lang │ ├── en_US │ │ └── tvacerfa.lang │ ├── es_ES │ │ └── tvacerfa.lang │ └── fr_FR │ │ └── tvacerfa.lang ├── lib │ └── tvacerfa.lib.php └── quadri_detail.php ├── userguide ├── .gitignore ├── COPYING ├── User_guide_fr.asciidoc ├── asciidoc-dblatex │ ├── asciidoc-dblatex.sty │ ├── asciidoc-dblatex.xsl │ ├── colors.sty │ ├── headfoot.sty │ ├── items.sty │ ├── listings.sty │ ├── mdframed.sty │ ├── pagestyle.sty │ ├── titles.sty │ └── wip-admon.sty ├── asciidoc.conf ├── asciidoc2pdf.py ├── buildpdf.sh ├── dolibarr_logo.png ├── icons │ ├── admon │ │ ├── caution.pdf │ │ ├── caution.svg │ │ ├── important.pdf │ │ ├── important.svg │ │ ├── note.pdf │ │ ├── note.svg │ │ ├── tip.pdf │ │ ├── tip.svg │ │ ├── warning.pdf │ │ └── warning.svg │ └── callout │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── test.asciidocdisabled ├── testok.asciidocdisabled └── user │ ├── Makefile │ ├── make.bat │ └── source │ ├── conf.py │ └── index.rst ├── webmailr ├── COPYING ├── ChangeLog.md ├── README.md ├── core │ └── modules │ │ └── modWebMailR.class.php ├── img │ ├── dolicloud_logo.png │ └── dolidroid_512x512_en.png └── includes │ └── roundcubemail │ ├── .htaccess │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── SQL │ ├── mssql.initial.sql │ ├── mysql.initial.sql │ ├── mysql.update.sql │ ├── postgres.initial.sql │ ├── postgres.update.sql │ ├── sqlite.initial.sql │ └── sqlite.update.sql │ ├── UPGRADING │ ├── bin │ ├── cleandb.sh │ ├── decrypt.sh │ ├── jsshrink.sh │ ├── jsunshrink.sh │ ├── msgexport.sh │ ├── msgimport.sh │ └── update.sh │ ├── config │ ├── .htaccess │ ├── db.inc.php.dist │ ├── main.inc.php.dist │ └── mimetypes.php │ ├── index.php │ ├── installer │ ├── check.php │ ├── client.js │ ├── config.php │ ├── images │ │ ├── add.png │ │ ├── banner_bg.gif │ │ ├── banner_logo.gif │ │ ├── banner_right.gif │ │ ├── delete.png │ │ └── error.png │ ├── index.php │ ├── rcube_install.php │ ├── styles.css │ ├── test.php │ ├── utils.php │ └── welcome.html │ ├── logs │ └── .htaccess │ ├── plugins │ ├── additional_message_headers │ │ ├── additional_message_headers.php │ │ └── package.xml │ ├── archive │ │ ├── archive.js │ │ ├── archive.php │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── en_US.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── fr_FR.inc │ │ │ ├── ja_JP.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ └── skins │ │ │ └── default │ │ │ ├── archive_act.png │ │ │ ├── archive_pas.png │ │ │ └── foldericon.png │ ├── autologon │ │ └── autologon.php │ ├── database_attachments │ │ └── database_attachments.php │ ├── debug_logger │ │ ├── debug_logger.php │ │ └── runlog │ │ │ └── runlog.php │ ├── emoticons │ │ └── emoticons.php │ ├── example_addressbook │ │ ├── example_addressbook.php │ │ └── example_addressbook_backend.php │ ├── filesystem_attachments │ │ └── filesystem_attachments.php │ ├── help │ │ ├── config.inc.php.dist │ │ ├── content │ │ │ ├── about.html │ │ │ └── license.html │ │ ├── help.php │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── hu_HU.inc │ │ │ ├── ja_JP.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ └── skins │ │ │ └── default │ │ │ ├── help.css │ │ │ ├── help.gif │ │ │ └── templates │ │ │ └── help.html │ ├── http_authentication │ │ └── http_authentication.php │ ├── managesieve │ │ ├── Changelog │ │ ├── config.inc.php.dist │ │ ├── lib │ │ │ ├── Net │ │ │ │ └── Sieve.php │ │ │ └── rcube_sieve.php │ │ ├── localization │ │ │ ├── bg_BG.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fr_FR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── it_IT.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sv_SE.inc │ │ │ ├── uk_UA.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── managesieve.js │ │ ├── managesieve.php │ │ └── skins │ │ │ └── default │ │ │ ├── managesieve.css │ │ │ ├── managesieve_toolbar.png │ │ │ └── templates │ │ │ ├── filteredit.html │ │ │ ├── managesieve.html │ │ │ └── setedit.html │ ├── markasjunk │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── en_US.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ ├── markasjunk.js │ │ ├── markasjunk.php │ │ ├── package.xml │ │ └── skins │ │ │ └── default │ │ │ ├── junk_act.png │ │ │ └── junk_pas.png │ ├── new_user_dialog │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── en_US.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── it_IT.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ ├── new_user_dialog.php │ │ ├── newuserdialog.css │ │ └── package.xml │ ├── new_user_identity │ │ └── new_user_identity.php │ ├── password │ │ ├── README │ │ ├── config.inc.php.dist │ │ ├── drivers │ │ │ ├── chgsaslpasswd.c │ │ │ ├── chgvirtualminpasswd.c │ │ │ ├── chpasswd.php │ │ │ ├── cpanel.php │ │ │ ├── directadmin.php │ │ │ ├── hmail.php │ │ │ ├── ldap.php │ │ │ ├── ldap_simple.php │ │ │ ├── pam.php │ │ │ ├── poppassd.php │ │ │ ├── sasl.php │ │ │ ├── sql.php │ │ │ ├── virtualmin.php │ │ │ ├── vpopmaild.php │ │ │ └── ximss.php │ │ ├── localization │ │ │ ├── bg_BG.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── en_US.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fr_FR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nl_NL.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── password.js │ │ └── password.php │ ├── show_additional_headers │ │ └── show_additional_headers.php │ ├── squirrelmail_usercopy │ │ ├── config.inc.php.dist │ │ └── squirrelmail_usercopy.php │ ├── subscriptions_option │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── en_US.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ └── subscriptions_option.php │ ├── userinfo │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── en_US.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── ja_JP.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ ├── userinfo.js │ │ └── userinfo.php │ ├── vcard_attachments │ │ ├── localization │ │ │ ├── cs_CZ.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── en_US.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── ja_JP.inc │ │ │ ├── pl_PL.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sv_SE.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── vcard_add_contact.png │ │ ├── vcard_attachments.php │ │ └── vcardattach.js │ ├── virtuser_file │ │ └── virtuser_file.php │ └── virtuser_query │ │ └── virtuser_query.php │ ├── program │ ├── blank.gif │ ├── blocked.gif │ ├── include │ │ ├── html.php │ │ ├── iniset.php │ │ ├── main.inc │ │ ├── rcmail.php │ │ ├── rcube_addressbook.php │ │ ├── rcube_browser.php │ │ ├── rcube_config.php │ │ ├── rcube_contacts.php │ │ ├── rcube_html_page.php │ │ ├── rcube_imap.php │ │ ├── rcube_imap_generic.php │ │ ├── rcube_json_output.php │ │ ├── rcube_ldap.php │ │ ├── rcube_mdb2.php │ │ ├── rcube_message.php │ │ ├── rcube_mime_struct.php │ │ ├── rcube_plugin.php │ │ ├── rcube_plugin_api.php │ │ ├── rcube_result_set.php │ │ ├── rcube_session.php │ │ ├── rcube_shared.inc │ │ ├── rcube_smtp.php │ │ ├── rcube_sqlite.inc │ │ ├── rcube_string_replacer.php │ │ ├── rcube_template.php │ │ ├── rcube_user.php │ │ └── rcube_vcard.php │ ├── js │ │ ├── app.js │ │ ├── app.js.src │ │ ├── common.js │ │ ├── common.js.src │ │ ├── editor.js │ │ ├── editor_images.js │ │ ├── googiespell.js │ │ ├── googiespell.js.src │ │ ├── jquery-1.4.min.js │ │ ├── list.js │ │ ├── list.js.src │ │ └── tiny_mce │ │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── ia.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tw.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ └── zh.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ ├── contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── directionality │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── emotions │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── emotions.htm │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── js │ │ │ │ │ └── emotions.js │ │ │ │ └── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ ├── content.css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── flv_player.swf │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ └── media.htm │ │ │ ├── nonbreaking │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── paste │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── searchreplace │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── spellchecker │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ └── wline.gif │ │ │ ├── table │ │ │ │ ├── cell.htm │ │ │ │ ├── css │ │ │ │ │ ├── cell.css │ │ │ │ │ ├── row.css │ │ │ │ │ └── table.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── cell.js │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ ├── row.js │ │ │ │ │ └── table.js │ │ │ │ ├── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── merge_cells.htm │ │ │ │ ├── row.htm │ │ │ │ └── table.htm │ │ │ └── visualchars │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── themes │ │ │ ├── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ └── icons.gif │ │ │ │ ├── js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── charmap.js │ │ │ │ │ ├── color_picker.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── link.js │ │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── be_dlg.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── ia.js │ │ │ │ │ ├── ia_dlg.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── no_dlg.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── te_dlg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── tw.js │ │ │ │ │ ├── tw_dlg.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ ├── zh.js │ │ │ │ │ └── zh_dlg.js │ │ │ │ ├── link.htm │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ ├── lib │ │ ├── enriched.inc │ │ ├── html2text.php │ │ ├── tnef_decoder.php │ │ ├── utf7.inc │ │ └── washtml.php │ ├── localization │ │ ├── ar_SA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ast │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── az_AZ │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── bg_BG │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── bn_BD │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── br │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── bs_BA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ca_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── cs_CZ │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── cy_GB │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── da_DK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── de_CH │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── de_DE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── el_GR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── en_GB │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── en_US │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── eo │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── es_AR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── es_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── et_EE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── eu_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fa │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fa_AF │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fi_FI │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fr_FR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ga_IE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── gl_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── he_IL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hi_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hr_HR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hu_HU │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hy_AM │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── id_ID │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── index.inc │ │ ├── is_IS │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── it_IT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ja_JP │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ka_GE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ko_KR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ku │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── lt_LT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── lv_LV │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── mk_MK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── mr_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ms_MY │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nb_NO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ne_NP │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nl_BE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nl_NL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nn_NO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pl_PL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ps │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pt_BR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pt_PT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ro_RO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ru_RU │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── si_LK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sk_SK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sl_SI │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sq_AL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sr_CS │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sv_SE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ta_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── th_TH │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── tr_TR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── uk_UA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── vi_VN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── zh_CN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ └── zh_TW │ │ │ ├── labels.inc │ │ │ └── messages.inc │ └── steps │ │ ├── addressbook │ │ ├── copy.inc │ │ ├── delete.inc │ │ ├── edit.inc │ │ ├── export.inc │ │ ├── func.inc │ │ ├── groups.inc │ │ ├── import.inc │ │ ├── list.inc │ │ ├── mailto.inc │ │ ├── save.inc │ │ ├── search.inc │ │ └── show.inc │ │ ├── mail │ │ ├── addcontact.inc │ │ ├── attachments.inc │ │ ├── autocomplete.inc │ │ ├── check_recent.inc │ │ ├── compose.inc │ │ ├── copy.inc │ │ ├── folders.inc │ │ ├── func.inc │ │ ├── get.inc │ │ ├── getunread.inc │ │ ├── headers.inc │ │ ├── list.inc │ │ ├── mark.inc │ │ ├── move_del.inc │ │ ├── search.inc │ │ ├── sendmail.inc │ │ ├── sendmdn.inc │ │ ├── show.inc │ │ └── viewsource.inc │ │ ├── settings │ │ ├── delete_identity.inc │ │ ├── edit_identity.inc │ │ ├── edit_prefs.inc │ │ ├── func.inc │ │ ├── identities.inc │ │ ├── manage_folders.inc │ │ ├── save_identity.inc │ │ └── save_prefs.inc │ │ └── utils │ │ ├── error.inc │ │ ├── html2text.inc │ │ ├── killcache.inc │ │ ├── modcss.inc │ │ ├── spell.inc │ │ ├── spell_googie.inc │ │ ├── spell_html_googie.inc │ │ ├── spell_html_pspell.inc │ │ └── spell_pspell.inc │ ├── robots.txt │ ├── skins │ └── default │ │ ├── README │ │ ├── addressbook.css │ │ ├── common.css │ │ ├── editor_content.css │ │ ├── functions.js │ │ ├── googiespell.css │ │ ├── ie6hacks.css │ │ ├── iehacks.css │ │ ├── images │ │ ├── abook_toolbar.gif │ │ ├── abook_toolbar.png │ │ ├── blank.gif │ │ ├── buttons │ │ │ ├── add_act.png │ │ │ ├── add_pas.png │ │ │ ├── add_sel.png │ │ │ └── bg.gif │ │ ├── cleardot.png │ │ ├── dimple.png │ │ ├── display │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── loading.gif │ │ │ └── loading_blue.gif │ │ ├── favicon.ico │ │ ├── googiespell │ │ │ ├── change_lang.gif │ │ │ ├── indicator.gif │ │ │ ├── ok.gif │ │ │ └── spellc.gif │ │ ├── icons │ │ │ ├── abcard.png │ │ │ ├── attachment.png │ │ │ ├── blank.gif │ │ │ ├── collapsed.png │ │ │ ├── columnpicker.gif │ │ │ ├── delete.png │ │ │ ├── deleted.png │ │ │ ├── dot.png │ │ │ ├── down_small.gif │ │ │ ├── expanded.png │ │ │ ├── extwin.png │ │ │ ├── flagged.png │ │ │ ├── folders.gif │ │ │ ├── folders.png │ │ │ ├── forwarded.png │ │ │ ├── forwarded_replied.png │ │ │ ├── glass.gif │ │ │ ├── glass.png │ │ │ ├── glass_roll.png │ │ │ ├── groupactions.gif │ │ │ ├── groupactions.png │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── rename.png │ │ │ ├── replied.png │ │ │ ├── reset.gif │ │ │ ├── silhouette.png │ │ │ ├── sort.gif │ │ │ ├── unflagged.png │ │ │ ├── unread.png │ │ │ ├── unread_children.png │ │ │ └── up_small.gif │ │ ├── listheader.gif │ │ ├── mail_footer.gif │ │ ├── mail_footer.png │ │ ├── mail_toolbar.gif │ │ ├── mail_toolbar.png │ │ ├── mailbox_list.gif │ │ ├── mailbox_selected.gif │ │ ├── messageactions.gif │ │ ├── messageactions.png │ │ ├── pagenav.gif │ │ ├── quota.gif │ │ ├── roundcube_logo.png │ │ ├── searchfield.gif │ │ ├── tabs.gif │ │ ├── taskbar.gif │ │ ├── taskbar.png │ │ ├── taskicons.gif │ │ ├── taskicons.png │ │ ├── tree.gif │ │ └── watermark.gif │ │ ├── includes │ │ ├── header.html │ │ ├── links.html │ │ ├── messagemenu.html │ │ ├── settingstabs.html │ │ └── taskbar.html │ │ ├── mail.css │ │ ├── pngbehavior.htc │ │ ├── print.css │ │ ├── safari.css │ │ ├── settings.css │ │ ├── splitter.js │ │ ├── templates │ │ ├── addcontact.html │ │ ├── addressbook.html │ │ ├── compose.html │ │ ├── editcontact.html │ │ ├── editidentity.html │ │ ├── error.html │ │ ├── identities.html │ │ ├── importcontacts.html │ │ ├── login.html │ │ ├── mail.html │ │ ├── managefolders.html │ │ ├── message.html │ │ ├── messageerror.html │ │ ├── messagepart.html │ │ ├── messagepreview.html │ │ ├── plugin.html │ │ ├── printmessage.html │ │ ├── settings.html │ │ ├── settingsedit.html │ │ └── showcontact.html │ │ └── watermark.html │ └── temp │ └── .htaccess ├── yt ├── .gitignore ├── README └── yttest.py └── zipautofillfr ├── COPYING ├── ChangeLog.md ├── README.md ├── admin ├── about.php └── zipautofillfr.php ├── core └── modules │ └── modZipAutoFillFr.class.php ├── img ├── dolicloud_logo.png ├── dolidroid_512x512_en.png ├── object_zipautofillfr.png ├── screenshot_zip_frbe.png └── zipautofillfr.png ├── langs ├── ca_ES │ └── zipautofillfr.lang ├── en_US │ └── zipautofillfr.lang ├── es_ES │ └── zipautofillfr.lang └── fr_FR │ └── zipautofillfr.lang ├── sql └── data.sql └── tools └── fixcase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/phan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.github/workflows/phan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /org.eclipse.wst.common.project.facet.core.xml 2 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.php.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.settings/org.eclipse.php.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.settings/org.eclipse.wst.jsdt.ui.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.settings/org.eclipse.wst.validation.prefs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/.tx/config -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dev/build/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pl 2 | *.tgz 3 | *.zip 4 | -------------------------------------------------------------------------------- /dev/build/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.zip 3 | -------------------------------------------------------------------------------- /dev/build/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/README.txt -------------------------------------------------------------------------------- /dev/build/makepack-AWStats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-AWStats.conf -------------------------------------------------------------------------------- /dev/build/makepack-Alumni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Alumni.conf -------------------------------------------------------------------------------- /dev/build/makepack-BilledOnOrders.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-BilledOnOrders.conf -------------------------------------------------------------------------------- /dev/build/makepack-BitTorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-BitTorrent.conf -------------------------------------------------------------------------------- /dev/build/makepack-ConcatPdf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-ConcatPdf.conf -------------------------------------------------------------------------------- /dev/build/makepack-EcoTaxDeee.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-EcoTaxDeee.conf -------------------------------------------------------------------------------- /dev/build/makepack-FacturXUtil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-FacturXUtil.conf -------------------------------------------------------------------------------- /dev/build/makepack-FileManager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-FileManager.conf -------------------------------------------------------------------------------- /dev/build/makepack-Google.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Google.conf -------------------------------------------------------------------------------- /dev/build/makepack-HelloAsso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-HelloAsso.conf -------------------------------------------------------------------------------- /dev/build/makepack-IPPhone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-IPPhone.conf -------------------------------------------------------------------------------- /dev/build/makepack-Memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Memcached.conf -------------------------------------------------------------------------------- /dev/build/makepack-Monitoring.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Monitoring.conf -------------------------------------------------------------------------------- /dev/build/makepack-NumberWords.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-NumberWords.conf -------------------------------------------------------------------------------- /dev/build/makepack-NumberingPack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-NumberingPack.conf -------------------------------------------------------------------------------- /dev/build/makepack-OpenStreetMap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-OpenStreetMap.conf -------------------------------------------------------------------------------- /dev/build/makepack-Ovh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Ovh.conf -------------------------------------------------------------------------------- /dev/build/makepack-PHPSysInfo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-PHPSysInfo.conf -------------------------------------------------------------------------------- /dev/build/makepack-PayplugDolicloud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-PayplugDolicloud.conf -------------------------------------------------------------------------------- /dev/build/makepack-PiBarcode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-PiBarcode.conf -------------------------------------------------------------------------------- /dev/build/makepack-SaftPt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-SaftPt.conf -------------------------------------------------------------------------------- /dev/build/makepack-Scanner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-Scanner.conf -------------------------------------------------------------------------------- /dev/build/makepack-SelectBank.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-SelectBank.conf -------------------------------------------------------------------------------- /dev/build/makepack-SkinColorEditor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-SkinColorEditor.conf -------------------------------------------------------------------------------- /dev/build/makepack-SubmitEveryWhere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-SubmitEveryWhere.conf -------------------------------------------------------------------------------- /dev/build/makepack-TawkTo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-TawkTo.conf -------------------------------------------------------------------------------- /dev/build/makepack-TvaCerfa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-TvaCerfa.conf -------------------------------------------------------------------------------- /dev/build/makepack-ZipAutoFillFr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-ZipAutoFillFr.conf -------------------------------------------------------------------------------- /dev/build/makepack-dolibarrtheme.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/makepack-dolibarrtheme.pl -------------------------------------------------------------------------------- /dev/build/tgz/tar_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/build/tgz/tar_exclude.txt -------------------------------------------------------------------------------- /dev/tools/fixdosfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/fixdosfiles.sh -------------------------------------------------------------------------------- /dev/tools/phan/.baseline.txt.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/.baseline.txt.swp -------------------------------------------------------------------------------- /dev/tools/phan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/README.md -------------------------------------------------------------------------------- /dev/tools/phan/baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/baseline.txt -------------------------------------------------------------------------------- /dev/tools/phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/config.php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/Core.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/Core.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/FFI.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/FFI.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/PDO.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/PDO.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/Phar.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/Phar.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/README.md -------------------------------------------------------------------------------- /dev/tools/phan/stubs/Reflection.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/Reflection.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/SPL.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/SPL.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/SimpleXML.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/SimpleXML.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/apc.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/apc.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/apcu.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/apcu.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/ast.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/ast.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/bcmath.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/bcmath.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/calendar.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/calendar.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/ctype.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/ctype.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/curl.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/curl.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/date.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/date.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/dolibarr.php.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/dolibarr.php.disabled -------------------------------------------------------------------------------- /dev/tools/phan/stubs/dom.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/dom.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/exif.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/exif.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/fileinfo.phan_php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tools/phan/stubs/filter.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/filter.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/ftp.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/ftp.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/gd.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/gd.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/gettext.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/gettext.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/hash.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/hash.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/iconv.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/iconv.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/igbinary.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/igbinary.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/intl.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/intl.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/json.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/json.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/libxml.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/libxml.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mailparse.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mailparse.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mbstring.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mbstring.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mcrypt.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mcrypt.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/memcached.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/memcached.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mongodb.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mongodb.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mysqli.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mysqli.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/mysqlnd.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/mysqlnd.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/openssl.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/openssl.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/pcntl.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/pcntl.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/pcre.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/pcre.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/pdo_mysql.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/pdo_mysql.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/pdo_sqlite.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/pdo_sqlite.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/posix.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/posix.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/random.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/random.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/readline.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/readline.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/redis.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/redis.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/session.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/session.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/shmop.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/shmop.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/soap.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/soap.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sockets.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sockets.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sodium.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sodium.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sqlite3.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sqlite3.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/standard.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/standard.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sysvmsg.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sysvmsg.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sysvsem.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sysvsem.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/sysvshm.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/sysvshm.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/tokenizer.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/tokenizer.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/xdebug.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/xdebug.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/xml.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/xml.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/xmlreader.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/xmlreader.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/xmlwriter.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/xmlwriter.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/xsl.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/xsl.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/yaml.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/yaml.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/zip.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/zip.phan_php -------------------------------------------------------------------------------- /dev/tools/phan/stubs/zlib.phan_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/phan/stubs/zlib.phan_php -------------------------------------------------------------------------------- /dev/tools/rector/.gitignore: -------------------------------------------------------------------------------- 1 | /test.php 2 | /vendor -------------------------------------------------------------------------------- /dev/tools/rector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/rector/README.md -------------------------------------------------------------------------------- /dev/tools/rector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/rector/composer.json -------------------------------------------------------------------------------- /dev/tools/rector/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/rector/composer.lock -------------------------------------------------------------------------------- /dev/tools/rector/rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/tools/rector/rector.php -------------------------------------------------------------------------------- /dev/translation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/translation/README -------------------------------------------------------------------------------- /dev/translation/strip_language_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/translation/strip_language_file.php -------------------------------------------------------------------------------- /dev/translation/txpull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/translation/txpull.sh -------------------------------------------------------------------------------- /dev/translation/txpush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/dev/translation/txpush.sh -------------------------------------------------------------------------------- /htdocs/.gitignore: -------------------------------------------------------------------------------- 1 | /gcontacts 2 | *.back 3 | -------------------------------------------------------------------------------- /htdocs/aidocparser/dev/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/aidocparser/dev/spec.txt -------------------------------------------------------------------------------- /htdocs/alumni/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/.gitignore -------------------------------------------------------------------------------- /htdocs/alumni/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/COPYING -------------------------------------------------------------------------------- /htdocs/alumni/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG ALUMNI FOR [DOLIBARR ERP CRM](https://www.dolibarr.org) 2 | 3 | 1.0 4 | 5 | Initial version 6 | -------------------------------------------------------------------------------- /htdocs/alumni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/README.md -------------------------------------------------------------------------------- /htdocs/alumni/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/admin/about.php -------------------------------------------------------------------------------- /htdocs/alumni/admin/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/admin/setup.php -------------------------------------------------------------------------------- /htdocs/alumni/admin/survey_extrafields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/admin/survey_extrafields.php -------------------------------------------------------------------------------- /htdocs/alumni/alumniindex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/alumniindex.php -------------------------------------------------------------------------------- /htdocs/alumni/build/makepack-alumni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/build/makepack-alumni.conf -------------------------------------------------------------------------------- /htdocs/alumni/class/survey.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/class/survey.class.php -------------------------------------------------------------------------------- /htdocs/alumni/doctemplates/websites/website_template_alumni/README.md: -------------------------------------------------------------------------------- 1 | Website generated by Dolibarr ERP CRM 2 | -------------------------------------------------------------------------------- /htdocs/alumni/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/alumni/img/dolidroid_512x512_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/img/dolidroid_512x512_en.png -------------------------------------------------------------------------------- /htdocs/alumni/langs/ca_ES/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/ca_ES/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/de_AT/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/de_AT/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/de_CH/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/de_CH/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/de_DE/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/de_DE/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/en_US/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/en_US/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/es_ES/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/es_ES/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/fr_BE/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/fr_BE/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/fr_FR/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/fr_FR/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/it_IT/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/it_IT/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/nl_NL/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/nl_NL/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/no_NO/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/no_NO/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/pt_BR/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/pt_BR/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/pt_PT/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/pt_PT/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/ro_RO/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/ro_RO/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/ru_RU/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/ru_RU/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/langs/uk_UA/alumni.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/langs/uk_UA/alumni.lang -------------------------------------------------------------------------------- /htdocs/alumni/lib/alumni.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/lib/alumni.lib.php -------------------------------------------------------------------------------- /htdocs/alumni/lib/alumni_survey.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/lib/alumni_survey.lib.php -------------------------------------------------------------------------------- /htdocs/alumni/modulebuilder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/modulebuilder.txt -------------------------------------------------------------------------------- /htdocs/alumni/sql/dolibarr_allversions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/sql/dolibarr_allversions.sql -------------------------------------------------------------------------------- /htdocs/alumni/sql/llx_alumni_survey.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/sql/llx_alumni_survey.sql -------------------------------------------------------------------------------- /htdocs/alumni/survey_agenda.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/survey_agenda.php -------------------------------------------------------------------------------- /htdocs/alumni/survey_card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/survey_card.php -------------------------------------------------------------------------------- /htdocs/alumni/survey_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/survey_document.php -------------------------------------------------------------------------------- /htdocs/alumni/survey_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/survey_list.php -------------------------------------------------------------------------------- /htdocs/alumni/survey_note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/alumni/survey_note.php -------------------------------------------------------------------------------- /htdocs/awstats/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/COPYING -------------------------------------------------------------------------------- /htdocs/awstats/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/awstats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/README.md -------------------------------------------------------------------------------- /htdocs/awstats/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/admin/about.php -------------------------------------------------------------------------------- /htdocs/awstats/admin/awstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/admin/awstats.php -------------------------------------------------------------------------------- /htdocs/awstats/css/awstats.css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/css/awstats.css.php -------------------------------------------------------------------------------- /htdocs/awstats/gpl-3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/gpl-3.0.html -------------------------------------------------------------------------------- /htdocs/awstats/images/awstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/awstats.png -------------------------------------------------------------------------------- /htdocs/awstats/images/awstats_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/awstats_screen.png -------------------------------------------------------------------------------- /htdocs/awstats/images/he.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/he.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hh.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hk.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hp.png -------------------------------------------------------------------------------- /htdocs/awstats/images/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/ht.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hu.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hv.png -------------------------------------------------------------------------------- /htdocs/awstats/images/hx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/hx.png -------------------------------------------------------------------------------- /htdocs/awstats/images/jawstats_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/jawstats_screen.png -------------------------------------------------------------------------------- /htdocs/awstats/images/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/menu2.png -------------------------------------------------------------------------------- /htdocs/awstats/images/object_awstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/images/object_awstats.png -------------------------------------------------------------------------------- /htdocs/awstats/img/awstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/img/awstats.png -------------------------------------------------------------------------------- /htdocs/awstats/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/awstats/img/object_awstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/img/object_awstats.png -------------------------------------------------------------------------------- /htdocs/awstats/img/screen_shot_awstats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/img/screen_shot_awstats.jpg -------------------------------------------------------------------------------- /htdocs/awstats/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/index.php -------------------------------------------------------------------------------- /htdocs/awstats/langs/ca_ES/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/ca_ES/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/de_AT/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/de_AT/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/de_CH/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/de_CH/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/de_DE/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/de_DE/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/en_US/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/en_US/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/es_ES/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/es_ES/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/fr_BE/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/fr_BE/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/fr_FR/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/fr_FR/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/it_IT/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/it_IT/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/nl_NL/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/nl_NL/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/no_NO/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/no_NO/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/pt_BR/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/pt_BR/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/pt_PT/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/pt_PT/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/ro_RO/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/ro_RO/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/ru_RU/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/ru_RU/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/langs/uk_UA/awstats.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/langs/uk_UA/awstats.lang -------------------------------------------------------------------------------- /htdocs/awstats/lib/awstats.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/awstats/lib/awstats.lib.php -------------------------------------------------------------------------------- /htdocs/billedonorders/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/billedonorders/COPYING -------------------------------------------------------------------------------- /htdocs/billedonorders/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/billedonorders/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/billedonorders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/billedonorders/README.md -------------------------------------------------------------------------------- /htdocs/billedonorders/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/billedonorders/admin/about.php -------------------------------------------------------------------------------- /htdocs/bittorrent/BDecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/BDecode.php -------------------------------------------------------------------------------- /htdocs/bittorrent/BEncode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/BEncode.php -------------------------------------------------------------------------------- /htdocs/bittorrent/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/COPYING -------------------------------------------------------------------------------- /htdocs/bittorrent/DumpTorrentCGI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/DumpTorrentCGI.php -------------------------------------------------------------------------------- /htdocs/bittorrent/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/admin.php -------------------------------------------------------------------------------- /htdocs/bittorrent/announce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/announce.php -------------------------------------------------------------------------------- /htdocs/bittorrent/batch_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/batch_upload.php -------------------------------------------------------------------------------- /htdocs/bittorrent/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/config.php -------------------------------------------------------------------------------- /htdocs/bittorrent/deleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/deleter.php -------------------------------------------------------------------------------- /htdocs/bittorrent/dltorrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/dltorrent.php -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/BEncode-API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/BEncode-API.txt -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/ChangeLog.txt -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/LICENSE.txt -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/help.html -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/imgs/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/imgs/1.gif -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/imgs/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/imgs/2.gif -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/imgs/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/imgs/3.gif -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/imgs/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/imgs/4.gif -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/imgs/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/bittorrent/docs/imgs/5.gif -------------------------------------------------------------------------------- /htdocs/bittorrent/docs/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/seld/phar-utils/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/console/Tests/Fixtures/stream_output_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /htdocs/google/includes/google-api-php-client/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /htdocs/google/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/index.php -------------------------------------------------------------------------------- /htdocs/google/langs/ca_ES/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/ca_ES/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/de_AT/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/de_AT/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/de_CH/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/de_CH/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/de_DE/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/de_DE/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/en_US/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/en_US/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/es_ES/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/es_ES/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/fr_BE/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/fr_BE/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/fr_FR/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/fr_FR/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/it_IT/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/it_IT/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/nl_NL/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/nl_NL/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/no_NO/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/no_NO/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/pt_BR/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/pt_BR/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/pt_PT/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/pt_PT/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/ro_RO/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/ro_RO/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/ru_RU/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/ru_RU/google.lang -------------------------------------------------------------------------------- /htdocs/google/langs/uk_UA/google.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/langs/uk_UA/google.lang -------------------------------------------------------------------------------- /htdocs/google/lib/google.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/lib/google.lib.php -------------------------------------------------------------------------------- /htdocs/google/oauth2callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/oauth2callback.php -------------------------------------------------------------------------------- /htdocs/google/sql/3.6.0-3.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/sql/3.6.0-3.7.0.sql -------------------------------------------------------------------------------- /htdocs/google/sql/3.7.0-6.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/sql/3.7.0-6.0.0.sql -------------------------------------------------------------------------------- /htdocs/google/sql/llx_google_maps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/google/sql/llx_google_maps.sql -------------------------------------------------------------------------------- /htdocs/ifttt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/README.md -------------------------------------------------------------------------------- /htdocs/ifttt/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/admin/index.php -------------------------------------------------------------------------------- /htdocs/ifttt/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/ifttt/img/object_ifttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/img/object_ifttt.png -------------------------------------------------------------------------------- /htdocs/ifttt/langs/en_US/ifttt.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/langs/en_US/ifttt.lang -------------------------------------------------------------------------------- /htdocs/ifttt/public/ifttt/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ifttt/public/ifttt/index.php -------------------------------------------------------------------------------- /htdocs/includes/ckfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/includes/ckfinder/README.md -------------------------------------------------------------------------------- /htdocs/includes/ckfinder/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/includes/ckfinder/config.js -------------------------------------------------------------------------------- /htdocs/includes/ckfinder/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/includes/ckfinder/config.php -------------------------------------------------------------------------------- /htdocs/ipphone/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/COPYING -------------------------------------------------------------------------------- /htdocs/ipphone/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/ipphone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/README.md -------------------------------------------------------------------------------- /htdocs/ipphone/admin/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/admin/setup.php -------------------------------------------------------------------------------- /htdocs/ipphone/gpl-3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/gpl-3.0.html -------------------------------------------------------------------------------- /htdocs/ipphone/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/ipphone/img/object_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/img/object_phone.png -------------------------------------------------------------------------------- /htdocs/ipphone/img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/img/phone.png -------------------------------------------------------------------------------- /htdocs/ipphone/langs/ca_ES/ipphone.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/langs/ca_ES/ipphone.lang -------------------------------------------------------------------------------- /htdocs/ipphone/langs/en_US/ipphone.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/langs/en_US/ipphone.lang -------------------------------------------------------------------------------- /htdocs/ipphone/langs/es_ES/ipphone.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/langs/es_ES/ipphone.lang -------------------------------------------------------------------------------- /htdocs/ipphone/langs/fr_FR/ipphone.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/langs/fr_FR/ipphone.lang -------------------------------------------------------------------------------- /htdocs/ipphone/public/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ipphone/public/service.php -------------------------------------------------------------------------------- /htdocs/mantis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/COPYING -------------------------------------------------------------------------------- /htdocs/mantis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/README.md -------------------------------------------------------------------------------- /htdocs/mantis/admin/mantis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/admin/mantis.php -------------------------------------------------------------------------------- /htdocs/mantis/class/mantis.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/class/mantis.class.php -------------------------------------------------------------------------------- /htdocs/mantis/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/mantis/index.php: -------------------------------------------------------------------------------- 1 | Url not available -------------------------------------------------------------------------------- /htdocs/mantis/mantis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/mantis.php -------------------------------------------------------------------------------- /htdocs/mantis/mantistop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mantis/mantistop.php -------------------------------------------------------------------------------- /htdocs/memcached/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/COPYING -------------------------------------------------------------------------------- /htdocs/memcached/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/README.md -------------------------------------------------------------------------------- /htdocs/memcached/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/admin/about.php -------------------------------------------------------------------------------- /htdocs/memcached/admin/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/admin/memcached.php -------------------------------------------------------------------------------- /htdocs/memcached/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/memcached/lib/memcached.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/memcached/lib/memcached.lib.php -------------------------------------------------------------------------------- /htdocs/monitoring/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/COPYING -------------------------------------------------------------------------------- /htdocs/monitoring/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/README.md -------------------------------------------------------------------------------- /htdocs/monitoring/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/admin/about.php -------------------------------------------------------------------------------- /htdocs/monitoring/admin/monitoring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/admin/monitoring.php -------------------------------------------------------------------------------- /htdocs/monitoring/img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/img/graph.png -------------------------------------------------------------------------------- /htdocs/monitoring/img/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/img/monitor.png -------------------------------------------------------------------------------- /htdocs/monitoring/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/index.php -------------------------------------------------------------------------------- /htdocs/monitoring/probes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/probes.php -------------------------------------------------------------------------------- /htdocs/monitoring/rrd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/rrd.txt -------------------------------------------------------------------------------- /htdocs/monitoring/sql/1.0.0-3.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/monitoring/sql/1.0.0-3.4.0.sql -------------------------------------------------------------------------------- /htdocs/moretemplates/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/moretemplates/COPYING -------------------------------------------------------------------------------- /htdocs/moretemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/moretemplates/README.md -------------------------------------------------------------------------------- /htdocs/mywidgets/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/COPYING -------------------------------------------------------------------------------- /htdocs/mywidgets/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/mywidgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/README.md -------------------------------------------------------------------------------- /htdocs/mywidgets/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/admin/about.php -------------------------------------------------------------------------------- /htdocs/mywidgets/admin/mywidgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/admin/mywidgets.php -------------------------------------------------------------------------------- /htdocs/mywidgets/core/boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/core/boxes/README.md -------------------------------------------------------------------------------- /htdocs/mywidgets/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/mywidgets/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/netatmo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/.editorconfig -------------------------------------------------------------------------------- /htdocs/netatmo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/.gitattributes -------------------------------------------------------------------------------- /htdocs/netatmo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/.gitignore -------------------------------------------------------------------------------- /htdocs/netatmo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/COPYING -------------------------------------------------------------------------------- /htdocs/netatmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/README.md -------------------------------------------------------------------------------- /htdocs/netatmo/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/admin/about.php -------------------------------------------------------------------------------- /htdocs/netatmo/admin/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/admin/setup.php -------------------------------------------------------------------------------- /htdocs/netatmo/css/netatmo.css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/css/netatmo.css.php -------------------------------------------------------------------------------- /htdocs/netatmo/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/netatmo/img/netatmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/img/netatmo.png -------------------------------------------------------------------------------- /htdocs/netatmo/img/object_netatmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/img/object_netatmo.png -------------------------------------------------------------------------------- /htdocs/netatmo/includes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/includes/README.md -------------------------------------------------------------------------------- /htdocs/netatmo/js/netatmo.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/js/netatmo.js.php -------------------------------------------------------------------------------- /htdocs/netatmo/langs/en_US/netatmo.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/langs/en_US/netatmo.lang -------------------------------------------------------------------------------- /htdocs/netatmo/langs/fr_FR/netatmo.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/langs/fr_FR/netatmo.lang -------------------------------------------------------------------------------- /htdocs/netatmo/lib/netatmo.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/lib/netatmo.lib.php -------------------------------------------------------------------------------- /htdocs/netatmo/modulebuilder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/modulebuilder.txt -------------------------------------------------------------------------------- /htdocs/netatmo/netatmoindex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/netatmoindex.php -------------------------------------------------------------------------------- /htdocs/netatmo/public/netatmo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/public/netatmo.php -------------------------------------------------------------------------------- /htdocs/netatmo/public/playvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/netatmo/public/playvideo.html -------------------------------------------------------------------------------- /htdocs/numberingpack/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberingpack/COPYING -------------------------------------------------------------------------------- /htdocs/numberingpack/img/numbering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberingpack/img/numbering.png -------------------------------------------------------------------------------- /htdocs/numberwords/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberwords/COPYING -------------------------------------------------------------------------------- /htdocs/numberwords/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberwords/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/numberwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberwords/README.md -------------------------------------------------------------------------------- /htdocs/numberwords/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberwords/admin/about.php -------------------------------------------------------------------------------- /htdocs/numberwords/img/numberwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/numberwords/img/numberwords.png -------------------------------------------------------------------------------- /htdocs/openstreetmap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/COPYING -------------------------------------------------------------------------------- /htdocs/openstreetmap/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/openstreetmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/README.md -------------------------------------------------------------------------------- /htdocs/openstreetmap/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/admin/about.php -------------------------------------------------------------------------------- /htdocs/openstreetmap/gpl-3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/gpl-3.0.html -------------------------------------------------------------------------------- /htdocs/openstreetmap/maps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/openstreetmap/maps.php -------------------------------------------------------------------------------- /htdocs/ovh/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/COPYING -------------------------------------------------------------------------------- /htdocs/ovh/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/ovh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/README.md -------------------------------------------------------------------------------- /htdocs/ovh/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/about.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_click2dial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_click2dial.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_importinvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_importinvoice.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_other.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_setup.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_sms_setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_sms_setup.php -------------------------------------------------------------------------------- /htdocs/ovh/admin/ovh_smsrecap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/admin/ovh_smsrecap.php -------------------------------------------------------------------------------- /htdocs/ovh/class/actions_ovh.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/class/actions_ovh.class.php -------------------------------------------------------------------------------- /htdocs/ovh/class/ovhserver.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/class/ovhserver.class.php -------------------------------------------------------------------------------- /htdocs/ovh/class/ovhsms.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/class/ovhsms.class.php -------------------------------------------------------------------------------- /htdocs/ovh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/composer.json -------------------------------------------------------------------------------- /htdocs/ovh/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/composer.lock -------------------------------------------------------------------------------- /htdocs/ovh/doc/spec/cti.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/doc/spec/cti.asciidoc -------------------------------------------------------------------------------- /htdocs/ovh/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/ovh/img/dolidroid_512x512_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/dolidroid_512x512_en.png -------------------------------------------------------------------------------- /htdocs/ovh/img/logo_ovh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/logo_ovh.jpg -------------------------------------------------------------------------------- /htdocs/ovh/img/object_ovh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/object_ovh.png -------------------------------------------------------------------------------- /htdocs/ovh/img/object_server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/object_server.svg -------------------------------------------------------------------------------- /htdocs/ovh/img/ovh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/ovh.png -------------------------------------------------------------------------------- /htdocs/ovh/img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/phone.png -------------------------------------------------------------------------------- /htdocs/ovh/img/screen_shot_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/screen_shot_sms.png -------------------------------------------------------------------------------- /htdocs/ovh/img/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/img/server.svg -------------------------------------------------------------------------------- /htdocs/ovh/importovhinvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/importovhinvoice.php -------------------------------------------------------------------------------- /htdocs/ovh/includes/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/autoload.php -------------------------------------------------------------------------------- /htdocs/ovh/includes/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/composer/LICENSE -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/.gitignore -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/.travis.yml -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/LICENSE -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/README.md -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/build.xml -------------------------------------------------------------------------------- /htdocs/ovh/includes/ovh/ovh/src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/ovh/includes/ovh/ovh/src/Api.php -------------------------------------------------------------------------------- /htdocs/ovh/includes/symfony/polyfill-php70/Resources/stubs/Error.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htdocs/themespack/theme/freelug/index.php: -------------------------------------------------------------------------------- 1 | Url not available -------------------------------------------------------------------------------- /htdocs/themespack/theme/freelug/tpl/index.php: -------------------------------------------------------------------------------- 1 | Url not available -------------------------------------------------------------------------------- /htdocs/themespack/theme/yellow/AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/themespack/theme/yellow/AUTHOR -------------------------------------------------------------------------------- /htdocs/themespack/theme/yellow/index.php: -------------------------------------------------------------------------------- 1 | Url not available -------------------------------------------------------------------------------- /htdocs/themespack/theme/yellow/tpl/index.php: -------------------------------------------------------------------------------- 1 | Url not available -------------------------------------------------------------------------------- /htdocs/tvacerfa/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/COPYING -------------------------------------------------------------------------------- /htdocs/tvacerfa/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/tvacerfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/README.md -------------------------------------------------------------------------------- /htdocs/tvacerfa/admin/tvacerfa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/admin/tvacerfa.php -------------------------------------------------------------------------------- /htdocs/tvacerfa/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/tvacerfa/lib/tvacerfa.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/lib/tvacerfa.lib.php -------------------------------------------------------------------------------- /htdocs/tvacerfa/quadri_detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/tvacerfa/quadri_detail.php -------------------------------------------------------------------------------- /htdocs/userguide/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pdf 2 | /*.xml 3 | -------------------------------------------------------------------------------- /htdocs/userguide/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/COPYING -------------------------------------------------------------------------------- /htdocs/userguide/User_guide_fr.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/User_guide_fr.asciidoc -------------------------------------------------------------------------------- /htdocs/userguide/asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/asciidoc.conf -------------------------------------------------------------------------------- /htdocs/userguide/asciidoc2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/asciidoc2pdf.py -------------------------------------------------------------------------------- /htdocs/userguide/buildpdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/buildpdf.sh -------------------------------------------------------------------------------- /htdocs/userguide/dolibarr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/dolibarr_logo.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/admon/note.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/admon/note.pdf -------------------------------------------------------------------------------- /htdocs/userguide/icons/admon/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/admon/note.svg -------------------------------------------------------------------------------- /htdocs/userguide/icons/admon/tip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/admon/tip.pdf -------------------------------------------------------------------------------- /htdocs/userguide/icons/admon/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/admon/tip.svg -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/1.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/10.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/11.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/12.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/13.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/14.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/15.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/2.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/3.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/4.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/5.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/6.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/7.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/8.png -------------------------------------------------------------------------------- /htdocs/userguide/icons/callout/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/icons/callout/9.png -------------------------------------------------------------------------------- /htdocs/userguide/test.asciidocdisabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/test.asciidocdisabled -------------------------------------------------------------------------------- /htdocs/userguide/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/user/Makefile -------------------------------------------------------------------------------- /htdocs/userguide/user/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/user/make.bat -------------------------------------------------------------------------------- /htdocs/userguide/user/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/user/source/conf.py -------------------------------------------------------------------------------- /htdocs/userguide/user/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/userguide/user/source/index.rst -------------------------------------------------------------------------------- /htdocs/webmailr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/webmailr/COPYING -------------------------------------------------------------------------------- /htdocs/webmailr/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/webmailr/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/webmailr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/webmailr/README.md -------------------------------------------------------------------------------- /htdocs/webmailr/img/dolicloud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/webmailr/img/dolicloud_logo.png -------------------------------------------------------------------------------- /htdocs/webmailr/includes/roundcubemail/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /htdocs/yt/.gitignore: -------------------------------------------------------------------------------- 1 | /browser.json 2 | /data 3 | -------------------------------------------------------------------------------- /htdocs/yt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/yt/README -------------------------------------------------------------------------------- /htdocs/yt/yttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/yt/yttest.py -------------------------------------------------------------------------------- /htdocs/zipautofillfr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/COPYING -------------------------------------------------------------------------------- /htdocs/zipautofillfr/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/ChangeLog.md -------------------------------------------------------------------------------- /htdocs/zipautofillfr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/README.md -------------------------------------------------------------------------------- /htdocs/zipautofillfr/admin/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/admin/about.php -------------------------------------------------------------------------------- /htdocs/zipautofillfr/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/sql/data.sql -------------------------------------------------------------------------------- /htdocs/zipautofillfr/tools/fixcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoliCloud/DoliMods/HEAD/htdocs/zipautofillfr/tools/fixcase.php --------------------------------------------------------------------------------