├── .gitattributes ├── .htaccess ├── .phpunit.result.cache ├── 841464_Nhom4_N13 └── Thông tin nhóm.txt ├── README.md ├── composer.json ├── composer.lock ├── config.php ├── container ├── CauHoiModelTest.php ├── DeThiModelTest.php └── NguoiDungModelTest.php ├── database ├── erd.mdj └── tracnghiemonline.sql ├── file ├── BienBanDanhGia_DCT.doc ├── CauHoi │ ├── chuong 9.docx │ ├── chuong_10.docx │ ├── chuong_1_web.docx │ ├── chuong_2_next_web.docx │ ├── chuong_2_web.docx │ ├── chuong_3_web.docx │ ├── chuong_4.docx │ ├── chuong_5.docx │ ├── chuong_6.docx │ ├── chuong_7.docx │ └── chuong_8.docx ├── filecauhoi.docx ├── nhomweb.xlsx ├── sql.txt └── yeucau.docx ├── img ├── cauhoi.jpeg ├── chitietnhomhocphan.jpeg ├── dekiemtra.jpeg ├── diemthi.jpeg ├── landingpage.jpeg ├── login.jpeg ├── monhoc.jpeg ├── nguoidung.jpeg ├── nhomhocphan.jpeg ├── nhomquyen.jpeg ├── phancong.jpeg ├── themcauhoi.jpeg ├── themcauhoitufile.jpeg ├── themdekiemtra.jpeg ├── themnguoidungthucong.jpeg ├── themnguoidungtufile.jpeg ├── themnhomquyen.jpeg ├── themphancong.jpeg ├── thi.jpeg ├── thongbao.jpeg └── tongquan.jpeg ├── index.php ├── mvc ├── Bridge.php ├── controllers │ ├── account.php │ ├── assignment.php │ ├── auth.php │ ├── client.php │ ├── dashboard.php │ ├── home.php │ ├── module.php │ ├── myerror.php │ ├── question.php │ ├── roles.php │ ├── setting.php │ ├── subject.php │ ├── teacher_announcement.php │ ├── test.php │ ├── user.php │ └── user_online.php ├── core │ ├── App.php │ ├── AuthCore.php │ ├── Controller.php │ ├── DB.php │ └── Pagination.php ├── models │ ├── AnnouncementModel.php │ ├── CauHoiModel.php │ ├── CauTraLoiModel.php │ ├── ChiTietDeThiModel.php │ ├── ChuongModel.php │ ├── DeThiModel.php │ ├── GoogleAuth.php │ ├── KetQuaModel.php │ ├── MailAuth.php │ ├── MonHocModel.php │ ├── NguoiDungModel.php │ ├── NhomModel.php │ ├── NhomQuyenModel.php │ ├── PaginationModel.php │ └── PhanCongModel.php └── views │ ├── inc │ ├── config.php │ ├── footer.php │ ├── head.php │ ├── header.php │ ├── navbar.php │ ├── notifications.php │ ├── pagination.php │ └── script.php │ ├── landing.php │ ├── main_layout.php │ ├── pages │ ├── account_setting.php │ ├── add_announce.php │ ├── add_update_test.php │ ├── assignment.php │ ├── auth │ │ ├── changepass.php │ │ ├── otp.php │ │ ├── recover.php │ │ ├── signin.php │ │ └── signup.php │ ├── class_detail.php │ ├── client_group.php │ ├── dashboard.php │ ├── de_thi.php │ ├── error │ │ ├── page_403.php │ │ └── page_404.php │ ├── module.php │ ├── question.php │ ├── roles.php │ ├── select_question.php │ ├── setting.php │ ├── subject.php │ ├── teacher_announcement.php │ ├── test.php │ ├── test_detail.php │ ├── test_schedule.php │ ├── user.php │ └── vao_thi.php │ └── single_layout.php ├── phpunit.xml ├── public ├── css │ ├── custom.css │ ├── dashmix.css │ ├── dashmix.min.css │ └── themes │ │ ├── xdream.css │ │ ├── xdream.min.css │ │ ├── xeco.css │ │ ├── xeco.min.css │ │ ├── xinspire.css │ │ ├── xinspire.min.css │ │ ├── xmodern.css │ │ ├── xmodern.min.css │ │ ├── xplay.css │ │ ├── xplay.min.css │ │ ├── xpro.css │ │ ├── xpro.min.css │ │ ├── xsmooth.css │ │ ├── xsmooth.min.css │ │ ├── xwork.css │ │ └── xwork.min.css ├── filemau │ ├── danhsachsv.xls │ └── mau_import_cau_hoi.docx ├── fonts │ ├── fontawesome │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ ├── inter │ │ ├── inter-v11-latin-300.woff2 │ │ ├── inter-v11-latin-500.woff2 │ │ ├── inter-v11-latin-600.woff2 │ │ ├── inter-v11-latin-700.woff2 │ │ ├── inter-v11-latin-800.woff2 │ │ ├── inter-v11-latin-900.woff2 │ │ └── inter-v11-latin-regular.woff2 │ ├── simple-line-icons │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ └── Simple-Line-Icons.woff2 │ └── times │ │ ├── times.ttf │ │ ├── timesbd.ttf │ │ ├── timesbi.ttf │ │ └── timesi.ttf ├── js │ ├── dashmix.app.min.js │ ├── lib │ │ └── jquery.min.js │ ├── pages │ │ ├── account_setting.js │ │ ├── action_test.js │ │ ├── announcement.js │ │ ├── assignment.js │ │ ├── class_detail.js │ │ ├── client_group.js │ │ ├── dashboard.js │ │ ├── de_thi.js │ │ ├── header.js │ │ ├── landing.js │ │ ├── module.js │ │ ├── question.js │ │ ├── recover.js │ │ ├── roles.js │ │ ├── select_question.js │ │ ├── signin.js │ │ ├── signup.js │ │ ├── subject.js │ │ ├── test.js │ │ ├── test_detail.js │ │ ├── test_schedule.js │ │ ├── update_announce.js │ │ ├── user.js │ │ └── vaothi.js │ ├── pagination.js │ ├── permission.js │ └── plugins │ │ ├── bootstrap-datepicker │ │ ├── css │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.standalone.css │ │ │ ├── bootstrap-datepicker.standalone.css.map │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ ├── bootstrap-datepicker3.css │ │ │ ├── bootstrap-datepicker3.css.map │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ ├── bootstrap-datepicker3.standalone.css │ │ │ ├── bootstrap-datepicker3.standalone.css.map │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── bootstrap-datepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap-notify │ │ ├── bootstrap-notify.js │ │ └── bootstrap-notify.min.js │ │ ├── chart.js │ │ ├── chart.esm.js │ │ ├── chart.js │ │ ├── chart.min.js │ │ ├── chart.mjs │ │ ├── chunks │ │ │ ├── helpers.segment.js │ │ │ └── helpers.segment.mjs │ │ ├── helpers.esm.js │ │ └── helpers.mjs │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── assets │ │ │ └── ckeditor4.png │ │ ├── bender-runner.config.json │ │ ├── bower.json │ │ ├── ckeditor.js │ │ ├── composer.json │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── autocomplete │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── default.css │ │ │ ├── autoembed │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── autolink │ │ │ │ └── plugin.js │ │ │ ├── balloonpanel │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── kama │ │ │ │ │ └── balloonpanel.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── close.png │ │ │ │ │ └── moono │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── close.png │ │ │ ├── balloontoolbar │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ ├── default.css │ │ │ │ │ ├── kama │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ └── moono │ │ │ │ │ └── balloontoolbar.css │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ ├── icons │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ ├── bidirtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ │ └── bidirtl.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── cloudservices │ │ │ │ └── plugin.js │ │ │ ├── codesnippet │ │ │ │ ├── dialogs │ │ │ │ │ └── codesnippet.js │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── lib │ │ │ │ │ └── highlight │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ ├── README.ru.md │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── arta.css │ │ │ │ │ │ ├── ascetic.css │ │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ │ ├── dark.css │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ ├── docco.css │ │ │ │ │ │ ├── far.css │ │ │ │ │ │ ├── foundation.css │ │ │ │ │ │ ├── github.css │ │ │ │ │ │ ├── googlecode.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── ir_black.css │ │ │ │ │ │ ├── magula.css │ │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ │ ├── obsidian.css │ │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rainbow.css │ │ │ │ │ │ ├── school_book.css │ │ │ │ │ │ ├── school_book.png │ │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ │ ├── sunburst.css │ │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ │ ├── vs.css │ │ │ │ │ │ ├── xcode.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ └── plugin.js │ │ │ ├── codesnippetgeshi │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ ├── icons │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ │ └── textcolor.png │ │ │ │ │ └── textcolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ ├── icons │ │ │ │ │ ├── copyformatting.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── copyformatting.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── styles │ │ │ │ │ └── dialog.css │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ ├── icons │ │ │ │ │ ├── creatediv.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── creatediv.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── divarea │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ ├── icons │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ └── docprops.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── easyimage │ │ │ │ ├── dialogs │ │ │ │ │ └── easyimagealt.js │ │ │ │ ├── icons │ │ │ │ │ ├── easyimagealigncenter.png │ │ │ │ │ ├── easyimagealignleft.png │ │ │ │ │ ├── easyimagealignright.png │ │ │ │ │ ├── easyimagealt.png │ │ │ │ │ ├── easyimagefull.png │ │ │ │ │ ├── easyimageside.png │ │ │ │ │ ├── easyimageupload.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── easyimagealigncenter.png │ │ │ │ │ │ ├── easyimagealignleft.png │ │ │ │ │ │ ├── easyimagealignright.png │ │ │ │ │ │ ├── easyimagealt.png │ │ │ │ │ │ ├── easyimagefull.png │ │ │ │ │ │ ├── easyimageside.png │ │ │ │ │ │ └── easyimageupload.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── easyimage.css │ │ │ ├── editorplaceholder │ │ │ │ └── plugin.js │ │ │ ├── embed │ │ │ │ ├── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embed.png │ │ │ │ └── plugin.js │ │ │ ├── embedbase │ │ │ │ ├── dialogs │ │ │ │ │ └── embedbase.js │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── embedsemantic │ │ │ │ ├── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ └── plugin.js │ │ │ ├── emoji │ │ │ │ ├── assets │ │ │ │ │ ├── iconsall.png │ │ │ │ │ └── iconsall.svg │ │ │ │ ├── emoji.json │ │ │ │ ├── icons │ │ │ │ │ ├── emojipanel.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── emojipanel.png │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── default.css │ │ │ ├── exportpdf │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── icons │ │ │ │ │ ├── exportpdf.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── exportpdf.png │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugindefinition.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ ├── icons │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ │ ├── find.png │ │ │ │ │ │ └── replace.png │ │ │ │ │ └── replace.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── icons │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── form.png │ │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ │ ├── radio.png │ │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ │ ├── textarea.png │ │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ │ └── textfield.png │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ ├── radio.png │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ ├── textarea.png │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ └── textfield.png │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── iframe.png │ │ │ │ │ └── iframe.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── image2 │ │ │ │ ├── dialogs │ │ │ │ │ └── image2.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── imagebase │ │ │ │ ├── lang │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── imagebase.css │ │ │ ├── indentblock │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── mathjax │ │ │ │ ├── dialogs │ │ │ │ │ └── mathjax.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── mentions │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ │ └── newpage.png │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ └── newpage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ └── pagebreak.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromgdocs │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastefromlibreoffice │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetools │ │ │ │ └── filter │ │ │ │ │ ├── common.js │ │ │ │ │ └── image.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ └── preview.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ ├── preview.html │ │ │ │ └── styles │ │ │ │ │ └── screen.css │ │ │ ├── print │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── print.png │ │ │ │ │ └── print.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── save.png │ │ │ │ │ └── save.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── selectall │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── selectall.png │ │ │ │ │ └── selectall.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sharedspace │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ │ └── showblocks.png │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ └── showblocks.png │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── smiley.png │ │ │ │ │ └── smiley.png │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sourcedialog │ │ │ │ ├── dialogs │ │ │ │ │ └── sourcedialog.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ └── templates.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ ├── templatedefinition.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── textmatch │ │ │ │ └── plugin.js │ │ │ ├── textwatcher │ │ │ │ └── plugin.js │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ ├── uicolor.css │ │ │ │ │ └── uicolor.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ └── uicolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── uploadfile │ │ │ │ └── plugin.js │ │ │ └── widget │ │ │ │ └── images │ │ │ │ └── handle.png │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── autogrow │ │ │ │ │ └── autogrow.html │ │ │ │ ├── bbcode │ │ │ │ │ └── bbcode.html │ │ │ │ ├── codesnippet │ │ │ │ │ └── codesnippet.html │ │ │ │ ├── datafiltering.html │ │ │ │ ├── devtools │ │ │ │ │ └── devtools.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divarea │ │ │ │ │ └── divarea.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── docprops │ │ │ │ │ └── docprops.html │ │ │ │ ├── easyimage │ │ │ │ │ └── easyimage.html │ │ │ │ ├── emoji │ │ │ │ │ └── emoji.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── image2 │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ └── image2.jpg │ │ │ │ │ └── image2.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── mathjax │ │ │ │ │ └── mathjax.html │ │ │ │ ├── mentions │ │ │ │ │ └── mentions.html │ │ │ │ ├── placeholder │ │ │ │ │ └── placeholder.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── sharedspace │ │ │ │ │ └── sharedspace.html │ │ │ │ ├── sourcedialog │ │ │ │ │ └── sourcedialog.html │ │ │ │ ├── stylesheetparser │ │ │ │ │ ├── assets │ │ │ │ │ │ └── sample.css │ │ │ │ │ └── stylesheetparser.html │ │ │ │ ├── tabindex.html │ │ │ │ ├── tableresize │ │ │ │ │ └── tableresize.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uicolor │ │ │ │ │ └── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ │ ├── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── anchor.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── anchor.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ ├── styles.js │ │ └── vendor │ │ │ └── promise.js │ │ ├── flatpickr │ │ ├── esm │ │ │ ├── index.js │ │ │ ├── l10n │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar.js │ │ │ │ ├── at.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── cat.js │ │ │ │ ├── ckb.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── default.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr.js │ │ │ │ ├── ga.js │ │ │ │ ├── gr.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── index.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── kz.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── my.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── no.js │ │ │ │ ├── pa.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyr.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── uz_latn.js │ │ │ │ ├── vn.js │ │ │ │ ├── zh-tw.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── confirmDate │ │ │ │ │ └── confirmDate.js │ │ │ │ ├── labelPlugin │ │ │ │ │ └── labelPlugin.js │ │ │ │ ├── minMaxTimePlugin.js │ │ │ │ ├── momentPlugin.js │ │ │ │ ├── monthSelect │ │ │ │ │ └── index.js │ │ │ │ ├── rangePlugin.js │ │ │ │ ├── scrollPlugin.js │ │ │ │ └── weekSelect │ │ │ │ │ └── weekSelect.js │ │ │ ├── types │ │ │ │ ├── globals.js │ │ │ │ ├── instance.js │ │ │ │ ├── locale.js │ │ │ │ └── options.js │ │ │ └── utils │ │ │ │ ├── dates.js │ │ │ │ ├── dom.js │ │ │ │ ├── formatting.js │ │ │ │ ├── index.js │ │ │ │ └── polyfills.js │ │ ├── flatpickr.css │ │ ├── flatpickr.js │ │ ├── flatpickr.min.css │ │ ├── flatpickr.min.js │ │ ├── ie.css │ │ ├── l10n │ │ │ ├── ar-dz.d.ts │ │ │ ├── ar-dz.js │ │ │ ├── ar.d.ts │ │ │ ├── ar.js │ │ │ ├── at.d.ts │ │ │ ├── at.js │ │ │ ├── az.d.ts │ │ │ ├── az.js │ │ │ ├── be.d.ts │ │ │ ├── be.js │ │ │ ├── bg.d.ts │ │ │ ├── bg.js │ │ │ ├── bn.d.ts │ │ │ ├── bn.js │ │ │ ├── bs.d.ts │ │ │ ├── bs.js │ │ │ ├── cat.d.ts │ │ │ ├── cat.js │ │ │ ├── ckb.d.ts │ │ │ ├── ckb.js │ │ │ ├── cs.d.ts │ │ │ ├── cs.js │ │ │ ├── cy.d.ts │ │ │ ├── cy.js │ │ │ ├── da.d.ts │ │ │ ├── da.js │ │ │ ├── de.d.ts │ │ │ ├── de.js │ │ │ ├── default.d.ts │ │ │ ├── default.js │ │ │ ├── eo.d.ts │ │ │ ├── eo.js │ │ │ ├── es.d.ts │ │ │ ├── es.js │ │ │ ├── et.d.ts │ │ │ ├── et.js │ │ │ ├── fa.d.ts │ │ │ ├── fa.js │ │ │ ├── fi.d.ts │ │ │ ├── fi.js │ │ │ ├── fo.d.ts │ │ │ ├── fo.js │ │ │ ├── fr.d.ts │ │ │ ├── fr.js │ │ │ ├── ga.d.ts │ │ │ ├── ga.js │ │ │ ├── gr.d.ts │ │ │ ├── gr.js │ │ │ ├── he.d.ts │ │ │ ├── he.js │ │ │ ├── hi.d.ts │ │ │ ├── hi.js │ │ │ ├── hr.d.ts │ │ │ ├── hr.js │ │ │ ├── hu.d.ts │ │ │ ├── hu.js │ │ │ ├── hy.d.ts │ │ │ ├── hy.js │ │ │ ├── id.d.ts │ │ │ ├── id.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── is.d.ts │ │ │ ├── is.js │ │ │ ├── it.d.ts │ │ │ ├── it.js │ │ │ ├── ja.d.ts │ │ │ ├── ja.js │ │ │ ├── ka.d.ts │ │ │ ├── ka.js │ │ │ ├── km.d.ts │ │ │ ├── km.js │ │ │ ├── ko.d.ts │ │ │ ├── ko.js │ │ │ ├── kz.d.ts │ │ │ ├── kz.js │ │ │ ├── lt.d.ts │ │ │ ├── lt.js │ │ │ ├── lv.d.ts │ │ │ ├── lv.js │ │ │ ├── mk.d.ts │ │ │ ├── mk.js │ │ │ ├── mn.d.ts │ │ │ ├── mn.js │ │ │ ├── ms.d.ts │ │ │ ├── ms.js │ │ │ ├── my.d.ts │ │ │ ├── my.js │ │ │ ├── nl.d.ts │ │ │ ├── nl.js │ │ │ ├── nn.d.ts │ │ │ ├── nn.js │ │ │ ├── no.d.ts │ │ │ ├── no.js │ │ │ ├── pa.d.ts │ │ │ ├── pa.js │ │ │ ├── pl.d.ts │ │ │ ├── pl.js │ │ │ ├── pt.d.ts │ │ │ ├── pt.js │ │ │ ├── ro.d.ts │ │ │ ├── ro.js │ │ │ ├── ru.d.ts │ │ │ ├── ru.js │ │ │ ├── si.d.ts │ │ │ ├── si.js │ │ │ ├── sk.d.ts │ │ │ ├── sk.js │ │ │ ├── sl.d.ts │ │ │ ├── sl.js │ │ │ ├── sq.d.ts │ │ │ ├── sq.js │ │ │ ├── sr-cyr.d.ts │ │ │ ├── sr-cyr.js │ │ │ ├── sr.d.ts │ │ │ ├── sr.js │ │ │ ├── sv.d.ts │ │ │ ├── sv.js │ │ │ ├── th.d.ts │ │ │ ├── th.js │ │ │ ├── tr.d.ts │ │ │ ├── tr.js │ │ │ ├── uk.d.ts │ │ │ ├── uk.js │ │ │ ├── uz.d.ts │ │ │ ├── uz.js │ │ │ ├── uz_latn.d.ts │ │ │ ├── uz_latn.js │ │ │ ├── vn.d.ts │ │ │ ├── vn.js │ │ │ ├── zh-tw.d.ts │ │ │ ├── zh-tw.js │ │ │ ├── zh.d.ts │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── confirmDate │ │ │ │ ├── confirmDate.css │ │ │ │ ├── confirmDate.d.ts │ │ │ │ └── confirmDate.js │ │ │ ├── labelPlugin │ │ │ │ ├── labelPlugin.d.ts │ │ │ │ └── labelPlugin.js │ │ │ ├── minMaxTimePlugin.d.ts │ │ │ ├── minMaxTimePlugin.js │ │ │ ├── momentPlugin.d.ts │ │ │ ├── momentPlugin.js │ │ │ ├── monthSelect │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── rangePlugin.d.ts │ │ │ ├── rangePlugin.js │ │ │ ├── scrollPlugin.d.ts │ │ │ ├── scrollPlugin.js │ │ │ └── weekSelect │ │ │ │ ├── weekSelect.d.ts │ │ │ │ └── weekSelect.js │ │ ├── themes │ │ │ ├── airbnb.css │ │ │ ├── confetti.css │ │ │ ├── dark.css │ │ │ ├── light.css │ │ │ ├── material_blue.css │ │ │ ├── material_green.css │ │ │ ├── material_orange.css │ │ │ └── material_red.css │ │ ├── types │ │ │ ├── globals.d.ts │ │ │ ├── instance.d.ts │ │ │ ├── locale.d.ts │ │ │ └── options.d.ts │ │ ├── typings.d.ts │ │ └── utils │ │ │ ├── dates.d.ts │ │ │ ├── dom.d.ts │ │ │ ├── formatting.d.ts │ │ │ └── index.d.ts │ │ ├── highlightjs │ │ ├── highlight.pack.js │ │ ├── highlight.pack.min.js │ │ └── styles │ │ │ ├── a11y-dark.css │ │ │ ├── a11y-light.css │ │ │ ├── agate.css │ │ │ ├── an-old-hope.css │ │ │ ├── androidstudio.css │ │ │ ├── arduino-light.css │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atelier-cave-dark.css │ │ │ ├── atelier-cave-light.css │ │ │ ├── atelier-cave.dark.css │ │ │ ├── atelier-cave.light.css │ │ │ ├── atelier-dune-dark.css │ │ │ ├── atelier-dune-light.css │ │ │ ├── atelier-dune.dark.css │ │ │ ├── atelier-dune.light.css │ │ │ ├── atelier-estuary-dark.css │ │ │ ├── atelier-estuary-light.css │ │ │ ├── atelier-estuary.dark.css │ │ │ ├── atelier-estuary.light.css │ │ │ ├── atelier-forest-dark.css │ │ │ ├── atelier-forest-light.css │ │ │ ├── atelier-forest.dark.css │ │ │ ├── atelier-forest.light.css │ │ │ ├── atelier-heath-dark.css │ │ │ ├── atelier-heath-light.css │ │ │ ├── atelier-heath.dark.css │ │ │ ├── atelier-heath.light.css │ │ │ ├── atelier-lakeside-dark.css │ │ │ ├── atelier-lakeside-light.css │ │ │ ├── atelier-lakeside.dark.css │ │ │ ├── atelier-lakeside.light.css │ │ │ ├── atelier-plateau-dark.css │ │ │ ├── atelier-plateau-light.css │ │ │ ├── atelier-plateau.dark.css │ │ │ ├── atelier-plateau.light.css │ │ │ ├── atelier-savanna-dark.css │ │ │ ├── atelier-savanna-light.css │ │ │ ├── atelier-savanna.dark.css │ │ │ ├── atelier-savanna.light.css │ │ │ ├── atelier-seaside-dark.css │ │ │ ├── atelier-seaside-light.css │ │ │ ├── atelier-seaside.dark.css │ │ │ ├── atelier-seaside.light.css │ │ │ ├── atelier-sulphurpool-dark.css │ │ │ ├── atelier-sulphurpool-light.css │ │ │ ├── atelier-sulphurpool.dark.css │ │ │ ├── atelier-sulphurpool.light.css │ │ │ ├── atom-one-dark-reasonable.css │ │ │ ├── atom-one-dark.css │ │ │ ├── atom-one-light.css │ │ │ ├── brown-paper.css │ │ │ ├── brown_paper.css │ │ │ ├── codepen-embed.css │ │ │ ├── color-brewer.css │ │ │ ├── darcula.css │ │ │ ├── dark.css │ │ │ ├── darkula.css │ │ │ ├── default.css │ │ │ ├── docco.css │ │ │ ├── dracula.css │ │ │ ├── far.css │ │ │ ├── foundation.css │ │ │ ├── github-gist.css │ │ │ ├── github.css │ │ │ ├── gml.css │ │ │ ├── googlecode.css │ │ │ ├── grayscale.css │ │ │ ├── gruvbox-dark.css │ │ │ ├── gruvbox-light.css │ │ │ ├── hopscotch.css │ │ │ ├── hybrid.css │ │ │ ├── idea.css │ │ │ ├── ir-black.css │ │ │ ├── ir_black.css │ │ │ ├── isbl-editor-dark.css │ │ │ ├── isbl-editor-light.css │ │ │ ├── kimbie.dark.css │ │ │ ├── kimbie.light.css │ │ │ ├── lightfair.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai-sublime.css │ │ │ ├── monokai.css │ │ │ ├── monokai_sublime.css │ │ │ ├── night-owl.css │ │ │ ├── nord.css │ │ │ ├── obsidian.css │ │ │ ├── ocean.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── paraiso.dark.css │ │ │ ├── paraiso.light.css │ │ │ ├── pojoaque.css │ │ │ ├── purebasic.css │ │ │ ├── qtcreator_dark.css │ │ │ ├── qtcreator_light.css │ │ │ ├── railscasts.css │ │ │ ├── rainbow.css │ │ │ ├── routeros.css │ │ │ ├── school-book.css │ │ │ ├── school_book.css │ │ │ ├── shades-of-purple.css │ │ │ ├── solarized-dark.css │ │ │ ├── solarized-light.css │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── tomorrow-night.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── vs2015.css │ │ │ ├── xcode.css │ │ │ ├── xt256.css │ │ │ └── zenburn.css │ │ ├── jquery-appear │ │ └── jquery.appear.min.js │ │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_it.js │ │ │ ├── methods_it.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ │ ├── select2 │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── build.txt │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.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 │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ ├── slick-carousel │ │ ├── ajax-loader.gif │ │ ├── config.rb │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick-theme.less │ │ ├── slick-theme.scss │ │ ├── slick.css │ │ ├── slick.js │ │ ├── slick.less │ │ ├── slick.min.js │ │ └── slick.scss │ │ └── sweetalert2 │ │ ├── sweetalert2.all.js │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.css │ │ ├── sweetalert2.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js └── media │ ├── avatars │ ├── Zhao Lusi-64552fa9ba385.jpg │ ├── avatar0.jpg │ ├── avatar1.jpg │ ├── avatar2.jpg │ ├── avt-642287ecf33b2.jpg │ ├── avt-642a79bfbf4dd.jpg │ ├── avtar.png │ ├── thanhsang.jpg │ ├── trieulotu-645084dc33476.jpg │ └── trieulotu-6454d0200cea9.jpg │ ├── favicons │ ├── apple-touch-icon-180x180.png │ ├── favicon-192x192.png │ └── favicon.png │ ├── photos │ ├── bg_minecraft.png │ ├── dhsg_1.jpg │ ├── dhsg_2.jpg │ ├── dhsg_3.jpg │ ├── photo1.jpg │ ├── photo10.jpg │ ├── photo10@2x.jpg │ ├── photo11.jpg │ ├── photo11@2x.jpg │ ├── photo12.jpg │ ├── photo12@2x.jpg │ ├── photo13.jpg │ ├── photo13@2x.jpg │ ├── photo14.jpg │ ├── photo14@2x.jpg │ ├── photo15.jpg │ ├── photo15@2x.jpg │ ├── photo16.jpg │ ├── photo16@2x.jpg │ ├── photo17.jpg │ ├── photo17@2x.jpg │ ├── photo18.jpg │ ├── photo18@2x.jpg │ ├── photo19.jpg │ ├── photo19@2x.jpg │ ├── photo1@2x.jpg │ ├── photo2.jpg │ ├── photo20.jpg │ ├── photo20@2x.jpg │ ├── photo21.jpg │ ├── photo21@2x.jpg │ ├── photo22.jpg │ ├── photo22@2x.jpg │ ├── photo23.jpg │ ├── photo23@2x.jpg │ ├── photo24.jpg │ ├── photo24@2x.jpg │ ├── photo25.jpg │ ├── photo25@2x.jpg │ ├── photo26.jpg │ ├── photo26@2x.jpg │ ├── photo27.jpg │ ├── photo27@2x.jpg │ ├── photo28.jpg │ ├── photo28@2x.jpg │ ├── photo29.jpg │ ├── photo29@2x.jpg │ ├── photo2@2x.jpg │ ├── photo3.jpg │ ├── photo30.jpg │ ├── photo30@2x.jpg │ ├── photo3@2x.jpg │ ├── photo4.jpg │ ├── photo4@2x.jpg │ ├── photo5.jpg │ ├── photo5@2x.jpg │ ├── photo6.jpg │ ├── photo6@2x.jpg │ ├── photo7.jpg │ ├── photo7@2x.jpg │ ├── photo8.jpg │ ├── photo8@2x.jpg │ ├── photo9.jpg │ ├── photo9@2x.jpg │ └── study.jpg │ ├── svg │ ├── empty_data.png │ ├── google-icon.svg │ └── no-data.jpg │ └── various │ ├── bg_dashboard.jpg │ ├── bg_side_overlay_header.jpg │ ├── landing-promo-hero.png │ ├── landing.png │ ├── landing_1.jpg │ ├── landing_1.png │ ├── landing_2.jpg │ ├── landing_2.png │ ├── landing_3.jpg │ ├── landing_3.png │ ├── promo-create-test.png │ ├── promo-questions.png │ └── promo-users.png ├── tests └── MonHocModelTest.php └── vendor ├── autoload.php ├── bin ├── php-parse ├── php-parse.bat ├── phpunit └── phpunit.bat ├── 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 ├── dompdf └── dompdf │ ├── AUTHORS.md │ ├── LICENSE.LGPL │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── lib │ ├── Cpdf.php │ ├── fonts │ │ ├── Courier-Bold.afm │ │ ├── Courier-BoldOblique.afm │ │ ├── Courier-Oblique.afm │ │ ├── Courier.afm │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-Bold.ufm │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-BoldOblique.ufm │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans-Oblique.ufm │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSans.ufm │ │ ├── DejaVuSansMono-Bold.ttf │ │ ├── DejaVuSansMono-Bold.ufm │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ ├── DejaVuSansMono-Oblique.ttf │ │ ├── DejaVuSansMono-Oblique.ufm │ │ ├── DejaVuSansMono.ttf │ │ ├── DejaVuSansMono.ufm │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-Bold.ufm │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ ├── DejaVuSerif-Italic.ttf │ │ ├── DejaVuSerif-Italic.ufm │ │ ├── DejaVuSerif.ttf │ │ ├── DejaVuSerif.ufm │ │ ├── Helvetica-Bold.afm │ │ ├── Helvetica-BoldOblique.afm │ │ ├── Helvetica-Oblique.afm │ │ ├── Helvetica.afm │ │ ├── Symbol.afm │ │ ├── Times-Bold.afm │ │ ├── Times-Bold.afm.json │ │ ├── Times-BoldItalic.afm │ │ ├── Times-Italic.afm │ │ ├── Times-Roman.afm │ │ ├── Times-Roman.afm.json │ │ ├── ZapfDingbats.afm │ │ ├── installed-fonts.dist.json │ │ ├── installed-fonts.json │ │ ├── mustRead.html │ │ ├── times.ttf │ │ ├── times.ufm │ │ ├── times.ufm.json │ │ ├── timesbd.ttf │ │ ├── timesbd.ufm │ │ ├── timesbd.ufm.json │ │ ├── timesbi.ttf │ │ ├── timesbi.ufm │ │ ├── timesi.ttf │ │ ├── timesi.ufm │ │ └── timesi.ufm.json │ └── res │ │ ├── broken_image.png │ │ ├── broken_image.svg │ │ └── html.css │ └── src │ ├── Adapter │ ├── CPDF.php │ ├── GD.php │ └── PDFLib.php │ ├── Canvas.php │ ├── CanvasFactory.php │ ├── Cellmap.php │ ├── Css │ ├── AttributeTranslator.php │ ├── Color.php │ ├── Style.php │ └── Stylesheet.php │ ├── Dompdf.php │ ├── Exception.php │ ├── Exception │ └── ImageException.php │ ├── FontMetrics.php │ ├── Frame.php │ ├── Frame │ ├── Factory.php │ ├── FrameListIterator.php │ ├── FrameTree.php │ └── FrameTreeIterator.php │ ├── FrameDecorator │ ├── AbstractFrameDecorator.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── ListBulletImage.php │ ├── NullFrameDecorator.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── FrameReflower │ ├── AbstractFrameReflower.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullFrameReflower.php │ ├── Page.php │ ├── Table.php │ ├── TableCell.php │ ├── TableRow.php │ ├── TableRowGroup.php │ └── Text.php │ ├── Helpers.php │ ├── Image │ └── Cache.php │ ├── JavascriptEmbedder.php │ ├── LineBox.php │ ├── Options.php │ ├── PhpEvaluator.php │ ├── Positioner │ ├── Absolute.php │ ├── AbstractPositioner.php │ ├── Block.php │ ├── Fixed.php │ ├── Inline.php │ ├── ListBullet.php │ ├── NullPositioner.php │ ├── TableCell.php │ └── TableRow.php │ ├── Renderer.php │ └── Renderer │ ├── AbstractRenderer.php │ ├── Block.php │ ├── Image.php │ ├── Inline.php │ ├── ListBullet.php │ ├── TableCell.php │ ├── TableRowGroup.php │ └── Text.php ├── firebase └── php-jwt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── BeforeValidException.php │ ├── ExpiredException.php │ ├── JWK.php │ ├── JWT.php │ ├── Key.php │ └── SignatureInvalidException.php ├── google ├── apiclient-services │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── autoload.php │ ├── composer.json │ └── src │ │ ├── ACMEDNS.php │ │ ├── ACMEDNS │ │ ├── AcmeChallengeSet.php │ │ ├── AcmeTxtRecord.php │ │ ├── Resource │ │ │ └── AcmeChallengeSets.php │ │ └── RotateChallengesRequest.php │ │ ├── AIPlatformNotebooks.php │ │ ├── AIPlatformNotebooks │ │ ├── AcceleratorConfig.php │ │ ├── Binding.php │ │ ├── BootImage.php │ │ ├── CancelOperationRequest.php │ │ ├── ContainerImage.php │ │ ├── DataprocParameters.php │ │ ├── DiagnoseInstanceRequest.php │ │ ├── DiagnoseRuntimeRequest.php │ │ ├── DiagnosticConfig.php │ │ ├── Disk.php │ │ ├── EncryptionConfig.php │ │ ├── Environment.php │ │ ├── Event.php │ │ ├── Execution.php │ │ ├── ExecutionTemplate.php │ │ ├── Expr.php │ │ ├── GetInstanceHealthResponse.php │ │ ├── GuestOsFeature.php │ │ ├── Instance.php │ │ ├── InstanceConfig.php │ │ ├── IsInstanceUpgradeableResponse.php │ │ ├── ListEnvironmentsResponse.php │ │ ├── ListExecutionsResponse.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListRuntimesResponse.php │ │ ├── ListSchedulesResponse.php │ │ ├── LocalDisk.php │ │ ├── LocalDiskInitializeParams.php │ │ ├── Location.php │ │ ├── NotebooksEmpty.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── RefreshRuntimeTokenInternalRequest.php │ │ ├── RefreshRuntimeTokenInternalResponse.php │ │ ├── RegisterInstanceRequest.php │ │ ├── ReportInstanceEventRequest.php │ │ ├── ReportInstanceInfoRequest.php │ │ ├── ReportRuntimeEventRequest.php │ │ ├── ReservationAffinity.php │ │ ├── ResetInstanceRequest.php │ │ ├── ResetRuntimeRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEnvironments.php │ │ │ ├── ProjectsLocationsExecutions.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRuntimes.php │ │ │ └── ProjectsLocationsSchedules.php │ │ ├── RollbackInstanceRequest.php │ │ ├── Runtime.php │ │ ├── RuntimeAcceleratorConfig.php │ │ ├── RuntimeAccessConfig.php │ │ ├── RuntimeGuestOsFeature.php │ │ ├── RuntimeMetrics.php │ │ ├── RuntimeShieldedInstanceConfig.php │ │ ├── RuntimeSoftwareConfig.php │ │ ├── Schedule.php │ │ ├── SchedulerAcceleratorConfig.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SetInstanceAcceleratorRequest.php │ │ ├── SetInstanceLabelsRequest.php │ │ ├── SetInstanceMachineTypeRequest.php │ │ ├── ShieldedInstanceConfig.php │ │ ├── StartInstanceRequest.php │ │ ├── StartRuntimeRequest.php │ │ ├── Status.php │ │ ├── StopInstanceRequest.php │ │ ├── StopRuntimeRequest.php │ │ ├── SwitchRuntimeRequest.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TriggerScheduleRequest.php │ │ ├── UpdateInstanceConfigRequest.php │ │ ├── UpdateInstanceMetadataItemsRequest.php │ │ ├── UpdateInstanceMetadataItemsResponse.php │ │ ├── UpdateShieldedInstanceConfigRequest.php │ │ ├── UpgradeHistoryEntry.php │ │ ├── UpgradeInstanceInternalRequest.php │ │ ├── UpgradeInstanceRequest.php │ │ ├── UpgradeRuntimeRequest.php │ │ ├── VertexAIParameters.php │ │ ├── VirtualMachine.php │ │ ├── VirtualMachineConfig.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 │ │ ├── AccessApprovalServiceAccount.php │ │ ├── AccessApprovalSettings.php │ │ ├── AccessLocations.php │ │ ├── AccessReason.php │ │ ├── AccessapprovalEmpty.php │ │ ├── ApprovalRequest.php │ │ ├── ApproveApprovalRequestMessage.php │ │ ├── ApproveDecision.php │ │ ├── DismissApprovalRequestMessage.php │ │ ├── DismissDecision.php │ │ ├── EnrolledService.php │ │ ├── InvalidateApprovalRequestMessage.php │ │ ├── ListApprovalRequestsResponse.php │ │ ├── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersApprovalRequests.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsApprovalRequests.php │ │ │ ├── Projects.php │ │ │ └── ProjectsApprovalRequests.php │ │ ├── ResourceProperties.php │ │ └── SignatureInfo.php │ │ ├── AccessContextManager.php │ │ ├── AccessContextManager │ │ ├── AccessContextManagerOperationMetadata.php │ │ ├── AccessLevel.php │ │ ├── AccessPolicy.php │ │ ├── AccesscontextmanagerEmpty.php │ │ ├── ApiOperation.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── AuthorizedOrgsDesc.php │ │ ├── BasicLevel.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CommitServicePerimetersRequest.php │ │ ├── CommitServicePerimetersResponse.php │ │ ├── Condition.php │ │ ├── CustomLevel.php │ │ ├── DevicePolicy.php │ │ ├── EgressFrom.php │ │ ├── EgressPolicy.php │ │ ├── EgressTo.php │ │ ├── Expr.php │ │ ├── GcpUserAccessBinding.php │ │ ├── GcpUserAccessBindingOperationMetadata.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── IngressFrom.php │ │ ├── IngressPolicy.php │ │ ├── IngressSource.php │ │ ├── IngressTo.php │ │ ├── ListAccessLevelsResponse.php │ │ ├── ListAccessPoliciesResponse.php │ │ ├── ListAuthorizedOrgsDescsResponse.php │ │ ├── ListGcpUserAccessBindingsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServicePerimetersResponse.php │ │ ├── MethodSelector.php │ │ ├── Operation.php │ │ ├── OsConstraint.php │ │ ├── Policy.php │ │ ├── ReplaceAccessLevelsRequest.php │ │ ├── ReplaceAccessLevelsResponse.php │ │ ├── ReplaceServicePerimetersRequest.php │ │ ├── ReplaceServicePerimetersResponse.php │ │ ├── Resource │ │ │ ├── AccessPolicies.php │ │ │ ├── AccessPoliciesAccessLevels.php │ │ │ ├── AccessPoliciesAuthorizedOrgsDescs.php │ │ │ ├── AccessPoliciesServicePerimeters.php │ │ │ ├── Operations.php │ │ │ ├── Organizations.php │ │ │ └── OrganizationsGcpUserAccessBindings.php │ │ ├── ServicePerimeter.php │ │ ├── ServicePerimeterConfig.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.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 │ │ ├── PauseProposalDealsRequest.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 │ │ ├── ResumeProposalDealsRequest.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 │ │ ├── AdExperienceReport.php │ │ ├── AdExperienceReport │ │ ├── PlatformSummary.php │ │ ├── Resource │ │ │ ├── Sites.php │ │ │ └── ViolatingSites.php │ │ ├── SiteSummaryResponse.php │ │ └── ViolatingSitesResponse.php │ │ ├── AdMob.php │ │ ├── AdMob │ │ ├── AdUnit.php │ │ ├── App.php │ │ ├── AppLinkedAppInfo.php │ │ ├── AppManualAppInfo.php │ │ ├── Date.php │ │ ├── DateRange.php │ │ ├── GenerateMediationReportRequest.php │ │ ├── GenerateMediationReportResponse.php │ │ ├── GenerateNetworkReportRequest.php │ │ ├── GenerateNetworkReportResponse.php │ │ ├── ListAdUnitsResponse.php │ │ ├── ListAppsResponse.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 │ │ │ ├── AccountsAdUnits.php │ │ │ ├── AccountsApps.php │ │ │ ├── AccountsMediationReport.php │ │ │ └── AccountsNetworkReport.php │ │ └── StringList.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 │ │ ├── Adsense.php │ │ ├── Adsense │ │ ├── Account.php │ │ ├── AdBlockingRecoveryTag.php │ │ ├── AdClient.php │ │ ├── AdClientAdCode.php │ │ ├── AdUnit.php │ │ ├── AdUnitAdCode.php │ │ ├── AdsenseEmpty.php │ │ ├── Alert.php │ │ ├── Cell.php │ │ ├── ContentAdsSettings.php │ │ ├── CustomChannel.php │ │ ├── Date.php │ │ ├── Header.php │ │ ├── HttpBody.php │ │ ├── ListAccountsResponse.php │ │ ├── ListAdClientsResponse.php │ │ ├── ListAdUnitsResponse.php │ │ ├── ListAlertsResponse.php │ │ ├── ListChildAccountsResponse.php │ │ ├── ListCustomChannelsResponse.php │ │ ├── ListLinkedAdUnitsResponse.php │ │ ├── ListLinkedCustomChannelsResponse.php │ │ ├── ListPaymentsResponse.php │ │ ├── ListSavedReportsResponse.php │ │ ├── ListSitesResponse.php │ │ ├── ListUrlChannelsResponse.php │ │ ├── Payment.php │ │ ├── ReportResult.php │ │ ├── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsAdclients.php │ │ │ ├── AccountsAdclientsAdunits.php │ │ │ ├── AccountsAdclientsCustomchannels.php │ │ │ ├── AccountsAdclientsUrlchannels.php │ │ │ ├── AccountsAlerts.php │ │ │ ├── AccountsPayments.php │ │ │ ├── AccountsReports.php │ │ │ ├── AccountsReportsSaved.php │ │ │ └── AccountsSites.php │ │ ├── Row.php │ │ ├── SavedReport.php │ │ ├── Site.php │ │ ├── TimeZone.php │ │ └── UrlChannel.php │ │ ├── Advisorynotifications.php │ │ ├── Advisorynotifications │ │ ├── GoogleCloudAdvisorynotificationsV1Attachment.php │ │ ├── GoogleCloudAdvisorynotificationsV1Csv.php │ │ ├── GoogleCloudAdvisorynotificationsV1CsvCsvRow.php │ │ ├── GoogleCloudAdvisorynotificationsV1ListNotificationsResponse.php │ │ ├── GoogleCloudAdvisorynotificationsV1Message.php │ │ ├── GoogleCloudAdvisorynotificationsV1MessageBody.php │ │ ├── GoogleCloudAdvisorynotificationsV1Notification.php │ │ ├── GoogleCloudAdvisorynotificationsV1Subject.php │ │ ├── GoogleCloudAdvisorynotificationsV1Text.php │ │ └── Resource │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsLocations.php │ │ │ └── OrganizationsLocationsNotifications.php │ │ ├── AlertCenter.php │ │ ├── AlertCenter │ │ ├── AbuseDetected.php │ │ ├── AccountSuspensionDetails.php │ │ ├── AccountSuspensionWarning.php │ │ ├── AccountWarning.php │ │ ├── ActionInfo.php │ │ ├── ActivityRule.php │ │ ├── Alert.php │ │ ├── AlertFeedback.php │ │ ├── AlertMetadata.php │ │ ├── AlertcenterEmpty.php │ │ ├── ApnsCertificateExpirationInfo.php │ │ ├── AppMakerSqlSetupNotification.php │ │ ├── AppSettingsChanged.php │ │ ├── AppsOutage.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 │ │ ├── Entity.php │ │ ├── EntityList.php │ │ ├── GmailMessageInfo.php │ │ ├── GoogleOperations.php │ │ ├── ListAlertFeedbackResponse.php │ │ ├── ListAlertsResponse.php │ │ ├── LoginDetails.php │ │ ├── MailPhishing.php │ │ ├── MaliciousEntity.php │ │ ├── MandatoryServiceAnnouncement.php │ │ ├── MatchInfo.php │ │ ├── MergeInfo.php │ │ ├── Notification.php │ │ ├── OutOfDomainForwarding.php │ │ ├── PhishingSpike.php │ │ ├── PredefinedDetectorInfo.php │ │ ├── PrimaryAdminChangedEvent.php │ │ ├── ReportingRule.php │ │ ├── RequestInfo.php │ │ ├── Resource │ │ │ ├── Alerts.php │ │ │ ├── AlertsFeedback.php │ │ │ └── V1beta1.php │ │ ├── ResourceInfo.php │ │ ├── RuleInfo.php │ │ ├── RuleViolationInfo.php │ │ ├── SSOProfileCreatedEvent.php │ │ ├── SSOProfileDeletedEvent.php │ │ ├── SSOProfileUpdatedEvent.php │ │ ├── SensitiveAdminAction.php │ │ ├── Settings.php │ │ ├── StateSponsoredAttack.php │ │ ├── Status.php │ │ ├── SuperAdminPasswordResetEvent.php │ │ ├── SuspiciousActivity.php │ │ ├── SuspiciousActivitySecurityDetail.php │ │ ├── TransferError.php │ │ ├── TransferMisconfiguration.php │ │ ├── UndeleteAlertRequest.php │ │ ├── User.php │ │ ├── UserChanges.php │ │ ├── UserDefinedDetectorInfo.php │ │ ├── VoiceMisconfiguration.php │ │ ├── VoicemailMisconfiguration.php │ │ └── VoicemailRecipientError.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 │ │ ├── ActiveMetricRestriction.php │ │ ├── BatchRunPivotReportsRequest.php │ │ ├── BatchRunPivotReportsResponse.php │ │ ├── BatchRunReportsRequest.php │ │ ├── BatchRunReportsResponse.php │ │ ├── BetweenFilter.php │ │ ├── CaseExpression.php │ │ ├── CheckCompatibilityRequest.php │ │ ├── CheckCompatibilityResponse.php │ │ ├── Cohort.php │ │ ├── CohortReportSettings.php │ │ ├── CohortSpec.php │ │ ├── CohortsRange.php │ │ ├── ConcatenateExpression.php │ │ ├── DateRange.php │ │ ├── Dimension.php │ │ ├── DimensionCompatibility.php │ │ ├── DimensionExpression.php │ │ ├── DimensionHeader.php │ │ ├── DimensionMetadata.php │ │ ├── DimensionOrderBy.php │ │ ├── DimensionValue.php │ │ ├── Filter.php │ │ ├── FilterExpression.php │ │ ├── FilterExpressionList.php │ │ ├── InListFilter.php │ │ ├── Metadata.php │ │ ├── Metric.php │ │ ├── MetricCompatibility.php │ │ ├── MetricHeader.php │ │ ├── MetricMetadata.php │ │ ├── MetricOrderBy.php │ │ ├── MetricValue.php │ │ ├── MinuteRange.php │ │ ├── NumericFilter.php │ │ ├── NumericValue.php │ │ ├── OrderBy.php │ │ ├── Pivot.php │ │ ├── PivotDimensionHeader.php │ │ ├── PivotHeader.php │ │ ├── PivotOrderBy.php │ │ ├── PivotSelection.php │ │ ├── PropertyQuota.php │ │ ├── QuotaStatus.php │ │ ├── Resource │ │ │ └── Properties.php │ │ ├── ResponseMetaData.php │ │ ├── Row.php │ │ ├── RunPivotReportRequest.php │ │ ├── RunPivotReportResponse.php │ │ ├── RunRealtimeReportRequest.php │ │ ├── RunRealtimeReportResponse.php │ │ ├── RunReportRequest.php │ │ ├── RunReportResponse.php │ │ ├── SchemaRestrictionResponse.php │ │ └── StringFilter.php │ │ ├── AnalyticsHub.php │ │ ├── AnalyticsHub │ │ ├── AnalyticshubEmpty.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── BigQueryDatasetSource.php │ │ ├── Binding.php │ │ ├── DataExchange.php │ │ ├── DataProvider.php │ │ ├── DestinationDataset.php │ │ ├── DestinationDatasetReference.php │ │ ├── Expr.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── ListDataExchangesResponse.php │ │ ├── ListListingsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOrgDataExchangesResponse.php │ │ ├── Listing.php │ │ ├── Location.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Publisher.php │ │ ├── Resource │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsLocations.php │ │ │ ├── OrganizationsLocationsDataExchanges.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDataExchanges.php │ │ │ └── ProjectsLocationsDataExchangesListings.php │ │ ├── RestrictedExportConfig.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SubscribeListingRequest.php │ │ ├── SubscribeListingResponse.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.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 │ │ ├── AdministratorWebTokenSpecZeroTouch.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 │ │ ├── CreateEnrollmentTokenResponse.php │ │ ├── Device.php │ │ ├── DeviceReport.php │ │ ├── DeviceReportUpdateEvent.php │ │ ├── DeviceState.php │ │ ├── DevicesListResponse.php │ │ ├── Enterprise.php │ │ ├── EnterpriseAccount.php │ │ ├── EnterpriseAuthenticationAppLinkConfig.php │ │ ├── EnterprisesListResponse.php │ │ ├── EnterprisesSendTestPushNotificationResponse.php │ │ ├── Entitlement.php │ │ ├── EntitlementsListResponse.php │ │ ├── GoogleAuthenticationSettings.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 │ │ ├── AdbShellCommandEvent.php │ │ ├── AdbShellInteractiveEvent.php │ │ ├── AdvancedSecurityOverrides.php │ │ ├── AlwaysOnVpnPackage.php │ │ ├── AndroidmanagementEmpty.php │ │ ├── ApiLevelCondition.php │ │ ├── AppProcessInfo.php │ │ ├── AppProcessStartEvent.php │ │ ├── AppTrackInfo.php │ │ ├── AppVersion.php │ │ ├── Application.php │ │ ├── ApplicationEvent.php │ │ ├── ApplicationPermission.php │ │ ├── ApplicationPolicy.php │ │ ├── ApplicationReport.php │ │ ├── ApplicationReportingSettings.php │ │ ├── BatchUsageLogEvents.php │ │ ├── BlockAction.php │ │ ├── CertAuthorityInstalledEvent.php │ │ ├── CertAuthorityRemovedEvent.php │ │ ├── CertValidationFailureEvent.php │ │ ├── ChoosePrivateKeyRule.php │ │ ├── ClearAppsDataParams.php │ │ ├── ClearAppsDataStatus.php │ │ ├── Command.php │ │ ├── CommonCriteriaModeInfo.php │ │ ├── ComplianceRule.php │ │ ├── ConnectEvent.php │ │ ├── ContactInfo.php │ │ ├── ContentProviderEndpoint.php │ │ ├── CrossProfilePolicies.php │ │ ├── CryptoSelfTestCompletedEvent.php │ │ ├── Date.php │ │ ├── Device.php │ │ ├── DeviceSettings.php │ │ ├── Display.php │ │ ├── DnsEvent.php │ │ ├── EnrollmentToken.php │ │ ├── Enterprise.php │ │ ├── ExtensionConfig.php │ │ ├── ExternalData.php │ │ ├── FilePulledEvent.php │ │ ├── FilePushedEvent.php │ │ ├── FreezePeriod.php │ │ ├── HardwareInfo.php │ │ ├── HardwareStatus.php │ │ ├── IssueCommandResponse.php │ │ ├── KeyDestructionEvent.php │ │ ├── KeyGeneratedEvent.php │ │ ├── KeyImportEvent.php │ │ ├── KeyIntegrityViolationEvent.php │ │ ├── KeyedAppState.php │ │ ├── KeyguardDismissAuthAttemptEvent.php │ │ ├── KeyguardDismissedEvent.php │ │ ├── KeyguardSecuredEvent.php │ │ ├── KioskCustomization.php │ │ ├── LaunchAppAction.php │ │ ├── ListDevicesResponse.php │ │ ├── ListEnrollmentTokensResponse.php │ │ ├── ListEnterprisesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPoliciesResponse.php │ │ ├── ListWebAppsResponse.php │ │ ├── LogBufferSizeCriticalEvent.php │ │ ├── LoggingStartedEvent.php │ │ ├── LoggingStoppedEvent.php │ │ ├── ManagedConfigurationTemplate.php │ │ ├── ManagedProperty.php │ │ ├── ManagedPropertyEntry.php │ │ ├── MediaMountEvent.php │ │ ├── MediaUnmountEvent.php │ │ ├── MemoryEvent.php │ │ ├── MemoryInfo.php │ │ ├── NetworkInfo.php │ │ ├── NonComplianceDetail.php │ │ ├── NonComplianceDetailCondition.php │ │ ├── OncCertificateProvider.php │ │ ├── OncWifiContext.php │ │ ├── Operation.php │ │ ├── OsShutdownEvent.php │ │ ├── OsStartupEvent.php │ │ ├── PackageNameList.php │ │ ├── PasswordPoliciesContext.php │ │ ├── PasswordRequirements.php │ │ ├── PerAppResult.php │ │ ├── PermissionGrant.php │ │ ├── PersistentPreferredActivity.php │ │ ├── PersonalApplicationPolicy.php │ │ ├── PersonalUsagePolicies.php │ │ ├── Policy.php │ │ ├── PolicyEnforcementRule.php │ │ ├── PostureDetail.php │ │ ├── PowerManagementEvent.php │ │ ├── ProxyInfo.php │ │ ├── RemoteLockEvent.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 │ │ ├── SpecificNonComplianceContext.php │ │ ├── Status.php │ │ ├── StatusReportingSettings.php │ │ ├── SystemUpdate.php │ │ ├── SystemUpdateInfo.php │ │ ├── TelephonyInfo.php │ │ ├── TermsAndConditions.php │ │ ├── UsageLog.php │ │ ├── UsageLogEvent.php │ │ ├── User.php │ │ ├── UserFacingMessage.php │ │ ├── WebApp.php │ │ ├── WebAppIcon.php │ │ ├── WebToken.php │ │ ├── WipeAction.php │ │ └── WipeFailureEvent.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 │ │ ├── GoogleWorkspaceAccount.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 │ │ ├── AcquisitionTargetingRule.php │ │ ├── ActivateBasePlanRequest.php │ │ ├── ActivateSubscriptionOfferRequest.php │ │ ├── Apk.php │ │ ├── ApkBinary.php │ │ ├── ApksAddExternallyHostedRequest.php │ │ ├── ApksAddExternallyHostedResponse.php │ │ ├── ApksListResponse.php │ │ ├── AppDetails.php │ │ ├── AppEdit.php │ │ ├── ArchiveSubscriptionRequest.php │ │ ├── AutoRenewingBasePlanType.php │ │ ├── AutoRenewingPlan.php │ │ ├── BasePlan.php │ │ ├── Bundle.php │ │ ├── BundlesListResponse.php │ │ ├── CancelSurveyResult.php │ │ ├── CanceledStateContext.php │ │ ├── Comment.php │ │ ├── ConvertRegionPricesRequest.php │ │ ├── ConvertRegionPricesResponse.php │ │ ├── ConvertedOtherRegionsPrice.php │ │ ├── ConvertedRegionPrice.php │ │ ├── CountryTargeting.php │ │ ├── DeactivateBasePlanRequest.php │ │ ├── DeactivateSubscriptionOfferRequest.php │ │ ├── DeobfuscationFile.php │ │ ├── DeobfuscationFilesUploadResponse.php │ │ ├── DeveloperComment.php │ │ ├── DeveloperInitiatedCancellation.php │ │ ├── DeviceGroup.php │ │ ├── DeviceId.php │ │ ├── DeviceMetadata.php │ │ ├── DeviceRam.php │ │ ├── DeviceSelector.php │ │ ├── DeviceSpec.php │ │ ├── DeviceTier.php │ │ ├── DeviceTierConfig.php │ │ ├── DeviceTierSet.php │ │ ├── ExpansionFile.php │ │ ├── ExpansionFilesUploadResponse.php │ │ ├── ExternalAccountIdentifiers.php │ │ ├── ExternallyHostedApk.php │ │ ├── GeneratedApksListResponse.php │ │ ├── GeneratedApksPerSigningKey.php │ │ ├── GeneratedAssetPackSlice.php │ │ ├── GeneratedSplitApk.php │ │ ├── GeneratedStandaloneApk.php │ │ ├── GeneratedUniversalApk.php │ │ ├── Grant.php │ │ ├── Image.php │ │ ├── ImagesDeleteAllResponse.php │ │ ├── ImagesListResponse.php │ │ ├── ImagesUploadResponse.php │ │ ├── InAppProduct.php │ │ ├── InAppProductListing.php │ │ ├── InappproductsListResponse.php │ │ ├── InternalAppSharingArtifact.php │ │ ├── IntroductoryPriceInfo.php │ │ ├── ListDeviceTierConfigsResponse.php │ │ ├── ListSubscriptionOffersResponse.php │ │ ├── ListSubscriptionsResponse.php │ │ ├── ListUsersResponse.php │ │ ├── Listing.php │ │ ├── ListingsListResponse.php │ │ ├── LocalizedText.php │ │ ├── ManagedProductTaxAndComplianceSettings.php │ │ ├── MigrateBasePlanPricesRequest.php │ │ ├── MigrateBasePlanPricesResponse.php │ │ ├── Money.php │ │ ├── OfferDetails.php │ │ ├── OfferTag.php │ │ ├── OtherRegionsBasePlanConfig.php │ │ ├── OtherRegionsSubscriptionOfferConfig.php │ │ ├── OtherRegionsSubscriptionOfferPhaseConfig.php │ │ ├── OtherRegionsSubscriptionOfferPhasePrices.php │ │ ├── PageInfo.php │ │ ├── PausedStateContext.php │ │ ├── PrepaidBasePlanType.php │ │ ├── PrepaidPlan.php │ │ ├── Price.php │ │ ├── ProductPurchase.php │ │ ├── ProductPurchasesAcknowledgeRequest.php │ │ ├── RegionalBasePlanConfig.php │ │ ├── RegionalPriceMigrationConfig.php │ │ ├── RegionalSubscriptionOfferConfig.php │ │ ├── RegionalSubscriptionOfferPhaseConfig.php │ │ ├── RegionalTaxRateInfo.php │ │ ├── RegionsVersion.php │ │ ├── ReplacementCancellation.php │ │ ├── Resource │ │ │ ├── Applications.php │ │ │ ├── ApplicationsDeviceTierConfigs.php │ │ │ ├── ApplicationsPricing.php │ │ │ ├── Edits.php │ │ │ ├── EditsApks.php │ │ │ ├── EditsBundles.php │ │ │ ├── EditsCountryavailability.php │ │ │ ├── EditsDeobfuscationfiles.php │ │ │ ├── EditsDetails.php │ │ │ ├── EditsExpansionfiles.php │ │ │ ├── EditsImages.php │ │ │ ├── EditsListings.php │ │ │ ├── EditsTesters.php │ │ │ ├── EditsTracks.php │ │ │ ├── Generatedapks.php │ │ │ ├── Grants.php │ │ │ ├── Inappproducts.php │ │ │ ├── Internalappsharingartifacts.php │ │ │ ├── Monetization.php │ │ │ ├── MonetizationSubscriptions.php │ │ │ ├── MonetizationSubscriptionsBasePlans.php │ │ │ ├── MonetizationSubscriptionsBasePlansOffers.php │ │ │ ├── Orders.php │ │ │ ├── Purchases.php │ │ │ ├── PurchasesProducts.php │ │ │ ├── PurchasesSubscriptions.php │ │ │ ├── PurchasesSubscriptionsv2.php │ │ │ ├── PurchasesVoidedpurchases.php │ │ │ ├── Reviews.php │ │ │ ├── Systemapks.php │ │ │ ├── SystemapksVariants.php │ │ │ └── Users.php │ │ ├── Review.php │ │ ├── ReviewReplyResult.php │ │ ├── ReviewsListResponse.php │ │ ├── ReviewsReplyRequest.php │ │ ├── ReviewsReplyResponse.php │ │ ├── SubscribeWithGoogleInfo.php │ │ ├── Subscription.php │ │ ├── SubscriptionCancelSurveyResult.php │ │ ├── SubscriptionDeferralInfo.php │ │ ├── SubscriptionItemPriceChangeDetails.php │ │ ├── SubscriptionListing.php │ │ ├── SubscriptionOffer.php │ │ ├── SubscriptionOfferPhase.php │ │ ├── SubscriptionOfferTargeting.php │ │ ├── SubscriptionPriceChange.php │ │ ├── SubscriptionPurchase.php │ │ ├── SubscriptionPurchaseLineItem.php │ │ ├── SubscriptionPurchaseV2.php │ │ ├── SubscriptionPurchasesAcknowledgeRequest.php │ │ ├── SubscriptionPurchasesDeferRequest.php │ │ ├── SubscriptionPurchasesDeferResponse.php │ │ ├── SubscriptionTaxAndComplianceSettings.php │ │ ├── SystemApksListResponse.php │ │ ├── SystemFeature.php │ │ ├── SystemInitiatedCancellation.php │ │ ├── TargetingRuleScope.php │ │ ├── TestPurchase.php │ │ ├── Testers.php │ │ ├── Timestamp.php │ │ ├── TokenPagination.php │ │ ├── Track.php │ │ ├── TrackCountryAvailability.php │ │ ├── TrackRelease.php │ │ ├── TrackTargetedCountry.php │ │ ├── TracksListResponse.php │ │ ├── UpgradeTargetingRule.php │ │ ├── User.php │ │ ├── UserComment.php │ │ ├── UserCountrySet.php │ │ ├── UserInitiatedCancellation.php │ │ ├── UsesPermission.php │ │ ├── Variant.php │ │ ├── VoidedPurchase.php │ │ └── VoidedPurchasesListResponse.php │ │ ├── ApiKeysService.php │ │ ├── ApiKeysService │ │ ├── Operation.php │ │ ├── Resource │ │ │ ├── Keys.php │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ └── ProjectsLocationsKeys.php │ │ ├── Status.php │ │ ├── V2AndroidApplication.php │ │ ├── V2AndroidKeyRestrictions.php │ │ ├── V2ApiTarget.php │ │ ├── V2BrowserKeyRestrictions.php │ │ ├── V2CloneKeyRequest.php │ │ ├── V2GetKeyStringResponse.php │ │ ├── V2IosKeyRestrictions.php │ │ ├── V2Key.php │ │ ├── V2ListKeysResponse.php │ │ ├── V2LookupKeyResponse.php │ │ ├── V2Restrictions.php │ │ ├── V2ServerKeyRestrictions.php │ │ └── V2UndeleteKeyRequest.php │ │ ├── Apigateway.php │ │ ├── Apigateway │ │ ├── ApigatewayApi.php │ │ ├── ApigatewayApiConfig.php │ │ ├── ApigatewayApiConfigFile.php │ │ ├── ApigatewayApiConfigGrpcServiceDefinition.php │ │ ├── ApigatewayApiConfigOpenApiDocument.php │ │ ├── ApigatewayAuditConfig.php │ │ ├── ApigatewayAuditLogConfig.php │ │ ├── ApigatewayBinding.php │ │ ├── ApigatewayCancelOperationRequest.php │ │ ├── ApigatewayEmpty.php │ │ ├── ApigatewayExpr.php │ │ ├── ApigatewayGateway.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 │ │ ├── EdgeConfigstoreBundleBadBundle.php │ │ ├── EdgeConfigstoreBundleBadBundleViolation.php │ │ ├── GoogleApiHttpBody.php │ │ ├── GoogleCloudApigeeV1Access.php │ │ ├── GoogleCloudApigeeV1AccessGet.php │ │ ├── GoogleCloudApigeeV1AccessRemove.php │ │ ├── GoogleCloudApigeeV1AccessSet.php │ │ ├── GoogleCloudApigeeV1ActivateNatAddressRequest.php │ │ ├── GoogleCloudApigeeV1AddonsConfig.php │ │ ├── GoogleCloudApigeeV1AdjustDeveloperBalanceRequest.php │ │ ├── GoogleCloudApigeeV1AdvancedApiOpsConfig.php │ │ ├── GoogleCloudApigeeV1Alias.php │ │ ├── GoogleCloudApigeeV1AliasRevisionConfig.php │ │ ├── GoogleCloudApigeeV1ApiCategory.php │ │ ├── GoogleCloudApigeeV1ApiCategoryData.php │ │ ├── GoogleCloudApigeeV1ApiProduct.php │ │ ├── GoogleCloudApigeeV1ApiProductRef.php │ │ ├── GoogleCloudApigeeV1ApiProxy.php │ │ ├── GoogleCloudApigeeV1ApiProxyRevision.php │ │ ├── GoogleCloudApigeeV1ApiResponseWrapper.php │ │ ├── GoogleCloudApigeeV1ApiSecurityConfig.php │ │ ├── GoogleCloudApigeeV1ApiSecurityRuntimeConfig.php │ │ ├── GoogleCloudApigeeV1App.php │ │ ├── GoogleCloudApigeeV1ArchiveDeployment.php │ │ ├── GoogleCloudApigeeV1AsyncQuery.php │ │ ├── GoogleCloudApigeeV1AsyncQueryResult.php │ │ ├── GoogleCloudApigeeV1AsyncQueryResultView.php │ │ ├── GoogleCloudApigeeV1Attribute.php │ │ ├── GoogleCloudApigeeV1Attributes.php │ │ ├── GoogleCloudApigeeV1CanaryEvaluation.php │ │ ├── GoogleCloudApigeeV1CanaryEvaluationMetricLabels.php │ │ ├── GoogleCloudApigeeV1CertInfo.php │ │ ├── GoogleCloudApigeeV1Certificate.php │ │ ├── GoogleCloudApigeeV1CommonNameConfig.php │ │ ├── GoogleCloudApigeeV1ComputeEnvironmentScoresRequest.php │ │ ├── GoogleCloudApigeeV1ComputeEnvironmentScoresRequestFilter.php │ │ ├── GoogleCloudApigeeV1ComputeEnvironmentScoresResponse.php │ │ ├── GoogleCloudApigeeV1ConfigVersion.php │ │ ├── GoogleCloudApigeeV1ConnectorsPlatformConfig.php │ │ ├── GoogleCloudApigeeV1Credential.php │ │ ├── GoogleCloudApigeeV1CreditDeveloperBalanceRequest.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 │ │ ├── GoogleCloudApigeeV1DeploymentGroupConfig.php │ │ ├── GoogleCloudApigeeV1Developer.php │ │ ├── GoogleCloudApigeeV1DeveloperApp.php │ │ ├── GoogleCloudApigeeV1DeveloperAppKey.php │ │ ├── GoogleCloudApigeeV1DeveloperBalance.php │ │ ├── GoogleCloudApigeeV1DeveloperBalanceWallet.php │ │ ├── GoogleCloudApigeeV1DeveloperMonetizationConfig.php │ │ ├── GoogleCloudApigeeV1DeveloperSubscription.php │ │ ├── GoogleCloudApigeeV1DimensionMetric.php │ │ ├── GoogleCloudApigeeV1EndpointAttachment.php │ │ ├── GoogleCloudApigeeV1EndpointChainingRule.php │ │ ├── GoogleCloudApigeeV1EntityMetadata.php │ │ ├── GoogleCloudApigeeV1Environment.php │ │ ├── GoogleCloudApigeeV1EnvironmentConfig.php │ │ ├── GoogleCloudApigeeV1EnvironmentGroup.php │ │ ├── GoogleCloudApigeeV1EnvironmentGroupAttachment.php │ │ ├── GoogleCloudApigeeV1EnvironmentGroupConfig.php │ │ ├── GoogleCloudApigeeV1ExpireDeveloperSubscriptionRequest.php │ │ ├── GoogleCloudApigeeV1Export.php │ │ ├── GoogleCloudApigeeV1ExportRequest.php │ │ ├── GoogleCloudApigeeV1FlowHook.php │ │ ├── GoogleCloudApigeeV1FlowHookConfig.php │ │ ├── GoogleCloudApigeeV1GenerateDownloadUrlRequest.php │ │ ├── GoogleCloudApigeeV1GenerateDownloadUrlResponse.php │ │ ├── GoogleCloudApigeeV1GenerateUploadUrlRequest.php │ │ ├── GoogleCloudApigeeV1GenerateUploadUrlResponse.php │ │ ├── GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse.php │ │ ├── GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseURLInfo.php │ │ ├── GoogleCloudApigeeV1GetSyncAuthorizationRequest.php │ │ ├── GoogleCloudApigeeV1GraphQLOperation.php │ │ ├── GoogleCloudApigeeV1GraphQLOperationConfig.php │ │ ├── GoogleCloudApigeeV1GraphQLOperationGroup.php │ │ ├── GoogleCloudApigeeV1IngressConfig.php │ │ ├── GoogleCloudApigeeV1Instance.php │ │ ├── GoogleCloudApigeeV1InstanceAttachment.php │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatus.php │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision.php │ │ ├── GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.php │ │ ├── GoogleCloudApigeeV1IntegrationConfig.php │ │ ├── GoogleCloudApigeeV1KeyAliasReference.php │ │ ├── GoogleCloudApigeeV1KeyValueEntry.php │ │ ├── GoogleCloudApigeeV1KeyValueMap.php │ │ ├── GoogleCloudApigeeV1Keystore.php │ │ ├── GoogleCloudApigeeV1KeystoreConfig.php │ │ ├── GoogleCloudApigeeV1ListApiCategoriesResponse.php │ │ ├── GoogleCloudApigeeV1ListApiProductsResponse.php │ │ ├── GoogleCloudApigeeV1ListApiProxiesResponse.php │ │ ├── GoogleCloudApigeeV1ListAppsResponse.php │ │ ├── GoogleCloudApigeeV1ListArchiveDeploymentsResponse.php │ │ ├── GoogleCloudApigeeV1ListAsyncQueriesResponse.php │ │ ├── GoogleCloudApigeeV1ListCustomReportsResponse.php │ │ ├── GoogleCloudApigeeV1ListDataCollectorsResponse.php │ │ ├── GoogleCloudApigeeV1ListDatastoresResponse.php │ │ ├── GoogleCloudApigeeV1ListDebugSessionsResponse.php │ │ ├── GoogleCloudApigeeV1ListDeploymentsResponse.php │ │ ├── GoogleCloudApigeeV1ListDeveloperAppsResponse.php │ │ ├── GoogleCloudApigeeV1ListDeveloperSubscriptionsResponse.php │ │ ├── GoogleCloudApigeeV1ListEndpointAttachmentsResponse.php │ │ ├── GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.php │ │ ├── GoogleCloudApigeeV1ListEnvironmentGroupsResponse.php │ │ ├── GoogleCloudApigeeV1ListEnvironmentResourcesResponse.php │ │ ├── GoogleCloudApigeeV1ListExportsResponse.php │ │ ├── GoogleCloudApigeeV1ListHybridIssuersResponse.php │ │ ├── GoogleCloudApigeeV1ListInstanceAttachmentsResponse.php │ │ ├── GoogleCloudApigeeV1ListInstancesResponse.php │ │ ├── GoogleCloudApigeeV1ListKeyValueEntriesResponse.php │ │ ├── GoogleCloudApigeeV1ListNatAddressesResponse.php │ │ ├── GoogleCloudApigeeV1ListOfDevelopersResponse.php │ │ ├── GoogleCloudApigeeV1ListOrganizationsResponse.php │ │ ├── GoogleCloudApigeeV1ListRatePlansResponse.php │ │ ├── GoogleCloudApigeeV1ListSecurityProfileRevisionsResponse.php │ │ ├── GoogleCloudApigeeV1ListSecurityProfilesResponse.php │ │ ├── GoogleCloudApigeeV1ListSecurityReportsResponse.php │ │ ├── GoogleCloudApigeeV1ListSharedFlowsResponse.php │ │ ├── GoogleCloudApigeeV1ListTraceConfigOverridesResponse.php │ │ ├── GoogleCloudApigeeV1Metadata.php │ │ ├── GoogleCloudApigeeV1Metric.php │ │ ├── GoogleCloudApigeeV1MetricAggregation.php │ │ ├── GoogleCloudApigeeV1MonetizationConfig.php │ │ ├── GoogleCloudApigeeV1NatAddress.php │ │ ├── GoogleCloudApigeeV1NodeConfig.php │ │ ├── GoogleCloudApigeeV1Operation.php │ │ ├── GoogleCloudApigeeV1OperationConfig.php │ │ ├── GoogleCloudApigeeV1OperationGroup.php │ │ ├── GoogleCloudApigeeV1OperationMetadata.php │ │ ├── GoogleCloudApigeeV1OperationMetadataProgress.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 │ │ ├── GoogleCloudApigeeV1QueryTabularStatsRequest.php │ │ ├── GoogleCloudApigeeV1QueryTabularStatsResponse.php │ │ ├── GoogleCloudApigeeV1QueryTimeSeriesStatsRequest.php │ │ ├── GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.php │ │ ├── GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.php │ │ ├── GoogleCloudApigeeV1Quota.php │ │ ├── GoogleCloudApigeeV1RatePlan.php │ │ ├── GoogleCloudApigeeV1RateRange.php │ │ ├── GoogleCloudApigeeV1Reference.php │ │ ├── GoogleCloudApigeeV1ReferenceConfig.php │ │ ├── GoogleCloudApigeeV1ReportInstanceStatusRequest.php │ │ ├── GoogleCloudApigeeV1ReportInstanceStatusResponse.php │ │ ├── GoogleCloudApigeeV1ReportProperty.php │ │ ├── GoogleCloudApigeeV1ResourceConfig.php │ │ ├── GoogleCloudApigeeV1ResourceFile.php │ │ ├── GoogleCloudApigeeV1ResourceFiles.php │ │ ├── GoogleCloudApigeeV1ResourceStatus.php │ │ ├── GoogleCloudApigeeV1Result.php │ │ ├── GoogleCloudApigeeV1RevenueShareRange.php │ │ ├── GoogleCloudApigeeV1RevisionStatus.php │ │ ├── GoogleCloudApigeeV1RoutingRule.php │ │ ├── GoogleCloudApigeeV1RuntimeConfig.php │ │ ├── GoogleCloudApigeeV1RuntimeTraceConfig.php │ │ ├── GoogleCloudApigeeV1RuntimeTraceConfigOverride.php │ │ ├── GoogleCloudApigeeV1RuntimeTraceSamplingConfig.php │ │ ├── GoogleCloudApigeeV1Schema.php │ │ ├── GoogleCloudApigeeV1SchemaSchemaElement.php │ │ ├── GoogleCloudApigeeV1SchemaSchemaProperty.php │ │ ├── GoogleCloudApigeeV1Score.php │ │ ├── GoogleCloudApigeeV1ScoreComponent.php │ │ ├── GoogleCloudApigeeV1ScoreComponentRecommendation.php │ │ ├── GoogleCloudApigeeV1ScoreComponentRecommendationAction.php │ │ ├── GoogleCloudApigeeV1ScoreComponentRecommendationActionActionContext.php │ │ ├── GoogleCloudApigeeV1SecurityProfile.php │ │ ├── GoogleCloudApigeeV1SecurityProfileEnvironment.php │ │ ├── GoogleCloudApigeeV1SecurityProfileEnvironmentAssociation.php │ │ ├── GoogleCloudApigeeV1SecurityProfileScoringConfig.php │ │ ├── GoogleCloudApigeeV1SecurityReport.php │ │ ├── GoogleCloudApigeeV1SecurityReportMetadata.php │ │ ├── GoogleCloudApigeeV1SecurityReportQuery.php │ │ ├── GoogleCloudApigeeV1SecurityReportQueryMetric.php │ │ ├── GoogleCloudApigeeV1SecurityReportResultMetadata.php │ │ ├── GoogleCloudApigeeV1SecurityReportResultView.php │ │ ├── GoogleCloudApigeeV1ServiceIssuersMapping.php │ │ ├── GoogleCloudApigeeV1Session.php │ │ ├── GoogleCloudApigeeV1SetAddonsRequest.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 │ │ ├── GoogleCloudApigeeV1TraceConfig.php │ │ ├── GoogleCloudApigeeV1TraceConfigOverride.php │ │ ├── GoogleCloudApigeeV1TraceSamplingConfig.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 │ │ ├── GoogleTypeInterval.php │ │ ├── GoogleTypeMoney.php │ │ └── Resource │ │ │ ├── Hybrid.php │ │ │ ├── HybridIssuers.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsAnalytics.php │ │ │ ├── OrganizationsAnalyticsDatastores.php │ │ │ ├── OrganizationsApiproducts.php │ │ │ ├── OrganizationsApiproductsAttributes.php │ │ │ ├── OrganizationsApiproductsRateplans.php │ │ │ ├── OrganizationsApis.php │ │ │ ├── OrganizationsApisDeployments.php │ │ │ ├── OrganizationsApisKeyvaluemaps.php │ │ │ ├── OrganizationsApisKeyvaluemapsEntries.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 │ │ │ ├── OrganizationsDevelopersBalance.php │ │ │ ├── OrganizationsDevelopersSubscriptions.php │ │ │ ├── OrganizationsEndpointAttachments.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 │ │ │ ├── OrganizationsEnvironmentsArchiveDeployments.php │ │ │ ├── OrganizationsEnvironmentsCaches.php │ │ │ ├── OrganizationsEnvironmentsDeployments.php │ │ │ ├── OrganizationsEnvironmentsFlowhooks.php │ │ │ ├── OrganizationsEnvironmentsKeystores.php │ │ │ ├── OrganizationsEnvironmentsKeystoresAliases.php │ │ │ ├── OrganizationsEnvironmentsKeyvaluemaps.php │ │ │ ├── OrganizationsEnvironmentsKeyvaluemapsEntries.php │ │ │ ├── OrganizationsEnvironmentsOptimizedStats.php │ │ │ ├── OrganizationsEnvironmentsQueries.php │ │ │ ├── OrganizationsEnvironmentsReferences.php │ │ │ ├── OrganizationsEnvironmentsResourcefiles.php │ │ │ ├── OrganizationsEnvironmentsSecurityReports.php │ │ │ ├── OrganizationsEnvironmentsSecurityStats.php │ │ │ ├── OrganizationsEnvironmentsSharedflows.php │ │ │ ├── OrganizationsEnvironmentsSharedflowsDeployments.php │ │ │ ├── OrganizationsEnvironmentsSharedflowsRevisions.php │ │ │ ├── OrganizationsEnvironmentsStats.php │ │ │ ├── OrganizationsEnvironmentsTargetservers.php │ │ │ ├── OrganizationsEnvironmentsTraceConfig.php │ │ │ ├── OrganizationsEnvironmentsTraceConfigOverrides.php │ │ │ ├── OrganizationsHostQueries.php │ │ │ ├── OrganizationsHostSecurityReports.php │ │ │ ├── OrganizationsHostStats.php │ │ │ ├── OrganizationsInstances.php │ │ │ ├── OrganizationsInstancesAttachments.php │ │ │ ├── OrganizationsInstancesCanaryevaluations.php │ │ │ ├── OrganizationsInstancesNatAddresses.php │ │ │ ├── OrganizationsKeyvaluemaps.php │ │ │ ├── OrganizationsKeyvaluemapsEntries.php │ │ │ ├── OrganizationsOperations.php │ │ │ ├── OrganizationsOptimizedHostStats.php │ │ │ ├── OrganizationsReports.php │ │ │ ├── OrganizationsSecurityProfiles.php │ │ │ ├── OrganizationsSecurityProfilesEnvironments.php │ │ │ ├── OrganizationsSharedflows.php │ │ │ ├── OrganizationsSharedflowsDeployments.php │ │ │ ├── OrganizationsSharedflowsRevisions.php │ │ │ ├── OrganizationsSharedflowsRevisionsDeployments.php │ │ │ ├── OrganizationsSites.php │ │ │ ├── OrganizationsSitesApicategories.php │ │ │ └── Projects.php │ │ ├── ApigeeRegistry.php │ │ ├── ApigeeRegistry │ │ ├── Api.php │ │ ├── ApiDeployment.php │ │ ├── ApiSpec.php │ │ ├── ApiVersion.php │ │ ├── ApigeeregistryEmpty.php │ │ ├── Artifact.php │ │ ├── Binding.php │ │ ├── Build.php │ │ ├── CancelOperationRequest.php │ │ ├── Config.php │ │ ├── Expr.php │ │ ├── HttpBody.php │ │ ├── Instance.php │ │ ├── ListApiDeploymentRevisionsResponse.php │ │ ├── ListApiDeploymentsResponse.php │ │ ├── ListApiSpecRevisionsResponse.php │ │ ├── ListApiSpecsResponse.php │ │ ├── ListApiVersionsResponse.php │ │ ├── ListApisResponse.php │ │ ├── ListArtifactsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsApis.php │ │ │ ├── ProjectsLocationsApisArtifacts.php │ │ │ ├── ProjectsLocationsApisDeployments.php │ │ │ ├── ProjectsLocationsApisDeploymentsArtifacts.php │ │ │ ├── ProjectsLocationsApisVersions.php │ │ │ ├── ProjectsLocationsApisVersionsArtifacts.php │ │ │ ├── ProjectsLocationsApisVersionsSpecs.php │ │ │ ├── ProjectsLocationsApisVersionsSpecsArtifacts.php │ │ │ ├── ProjectsLocationsArtifacts.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsRuntime.php │ │ ├── RollbackApiDeploymentRequest.php │ │ ├── RollbackApiSpecRequest.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TagApiDeploymentRevisionRequest.php │ │ ├── TagApiSpecRevisionRequest.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.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 │ │ ├── FlexibleRuntimeSettings.php │ │ ├── GoogleAppengineV1betaLocationMetadata.php │ │ ├── GoogleAppengineV2OperationMetadata.php │ │ ├── GoogleAppengineV2mainOperationMetadata.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 │ │ ├── ProjectEvent.php │ │ ├── ProjectState.php │ │ ├── ProjectsMetadata.php │ │ ├── ReadinessCheck.php │ │ ├── Reasons.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 │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ └── ProjectsLocationsApplications.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 │ │ ├── Area120Tables.php │ │ ├── Area120Tables │ │ ├── Area120tablesEmpty.php │ │ ├── BatchCreateRowsRequest.php │ │ ├── BatchCreateRowsResponse.php │ │ ├── BatchDeleteRowsRequest.php │ │ ├── BatchUpdateRowsRequest.php │ │ ├── BatchUpdateRowsResponse.php │ │ ├── ColumnDescription.php │ │ ├── CreateRowRequest.php │ │ ├── DateDetails.php │ │ ├── LabeledItem.php │ │ ├── ListRowsResponse.php │ │ ├── ListTablesResponse.php │ │ ├── ListWorkspacesResponse.php │ │ ├── LookupDetails.php │ │ ├── RelationshipDetails.php │ │ ├── Resource │ │ │ ├── Tables.php │ │ │ ├── TablesRows.php │ │ │ └── Workspaces.php │ │ ├── Row.php │ │ ├── SavedView.php │ │ ├── Table.php │ │ ├── UpdateRowRequest.php │ │ └── Workspace.php │ │ ├── ArtifactRegistry.php │ │ ├── ArtifactRegistry │ │ ├── AptArtifact.php │ │ ├── ArtifactregistryEmpty.php │ │ ├── BatchDeleteVersionsMetadata.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── DockerImage.php │ │ ├── DockerRepository.php │ │ ├── Expr.php │ │ ├── GoogleDevtoolsArtifactregistryV1File.php │ │ ├── Hash.php │ │ ├── ImportAptArtifactsErrorInfo.php │ │ ├── ImportAptArtifactsGcsSource.php │ │ ├── ImportAptArtifactsMetadata.php │ │ ├── ImportAptArtifactsRequest.php │ │ ├── ImportAptArtifactsResponse.php │ │ ├── ImportGooGetArtifactsGcsSource.php │ │ ├── ImportGooGetArtifactsRequest.php │ │ ├── ImportYumArtifactsErrorInfo.php │ │ ├── ImportYumArtifactsGcsSource.php │ │ ├── ImportYumArtifactsMetadata.php │ │ ├── ImportYumArtifactsRequest.php │ │ ├── ImportYumArtifactsResponse.php │ │ ├── KfpArtifact.php │ │ ├── ListDockerImagesResponse.php │ │ ├── ListFilesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMavenArtifactsResponse.php │ │ ├── ListNpmPackagesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPackagesResponse.php │ │ ├── ListPythonPackagesResponse.php │ │ ├── ListRepositoriesResponse.php │ │ ├── ListTagsResponse.php │ │ ├── ListVersionsResponse.php │ │ ├── Location.php │ │ ├── MavenArtifact.php │ │ ├── MavenRepository.php │ │ ├── MavenRepositoryConfig.php │ │ ├── NpmPackage.php │ │ ├── NpmRepository.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Package.php │ │ ├── Policy.php │ │ ├── ProjectSettings.php │ │ ├── PythonPackage.php │ │ ├── PythonRepository.php │ │ ├── RemoteRepositoryConfig.php │ │ ├── Repository.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRepositories.php │ │ │ ├── ProjectsLocationsRepositoriesAptArtifacts.php │ │ │ ├── ProjectsLocationsRepositoriesDockerImages.php │ │ │ ├── ProjectsLocationsRepositoriesFiles.php │ │ │ ├── ProjectsLocationsRepositoriesGooGetArtifacts.php │ │ │ ├── ProjectsLocationsRepositoriesKfpArtifacts.php │ │ │ ├── ProjectsLocationsRepositoriesMavenArtifacts.php │ │ │ ├── ProjectsLocationsRepositoriesNpmPackages.php │ │ │ ├── ProjectsLocationsRepositoriesPackages.php │ │ │ ├── ProjectsLocationsRepositoriesPackagesTags.php │ │ │ ├── ProjectsLocationsRepositoriesPackagesVersions.php │ │ │ ├── ProjectsLocationsRepositoriesPythonPackages.php │ │ │ └── ProjectsLocationsRepositoriesYumArtifacts.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── Tag.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── UploadAptArtifactMediaResponse.php │ │ ├── UploadAptArtifactMetadata.php │ │ ├── UploadAptArtifactRequest.php │ │ ├── UploadAptArtifactResponse.php │ │ ├── UploadGooGetArtifactMediaResponse.php │ │ ├── UploadGooGetArtifactRequest.php │ │ ├── UploadKfpArtifactMediaResponse.php │ │ ├── UploadKfpArtifactMetadata.php │ │ ├── UploadKfpArtifactRequest.php │ │ ├── UploadYumArtifactMediaResponse.php │ │ ├── UploadYumArtifactMetadata.php │ │ ├── UploadYumArtifactRequest.php │ │ ├── UploadYumArtifactResponse.php │ │ ├── UpstreamPolicy.php │ │ ├── VPCSCConfig.php │ │ ├── Version.php │ │ ├── VirtualRepositoryConfig.php │ │ └── YumArtifact.php │ │ ├── Assuredworkloads.php │ │ ├── Assuredworkloads │ │ ├── GoogleCloudAssuredworkloadsV1AcknowledgeViolationRequest.php │ │ ├── GoogleCloudAssuredworkloadsV1AcknowledgeViolationResponse.php │ │ ├── GoogleCloudAssuredworkloadsV1CreateWorkloadOperationMetadata.php │ │ ├── GoogleCloudAssuredworkloadsV1ListViolationsResponse.php │ │ ├── GoogleCloudAssuredworkloadsV1ListWorkloadsResponse.php │ │ ├── GoogleCloudAssuredworkloadsV1MutatePartnerPermissionsRequest.php │ │ ├── GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesRequest.php │ │ ├── GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesResponse.php │ │ ├── GoogleCloudAssuredworkloadsV1Violation.php │ │ ├── GoogleCloudAssuredworkloadsV1ViolationRemediation.php │ │ ├── GoogleCloudAssuredworkloadsV1ViolationRemediationInstructions.php │ │ ├── GoogleCloudAssuredworkloadsV1ViolationRemediationInstructionsConsole.php │ │ ├── GoogleCloudAssuredworkloadsV1ViolationRemediationInstructionsGcloud.php │ │ ├── GoogleCloudAssuredworkloadsV1Workload.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadComplianceStatus.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadKMSSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadPartnerPermissions.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadResourceInfo.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadResourceSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1Workload.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadCJISSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampHighSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampModerateSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadIL4Settings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadKMSSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings.php │ │ ├── GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkload.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCJISSettings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadComplianceStatus.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIL4Settings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKMSSettings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings.php │ │ ├── GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ └── Resource │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsLocations.php │ │ │ ├── OrganizationsLocationsOperations.php │ │ │ ├── OrganizationsLocationsWorkloads.php │ │ │ └── OrganizationsLocationsWorkloadsViolations.php │ │ ├── AuthorizedBuyersMarketplace.php │ │ ├── AuthorizedBuyersMarketplace │ │ ├── AcceptProposalRequest.php │ │ ├── ActivateClientRequest.php │ │ ├── ActivateClientUserRequest.php │ │ ├── AdSize.php │ │ ├── AddCreativeRequest.php │ │ ├── AddNoteRequest.php │ │ ├── AuctionPackage.php │ │ ├── AuthorizedbuyersmarketplaceEmpty.php │ │ ├── BatchUpdateDealsRequest.php │ │ ├── BatchUpdateDealsResponse.php │ │ ├── CancelNegotiationRequest.php │ │ ├── Client.php │ │ ├── ClientUser.php │ │ ├── Contact.php │ │ ├── CreativeRequirements.php │ │ ├── CriteriaTargeting.php │ │ ├── DayPart.php │ │ ├── DayPartTargeting.php │ │ ├── DeactivateClientRequest.php │ │ ├── DeactivateClientUserRequest.php │ │ ├── Deal.php │ │ ├── DealPausingInfo.php │ │ ├── DeliveryControl.php │ │ ├── FinalizedDeal.php │ │ ├── FirstPartyMobileApplicationTargeting.php │ │ ├── FrequencyCap.php │ │ ├── InventorySizeTargeting.php │ │ ├── InventoryTypeTargeting.php │ │ ├── ListAuctionPackagesResponse.php │ │ ├── ListClientUsersResponse.php │ │ ├── ListClientsResponse.php │ │ ├── ListDealsResponse.php │ │ ├── ListFinalizedDealsResponse.php │ │ ├── ListProposalsResponse.php │ │ ├── ListPublisherProfilesResponse.php │ │ ├── MarketplaceTargeting.php │ │ ├── MobileApplicationTargeting.php │ │ ├── Money.php │ │ ├── Note.php │ │ ├── OperatingSystemTargeting.php │ │ ├── PauseFinalizedDealRequest.php │ │ ├── PlacementTargeting.php │ │ ├── PreferredDealTerms.php │ │ ├── Price.php │ │ ├── PrivateAuctionTerms.php │ │ ├── PrivateData.php │ │ ├── ProgrammaticGuaranteedTerms.php │ │ ├── Proposal.php │ │ ├── PublisherProfile.php │ │ ├── PublisherProfileMobileApplication.php │ │ ├── Resource │ │ │ ├── Bidders.php │ │ │ ├── BiddersFinalizedDeals.php │ │ │ ├── Buyers.php │ │ │ ├── BuyersAuctionPackages.php │ │ │ ├── BuyersClients.php │ │ │ ├── BuyersClientsUsers.php │ │ │ ├── BuyersFinalizedDeals.php │ │ │ ├── BuyersProposals.php │ │ │ ├── BuyersProposalsDeals.php │ │ │ └── BuyersPublisherProfiles.php │ │ ├── ResumeFinalizedDealRequest.php │ │ ├── RtbMetrics.php │ │ ├── SendRfpRequest.php │ │ ├── SetReadyToServeRequest.php │ │ ├── SubscribeAuctionPackageRequest.php │ │ ├── SubscribeClientsRequest.php │ │ ├── TechnologyTargeting.php │ │ ├── TimeOfDay.php │ │ ├── TimeZone.php │ │ ├── UnsubscribeAuctionPackageRequest.php │ │ ├── UnsubscribeClientsRequest.php │ │ ├── UpdateDealRequest.php │ │ ├── UriTargeting.php │ │ └── VideoTargeting.php │ │ ├── BackupforGKE.php │ │ ├── BackupforGKE │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Backup.php │ │ ├── BackupConfig.php │ │ ├── BackupPlan.php │ │ ├── Binding.php │ │ ├── ClusterMetadata.php │ │ ├── ClusterResourceRestoreScope.php │ │ ├── EncryptionKey.php │ │ ├── Expr.php │ │ ├── GkebackupEmpty.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── GroupKind.php │ │ ├── ListBackupPlansResponse.php │ │ ├── ListBackupsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListRestorePlansResponse.php │ │ ├── ListRestoresResponse.php │ │ ├── ListVolumeBackupsResponse.php │ │ ├── ListVolumeRestoresResponse.php │ │ ├── Location.php │ │ ├── NamespacedName.php │ │ ├── NamespacedNames.php │ │ ├── Namespaces.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsBackupPlans.php │ │ │ ├── ProjectsLocationsBackupPlansBackups.php │ │ │ ├── ProjectsLocationsBackupPlansBackupsVolumeBackups.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRestorePlans.php │ │ │ ├── ProjectsLocationsRestorePlansRestores.php │ │ │ └── ProjectsLocationsRestorePlansRestoresVolumeRestores.php │ │ ├── Restore.php │ │ ├── RestoreConfig.php │ │ ├── RestorePlan.php │ │ ├── RetentionPolicy.php │ │ ├── Schedule.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SubstitutionRule.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── VolumeBackup.php │ │ └── VolumeRestore.php │ │ ├── Baremetalsolution.php │ │ ├── Baremetalsolution │ │ ├── AllowedClient.php │ │ ├── BaremetalsolutionEmpty.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── DetachLunRequest.php │ │ ├── DisableInteractiveSerialConsoleRequest.php │ │ ├── EnableInteractiveSerialConsoleRequest.php │ │ ├── EvictLunRequest.php │ │ ├── EvictVolumeRequest.php │ │ ├── Expr.php │ │ ├── FetchInstanceProvisioningSettingsResponse.php │ │ ├── GoogleCloudBaremetalsolutionV2LogicalInterface.php │ │ ├── GoogleCloudBaremetalsolutionV2ServerNetworkTemplateLogicalInterface.php │ │ ├── Instance.php │ │ ├── InstanceConfig.php │ │ ├── InstanceQuota.php │ │ ├── IntakeVlanAttachment.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListLunsResponse.php │ │ ├── ListNetworkUsageResponse.php │ │ ├── ListNetworksResponse.php │ │ ├── ListNfsSharesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListProvisioningQuotasResponse.php │ │ ├── ListSSHKeysResponse.php │ │ ├── ListSnapshotSchedulePoliciesResponse.php │ │ ├── ListVolumeSnapshotsResponse.php │ │ ├── ListVolumesResponse.php │ │ ├── Location.php │ │ ├── LogicalInterface.php │ │ ├── LogicalNetworkInterface.php │ │ ├── Lun.php │ │ ├── LunRange.php │ │ ├── Network.php │ │ ├── NetworkAddress.php │ │ ├── NetworkAddressReservation.php │ │ ├── NetworkConfig.php │ │ ├── NetworkMountPoint.php │ │ ├── NetworkUsage.php │ │ ├── NfsExport.php │ │ ├── NfsShare.php │ │ ├── OSImage.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── ProvisioningConfig.php │ │ ├── ProvisioningQuota.php │ │ ├── QosPolicy.php │ │ ├── RenameInstanceRequest.php │ │ ├── ResetInstanceRequest.php │ │ ├── ResetInstanceResponse.php │ │ ├── ResizeVolumeRequest.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInstanceProvisioningSettings.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsNetworks.php │ │ │ ├── ProjectsLocationsNfsShares.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsProvisioningConfigs.php │ │ │ ├── ProjectsLocationsProvisioningQuotas.php │ │ │ ├── ProjectsLocationsSnapshotSchedulePolicies.php │ │ │ ├── ProjectsLocationsSshKeys.php │ │ │ ├── ProjectsLocationsVolumes.php │ │ │ ├── ProjectsLocationsVolumesLuns.php │ │ │ └── ProjectsLocationsVolumesSnapshots.php │ │ ├── RestoreVolumeSnapshotRequest.php │ │ ├── SSHKey.php │ │ ├── Schedule.php │ │ ├── ServerNetworkTemplate.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SnapshotReservationDetail.php │ │ ├── SnapshotSchedulePolicy.php │ │ ├── StartInstanceRequest.php │ │ ├── Status.php │ │ ├── StopInstanceRequest.php │ │ ├── SubmitProvisioningConfigRequest.php │ │ ├── SubmitProvisioningConfigResponse.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── VRF.php │ │ ├── VlanAttachment.php │ │ ├── Volume.php │ │ ├── VolumeConfig.php │ │ └── VolumeSnapshot.php │ │ ├── Batch.php │ │ ├── Batch │ │ ├── Accelerator.php │ │ ├── ActionCondition.php │ │ ├── AgentInfo.php │ │ ├── AgentMetadata.php │ │ ├── AgentTask.php │ │ ├── AgentTaskInfo.php │ │ ├── AgentTimingInfo.php │ │ ├── AllocationPolicy.php │ │ ├── AttachedDisk.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Barrier.php │ │ ├── BatchEmpty.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── ComputeResource.php │ │ ├── Container.php │ │ ├── Disk.php │ │ ├── Environment.php │ │ ├── Expr.php │ │ ├── GCS.php │ │ ├── InstancePolicy.php │ │ ├── InstancePolicyOrTemplate.php │ │ ├── InstanceStatus.php │ │ ├── Job.php │ │ ├── JobNotification.php │ │ ├── JobStatus.php │ │ ├── KMSEnvMap.php │ │ ├── LifecyclePolicy.php │ │ ├── ListJobsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListTasksResponse.php │ │ ├── Location.php │ │ ├── LocationPolicy.php │ │ ├── LogsPolicy.php │ │ ├── Message.php │ │ ├── NFS.php │ │ ├── NetworkInterface.php │ │ ├── NetworkPolicy.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── ReportAgentStateRequest.php │ │ ├── ReportAgentStateResponse.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsJobs.php │ │ │ ├── ProjectsLocationsJobsTaskGroups.php │ │ │ ├── ProjectsLocationsJobsTaskGroupsTasks.php │ │ │ ├── ProjectsLocationsNodes.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsState.php │ │ │ └── ProjectsLocationsTasks.php │ │ ├── Runnable.php │ │ ├── Script.php │ │ ├── ServiceAccount.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── StatusEvent.php │ │ ├── Task.php │ │ ├── TaskExecution.php │ │ ├── TaskGroup.php │ │ ├── TaskGroupStatus.php │ │ ├── TaskSpec.php │ │ ├── TaskStatus.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ └── Volume.php │ │ ├── BeyondCorp.php │ │ ├── BeyondCorp │ │ ├── AllocatedConnection.php │ │ ├── AppGateway.php │ │ ├── AppGatewayOperationMetadata.php │ │ ├── ApplicationEndpoint.php │ │ ├── BeyondcorpEmpty.php │ │ ├── ClientConnectorService.php │ │ ├── ClientConnectorServiceOperationMetadata.php │ │ ├── ClientGateway.php │ │ ├── ClientGatewayOperationMetadata.php │ │ ├── CloudPubSubNotificationConfig.php │ │ ├── CloudSecurityZerotrustApplinkAppConnectorProtoConnectionConfig.php │ │ ├── CloudSecurityZerotrustApplinkAppConnectorProtoConnectorDetails.php │ │ ├── CloudSecurityZerotrustApplinkAppConnectorProtoGateway.php │ │ ├── CloudSecurityZerotrustApplinkLogagentProtoLogAgentDetails.php │ │ ├── Config.php │ │ ├── Connection.php │ │ ├── ConnectionDetails.php │ │ ├── ConnectionOperationMetadata.php │ │ ├── Connector.php │ │ ├── ConnectorInstanceConfig.php │ │ ├── ConnectorOperationMetadata.php │ │ ├── ContainerHealthDetails.php │ │ ├── DestinationRoute.php │ │ ├── Egress.php │ │ ├── Gateway.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1AppConnection.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1AppConnectionApplicationEndpoint.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGateway.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1AppConnectionOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1ListAppConnectionsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1ResolveAppConnectionsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1ResolveAppConnectionsResponseAppConnectionDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnection.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionApplicationEndpoint.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGateway.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaListAppConnectionsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaResolveAppConnectionsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectionsV1alphaResolveAppConnectionsResponseAppConnectionDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1AppConnector.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1AppConnectorInstanceConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1AppConnectorOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1AppConnectorPrincipalInfo.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1AppConnectorPrincipalInfoServiceAccount.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ContainerHealthDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ImageConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ListAppConnectorsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1NotificationConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1NotificationConfigCloudPubSubNotificationConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1RemoteAgentDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ReportStatusRequest.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ResolveInstanceConfigResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1ResourceInfo.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaAppConnector.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaAppConnectorInstanceConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaAppConnectorOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaAppConnectorPrincipalInfo.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaAppConnectorPrincipalInfoServiceAccount.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaImageConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaListAppConnectorsResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaNotificationConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaNotificationConfigCloudPubSubNotificationConfig.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaRemoteAgentDetails.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaReportStatusRequest.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaResolveInstanceConfigResponse.php │ │ ├── GoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfo.php │ │ ├── GoogleCloudBeyondcorpAppgatewaysV1alphaAppGatewayOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpApplicationsV1alphaApplicationOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpClientconnectorservicesV1alphaClientConnectorServiceOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpClientgatewaysV1alphaClientGatewayOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpConnectionsV1alphaConnectionOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpConnectorsV1alphaConnectorOperationMetadata.php │ │ ├── GoogleCloudBeyondcorpConnectorsV1alphaContainerHealthDetails.php │ │ ├── GoogleCloudBeyondcorpConnectorsV1alphaRemoteAgentDetails.php │ │ ├── GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnectionOperationMetadata.php │ │ ├── GoogleCloudLocationListLocationsResponse.php │ │ ├── GoogleCloudLocationLocation.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeExpr.php │ │ ├── ImageConfig.php │ │ ├── Ingress.php │ │ ├── ListAppGatewaysResponse.php │ │ ├── ListClientConnectorServicesResponse.php │ │ ├── ListClientGatewaysResponse.php │ │ ├── ListConnectionsResponse.php │ │ ├── ListConnectorsResponse.php │ │ ├── NotificationConfig.php │ │ ├── PeeredVpc.php │ │ ├── PrincipalInfo.php │ │ ├── RemoteAgentDetails.php │ │ ├── ReportStatusRequest.php │ │ ├── ResolveConnectionsResponse.php │ │ ├── ResolveInstanceConfigResponse.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAppConnections.php │ │ │ ├── ProjectsLocationsAppConnectors.php │ │ │ ├── ProjectsLocationsAppGateways.php │ │ │ ├── ProjectsLocationsClientConnectorServices.php │ │ │ ├── ProjectsLocationsClientGateways.php │ │ │ ├── ProjectsLocationsConnections.php │ │ │ ├── ProjectsLocationsConnectors.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── ResourceInfo.php │ │ ├── ServiceAccount.php │ │ ├── Tunnelv1ProtoTunnelerError.php │ │ └── Tunnelv1ProtoTunnelerInfo.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 │ │ ├── EnrollDataSourcesRequest.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 │ │ └── UserInfo.php │ │ ├── BigQueryReservation.php │ │ ├── BigQueryReservation │ │ ├── Assignment.php │ │ ├── Autoscale.php │ │ ├── BiReservation.php │ │ ├── BigqueryreservationEmpty.php │ │ ├── CapacityCommitment.php │ │ ├── ListAssignmentsResponse.php │ │ ├── ListCapacityCommitmentsResponse.php │ │ ├── ListReservationsResponse.php │ │ ├── MergeCapacityCommitmentsRequest.php │ │ ├── MoveAssignmentRequest.php │ │ ├── Reservation.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsCapacityCommitments.php │ │ │ ├── ProjectsLocationsReservations.php │ │ │ └── ProjectsLocationsReservationsAssignments.php │ │ ├── SearchAllAssignmentsResponse.php │ │ ├── SearchAssignmentsResponse.php │ │ ├── SplitCapacityCommitmentRequest.php │ │ ├── SplitCapacityCommitmentResponse.php │ │ ├── Status.php │ │ └── TableReference.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 │ │ ├── AvroOptions.php │ │ ├── BiEngineReason.php │ │ ├── BiEngineStatistics.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 │ │ ├── CloneDefinition.php │ │ ├── Cluster.php │ │ ├── ClusterInfo.php │ │ ├── Clustering.php │ │ ├── ClusteringMetrics.php │ │ ├── ConfusionMatrix.php │ │ ├── ConnectionProperty.php │ │ ├── CsvOptions.php │ │ ├── DataMaskingStatistics.php │ │ ├── DataSplitResult.php │ │ ├── Dataset.php │ │ ├── DatasetAccess.php │ │ ├── DatasetAccessEntry.php │ │ ├── DatasetAccessEntryTargetTypes.php │ │ ├── DatasetList.php │ │ ├── DatasetListDatasets.php │ │ ├── DatasetReference.php │ │ ├── DatasetTags.php │ │ ├── DestinationTableProperties.php │ │ ├── DimensionalityReductionMetrics.php │ │ ├── DmlStatistics.php │ │ ├── DoubleCandidates.php │ │ ├── DoubleHparamSearchSpace.php │ │ ├── DoubleRange.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 │ │ ├── HparamSearchSpaces.php │ │ ├── HparamTuningTrial.php │ │ ├── IndexUnusedReason.php │ │ ├── IntArray.php │ │ ├── IntArrayHparamSearchSpace.php │ │ ├── IntCandidates.php │ │ ├── IntHparamSearchSpace.php │ │ ├── IntRange.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 │ │ ├── JobStatistics5.php │ │ ├── JobStatisticsReservationUsage.php │ │ ├── JobStatus.php │ │ ├── ListModelsResponse.php │ │ ├── ListRoutinesResponse.php │ │ ├── ListRowAccessPoliciesResponse.php │ │ ├── LocationMetadata.php │ │ ├── MaterializedViewDefinition.php │ │ ├── MlStatistics.php │ │ ├── Model.php │ │ ├── ModelDefinition.php │ │ ├── ModelDefinitionModelOptions.php │ │ ├── ModelReference.php │ │ ├── MultiClassClassificationMetrics.php │ │ ├── ParquetOptions.php │ │ ├── Policy.php │ │ ├── PrincipalComponentInfo.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 │ │ ├── RemoteFunctionOptions.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 │ │ ├── SearchStatistics.php │ │ ├── SessionInfo.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SnapshotDefinition.php │ │ ├── SparkLoggingInfo.php │ │ ├── SparkOptions.php │ │ ├── SparkStatistics.php │ │ ├── StandardSqlDataType.php │ │ ├── StandardSqlField.php │ │ ├── StandardSqlStructType.php │ │ ├── StandardSqlTableType.php │ │ ├── Streamingbuffer.php │ │ ├── StringHparamSearchSpace.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 │ │ ├── AutoscalingLimits.php │ │ ├── AutoscalingTargets.php │ │ ├── Backup.php │ │ ├── BackupInfo.php │ │ ├── BigtableadminEmpty.php │ │ ├── Binding.php │ │ ├── CheckConsistencyRequest.php │ │ ├── CheckConsistencyResponse.php │ │ ├── Cluster.php │ │ ├── ClusterAutoscalingConfig.php │ │ ├── ClusterConfig.php │ │ ├── ClusterState.php │ │ ├── ColumnFamily.php │ │ ├── ColumnFamilyStats.php │ │ ├── CopyBackupMetadata.php │ │ ├── CopyBackupRequest.php │ │ ├── CreateBackupMetadata.php │ │ ├── CreateClusterMetadata.php │ │ ├── CreateClusterRequest.php │ │ ├── CreateInstanceMetadata.php │ │ ├── CreateInstanceRequest.php │ │ ├── CreateTableRequest.php │ │ ├── DropRowRangeRequest.php │ │ ├── EncryptionConfig.php │ │ ├── EncryptionInfo.php │ │ ├── Expr.php │ │ ├── FailureTrace.php │ │ ├── Frame.php │ │ ├── GcRule.php │ │ ├── GenerateConsistencyTokenRequest.php │ │ ├── GenerateConsistencyTokenResponse.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── HotTablet.php │ │ ├── Instance.php │ │ ├── Intersection.php │ │ ├── ListAppProfilesResponse.php │ │ ├── ListBackupsResponse.php │ │ ├── ListClustersResponse.php │ │ ├── ListHotTabletsResponse.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListTablesResponse.php │ │ ├── Location.php │ │ ├── Modification.php │ │ ├── ModifyColumnFamiliesRequest.php │ │ ├── MultiClusterRoutingUseAny.php │ │ ├── Operation.php │ │ ├── OperationProgress.php │ │ ├── OptimizeRestoredTableMetadata.php │ │ ├── PartialUpdateClusterMetadata.php │ │ ├── PartialUpdateClusterRequest.php │ │ ├── PartialUpdateInstanceRequest.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── OperationsProjects.php │ │ │ ├── OperationsProjectsOperations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsInstances.php │ │ │ ├── ProjectsInstancesAppProfiles.php │ │ │ ├── ProjectsInstancesClusters.php │ │ │ ├── ProjectsInstancesClustersBackups.php │ │ │ ├── ProjectsInstancesClustersHotTablets.php │ │ │ ├── ProjectsInstancesTables.php │ │ │ └── ProjectsLocations.php │ │ ├── RestoreInfo.php │ │ ├── RestoreTableMetadata.php │ │ ├── RestoreTableRequest.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SingleClusterRouting.php │ │ ├── Split.php │ │ ├── Status.php │ │ ├── Table.php │ │ ├── TableProgress.php │ │ ├── TableStats.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── UndeleteTableMetadata.php │ │ ├── UndeleteTableRequest.php │ │ ├── Union.php │ │ ├── UpdateAppProfileMetadata.php │ │ ├── UpdateClusterMetadata.php │ │ ├── UpdateInstanceMetadata.php │ │ └── UpdateTableMetadata.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 │ │ │ └── Systempolicy.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 │ │ ├── BusinessProfilePerformance.php │ │ ├── BusinessProfilePerformance │ │ ├── Date.php │ │ ├── DatedValue.php │ │ ├── GetDailyMetricsTimeSeriesResponse.php │ │ ├── InsightsValue.php │ │ ├── ListSearchKeywordImpressionsMonthlyResponse.php │ │ ├── Resource │ │ │ ├── Locations.php │ │ │ ├── LocationsSearchkeywords.php │ │ │ ├── LocationsSearchkeywordsImpressions.php │ │ │ └── LocationsSearchkeywordsImpressionsMonthly.php │ │ ├── SearchKeywordCount.php │ │ └── TimeSeries.php │ │ ├── CCAIPlatform.php │ │ ├── CCAIPlatform │ │ ├── CancelOperationRequest.php │ │ ├── ContactCenter.php │ │ ├── ContactCenterQuota.php │ │ ├── ContactcenteraiplatformEmpty.php │ │ ├── InstanceConfig.php │ │ ├── ListContactCentersResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsContactCenters.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── SAMLParams.php │ │ ├── Status.php │ │ └── URIs.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 │ │ ├── EventWorkingLocationProperties.php │ │ ├── EventWorkingLocationPropertiesCustomLocation.php │ │ ├── EventWorkingLocationPropertiesOfficeLocation.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 │ │ ├── AllowedKeyType.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CaOptions.php │ │ ├── CaPool.php │ │ ├── CancelOperationRequest.php │ │ ├── CertChain.php │ │ ├── Certificate.php │ │ ├── CertificateAuthority.php │ │ ├── CertificateConfig.php │ │ ├── CertificateDescription.php │ │ ├── CertificateExtensionConstraints.php │ │ ├── CertificateFingerprint.php │ │ ├── CertificateIdentityConstraints.php │ │ ├── CertificateRevocationList.php │ │ ├── CertificateTemplate.php │ │ ├── DisableCertificateAuthorityRequest.php │ │ ├── EcKeyType.php │ │ ├── EnableCertificateAuthorityRequest.php │ │ ├── Expr.php │ │ ├── ExtendedKeyUsageOptions.php │ │ ├── FetchCaCertsRequest.php │ │ ├── FetchCaCertsResponse.php │ │ ├── FetchCertificateAuthorityCsrResponse.php │ │ ├── IssuanceModes.php │ │ ├── IssuancePolicy.php │ │ ├── KeyId.php │ │ ├── KeyUsage.php │ │ ├── KeyUsageOptions.php │ │ ├── KeyVersionSpec.php │ │ ├── ListCaPoolsResponse.php │ │ ├── ListCertificateAuthoritiesResponse.php │ │ ├── ListCertificateRevocationListsResponse.php │ │ ├── ListCertificateTemplatesResponse.php │ │ ├── ListCertificatesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── NameConstraints.php │ │ ├── ObjectId.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── PrivatecaEmpty.php │ │ ├── PublicKey.php │ │ ├── PublishingOptions.php │ │ ├── ReconciliationOperationMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsCaPools.php │ │ │ ├── ProjectsLocationsCaPoolsCertificateAuthorities.php │ │ │ ├── ProjectsLocationsCaPoolsCertificateAuthoritiesCertificateRevocationLists.php │ │ │ ├── ProjectsLocationsCaPoolsCertificates.php │ │ │ ├── ProjectsLocationsCertificateTemplates.php │ │ │ ├── ProjectsLocationsManagedPkis.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── RevocationDetails.php │ │ ├── RevokeCertificateRequest.php │ │ ├── RevokedCertificate.php │ │ ├── RsaKeyType.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── Subject.php │ │ ├── SubjectAltNames.php │ │ ├── SubjectConfig.php │ │ ├── SubjectDescription.php │ │ ├── SubordinateConfig.php │ │ ├── SubordinateConfigChain.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── UndeleteCertificateAuthorityRequest.php │ │ ├── X509Extension.php │ │ └── X509Parameters.php │ │ ├── CertificateManager.php │ │ ├── CertificateManager │ │ ├── AuthorizationAttemptInfo.php │ │ ├── CancelOperationRequest.php │ │ ├── Certificate.php │ │ ├── CertificateAuthorityConfig.php │ │ ├── CertificateAuthorityServiceConfig.php │ │ ├── CertificateIssuanceConfig.php │ │ ├── CertificateMap.php │ │ ├── CertificateMapEntry.php │ │ ├── CertificatemanagerEmpty.php │ │ ├── DnsAuthorization.php │ │ ├── DnsResourceRecord.php │ │ ├── GclbTarget.php │ │ ├── IpConfig.php │ │ ├── ListCertificateIssuanceConfigsResponse.php │ │ ├── ListCertificateMapEntriesResponse.php │ │ ├── ListCertificateMapsResponse.php │ │ ├── ListCertificatesResponse.php │ │ ├── ListDnsAuthorizationsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── ManagedCertificate.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── ProvisioningIssue.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsCertificateIssuanceConfigs.php │ │ │ ├── ProjectsLocationsCertificateMaps.php │ │ │ ├── ProjectsLocationsCertificateMapsCertificateMapEntries.php │ │ │ ├── ProjectsLocationsCertificates.php │ │ │ ├── ProjectsLocationsDnsAuthorizations.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── ResourcesCount.php │ │ ├── SelfManagedCertificate.php │ │ └── Status.php │ │ ├── ChromeManagement.php │ │ ├── ChromeManagement │ │ ├── GoogleChromeManagementV1AndroidAppInfo.php │ │ ├── GoogleChromeManagementV1AndroidAppPermission.php │ │ ├── GoogleChromeManagementV1AppDetails.php │ │ ├── GoogleChromeManagementV1AudioStatusReport.php │ │ ├── GoogleChromeManagementV1BatteryInfo.php │ │ ├── GoogleChromeManagementV1BatterySampleReport.php │ │ ├── GoogleChromeManagementV1BatteryStatusReport.php │ │ ├── GoogleChromeManagementV1BootPerformanceReport.php │ │ ├── GoogleChromeManagementV1BrowserVersion.php │ │ ├── GoogleChromeManagementV1ChromeAppInfo.php │ │ ├── GoogleChromeManagementV1ChromeAppPermission.php │ │ ├── GoogleChromeManagementV1ChromeAppRequest.php │ │ ├── GoogleChromeManagementV1ChromeAppSiteAccess.php │ │ ├── GoogleChromeManagementV1CountChromeAppRequestsResponse.php │ │ ├── GoogleChromeManagementV1CountChromeBrowsersNeedingAttentionResponse.php │ │ ├── GoogleChromeManagementV1CountChromeDevicesReachingAutoExpirationDateResponse.php │ │ ├── GoogleChromeManagementV1CountChromeDevicesThatNeedAttentionResponse.php │ │ ├── GoogleChromeManagementV1CountChromeHardwareFleetDevicesResponse.php │ │ ├── GoogleChromeManagementV1CountChromeVersionsResponse.php │ │ ├── GoogleChromeManagementV1CountInstalledAppsResponse.php │ │ ├── GoogleChromeManagementV1CountPrintJobsByPrinterResponse.php │ │ ├── GoogleChromeManagementV1CountPrintJobsByUserResponse.php │ │ ├── GoogleChromeManagementV1CpuInfo.php │ │ ├── GoogleChromeManagementV1CpuStatusReport.php │ │ ├── GoogleChromeManagementV1CpuTemperatureInfo.php │ │ ├── GoogleChromeManagementV1Device.php │ │ ├── GoogleChromeManagementV1DeviceAueCountReport.php │ │ ├── GoogleChromeManagementV1DeviceHardwareCountReport.php │ │ ├── GoogleChromeManagementV1DiskInfo.php │ │ ├── GoogleChromeManagementV1DisplayDevice.php │ │ ├── GoogleChromeManagementV1DisplayInfo.php │ │ ├── GoogleChromeManagementV1FindInstalledAppDevicesResponse.php │ │ ├── GoogleChromeManagementV1GraphicsAdapterInfo.php │ │ ├── GoogleChromeManagementV1GraphicsInfo.php │ │ ├── GoogleChromeManagementV1GraphicsStatusReport.php │ │ ├── GoogleChromeManagementV1HttpsLatencyRoutineData.php │ │ ├── GoogleChromeManagementV1InstalledApp.php │ │ ├── GoogleChromeManagementV1ListTelemetryDevicesResponse.php │ │ ├── GoogleChromeManagementV1ListTelemetryEventsResponse.php │ │ ├── GoogleChromeManagementV1ListTelemetryUsersResponse.php │ │ ├── GoogleChromeManagementV1MemoryInfo.php │ │ ├── GoogleChromeManagementV1MemoryStatusReport.php │ │ ├── GoogleChromeManagementV1NetworkDevice.php │ │ ├── GoogleChromeManagementV1NetworkDiagnosticsReport.php │ │ ├── GoogleChromeManagementV1NetworkInfo.php │ │ ├── GoogleChromeManagementV1NetworkStatusReport.php │ │ ├── GoogleChromeManagementV1OsUpdateStatus.php │ │ ├── GoogleChromeManagementV1PeripheralsReport.php │ │ ├── GoogleChromeManagementV1PrinterReport.php │ │ ├── GoogleChromeManagementV1StorageInfo.php │ │ ├── GoogleChromeManagementV1StorageInfoDiskVolume.php │ │ ├── GoogleChromeManagementV1StorageStatusReport.php │ │ ├── GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent.php │ │ ├── GoogleChromeManagementV1TelemetryDevice.php │ │ ├── GoogleChromeManagementV1TelemetryDeviceInfo.php │ │ ├── GoogleChromeManagementV1TelemetryEvent.php │ │ ├── GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent.php │ │ ├── GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent.php │ │ ├── GoogleChromeManagementV1TelemetryUsbPeripheralsEvent.php │ │ ├── GoogleChromeManagementV1TelemetryUser.php │ │ ├── GoogleChromeManagementV1TelemetryUserDevice.php │ │ ├── GoogleChromeManagementV1TelemetryUserInfo.php │ │ ├── GoogleChromeManagementV1ThunderboltInfo.php │ │ ├── GoogleChromeManagementV1TotalMemoryEncryptionInfo.php │ │ ├── GoogleChromeManagementV1TouchScreenDevice.php │ │ ├── GoogleChromeManagementV1TouchScreenInfo.php │ │ ├── GoogleChromeManagementV1UsbPeripheralReport.php │ │ ├── GoogleChromeManagementV1UserPrintReport.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDate.php │ │ └── Resource │ │ │ ├── Customers.php │ │ │ ├── CustomersApps.php │ │ │ ├── CustomersAppsAndroid.php │ │ │ ├── CustomersAppsChrome.php │ │ │ ├── CustomersAppsWeb.php │ │ │ ├── CustomersReports.php │ │ │ ├── CustomersTelemetry.php │ │ │ ├── CustomersTelemetryDevices.php │ │ │ ├── CustomersTelemetryEvents.php │ │ │ └── CustomersTelemetryUsers.php │ │ ├── ChromePolicy.php │ │ ├── ChromePolicy │ │ ├── ChromeCrosDpanelAutosettingsProtoPolicyApiLifecycle.php │ │ ├── GoogleChromePolicyV1AdditionalTargetKeyName.php │ │ ├── GoogleChromePolicyV1BatchDeleteGroupPoliciesRequest.php │ │ ├── GoogleChromePolicyV1BatchInheritOrgUnitPoliciesRequest.php │ │ ├── GoogleChromePolicyV1BatchModifyGroupPoliciesRequest.php │ │ ├── GoogleChromePolicyV1BatchModifyOrgUnitPoliciesRequest.php │ │ ├── GoogleChromePolicyV1DefineCertificateRequest.php │ │ ├── GoogleChromePolicyV1DefineCertificateResponse.php │ │ ├── GoogleChromePolicyV1DefineNetworkRequest.php │ │ ├── GoogleChromePolicyV1DefineNetworkResponse.php │ │ ├── GoogleChromePolicyV1DeleteGroupPolicyRequest.php │ │ ├── GoogleChromePolicyV1InheritOrgUnitPolicyRequest.php │ │ ├── GoogleChromePolicyV1ListGroupPriorityOrderingRequest.php │ │ ├── GoogleChromePolicyV1ListGroupPriorityOrderingResponse.php │ │ ├── GoogleChromePolicyV1ListPolicySchemasResponse.php │ │ ├── GoogleChromePolicyV1ModifyGroupPolicyRequest.php │ │ ├── GoogleChromePolicyV1ModifyOrgUnitPolicyRequest.php │ │ ├── GoogleChromePolicyV1NetworkSetting.php │ │ ├── GoogleChromePolicyV1PolicyModificationFieldError.php │ │ ├── GoogleChromePolicyV1PolicySchema.php │ │ ├── GoogleChromePolicyV1PolicySchemaFieldDependencies.php │ │ ├── GoogleChromePolicyV1PolicySchemaFieldDescription.php │ │ ├── GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription.php │ │ ├── GoogleChromePolicyV1PolicySchemaNoticeDescription.php │ │ ├── GoogleChromePolicyV1PolicySchemaRequiredItems.php │ │ ├── GoogleChromePolicyV1PolicyTargetKey.php │ │ ├── GoogleChromePolicyV1PolicyValue.php │ │ ├── GoogleChromePolicyV1RemoveCertificateRequest.php │ │ ├── GoogleChromePolicyV1RemoveCertificateResponse.php │ │ ├── GoogleChromePolicyV1RemoveNetworkRequest.php │ │ ├── GoogleChromePolicyV1RemoveNetworkResponse.php │ │ ├── GoogleChromePolicyV1ResolveRequest.php │ │ ├── GoogleChromePolicyV1ResolveResponse.php │ │ ├── GoogleChromePolicyV1ResolvedPolicy.php │ │ ├── GoogleChromePolicyV1UpdateGroupPriorityOrderingRequest.php │ │ ├── GoogleChromePolicyV1UploadPolicyFileRequest.php │ │ ├── GoogleChromePolicyV1UploadPolicyFileResponse.php │ │ ├── GoogleChromePolicyVersionsV1AdditionalTargetKeyName.php │ │ ├── GoogleChromePolicyVersionsV1BatchDeleteGroupPoliciesRequest.php │ │ ├── GoogleChromePolicyVersionsV1BatchInheritOrgUnitPoliciesRequest.php │ │ ├── GoogleChromePolicyVersionsV1BatchModifyGroupPoliciesRequest.php │ │ ├── GoogleChromePolicyVersionsV1BatchModifyOrgUnitPoliciesRequest.php │ │ ├── GoogleChromePolicyVersionsV1CertificateReference.php │ │ ├── GoogleChromePolicyVersionsV1DefineCertificateRequest.php │ │ ├── GoogleChromePolicyVersionsV1DefineCertificateResponse.php │ │ ├── GoogleChromePolicyVersionsV1DefineNetworkRequest.php │ │ ├── GoogleChromePolicyVersionsV1DefineNetworkResponse.php │ │ ├── GoogleChromePolicyVersionsV1DeleteGroupPolicyRequest.php │ │ ├── GoogleChromePolicyVersionsV1FieldConstraints.php │ │ ├── GoogleChromePolicyVersionsV1InheritOrgUnitPolicyRequest.php │ │ ├── GoogleChromePolicyVersionsV1ListGroupPriorityOrderingRequest.php │ │ ├── GoogleChromePolicyVersionsV1ListGroupPriorityOrderingResponse.php │ │ ├── GoogleChromePolicyVersionsV1ListPolicySchemasResponse.php │ │ ├── GoogleChromePolicyVersionsV1ModifyGroupPolicyRequest.php │ │ ├── GoogleChromePolicyVersionsV1ModifyOrgUnitPolicyRequest.php │ │ ├── GoogleChromePolicyVersionsV1NetworkSetting.php │ │ ├── GoogleChromePolicyVersionsV1NumericRangeConstraint.php │ │ ├── GoogleChromePolicyVersionsV1PolicyModificationError.php │ │ ├── GoogleChromePolicyVersionsV1PolicyModificationErrorDetails.php │ │ ├── GoogleChromePolicyVersionsV1PolicyModificationFieldError.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchema.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchemaFieldDependencies.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchemaFieldDescription.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchemaFieldKnownValueDescription.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription.php │ │ ├── GoogleChromePolicyVersionsV1PolicySchemaRequiredItems.php │ │ ├── GoogleChromePolicyVersionsV1PolicyTargetKey.php │ │ ├── GoogleChromePolicyVersionsV1PolicyValue.php │ │ ├── GoogleChromePolicyVersionsV1RemoveCertificateErrorDetails.php │ │ ├── GoogleChromePolicyVersionsV1RemoveCertificateRequest.php │ │ ├── GoogleChromePolicyVersionsV1RemoveCertificateResponse.php │ │ ├── GoogleChromePolicyVersionsV1RemoveNetworkRequest.php │ │ ├── GoogleChromePolicyVersionsV1RemoveNetworkResponse.php │ │ ├── GoogleChromePolicyVersionsV1ResolveRequest.php │ │ ├── GoogleChromePolicyVersionsV1ResolveResponse.php │ │ ├── GoogleChromePolicyVersionsV1ResolvedPolicy.php │ │ ├── GoogleChromePolicyVersionsV1UpdateGroupPriorityOrderingRequest.php │ │ ├── GoogleChromePolicyVersionsV1UploadPolicyFileRequest.php │ │ ├── GoogleChromePolicyVersionsV1UploadPolicyFileResponse.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleTypeDate.php │ │ ├── Proto2DescriptorProto.php │ │ ├── Proto2EnumDescriptorProto.php │ │ ├── Proto2EnumValueDescriptorProto.php │ │ ├── Proto2FieldDescriptorProto.php │ │ ├── Proto2FileDescriptorProto.php │ │ ├── Proto2OneofDescriptorProto.php │ │ └── Resource │ │ │ ├── Customers.php │ │ │ ├── CustomersPolicies.php │ │ │ ├── CustomersPoliciesGroups.php │ │ │ ├── CustomersPoliciesNetworks.php │ │ │ ├── CustomersPoliciesOrgunits.php │ │ │ ├── CustomersPolicySchemas.php │ │ │ └── Media.php │ │ ├── ChromeUXReport.php │ │ ├── ChromeUXReport │ │ ├── Bin.php │ │ ├── CollectionPeriod.php │ │ ├── Date.php │ │ ├── HistoryKey.php │ │ ├── HistoryRecord.php │ │ ├── Key.php │ │ ├── Metric.php │ │ ├── MetricTimeseries.php │ │ ├── Percentiles.php │ │ ├── QueryHistoryRequest.php │ │ ├── QueryHistoryResponse.php │ │ ├── QueryRequest.php │ │ ├── QueryResponse.php │ │ ├── Record.php │ │ ├── Resource │ │ │ └── Records.php │ │ ├── TimeseriesBin.php │ │ ├── TimeseriesPercentiles.php │ │ └── UrlNormalization.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 │ │ ├── FeatureIdProto.php │ │ ├── GeocodingSummary.php │ │ ├── GeographicDivision.php │ │ ├── MessageSet.php │ │ ├── Office.php │ │ ├── Official.php │ │ ├── PollingLocation.php │ │ ├── Precinct.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 │ │ ├── GradeCategory.php │ │ ├── GradeHistory.php │ │ ├── GradebookSettings.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 │ │ ├── AnalyzeIamPolicyLongrunningMetadata.php │ │ ├── AnalyzeIamPolicyLongrunningRequest.php │ │ ├── AnalyzeIamPolicyLongrunningResponse.php │ │ ├── AnalyzeIamPolicyResponse.php │ │ ├── AnalyzeMoveResponse.php │ │ ├── AnalyzeOrgPoliciesResponse.php │ │ ├── AnalyzeOrgPolicyGovernedAssetsResponse.php │ │ ├── AnalyzeOrgPolicyGovernedContainersResponse.php │ │ ├── AnalyzerOrgPolicy.php │ │ ├── AnalyzerOrgPolicyConstraint.php │ │ ├── Asset.php │ │ ├── AttachedResource.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── BatchGetAssetsHistoryResponse.php │ │ ├── BatchGetEffectiveIamPoliciesResponse.php │ │ ├── BigQueryDestination.php │ │ ├── Binding.php │ │ ├── CloudassetEmpty.php │ │ ├── CloudassetResource.php │ │ ├── ConditionContext.php │ │ ├── ConditionEvaluation.php │ │ ├── CreateFeedRequest.php │ │ ├── Date.php │ │ ├── EffectiveIamPolicy.php │ │ ├── Explanation.php │ │ ├── ExportAssetsRequest.php │ │ ├── Expr.php │ │ ├── Feed.php │ │ ├── FeedOutputConfig.php │ │ ├── GcsDestination.php │ │ ├── GoogleCloudAssetV1Access.php │ │ ├── GoogleCloudAssetV1AccessControlList.php │ │ ├── GoogleCloudAssetV1AnalyzeOrgPolicyGovernedAssetsResponseGovernedAsset.php │ │ ├── GoogleCloudAssetV1AnalyzeOrgPolicyGovernedAssetsResponseGovernedIamPolicy.php │ │ ├── GoogleCloudAssetV1AnalyzeOrgPolicyGovernedAssetsResponseGovernedResource.php │ │ ├── GoogleCloudAssetV1BigQueryDestination.php │ │ ├── GoogleCloudAssetV1BooleanConstraint.php │ │ ├── GoogleCloudAssetV1Constraint.php │ │ ├── GoogleCloudAssetV1CustomConstraint.php │ │ ├── GoogleCloudAssetV1Edge.php │ │ ├── GoogleCloudAssetV1GcsDestination.php │ │ ├── GoogleCloudAssetV1GovernedContainer.php │ │ ├── GoogleCloudAssetV1Identity.php │ │ ├── GoogleCloudAssetV1IdentityList.php │ │ ├── GoogleCloudAssetV1ListConstraint.php │ │ ├── GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination.php │ │ ├── GoogleCloudAssetV1Resource.php │ │ ├── GoogleCloudAssetV1Rule.php │ │ ├── GoogleCloudAssetV1StringValues.php │ │ ├── GoogleCloudAssetV1p7beta1Asset.php │ │ ├── GoogleCloudAssetV1p7beta1RelatedAsset.php │ │ ├── GoogleCloudAssetV1p7beta1RelatedAssets.php │ │ ├── GoogleCloudAssetV1p7beta1RelationshipAttributes.php │ │ ├── GoogleCloudAssetV1p7beta1Resource.php │ │ ├── GoogleCloudOrgpolicyV1BooleanPolicy.php │ │ ├── GoogleCloudOrgpolicyV1ListPolicy.php │ │ ├── GoogleCloudOrgpolicyV1Policy.php │ │ ├── GoogleCloudOrgpolicyV1RestoreDefault.php │ │ ├── GoogleIdentityAccesscontextmanagerV1AccessLevel.php │ │ ├── GoogleIdentityAccesscontextmanagerV1AccessPolicy.php │ │ ├── GoogleIdentityAccesscontextmanagerV1ApiOperation.php │ │ ├── GoogleIdentityAccesscontextmanagerV1BasicLevel.php │ │ ├── GoogleIdentityAccesscontextmanagerV1Condition.php │ │ ├── GoogleIdentityAccesscontextmanagerV1CustomLevel.php │ │ ├── GoogleIdentityAccesscontextmanagerV1DevicePolicy.php │ │ ├── GoogleIdentityAccesscontextmanagerV1EgressFrom.php │ │ ├── GoogleIdentityAccesscontextmanagerV1EgressPolicy.php │ │ ├── GoogleIdentityAccesscontextmanagerV1EgressTo.php │ │ ├── GoogleIdentityAccesscontextmanagerV1IngressFrom.php │ │ ├── GoogleIdentityAccesscontextmanagerV1IngressPolicy.php │ │ ├── GoogleIdentityAccesscontextmanagerV1IngressSource.php │ │ ├── GoogleIdentityAccesscontextmanagerV1IngressTo.php │ │ ├── GoogleIdentityAccesscontextmanagerV1MethodSelector.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 │ │ ├── ListAssetsResponse.php │ │ ├── ListFeedsResponse.php │ │ ├── ListSavedQueriesResponse.php │ │ ├── MoveAnalysis.php │ │ ├── MoveAnalysisResult.php │ │ ├── MoveImpact.php │ │ ├── Operation.php │ │ ├── Options.php │ │ ├── OrgPolicyResult.php │ │ ├── OsInfo.php │ │ ├── OutputConfig.php │ │ ├── PartitionSpec.php │ │ ├── Permissions.php │ │ ├── Policy.php │ │ ├── PolicyInfo.php │ │ ├── PubsubDestination.php │ │ ├── QueryAssetsOutputConfig.php │ │ ├── QueryAssetsRequest.php │ │ ├── QueryAssetsResponse.php │ │ ├── QueryContent.php │ │ ├── QueryResult.php │ │ ├── RelatedAsset.php │ │ ├── RelatedAssets.php │ │ ├── RelatedResource.php │ │ ├── RelatedResources.php │ │ ├── RelationshipAttributes.php │ │ ├── Resource │ │ │ ├── Assets.php │ │ │ ├── EffectiveIamPolicies.php │ │ │ ├── Feeds.php │ │ │ ├── Operations.php │ │ │ ├── SavedQueries.php │ │ │ └── V1.php │ │ ├── ResourceSearchResult.php │ │ ├── ResourceSelector.php │ │ ├── SavedQuery.php │ │ ├── SearchAllIamPoliciesResponse.php │ │ ├── SearchAllResourcesResponse.php │ │ ├── SoftwarePackage.php │ │ ├── Status.php │ │ ├── TableFieldSchema.php │ │ ├── TableSchema.php │ │ ├── TemporalAsset.php │ │ ├── TimeWindow.php │ │ ├── UpdateFeedRequest.php │ │ ├── VersionedPackage.php │ │ ├── VersionedResource.php │ │ ├── WindowsApplication.php │ │ ├── WindowsQuickFixEngineeringPackage.php │ │ ├── WindowsUpdateCategory.php │ │ ├── WindowsUpdatePackage.php │ │ └── ZypperPatch.php │ │ ├── CloudBillingBudget.php │ │ ├── CloudBillingBudget │ │ ├── GoogleCloudBillingBudgetsV1Budget.php │ │ ├── GoogleCloudBillingBudgetsV1BudgetAmount.php │ │ ├── GoogleCloudBillingBudgetsV1CustomPeriod.php │ │ ├── GoogleCloudBillingBudgetsV1Filter.php │ │ ├── GoogleCloudBillingBudgetsV1LastPeriodAmount.php │ │ ├── GoogleCloudBillingBudgetsV1ListBudgetsResponse.php │ │ ├── GoogleCloudBillingBudgetsV1NotificationsRule.php │ │ ├── GoogleCloudBillingBudgetsV1ThresholdRule.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleTypeDate.php │ │ ├── GoogleTypeMoney.php │ │ └── Resource │ │ │ ├── BillingAccounts.php │ │ │ └── BillingAccountsBudgets.php │ │ ├── CloudBuild.php │ │ ├── CloudBuild │ │ ├── AddBitbucketServerConnectedRepositoryRequest.php │ │ ├── AddBitbucketServerConnectedRepositoryResponse.php │ │ ├── ApprovalConfig.php │ │ ├── ApprovalResult.php │ │ ├── ApproveBuildRequest.php │ │ ├── ArtifactObjects.php │ │ ├── ArtifactResult.php │ │ ├── Artifacts.php │ │ ├── BatchCreateBitbucketServerConnectedRepositoriesRequest.php │ │ ├── BatchCreateBitbucketServerConnectedRepositoriesResponse.php │ │ ├── BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata.php │ │ ├── BatchCreateGitLabConnectedRepositoriesRequest.php │ │ ├── BatchCreateGitLabConnectedRepositoriesResponse.php │ │ ├── BatchCreateGitLabConnectedRepositoriesResponseMetadata.php │ │ ├── BitbucketServerConfig.php │ │ ├── BitbucketServerConnectedRepository.php │ │ ├── BitbucketServerRepository.php │ │ ├── BitbucketServerRepositoryId.php │ │ ├── BitbucketServerSecrets.php │ │ ├── BitbucketServerTriggerConfig.php │ │ ├── Build.php │ │ ├── BuildApproval.php │ │ ├── BuildOperationMetadata.php │ │ ├── BuildOptions.php │ │ ├── BuildStep.php │ │ ├── BuildTrigger.php │ │ ├── BuiltImage.php │ │ ├── CancelBuildRequest.php │ │ ├── CancelOperationRequest.php │ │ ├── CloudbuildEmpty.php │ │ ├── CreateBitbucketServerConfigOperationMetadata.php │ │ ├── CreateBitbucketServerConnectedRepositoryRequest.php │ │ ├── CreateGitHubEnterpriseConfigOperationMetadata.php │ │ ├── CreateGitLabConfigOperationMetadata.php │ │ ├── CreateGitLabConnectedRepositoryRequest.php │ │ ├── CreateWorkerPoolOperationMetadata.php │ │ ├── DeleteBitbucketServerConfigOperationMetadata.php │ │ ├── DeleteGitHubEnterpriseConfigOperationMetadata.php │ │ ├── DeleteGitLabConfigOperationMetadata.php │ │ ├── DeleteWorkerPoolOperationMetadata.php │ │ ├── FailureInfo.php │ │ ├── FileHashes.php │ │ ├── GitFileSource.php │ │ ├── GitHubEnterpriseConfig.php │ │ ├── GitHubEnterpriseSecrets.php │ │ ├── GitHubEventsConfig.php │ │ ├── GitLabConfig.php │ │ ├── GitLabConnectedRepository.php │ │ ├── GitLabEnterpriseConfig.php │ │ ├── GitLabEventsConfig.php │ │ ├── GitLabRepository.php │ │ ├── GitLabRepositoryId.php │ │ ├── GitLabSecrets.php │ │ ├── GitRepoSource.php │ │ ├── GoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig.php │ │ ├── GoogleDevtoolsCloudbuildV2OperationMetadata.php │ │ ├── HTTPDelivery.php │ │ ├── Hash.php │ │ ├── HttpBody.php │ │ ├── HybridPoolConfig.php │ │ ├── HybridWorkerConfig.php │ │ ├── InlineSecret.php │ │ ├── ListBitbucketServerConfigsResponse.php │ │ ├── ListBitbucketServerRepositoriesResponse.php │ │ ├── ListBuildTriggersResponse.php │ │ ├── ListBuildsResponse.php │ │ ├── ListGitLabConfigsResponse.php │ │ ├── ListGitLabRepositoriesResponse.php │ │ ├── ListGithubEnterpriseConfigsResponse.php │ │ ├── ListWorkerPoolsResponse.php │ │ ├── MavenArtifact.php │ │ ├── NetworkConfig.php │ │ ├── Notification.php │ │ ├── NotifierConfig.php │ │ ├── NotifierMetadata.php │ │ ├── NotifierSecret.php │ │ ├── NotifierSecretRef.php │ │ ├── NotifierSpec.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── PoolOption.php │ │ ├── PrivatePoolV1Config.php │ │ ├── ProcessAppManifestCallbackOperationMetadata.php │ │ ├── PubsubConfig.php │ │ ├── PullRequestFilter.php │ │ ├── PushFilter.php │ │ ├── PythonPackage.php │ │ ├── ReceiveTriggerWebhookResponse.php │ │ ├── RemoveBitbucketServerConnectedRepositoryRequest.php │ │ ├── RemoveGitLabConnectedRepositoryRequest.php │ │ ├── RepoSource.php │ │ ├── RepositoryEventConfig.php │ │ ├── Resource │ │ │ ├── GithubDotComWebhook.php │ │ │ ├── Locations.php │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsBuilds.php │ │ │ ├── ProjectsGithubEnterpriseConfigs.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsBitbucketServerConfigs.php │ │ │ ├── ProjectsLocationsBitbucketServerConfigsConnectedRepositories.php │ │ │ ├── ProjectsLocationsBitbucketServerConfigsRepos.php │ │ │ ├── ProjectsLocationsBuilds.php │ │ │ ├── ProjectsLocationsGitLabConfigs.php │ │ │ ├── ProjectsLocationsGitLabConfigsConnectedRepositories.php │ │ │ ├── ProjectsLocationsGitLabConfigsRepos.php │ │ │ ├── ProjectsLocationsGithubEnterpriseConfigs.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsTriggers.php │ │ │ ├── ProjectsLocationsWorkerPools.php │ │ │ ├── ProjectsTriggers.php │ │ │ └── V1.php │ │ ├── Results.php │ │ ├── RetryBuildRequest.php │ │ ├── RunBuildTriggerRequest.php │ │ ├── RunWorkflowCustomOperationMetadata.php │ │ ├── SMTPDelivery.php │ │ ├── Secret.php │ │ ├── SecretManagerSecret.php │ │ ├── Secrets.php │ │ ├── ServiceDirectoryConfig.php │ │ ├── SlackDelivery.php │ │ ├── Source.php │ │ ├── SourceProvenance.php │ │ ├── Status.php │ │ ├── StorageSource.php │ │ ├── StorageSourceManifest.php │ │ ├── TimeSpan.php │ │ ├── UpdateBitbucketServerConfigOperationMetadata.php │ │ ├── UpdateGitHubEnterpriseConfigOperationMetadata.php │ │ ├── UpdateGitLabConfigOperationMetadata.php │ │ ├── UpdateWorkerPoolOperationMetadata.php │ │ ├── UploadedMavenArtifact.php │ │ ├── UploadedPythonPackage.php │ │ ├── Volume.php │ │ ├── Warning.php │ │ ├── WebhookConfig.php │ │ ├── WorkerConfig.php │ │ └── WorkerPool.php │ │ ├── CloudComposer.php │ │ ├── CloudComposer │ │ ├── AllowedIpRange.php │ │ ├── CheckUpgradeResponse.php │ │ ├── CidrBlock.php │ │ ├── ComposerEmpty.php │ │ ├── DatabaseConfig.php │ │ ├── Date.php │ │ ├── EncryptionConfig.php │ │ ├── Environment.php │ │ ├── EnvironmentConfig.php │ │ ├── IPAllocationPolicy.php │ │ ├── ImageVersion.php │ │ ├── ListEnvironmentsResponse.php │ │ ├── ListImageVersionsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── LoadSnapshotRequest.php │ │ ├── LoadSnapshotResponse.php │ │ ├── MaintenanceWindow.php │ │ ├── MasterAuthorizedNetworksConfig.php │ │ ├── NetworkingConfig.php │ │ ├── NodeConfig.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── PrivateClusterConfig.php │ │ ├── PrivateEnvironmentConfig.php │ │ ├── RecoveryConfig.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEnvironments.php │ │ │ ├── ProjectsLocationsImageVersions.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── SaveSnapshotRequest.php │ │ ├── SaveSnapshotResponse.php │ │ ├── ScheduledSnapshotsConfig.php │ │ ├── SchedulerResource.php │ │ ├── SoftwareConfig.php │ │ ├── Status.php │ │ ├── WebServerConfig.php │ │ ├── WebServerNetworkAccessControl.php │ │ ├── WebServerResource.php │ │ ├── WorkerResource.php │ │ └── WorkloadsConfig.php │ │ ├── CloudDataplex.php │ │ ├── CloudDataplex │ │ ├── DataplexEmpty.php │ │ ├── GoogleCloudDataplexV1Action.php │ │ ├── GoogleCloudDataplexV1ActionFailedSecurityPolicyApply.php │ │ ├── GoogleCloudDataplexV1ActionIncompatibleDataSchema.php │ │ ├── GoogleCloudDataplexV1ActionInvalidDataFormat.php │ │ ├── GoogleCloudDataplexV1ActionInvalidDataOrganization.php │ │ ├── GoogleCloudDataplexV1ActionInvalidDataPartition.php │ │ ├── GoogleCloudDataplexV1ActionMissingData.php │ │ ├── GoogleCloudDataplexV1ActionMissingResource.php │ │ ├── GoogleCloudDataplexV1ActionUnauthorizedResource.php │ │ ├── GoogleCloudDataplexV1Asset.php │ │ ├── GoogleCloudDataplexV1AssetDiscoverySpec.php │ │ ├── GoogleCloudDataplexV1AssetDiscoverySpecCsvOptions.php │ │ ├── GoogleCloudDataplexV1AssetDiscoverySpecJsonOptions.php │ │ ├── GoogleCloudDataplexV1AssetDiscoveryStatus.php │ │ ├── GoogleCloudDataplexV1AssetDiscoveryStatusStats.php │ │ ├── GoogleCloudDataplexV1AssetResourceSpec.php │ │ ├── GoogleCloudDataplexV1AssetResourceStatus.php │ │ ├── GoogleCloudDataplexV1AssetSecurityStatus.php │ │ ├── GoogleCloudDataplexV1AssetStatus.php │ │ ├── GoogleCloudDataplexV1CancelJobRequest.php │ │ ├── GoogleCloudDataplexV1Content.php │ │ ├── GoogleCloudDataplexV1ContentNotebook.php │ │ ├── GoogleCloudDataplexV1ContentSqlScript.php │ │ ├── GoogleCloudDataplexV1DataAccessSpec.php │ │ ├── GoogleCloudDataplexV1DataAttribute.php │ │ ├── GoogleCloudDataplexV1DataAttributeBinding.php │ │ ├── GoogleCloudDataplexV1DataAttributeBindingPath.php │ │ ├── GoogleCloudDataplexV1DataProfileResult.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfile.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileField.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo.php │ │ ├── GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue.php │ │ ├── GoogleCloudDataplexV1DataProfileSpec.php │ │ ├── GoogleCloudDataplexV1DataQualityDimensionResult.php │ │ ├── GoogleCloudDataplexV1DataQualityResult.php │ │ ├── GoogleCloudDataplexV1DataQualityRule.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleNonNullExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleRangeExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleRegexExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleResult.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleSetExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualityRuleUniquenessExpectation.php │ │ ├── GoogleCloudDataplexV1DataQualitySpec.php │ │ ├── GoogleCloudDataplexV1DataScan.php │ │ ├── GoogleCloudDataplexV1DataScanEvent.php │ │ ├── GoogleCloudDataplexV1DataScanEventDataProfileResult.php │ │ ├── GoogleCloudDataplexV1DataScanEventDataQualityResult.php │ │ ├── GoogleCloudDataplexV1DataScanExecutionSpec.php │ │ ├── GoogleCloudDataplexV1DataScanExecutionStatus.php │ │ ├── GoogleCloudDataplexV1DataScanJob.php │ │ ├── GoogleCloudDataplexV1DataSource.php │ │ ├── GoogleCloudDataplexV1DataTaxonomy.php │ │ ├── GoogleCloudDataplexV1DiscoveryEvent.php │ │ ├── GoogleCloudDataplexV1DiscoveryEventActionDetails.php │ │ ├── GoogleCloudDataplexV1DiscoveryEventConfigDetails.php │ │ ├── GoogleCloudDataplexV1DiscoveryEventEntityDetails.php │ │ ├── GoogleCloudDataplexV1DiscoveryEventPartitionDetails.php │ │ ├── GoogleCloudDataplexV1Entity.php │ │ ├── GoogleCloudDataplexV1EntityCompatibilityStatus.php │ │ ├── GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility.php │ │ ├── GoogleCloudDataplexV1Environment.php │ │ ├── GoogleCloudDataplexV1EnvironmentEndpoints.php │ │ ├── GoogleCloudDataplexV1EnvironmentInfrastructureSpec.php │ │ ├── GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources.php │ │ ├── GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime.php │ │ ├── GoogleCloudDataplexV1EnvironmentSessionSpec.php │ │ ├── GoogleCloudDataplexV1EnvironmentSessionStatus.php │ │ ├── GoogleCloudDataplexV1Job.php │ │ ├── GoogleCloudDataplexV1JobEvent.php │ │ ├── GoogleCloudDataplexV1Lake.php │ │ ├── GoogleCloudDataplexV1LakeMetastore.php │ │ ├── GoogleCloudDataplexV1LakeMetastoreStatus.php │ │ ├── GoogleCloudDataplexV1ListActionsResponse.php │ │ ├── GoogleCloudDataplexV1ListAssetsResponse.php │ │ ├── GoogleCloudDataplexV1ListContentResponse.php │ │ ├── GoogleCloudDataplexV1ListDataAttributeBindingsResponse.php │ │ ├── GoogleCloudDataplexV1ListDataAttributesResponse.php │ │ ├── GoogleCloudDataplexV1ListDataScanJobsResponse.php │ │ ├── GoogleCloudDataplexV1ListDataScansResponse.php │ │ ├── GoogleCloudDataplexV1ListDataTaxonomiesResponse.php │ │ ├── GoogleCloudDataplexV1ListEntitiesResponse.php │ │ ├── GoogleCloudDataplexV1ListEnvironmentsResponse.php │ │ ├── GoogleCloudDataplexV1ListJobsResponse.php │ │ ├── GoogleCloudDataplexV1ListLakesResponse.php │ │ ├── GoogleCloudDataplexV1ListPartitionsResponse.php │ │ ├── GoogleCloudDataplexV1ListSessionsResponse.php │ │ ├── GoogleCloudDataplexV1ListTasksResponse.php │ │ ├── GoogleCloudDataplexV1ListZonesResponse.php │ │ ├── GoogleCloudDataplexV1OperationMetadata.php │ │ ├── GoogleCloudDataplexV1Partition.php │ │ ├── GoogleCloudDataplexV1ResourceAccessSpec.php │ │ ├── GoogleCloudDataplexV1RunDataScanRequest.php │ │ ├── GoogleCloudDataplexV1RunDataScanResponse.php │ │ ├── GoogleCloudDataplexV1RunTaskRequest.php │ │ ├── GoogleCloudDataplexV1RunTaskResponse.php │ │ ├── GoogleCloudDataplexV1ScannedData.php │ │ ├── GoogleCloudDataplexV1ScannedDataIncrementalField.php │ │ ├── GoogleCloudDataplexV1Schema.php │ │ ├── GoogleCloudDataplexV1SchemaPartitionField.php │ │ ├── GoogleCloudDataplexV1SchemaSchemaField.php │ │ ├── GoogleCloudDataplexV1Session.php │ │ ├── GoogleCloudDataplexV1SessionEvent.php │ │ ├── GoogleCloudDataplexV1SessionEventQueryDetail.php │ │ ├── GoogleCloudDataplexV1StorageAccess.php │ │ ├── GoogleCloudDataplexV1StorageFormat.php │ │ ├── GoogleCloudDataplexV1StorageFormatCsvOptions.php │ │ ├── GoogleCloudDataplexV1StorageFormatIcebergOptions.php │ │ ├── GoogleCloudDataplexV1StorageFormatJsonOptions.php │ │ ├── GoogleCloudDataplexV1Task.php │ │ ├── GoogleCloudDataplexV1TaskExecutionSpec.php │ │ ├── GoogleCloudDataplexV1TaskExecutionStatus.php │ │ ├── GoogleCloudDataplexV1TaskInfrastructureSpec.php │ │ ├── GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.php │ │ ├── GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime.php │ │ ├── GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork.php │ │ ├── GoogleCloudDataplexV1TaskNotebookTaskConfig.php │ │ ├── GoogleCloudDataplexV1TaskSparkTaskConfig.php │ │ ├── GoogleCloudDataplexV1TaskTriggerSpec.php │ │ ├── GoogleCloudDataplexV1Trigger.php │ │ ├── GoogleCloudDataplexV1TriggerOnDemand.php │ │ ├── GoogleCloudDataplexV1TriggerSchedule.php │ │ ├── GoogleCloudDataplexV1Zone.php │ │ ├── GoogleCloudDataplexV1ZoneDiscoverySpec.php │ │ ├── GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions.php │ │ ├── GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions.php │ │ ├── GoogleCloudDataplexV1ZoneResourceSpec.php │ │ ├── GoogleCloudLocationListLocationsResponse.php │ │ ├── GoogleCloudLocationLocation.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeExpr.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDataAttributeBindings.php │ │ │ ├── ProjectsLocationsDataScans.php │ │ │ ├── ProjectsLocationsDataScansJobs.php │ │ │ ├── ProjectsLocationsDataTaxonomies.php │ │ │ ├── ProjectsLocationsDataTaxonomiesAttributes.php │ │ │ ├── ProjectsLocationsLakes.php │ │ │ ├── ProjectsLocationsLakesActions.php │ │ │ ├── ProjectsLocationsLakesContent.php │ │ │ ├── ProjectsLocationsLakesContentitems.php │ │ │ ├── ProjectsLocationsLakesEnvironments.php │ │ │ ├── ProjectsLocationsLakesEnvironmentsSessions.php │ │ │ ├── ProjectsLocationsLakesTasks.php │ │ │ ├── ProjectsLocationsLakesTasksJobs.php │ │ │ ├── ProjectsLocationsLakesZones.php │ │ │ ├── ProjectsLocationsLakesZonesActions.php │ │ │ ├── ProjectsLocationsLakesZonesAssets.php │ │ │ ├── ProjectsLocationsLakesZonesAssetsActions.php │ │ │ ├── ProjectsLocationsLakesZonesEntities.php │ │ │ ├── ProjectsLocationsLakesZonesEntitiesPartitions.php │ │ │ └── ProjectsLocationsOperations.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 │ │ ├── CloudDeploy.php │ │ ├── CloudDeploy │ │ ├── AbandonReleaseRequest.php │ │ ├── AbandonReleaseResponse.php │ │ ├── AnthosCluster.php │ │ ├── ApproveRolloutRequest.php │ │ ├── ApproveRolloutResponse.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── BuildArtifact.php │ │ ├── CancelOperationRequest.php │ │ ├── CloudRunLocation.php │ │ ├── CloudRunMetadata.php │ │ ├── ClouddeployEmpty.php │ │ ├── Config.php │ │ ├── Date.php │ │ ├── DefaultPool.php │ │ ├── DeliveryPipeline.php │ │ ├── DeliveryPipelineNotificationEvent.php │ │ ├── DeployJob.php │ │ ├── DeployJobRun.php │ │ ├── DeployJobRunMetadata.php │ │ ├── DeploymentJobs.php │ │ ├── ExecutionConfig.php │ │ ├── Expr.php │ │ ├── GkeCluster.php │ │ ├── Job.php │ │ ├── JobRun.php │ │ ├── JobRunNotificationEvent.php │ │ ├── ListDeliveryPipelinesResponse.php │ │ ├── ListJobRunsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListReleasesResponse.php │ │ ├── ListRolloutsResponse.php │ │ ├── ListTargetsResponse.php │ │ ├── Location.php │ │ ├── Metadata.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Phase.php │ │ ├── PipelineCondition.php │ │ ├── PipelineReadyCondition.php │ │ ├── Policy.php │ │ ├── PrivatePool.php │ │ ├── Release.php │ │ ├── ReleaseCondition.php │ │ ├── ReleaseNotificationEvent.php │ │ ├── ReleaseReadyCondition.php │ │ ├── ReleaseRenderEvent.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDeliveryPipelines.php │ │ │ ├── ProjectsLocationsDeliveryPipelinesReleases.php │ │ │ ├── ProjectsLocationsDeliveryPipelinesReleasesRollouts.php │ │ │ ├── ProjectsLocationsDeliveryPipelinesReleasesRolloutsJobRuns.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsTargets.php │ │ ├── RetryJobRequest.php │ │ ├── RetryJobResponse.php │ │ ├── Rollout.php │ │ ├── RolloutNotificationEvent.php │ │ ├── SerialPipeline.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SkaffoldSupportedCondition.php │ │ ├── SkaffoldVersion.php │ │ ├── Stage.php │ │ ├── Standard.php │ │ ├── Status.php │ │ ├── Strategy.php │ │ ├── Target.php │ │ ├── TargetArtifact.php │ │ ├── TargetNotificationEvent.php │ │ ├── TargetRender.php │ │ ├── TargetsPresentCondition.php │ │ ├── TargetsTypeCondition.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── VerifyJob.php │ │ └── VerifyJobRun.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 │ │ ├── Domain.php │ │ ├── DsRecord.php │ │ ├── ExportRegistrationRequest.php │ │ ├── Expr.php │ │ ├── GlueRecord.php │ │ ├── GoogleDomainsDns.php │ │ ├── ImportDomainRequest.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 │ │ ├── RetrieveImportableDomainsResponse.php │ │ ├── RetrieveRegisterParametersResponse.php │ │ ├── RetrieveTransferParametersResponse.php │ │ ├── SearchDomainsResponse.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TransferDomainRequest.php │ │ └── TransferParameters.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 │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NotificationParameter.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ ├── Instance.php │ │ ├── ListBackupsResponse.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListSnapshotsResponse.php │ │ ├── Location.php │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceWindow.php │ │ ├── NetworkConfig.php │ │ ├── NfsExportOptions.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsBackups.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsInstancesSnapshots.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── RestoreInstanceRequest.php │ │ ├── Schedule.php │ │ ├── Snapshot.php │ │ ├── Status.php │ │ ├── TimeOfDay.php │ │ ├── UpdatePolicy.php │ │ └── WeeklyCycle.php │ │ ├── CloudFunctions.php │ │ ├── CloudFunctions │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── BuildConfig.php │ │ ├── CallFunctionRequest.php │ │ ├── CallFunctionResponse.php │ │ ├── CloudFunction.php │ │ ├── CloudfunctionsFunction.php │ │ ├── EventFilter.php │ │ ├── EventTrigger.php │ │ ├── Expr.php │ │ ├── FailurePolicy.php │ │ ├── GenerateDownloadUrlRequest.php │ │ ├── GenerateDownloadUrlResponse.php │ │ ├── GenerateUploadUrlRequest.php │ │ ├── GenerateUploadUrlResponse.php │ │ ├── GoogleCloudFunctionsV2OperationMetadata.php │ │ ├── GoogleCloudFunctionsV2Stage.php │ │ ├── GoogleCloudFunctionsV2StateMessage.php │ │ ├── GoogleCloudFunctionsV2alphaOperationMetadata.php │ │ ├── GoogleCloudFunctionsV2alphaStage.php │ │ ├── GoogleCloudFunctionsV2alphaStateMessage.php │ │ ├── GoogleCloudFunctionsV2betaOperationMetadata.php │ │ ├── GoogleCloudFunctionsV2betaStage.php │ │ ├── GoogleCloudFunctionsV2betaStateMessage.php │ │ ├── HttpsTrigger.php │ │ ├── ListFunctionsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListRuntimesResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadataV1.php │ │ ├── Policy.php │ │ ├── RepoSource.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsFunctions.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsRuntimes.php │ │ ├── Retry.php │ │ ├── Runtime.php │ │ ├── SecretEnvVar.php │ │ ├── SecretVersion.php │ │ ├── SecretVolume.php │ │ ├── ServiceConfig.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Source.php │ │ ├── SourceProvenance.php │ │ ├── SourceRepository.php │ │ ├── Status.php │ │ ├── StorageSource.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.php │ │ ├── CloudHealthcare.php │ │ ├── CloudHealthcare │ │ ├── ActivateConsentRequest.php │ │ ├── AnalyzeEntitiesRequest.php │ │ ├── AnalyzeEntitiesResponse.php │ │ ├── ArchiveUserDataMappingRequest.php │ │ ├── ArchiveUserDataMappingResponse.php │ │ ├── Attribute.php │ │ ├── AttributeDefinition.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CharacterMaskConfig.php │ │ ├── CheckDataAccessRequest.php │ │ ├── CheckDataAccessResponse.php │ │ ├── Consent.php │ │ ├── ConsentArtifact.php │ │ ├── ConsentEvaluation.php │ │ ├── ConsentList.php │ │ ├── ConsentStore.php │ │ ├── CreateMessageRequest.php │ │ ├── CryptoHashConfig.php │ │ ├── Dataset.php │ │ ├── DateShiftConfig.php │ │ ├── DeidentifiedStoreDestination.php │ │ ├── DeidentifyConfig.php │ │ ├── DeidentifyDatasetRequest.php │ │ ├── DeidentifyDicomStoreRequest.php │ │ ├── DeidentifyFhirStoreRequest.php │ │ ├── DeidentifySummary.php │ │ ├── DicomConfig.php │ │ ├── DicomFilterConfig.php │ │ ├── DicomStore.php │ │ ├── Entity.php │ │ ├── EntityMention.php │ │ ├── EntityMentionRelationship.php │ │ ├── EvaluateUserConsentsRequest.php │ │ ├── EvaluateUserConsentsResponse.php │ │ ├── ExportDicomDataRequest.php │ │ ├── ExportDicomDataResponse.php │ │ ├── ExportMessagesRequest.php │ │ ├── ExportMessagesResponse.php │ │ ├── ExportResourcesRequest.php │ │ ├── ExportResourcesResponse.php │ │ ├── Expr.php │ │ ├── Feature.php │ │ ├── FhirConfig.php │ │ ├── FhirFilter.php │ │ ├── FhirStore.php │ │ ├── Field.php │ │ ├── FieldMetadata.php │ │ ├── GcsDestination.php │ │ ├── GcsSource.php │ │ ├── GoogleCloudHealthcareV1ConsentGcsDestination.php │ │ ├── GoogleCloudHealthcareV1ConsentPolicy.php │ │ ├── GoogleCloudHealthcareV1DeidentifyDeidentifyDicomStoreSummary.php │ │ ├── GoogleCloudHealthcareV1DeidentifyDeidentifyFhirStoreSummary.php │ │ ├── GoogleCloudHealthcareV1DicomBigQueryDestination.php │ │ ├── GoogleCloudHealthcareV1DicomGcsDestination.php │ │ ├── GoogleCloudHealthcareV1DicomGcsSource.php │ │ ├── GoogleCloudHealthcareV1FhirBigQueryDestination.php │ │ ├── GoogleCloudHealthcareV1FhirGcsDestination.php │ │ ├── GoogleCloudHealthcareV1FhirGcsSource.php │ │ ├── GroupOrSegment.php │ │ ├── HealthcareEmpty.php │ │ ├── Hl7SchemaConfig.php │ │ ├── Hl7TypesConfig.php │ │ ├── Hl7V2NotificationConfig.php │ │ ├── Hl7V2Store.php │ │ ├── HttpBody.php │ │ ├── Image.php │ │ ├── ImageConfig.php │ │ ├── ImportDicomDataRequest.php │ │ ├── ImportDicomDataResponse.php │ │ ├── ImportMessagesRequest.php │ │ ├── ImportMessagesResponse.php │ │ ├── ImportResourcesRequest.php │ │ ├── ImportResourcesResponse.php │ │ ├── InfoTypeTransformation.php │ │ ├── IngestMessageRequest.php │ │ ├── IngestMessageResponse.php │ │ ├── KmsWrappedCryptoKey.php │ │ ├── LinkedEntity.php │ │ ├── ListAttributeDefinitionsResponse.php │ │ ├── ListConsentArtifactsResponse.php │ │ ├── ListConsentRevisionsResponse.php │ │ ├── ListConsentStoresResponse.php │ │ ├── ListConsentsResponse.php │ │ ├── ListDatasetsResponse.php │ │ ├── ListDicomStoresResponse.php │ │ ├── ListFhirStoresResponse.php │ │ ├── ListHl7V2StoresResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMessagesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListUserDataMappingsResponse.php │ │ ├── Location.php │ │ ├── Message.php │ │ ├── NotificationConfig.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── ParsedData.php │ │ ├── ParserConfig.php │ │ ├── PatientId.php │ │ ├── Policy.php │ │ ├── ProgressCounter.php │ │ ├── QueryAccessibleDataRequest.php │ │ ├── QueryAccessibleDataResponse.php │ │ ├── RedactConfig.php │ │ ├── RejectConsentRequest.php │ │ ├── ReplaceWithInfoTypeConfig.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDatasets.php │ │ │ ├── ProjectsLocationsDatasetsConsentStores.php │ │ │ ├── ProjectsLocationsDatasetsConsentStoresAttributeDefinitions.php │ │ │ ├── ProjectsLocationsDatasetsConsentStoresConsentArtifacts.php │ │ │ ├── ProjectsLocationsDatasetsConsentStoresConsents.php │ │ │ ├── ProjectsLocationsDatasetsConsentStoresUserDataMappings.php │ │ │ ├── ProjectsLocationsDatasetsDicomStores.php │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudies.php │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeries.php │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstances.php │ │ │ ├── ProjectsLocationsDatasetsDicomStoresStudiesSeriesInstancesFrames.php │ │ │ ├── ProjectsLocationsDatasetsFhirStores.php │ │ │ ├── ProjectsLocationsDatasetsFhirStoresFhir.php │ │ │ ├── ProjectsLocationsDatasetsHl7V2Stores.php │ │ │ ├── ProjectsLocationsDatasetsHl7V2StoresMessages.php │ │ │ ├── ProjectsLocationsDatasetsOperations.php │ │ │ ├── ProjectsLocationsServices.php │ │ │ └── ProjectsLocationsServicesNlp.php │ │ ├── Resources.php │ │ ├── Result.php │ │ ├── RevokeConsentRequest.php │ │ ├── SchemaConfig.php │ │ ├── SchemaGroup.php │ │ ├── SchemaPackage.php │ │ ├── SchemaSegment.php │ │ ├── SchematizedData.php │ │ ├── SearchResourcesRequest.php │ │ ├── Segment.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Signature.php │ │ ├── Status.php │ │ ├── StreamConfig.php │ │ ├── TagFilterList.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TextConfig.php │ │ ├── TextSpan.php │ │ ├── TimePartitioning.php │ │ ├── Type.php │ │ ├── UserDataMapping.php │ │ ├── ValidationConfig.php │ │ └── VersionSource.php │ │ ├── CloudIAP.php │ │ ├── CloudIAP │ │ ├── AccessDeniedPageSettings.php │ │ ├── AccessSettings.php │ │ ├── AllowedDomainsSettings.php │ │ ├── ApplicationSettings.php │ │ ├── AttributePropagationSettings.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 │ │ ├── ListTunnelDestGroupsResponse.php │ │ ├── OAuthSettings.php │ │ ├── Policy.php │ │ ├── PolicyDelegationSettings.php │ │ ├── PolicyName.php │ │ ├── ReauthSettings.php │ │ ├── ResetIdentityAwareProxyClientSecretRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsBrands.php │ │ │ ├── ProjectsBrandsIdentityAwareProxyClients.php │ │ │ ├── ProjectsIapTunnel.php │ │ │ ├── ProjectsIapTunnelLocations.php │ │ │ ├── ProjectsIapTunnelLocationsDestGroups.php │ │ │ └── V1.php │ │ ├── SetIamPolicyRequest.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ └── TunnelDestGroup.php │ │ ├── CloudIdentity.php │ │ ├── CloudIdentity │ │ ├── AddIdpCredentialOperationMetadata.php │ │ ├── AddIdpCredentialRequest.php │ │ ├── CancelUserInvitationRequest.php │ │ ├── CheckTransitiveMembershipResponse.php │ │ ├── CreateGroupMetadata.php │ │ ├── CreateInboundSamlSsoProfileOperationMetadata.php │ │ ├── CreateInboundSsoAssignmentOperationMetadata.php │ │ ├── CreateMembershipMetadata.php │ │ ├── DeleteGroupMetadata.php │ │ ├── DeleteIdpCredentialOperationMetadata.php │ │ ├── DeleteInboundSamlSsoProfileOperationMetadata.php │ │ ├── DeleteInboundSsoAssignmentOperationMetadata.php │ │ ├── DeleteMembershipMetadata.php │ │ ├── DsaPublicKeyInfo.php │ │ ├── DynamicGroupMetadata.php │ │ ├── DynamicGroupQuery.php │ │ ├── DynamicGroupStatus.php │ │ ├── EntityKey.php │ │ ├── ExpiryDetail.php │ │ ├── GetMembershipGraphMetadata.php │ │ ├── GetMembershipGraphResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1AndroidAttributes.php │ │ ├── GoogleAppsCloudidentityDevicesV1ApproveDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1ApproveDeviceUserRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1ApproveDeviceUserResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1BlockDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1BlockDeviceUserRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1BlockDeviceUserResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceUserRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1CancelWipeDeviceUserResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1ClientState.php │ │ ├── GoogleAppsCloudidentityDevicesV1CreateDeviceMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1CustomAttributeValue.php │ │ ├── GoogleAppsCloudidentityDevicesV1DeleteDeviceMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1DeleteDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1Device.php │ │ ├── GoogleAppsCloudidentityDevicesV1DeviceUser.php │ │ ├── GoogleAppsCloudidentityDevicesV1ListClientStatesResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1ListDevicesResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1ListEndpointAppsMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1SignoutDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1UpdateClientStateMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1UpdateDeviceMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceResponse.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceUserMetadata.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceUserRequest.php │ │ ├── GoogleAppsCloudidentityDevicesV1WipeDeviceUserResponse.php │ │ ├── Group.php │ │ ├── GroupRelation.php │ │ ├── IdpCredential.php │ │ ├── InboundSamlSsoProfile.php │ │ ├── InboundSsoAssignment.php │ │ ├── IsInvitableUserResponse.php │ │ ├── ListGroupsResponse.php │ │ ├── ListIdpCredentialsResponse.php │ │ ├── ListInboundSamlSsoProfilesResponse.php │ │ ├── ListInboundSsoAssignmentsResponse.php │ │ ├── ListMembershipsResponse.php │ │ ├── ListUserInvitationsResponse.php │ │ ├── LookupGroupNameResponse.php │ │ ├── LookupMembershipNameResponse.php │ │ ├── MemberRelation.php │ │ ├── MemberRestriction.php │ │ ├── Membership.php │ │ ├── MembershipAdjacencyList.php │ │ ├── MembershipRole.php │ │ ├── MembershipRoleRestrictionEvaluation.php │ │ ├── ModifyMembershipRolesRequest.php │ │ ├── ModifyMembershipRolesResponse.php │ │ ├── Operation.php │ │ ├── Resource │ │ │ ├── Customers.php │ │ │ ├── CustomersUserinvitations.php │ │ │ ├── Devices.php │ │ │ ├── DevicesDeviceUsers.php │ │ │ ├── DevicesDeviceUsersClientStates.php │ │ │ ├── Groups.php │ │ │ ├── GroupsMemberships.php │ │ │ ├── InboundSamlSsoProfiles.php │ │ │ ├── InboundSamlSsoProfilesIdpCredentials.php │ │ │ └── InboundSsoAssignments.php │ │ ├── RestrictionEvaluation.php │ │ ├── RestrictionEvaluations.php │ │ ├── RsaPublicKeyInfo.php │ │ ├── SamlIdpConfig.php │ │ ├── SamlSpConfig.php │ │ ├── SamlSsoInfo.php │ │ ├── SearchGroupsResponse.php │ │ ├── SearchTransitiveGroupsResponse.php │ │ ├── SearchTransitiveMembershipsResponse.php │ │ ├── SecuritySettings.php │ │ ├── SendUserInvitationRequest.php │ │ ├── SignInBehavior.php │ │ ├── Status.php │ │ ├── TransitiveMembershipRole.php │ │ ├── UpdateGroupMetadata.php │ │ ├── UpdateInboundSamlSsoProfileOperationMetadata.php │ │ ├── UpdateInboundSsoAssignmentOperationMetadata.php │ │ ├── UpdateMembershipMetadata.php │ │ ├── UpdateMembershipRolesParams.php │ │ └── UserInvitation.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 │ │ ├── Certificate.php │ │ ├── CertificateChains.php │ │ ├── CryptoKey.php │ │ ├── CryptoKeyVersion.php │ │ ├── CryptoKeyVersionTemplate.php │ │ ├── DecryptRequest.php │ │ ├── DecryptResponse.php │ │ ├── DestroyCryptoKeyVersionRequest.php │ │ ├── Digest.php │ │ ├── EkmConnection.php │ │ ├── EncryptRequest.php │ │ ├── EncryptResponse.php │ │ ├── Expr.php │ │ ├── ExternalProtectionLevelOptions.php │ │ ├── GenerateRandomBytesRequest.php │ │ ├── GenerateRandomBytesResponse.php │ │ ├── ImportCryptoKeyVersionRequest.php │ │ ├── ImportJob.php │ │ ├── KeyOperationAttestation.php │ │ ├── KeyRing.php │ │ ├── ListCryptoKeyVersionsResponse.php │ │ ├── ListCryptoKeysResponse.php │ │ ├── ListEkmConnectionsResponse.php │ │ ├── ListImportJobsResponse.php │ │ ├── ListKeyRingsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── Location.php │ │ ├── LocationMetadata.php │ │ ├── MacSignRequest.php │ │ ├── MacSignResponse.php │ │ ├── MacVerifyRequest.php │ │ ├── MacVerifyResponse.php │ │ ├── Policy.php │ │ ├── PublicKey.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEkmConfig.php │ │ │ ├── ProjectsLocationsEkmConnections.php │ │ │ ├── ProjectsLocationsKeyRings.php │ │ │ ├── ProjectsLocationsKeyRingsCryptoKeys.php │ │ │ ├── ProjectsLocationsKeyRingsCryptoKeysCryptoKeyVersions.php │ │ │ └── ProjectsLocationsKeyRingsImportJobs.php │ │ ├── RestoreCryptoKeyVersionRequest.php │ │ ├── ServiceResolver.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 │ │ ├── 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 │ │ ├── GoogleCloudMlV1DiskConfig.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 │ │ ├── GoogleCloudMemcacheV1LocationMetadata.php │ │ ├── GoogleCloudMemcacheV1MaintenancePolicy.php │ │ ├── GoogleCloudMemcacheV1OperationMetadata.php │ │ ├── GoogleCloudMemcacheV1ZoneMetadata.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1Instance.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NotificationParameter.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ ├── Instance.php │ │ ├── InstanceMessage.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── LocationMetadata.php │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceSchedule.php │ │ ├── MaintenanceWindow.php │ │ ├── MemcacheEmpty.php │ │ ├── MemcacheParameters.php │ │ ├── Node.php │ │ ├── NodeConfig.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── RescheduleMaintenanceRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── Schedule.php │ │ ├── Status.php │ │ ├── TimeOfDay.php │ │ ├── UpdateParametersRequest.php │ │ ├── UpdatePolicy.php │ │ ├── WeeklyCycle.php │ │ ├── WeeklyMaintenanceWindow.php │ │ └── ZoneMetadata.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 │ │ ├── ClassificationModelOptions.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 │ │ ├── V1Model.php │ │ └── V2Model.php │ │ ├── CloudOSLogin.php │ │ ├── CloudOSLogin │ │ ├── ImportSshPublicKeyResponse.php │ │ ├── LoginProfile.php │ │ ├── OsloginEmpty.php │ │ ├── PosixAccount.php │ │ ├── Resource │ │ │ ├── Users.php │ │ │ ├── UsersProjects.php │ │ │ ├── UsersSshPublicKey.php │ │ │ └── UsersSshPublicKeys.php │ │ └── SshPublicKey.php │ │ ├── CloudProfiler.php │ │ ├── CloudProfiler │ │ ├── CreateProfileRequest.php │ │ ├── Deployment.php │ │ ├── Profile.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ └── ProjectsProfiles.php │ │ ├── CloudRedis.php │ │ ├── CloudRedis │ │ ├── Cluster.php │ │ ├── ClusterSlots.php │ │ ├── Endpoint.php │ │ ├── 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 │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceSchedule.php │ │ ├── NodeInfo.php │ │ ├── Operation.php │ │ ├── OutputConfig.php │ │ ├── PersistenceConfig.php │ │ ├── PrivateServiceConnect.php │ │ ├── ReconciliationOperationMetadata.php │ │ ├── RedisEmpty.php │ │ ├── RescheduleMaintenanceRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── Status.php │ │ ├── TimeOfDay.php │ │ ├── TlsCertificate.php │ │ ├── UpgradeInstanceRequest.php │ │ └── WeeklyMaintenanceWindow.php │ │ ├── CloudResourceManager.php │ │ ├── CloudResourceManager │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CloudresourcemanagerEmpty.php │ │ ├── CloudresourcemanagerGoogleCloudResourcemanagerV2alpha1FolderOperation.php │ │ ├── CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation.php │ │ ├── CreateFolderMetadata.php │ │ ├── CreateProjectMetadata.php │ │ ├── CreateTagBindingMetadata.php │ │ ├── CreateTagKeyMetadata.php │ │ ├── CreateTagValueMetadata.php │ │ ├── DeleteFolderMetadata.php │ │ ├── DeleteOrganizationMetadata.php │ │ ├── DeleteProjectMetadata.php │ │ ├── DeleteTagBindingMetadata.php │ │ ├── DeleteTagKeyMetadata.php │ │ ├── DeleteTagValueMetadata.php │ │ ├── EffectiveTag.php │ │ ├── Expr.php │ │ ├── Folder.php │ │ ├── FolderOperation.php │ │ ├── FolderOperationError.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── Lien.php │ │ ├── ListEffectiveTagsResponse.php │ │ ├── ListFoldersResponse.php │ │ ├── ListLiensResponse.php │ │ ├── ListProjectsResponse.php │ │ ├── ListTagBindingsResponse.php │ │ ├── ListTagHoldsResponse.php │ │ ├── ListTagKeysResponse.php │ │ ├── ListTagValuesResponse.php │ │ ├── MoveFolderMetadata.php │ │ ├── MoveFolderRequest.php │ │ ├── MoveProjectMetadata.php │ │ ├── MoveProjectRequest.php │ │ ├── Operation.php │ │ ├── Organization.php │ │ ├── Policy.php │ │ ├── Project.php │ │ ├── ProjectCreationStatus.php │ │ ├── Resource │ │ │ ├── EffectiveTags.php │ │ │ ├── Folders.php │ │ │ ├── Liens.php │ │ │ ├── Operations.php │ │ │ ├── Organizations.php │ │ │ ├── Projects.php │ │ │ ├── TagBindings.php │ │ │ ├── TagKeys.php │ │ │ ├── TagValues.php │ │ │ └── TagValuesTagHolds.php │ │ ├── SearchFoldersResponse.php │ │ ├── SearchOrganizationsResponse.php │ │ ├── SearchProjectsResponse.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TagBinding.php │ │ ├── TagHold.php │ │ ├── TagKey.php │ │ ├── TagValue.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── UndeleteFolderMetadata.php │ │ ├── UndeleteFolderRequest.php │ │ ├── UndeleteOrganizationMetadata.php │ │ ├── UndeleteProjectMetadata.php │ │ ├── UndeleteProjectRequest.php │ │ ├── UpdateFolderMetadata.php │ │ ├── UpdateProjectMetadata.php │ │ ├── UpdateTagKeyMetadata.php │ │ └── UpdateTagValueMetadata.php │ │ ├── CloudRetail.php │ │ ├── CloudRetail │ │ ├── GoogleApiHttpBody.php │ │ ├── GoogleCloudRetailLoggingErrorContext.php │ │ ├── GoogleCloudRetailLoggingErrorLog.php │ │ ├── GoogleCloudRetailLoggingHttpRequestContext.php │ │ ├── GoogleCloudRetailLoggingImportErrorContext.php │ │ ├── GoogleCloudRetailLoggingServiceContext.php │ │ ├── GoogleCloudRetailLoggingSourceLocation.php │ │ ├── GoogleCloudRetailV2AddCatalogAttributeRequest.php │ │ ├── GoogleCloudRetailV2AddControlRequest.php │ │ ├── GoogleCloudRetailV2AddFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2AddFulfillmentPlacesRequest.php │ │ ├── GoogleCloudRetailV2AddFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2AddLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2AddLocalInventoriesRequest.php │ │ ├── GoogleCloudRetailV2AddLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2AttributesConfig.php │ │ ├── GoogleCloudRetailV2Audience.php │ │ ├── GoogleCloudRetailV2BigQuerySource.php │ │ ├── GoogleCloudRetailV2Catalog.php │ │ ├── GoogleCloudRetailV2CatalogAttribute.php │ │ ├── GoogleCloudRetailV2ColorInfo.php │ │ ├── GoogleCloudRetailV2CompleteQueryResponse.php │ │ ├── GoogleCloudRetailV2CompleteQueryResponseCompletionResult.php │ │ ├── GoogleCloudRetailV2CompleteQueryResponseRecentSearchResult.php │ │ ├── GoogleCloudRetailV2CompletionConfig.php │ │ ├── GoogleCloudRetailV2CompletionDataInputConfig.php │ │ ├── GoogleCloudRetailV2CompletionDetail.php │ │ ├── GoogleCloudRetailV2Condition.php │ │ ├── GoogleCloudRetailV2ConditionQueryTerm.php │ │ ├── GoogleCloudRetailV2ConditionTimeRange.php │ │ ├── GoogleCloudRetailV2Control.php │ │ ├── GoogleCloudRetailV2CreateModelMetadata.php │ │ ├── GoogleCloudRetailV2CustomAttribute.php │ │ ├── GoogleCloudRetailV2ExperimentInfo.php │ │ ├── GoogleCloudRetailV2ExperimentInfoServingConfigExperiment.php │ │ ├── GoogleCloudRetailV2FulfillmentInfo.php │ │ ├── GoogleCloudRetailV2GcsSource.php │ │ ├── GoogleCloudRetailV2GetDefaultBranchResponse.php │ │ ├── GoogleCloudRetailV2Image.php │ │ ├── GoogleCloudRetailV2ImportCompletionDataRequest.php │ │ ├── GoogleCloudRetailV2ImportCompletionDataResponse.php │ │ ├── GoogleCloudRetailV2ImportErrorsConfig.php │ │ ├── GoogleCloudRetailV2ImportMetadata.php │ │ ├── GoogleCloudRetailV2ImportProductsRequest.php │ │ ├── GoogleCloudRetailV2ImportProductsResponse.php │ │ ├── GoogleCloudRetailV2ImportUserEventsRequest.php │ │ ├── GoogleCloudRetailV2ImportUserEventsResponse.php │ │ ├── GoogleCloudRetailV2Interval.php │ │ ├── GoogleCloudRetailV2ListCatalogsResponse.php │ │ ├── GoogleCloudRetailV2ListControlsResponse.php │ │ ├── GoogleCloudRetailV2ListModelsResponse.php │ │ ├── GoogleCloudRetailV2ListProductsResponse.php │ │ ├── GoogleCloudRetailV2ListServingConfigsResponse.php │ │ ├── GoogleCloudRetailV2LocalInventory.php │ │ ├── GoogleCloudRetailV2Model.php │ │ ├── GoogleCloudRetailV2ModelServingConfigList.php │ │ ├── GoogleCloudRetailV2PauseModelRequest.php │ │ ├── GoogleCloudRetailV2PredictRequest.php │ │ ├── GoogleCloudRetailV2PredictResponse.php │ │ ├── GoogleCloudRetailV2PredictResponsePredictionResult.php │ │ ├── GoogleCloudRetailV2PriceInfo.php │ │ ├── GoogleCloudRetailV2PriceInfoPriceRange.php │ │ ├── GoogleCloudRetailV2Product.php │ │ ├── GoogleCloudRetailV2ProductDetail.php │ │ ├── GoogleCloudRetailV2ProductInlineSource.php │ │ ├── GoogleCloudRetailV2ProductInputConfig.php │ │ ├── GoogleCloudRetailV2ProductLevelConfig.php │ │ ├── GoogleCloudRetailV2Promotion.php │ │ ├── GoogleCloudRetailV2PurchaseTransaction.php │ │ ├── GoogleCloudRetailV2PurgeMetadata.php │ │ ├── GoogleCloudRetailV2PurgeUserEventsRequest.php │ │ ├── GoogleCloudRetailV2PurgeUserEventsResponse.php │ │ ├── GoogleCloudRetailV2Rating.php │ │ ├── GoogleCloudRetailV2RejoinUserEventsMetadata.php │ │ ├── GoogleCloudRetailV2RejoinUserEventsRequest.php │ │ ├── GoogleCloudRetailV2RejoinUserEventsResponse.php │ │ ├── GoogleCloudRetailV2RemoveCatalogAttributeRequest.php │ │ ├── GoogleCloudRetailV2RemoveControlRequest.php │ │ ├── GoogleCloudRetailV2RemoveFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2RemoveFulfillmentPlacesRequest.php │ │ ├── GoogleCloudRetailV2RemoveFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2RemoveLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2RemoveLocalInventoriesRequest.php │ │ ├── GoogleCloudRetailV2RemoveLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2ReplaceCatalogAttributeRequest.php │ │ ├── GoogleCloudRetailV2ResumeModelRequest.php │ │ ├── GoogleCloudRetailV2Rule.php │ │ ├── GoogleCloudRetailV2RuleBoostAction.php │ │ ├── GoogleCloudRetailV2RuleDoNotAssociateAction.php │ │ ├── GoogleCloudRetailV2RuleFilterAction.php │ │ ├── GoogleCloudRetailV2RuleIgnoreAction.php │ │ ├── GoogleCloudRetailV2RuleOnewaySynonymsAction.php │ │ ├── GoogleCloudRetailV2RuleRedirectAction.php │ │ ├── GoogleCloudRetailV2RuleReplacementAction.php │ │ ├── GoogleCloudRetailV2RuleTwowaySynonymsAction.php │ │ ├── GoogleCloudRetailV2SearchRequest.php │ │ ├── GoogleCloudRetailV2SearchRequestBoostSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestBoostSpecConditionBoostSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestDynamicFacetSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestFacetSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestFacetSpecFacetKey.php │ │ ├── GoogleCloudRetailV2SearchRequestPersonalizationSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestQueryExpansionSpec.php │ │ ├── GoogleCloudRetailV2SearchRequestSpellCorrectionSpec.php │ │ ├── GoogleCloudRetailV2SearchResponse.php │ │ ├── GoogleCloudRetailV2SearchResponseFacet.php │ │ ├── GoogleCloudRetailV2SearchResponseFacetFacetValue.php │ │ ├── GoogleCloudRetailV2SearchResponseQueryExpansionInfo.php │ │ ├── GoogleCloudRetailV2SearchResponseSearchResult.php │ │ ├── GoogleCloudRetailV2ServingConfig.php │ │ ├── GoogleCloudRetailV2SetDefaultBranchRequest.php │ │ ├── GoogleCloudRetailV2SetInventoryMetadata.php │ │ ├── GoogleCloudRetailV2SetInventoryRequest.php │ │ ├── GoogleCloudRetailV2SetInventoryResponse.php │ │ ├── GoogleCloudRetailV2TuneModelMetadata.php │ │ ├── GoogleCloudRetailV2TuneModelRequest.php │ │ ├── GoogleCloudRetailV2TuneModelResponse.php │ │ ├── GoogleCloudRetailV2UserEvent.php │ │ ├── GoogleCloudRetailV2UserEventImportSummary.php │ │ ├── GoogleCloudRetailV2UserEventInlineSource.php │ │ ├── GoogleCloudRetailV2UserEventInputConfig.php │ │ ├── GoogleCloudRetailV2UserInfo.php │ │ ├── GoogleCloudRetailV2alphaAddFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2alphaAddFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2alphaAddLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2alphaAddLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2alphaBigQueryOutputResult.php │ │ ├── GoogleCloudRetailV2alphaCreateModelMetadata.php │ │ ├── GoogleCloudRetailV2alphaEnrollSolutionMetadata.php │ │ ├── GoogleCloudRetailV2alphaExportErrorsConfig.php │ │ ├── GoogleCloudRetailV2alphaExportMetadata.php │ │ ├── GoogleCloudRetailV2alphaExportProductsResponse.php │ │ ├── GoogleCloudRetailV2alphaExportUserEventsResponse.php │ │ ├── GoogleCloudRetailV2alphaGcsOutputResult.php │ │ ├── GoogleCloudRetailV2alphaImportCompletionDataResponse.php │ │ ├── GoogleCloudRetailV2alphaImportErrorsConfig.php │ │ ├── GoogleCloudRetailV2alphaImportMetadata.php │ │ ├── GoogleCloudRetailV2alphaImportProductsResponse.php │ │ ├── GoogleCloudRetailV2alphaImportUserEventsResponse.php │ │ ├── GoogleCloudRetailV2alphaModel.php │ │ ├── GoogleCloudRetailV2alphaModelPageOptimizationConfig.php │ │ ├── GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate.php │ │ ├── GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel.php │ │ ├── GoogleCloudRetailV2alphaModelServingConfigList.php │ │ ├── GoogleCloudRetailV2alphaOutputResult.php │ │ ├── GoogleCloudRetailV2alphaPurgeMetadata.php │ │ ├── GoogleCloudRetailV2alphaPurgeProductsMetadata.php │ │ ├── GoogleCloudRetailV2alphaPurgeProductsResponse.php │ │ ├── GoogleCloudRetailV2alphaPurgeUserEventsResponse.php │ │ ├── GoogleCloudRetailV2alphaRejoinUserEventsMetadata.php │ │ ├── GoogleCloudRetailV2alphaRejoinUserEventsResponse.php │ │ ├── GoogleCloudRetailV2alphaRemoveFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2alphaRemoveFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2alphaRemoveLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2alphaRemoveLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2alphaSetInventoryMetadata.php │ │ ├── GoogleCloudRetailV2alphaSetInventoryResponse.php │ │ ├── GoogleCloudRetailV2alphaSetLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2alphaSetLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2alphaTransformedUserEventsMetadata.php │ │ ├── GoogleCloudRetailV2alphaTuneModelMetadata.php │ │ ├── GoogleCloudRetailV2alphaTuneModelResponse.php │ │ ├── GoogleCloudRetailV2alphaUserEventImportSummary.php │ │ ├── GoogleCloudRetailV2betaAddFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2betaAddFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2betaAddLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2betaAddLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2betaBigQueryOutputResult.php │ │ ├── GoogleCloudRetailV2betaCreateModelMetadata.php │ │ ├── GoogleCloudRetailV2betaExportErrorsConfig.php │ │ ├── GoogleCloudRetailV2betaExportMetadata.php │ │ ├── GoogleCloudRetailV2betaExportProductsResponse.php │ │ ├── GoogleCloudRetailV2betaExportUserEventsResponse.php │ │ ├── GoogleCloudRetailV2betaGcsOutputResult.php │ │ ├── GoogleCloudRetailV2betaImportCompletionDataResponse.php │ │ ├── GoogleCloudRetailV2betaImportErrorsConfig.php │ │ ├── GoogleCloudRetailV2betaImportMetadata.php │ │ ├── GoogleCloudRetailV2betaImportProductsResponse.php │ │ ├── GoogleCloudRetailV2betaImportUserEventsResponse.php │ │ ├── GoogleCloudRetailV2betaModel.php │ │ ├── GoogleCloudRetailV2betaModelServingConfigList.php │ │ ├── GoogleCloudRetailV2betaOutputResult.php │ │ ├── GoogleCloudRetailV2betaPurgeMetadata.php │ │ ├── GoogleCloudRetailV2betaPurgeUserEventsResponse.php │ │ ├── GoogleCloudRetailV2betaRejoinUserEventsMetadata.php │ │ ├── GoogleCloudRetailV2betaRejoinUserEventsResponse.php │ │ ├── GoogleCloudRetailV2betaRemoveFulfillmentPlacesMetadata.php │ │ ├── GoogleCloudRetailV2betaRemoveFulfillmentPlacesResponse.php │ │ ├── GoogleCloudRetailV2betaRemoveLocalInventoriesMetadata.php │ │ ├── GoogleCloudRetailV2betaRemoveLocalInventoriesResponse.php │ │ ├── GoogleCloudRetailV2betaSetInventoryMetadata.php │ │ ├── GoogleCloudRetailV2betaSetInventoryResponse.php │ │ ├── GoogleCloudRetailV2betaTuneModelMetadata.php │ │ ├── GoogleCloudRetailV2betaTuneModelResponse.php │ │ ├── GoogleCloudRetailV2betaUserEventImportSummary.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDate.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsCatalogs.php │ │ │ ├── ProjectsLocationsCatalogsAttributesConfig.php │ │ │ ├── ProjectsLocationsCatalogsBranches.php │ │ │ ├── ProjectsLocationsCatalogsBranchesOperations.php │ │ │ ├── ProjectsLocationsCatalogsBranchesProducts.php │ │ │ ├── ProjectsLocationsCatalogsCompletionData.php │ │ │ ├── ProjectsLocationsCatalogsControls.php │ │ │ ├── ProjectsLocationsCatalogsModels.php │ │ │ ├── ProjectsLocationsCatalogsOperations.php │ │ │ ├── ProjectsLocationsCatalogsPlacements.php │ │ │ ├── ProjectsLocationsCatalogsServingConfigs.php │ │ │ ├── ProjectsLocationsCatalogsUserEvents.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsOperations.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 │ │ ├── GoogleCloudRunOpV2BinaryAuthorization.php │ │ ├── GoogleCloudRunOpV2CloudSqlInstance.php │ │ ├── GoogleCloudRunOpV2Condition.php │ │ ├── GoogleCloudRunOpV2Container.php │ │ ├── GoogleCloudRunOpV2ContainerPort.php │ │ ├── GoogleCloudRunOpV2EnvVar.php │ │ ├── GoogleCloudRunOpV2EnvVarSource.php │ │ ├── GoogleCloudRunOpV2ListRevisionsResponse.php │ │ ├── GoogleCloudRunOpV2ListServicesResponse.php │ │ ├── GoogleCloudRunOpV2ResourceRequirements.php │ │ ├── GoogleCloudRunOpV2Revision.php │ │ ├── GoogleCloudRunOpV2RevisionScaling.php │ │ ├── GoogleCloudRunOpV2RevisionTemplate.php │ │ ├── GoogleCloudRunOpV2SecretKeySelector.php │ │ ├── GoogleCloudRunOpV2SecretVolumeSource.php │ │ ├── GoogleCloudRunOpV2Service.php │ │ ├── GoogleCloudRunOpV2TrafficTarget.php │ │ ├── GoogleCloudRunOpV2TrafficTargetStatus.php │ │ ├── GoogleCloudRunOpV2VersionToPath.php │ │ ├── GoogleCloudRunOpV2Volume.php │ │ ├── GoogleCloudRunOpV2VolumeMount.php │ │ ├── GoogleCloudRunOpV2VpcAccess.php │ │ ├── GoogleCloudRunV1Condition.php │ │ ├── GoogleCloudRunV2BinaryAuthorization.php │ │ ├── GoogleCloudRunV2CloudSqlInstance.php │ │ ├── GoogleCloudRunV2Condition.php │ │ ├── GoogleCloudRunV2Container.php │ │ ├── GoogleCloudRunV2ContainerPort.php │ │ ├── GoogleCloudRunV2ContainerStatus.php │ │ ├── GoogleCloudRunV2EnvVar.php │ │ ├── GoogleCloudRunV2EnvVarSource.php │ │ ├── GoogleCloudRunV2Execution.php │ │ ├── GoogleCloudRunV2ExecutionReference.php │ │ ├── GoogleCloudRunV2ExecutionTemplate.php │ │ ├── GoogleCloudRunV2GRPCAction.php │ │ ├── GoogleCloudRunV2HTTPGetAction.php │ │ ├── GoogleCloudRunV2HTTPHeader.php │ │ ├── GoogleCloudRunV2Job.php │ │ ├── GoogleCloudRunV2ListExecutionsResponse.php │ │ ├── GoogleCloudRunV2ListJobsResponse.php │ │ ├── GoogleCloudRunV2ListRevisionsResponse.php │ │ ├── GoogleCloudRunV2ListServicesResponse.php │ │ ├── GoogleCloudRunV2ListTasksResponse.php │ │ ├── GoogleCloudRunV2Probe.php │ │ ├── GoogleCloudRunV2ResourceRequirements.php │ │ ├── GoogleCloudRunV2Revision.php │ │ ├── GoogleCloudRunV2RevisionScaling.php │ │ ├── GoogleCloudRunV2RevisionTemplate.php │ │ ├── GoogleCloudRunV2RunJobRequest.php │ │ ├── GoogleCloudRunV2SecretKeySelector.php │ │ ├── GoogleCloudRunV2SecretVolumeSource.php │ │ ├── GoogleCloudRunV2Service.php │ │ ├── GoogleCloudRunV2TCPSocketAction.php │ │ ├── GoogleCloudRunV2Task.php │ │ ├── GoogleCloudRunV2TaskAttemptResult.php │ │ ├── GoogleCloudRunV2TaskTemplate.php │ │ ├── GoogleCloudRunV2TrafficTarget.php │ │ ├── GoogleCloudRunV2TrafficTargetStatus.php │ │ ├── GoogleCloudRunV2VersionToPath.php │ │ ├── GoogleCloudRunV2Volume.php │ │ ├── GoogleCloudRunV2VolumeMount.php │ │ ├── GoogleCloudRunV2VpcAccess.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleLongrunningWaitOperationRequest.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeExpr.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 │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsAuthorizeddomains.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAuthorizeddomains.php │ │ │ ├── ProjectsLocationsConfigurations.php │ │ │ ├── ProjectsLocationsDomainmappings.php │ │ │ ├── ProjectsLocationsJobs.php │ │ │ ├── ProjectsLocationsJobsExecutions.php │ │ │ ├── ProjectsLocationsJobsExecutionsTasks.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRevisions.php │ │ │ ├── ProjectsLocationsRoutes.php │ │ │ ├── ProjectsLocationsServices.php │ │ │ └── ProjectsLocationsServicesRevisions.php │ │ ├── ResourceRecord.php │ │ ├── ResourceRequirements.php │ │ ├── Revision.php │ │ ├── RevisionSpec.php │ │ ├── RevisionStatus.php │ │ ├── RevisionTemplate.php │ │ ├── Route.php │ │ ├── RouteSpec.php │ │ ├── RouteStatus.php │ │ ├── RunEmpty.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 │ │ ├── AbuseReportingConfig.php │ │ ├── AckInfo.php │ │ ├── AclFixRequest.php │ │ ├── AclFixStatus.php │ │ ├── AclInfo.php │ │ ├── ActionParameter.php │ │ ├── AddonComposeUiActionMarkup.php │ │ ├── AffectedMembership.php │ │ ├── AllAuthenticatedUsersProto.php │ │ ├── Annotation.php │ │ ├── AppId.php │ │ ├── AppsDynamiteAnnotation.php │ │ ├── AppsDynamiteAppId.php │ │ ├── AppsDynamiteAttachment.php │ │ ├── AppsDynamiteBabelMessageProps.php │ │ ├── AppsDynamiteBabelPlaceholderMetadata.php │ │ ├── AppsDynamiteBabelPlaceholderMetadataDeleteMetadata.php │ │ ├── AppsDynamiteBabelPlaceholderMetadataEditMetadata.php │ │ ├── AppsDynamiteBabelPlaceholderMetadataHangoutVideoEventMetadata.php │ │ ├── AppsDynamiteBackendDlpScanSummary.php │ │ ├── AppsDynamiteBackendLabelsCommunalLabelTag.php │ │ ├── AppsDynamiteBackendLabelsPersonalLabelTag.php │ │ ├── AppsDynamiteBotResponse.php │ │ ├── AppsDynamiteCardCapabilityMetadata.php │ │ ├── AppsDynamiteConsentedAppUnfurlMetadata.php │ │ ├── AppsDynamiteContentReport.php │ │ ├── AppsDynamiteContentReportJustification.php │ │ ├── AppsDynamiteCustomEmojiMetadata.php │ │ ├── AppsDynamiteCustomerId.php │ │ ├── AppsDynamiteDataLossPreventionMetadata.php │ │ ├── AppsDynamiteDmId.php │ │ ├── AppsDynamiteDriveMetadata.php │ │ ├── AppsDynamiteDriveMetadataAclFixRequest.php │ │ ├── AppsDynamiteDriveMetadataAclFixStatus.php │ │ ├── AppsDynamiteDriveMetadataLegacyUploadMetadata.php │ │ ├── AppsDynamiteFormatMetadata.php │ │ ├── AppsDynamiteFrontendBotInfo.php │ │ ├── AppsDynamiteFrontendBotInfoSupportUrls.php │ │ ├── AppsDynamiteFrontendMember.php │ │ ├── AppsDynamiteFrontendRoster.php │ │ ├── AppsDynamiteFrontendUser.php │ │ ├── AppsDynamiteGroupId.php │ │ ├── AppsDynamiteGroupRetentionSettingsUpdatedMetaData.php │ │ ├── AppsDynamiteGsuiteIntegrationMetadata.php │ │ ├── AppsDynamiteIncomingWebhookChangedMetadata.php │ │ ├── AppsDynamiteIntegrationConfigMutation.php │ │ ├── AppsDynamiteIntegrationConfigUpdatedMetadata.php │ │ ├── AppsDynamiteInviteeInfo.php │ │ ├── AppsDynamiteMemberId.php │ │ ├── AppsDynamiteMembershipChangedMetadata.php │ │ ├── AppsDynamiteMembershipChangedMetadataAffectedMembership.php │ │ ├── AppsDynamiteMessage.php │ │ ├── AppsDynamiteMessageAttributes.php │ │ ├── AppsDynamiteMessageContentReportSummary.php │ │ ├── AppsDynamiteMessageId.php │ │ ├── AppsDynamiteMessageInfo.php │ │ ├── AppsDynamiteMessageParentId.php │ │ ├── AppsDynamiteMessageProps.php │ │ ├── AppsDynamitePinnedItemId.php │ │ ├── AppsDynamitePrivateMessageInfo.php │ │ ├── AppsDynamiteQuotedMessageMetadata.php │ │ ├── AppsDynamiteReadReceiptsSettingsUpdatedMetadata.php │ │ ├── AppsDynamiteRequiredMessageFeaturesMetadata.php │ │ ├── AppsDynamiteRoomUpdatedMetadata.php │ │ ├── AppsDynamiteRoomUpdatedMetadataGroupDetailsUpdatedMetadata.php │ │ ├── AppsDynamiteRoomUpdatedMetadataRoomRenameMetadata.php │ │ ├── AppsDynamiteRosterId.php │ │ ├── AppsDynamiteSharedAction.php │ │ ├── AppsDynamiteSharedActionActionParameter.php │ │ ├── AppsDynamiteSharedActivityFeedAnnotationData.php │ │ ├── AppsDynamiteSharedActivityFeedAnnotationDataUserInfo.php │ │ ├── AppsDynamiteSharedAppProfile.php │ │ ├── AppsDynamiteSharedAssistantAnnotationData.php │ │ ├── AppsDynamiteSharedAssistantDebugContext.php │ │ ├── AppsDynamiteSharedAssistantFeedbackContext.php │ │ ├── AppsDynamiteSharedAssistantFeedbackContextFeedbackChip.php │ │ ├── AppsDynamiteSharedAssistantSessionContext.php │ │ ├── AppsDynamiteSharedAssistantSuggestion.php │ │ ├── AppsDynamiteSharedAssistantUnfulfillableRequest.php │ │ ├── AppsDynamiteSharedAvatarInfo.php │ │ ├── AppsDynamiteSharedBackendUploadMetadata.php │ │ ├── AppsDynamiteSharedBorderStyle.php │ │ ├── AppsDynamiteSharedButton.php │ │ ├── AppsDynamiteSharedButtonList.php │ │ ├── AppsDynamiteSharedCalendarEventAnnotationData.php │ │ ├── AppsDynamiteSharedCalendarEventAnnotationDataCalendarEvent.php │ │ ├── AppsDynamiteSharedCalendarEventAnnotationDataCalendarEventTime.php │ │ ├── AppsDynamiteSharedCalendarEventAnnotationDataEventCreation.php │ │ ├── AppsDynamiteSharedCallAnnotationData.php │ │ ├── AppsDynamiteSharedCallMetadata.php │ │ ├── AppsDynamiteSharedCard.php │ │ ├── AppsDynamiteSharedCardCardAction.php │ │ ├── AppsDynamiteSharedCardCardHeader.php │ │ ├── AppsDynamiteSharedCardClickSuggestion.php │ │ ├── AppsDynamiteSharedCardSection.php │ │ ├── AppsDynamiteSharedChatItem.php │ │ ├── AppsDynamiteSharedChatItemActivityInfo.php │ │ ├── AppsDynamiteSharedChatItemActivityInfoFeedItemNudge.php │ │ ├── AppsDynamiteSharedChatItemActivityInfoFeedItemReactions.php │ │ ├── AppsDynamiteSharedChatItemActivityInfoFeedItemThreadReply.php │ │ ├── AppsDynamiteSharedChatItemActivityInfoFeedItemUserMention.php │ │ ├── AppsDynamiteSharedChatItemGroupInfo.php │ │ ├── AppsDynamiteSharedColumns.php │ │ ├── AppsDynamiteSharedColumnsColumn.php │ │ ├── AppsDynamiteSharedColumnsColumnWidgets.php │ │ ├── AppsDynamiteSharedContentReportType.php │ │ ├── AppsDynamiteSharedCustomEmoji.php │ │ ├── AppsDynamiteSharedDateTimePicker.php │ │ ├── AppsDynamiteSharedDecoratedText.php │ │ ├── AppsDynamiteSharedDecoratedTextSwitchControl.php │ │ ├── AppsDynamiteSharedDimension.php │ │ ├── AppsDynamiteSharedDivider.php │ │ ├── AppsDynamiteSharedDlpMetricsMetadata.php │ │ ├── AppsDynamiteSharedDocument.php │ │ ├── AppsDynamiteSharedEmoji.php │ │ ├── AppsDynamiteSharedFindDocumentSuggestion.php │ │ ├── AppsDynamiteSharedGrid.php │ │ ├── AppsDynamiteSharedGridGridItem.php │ │ ├── AppsDynamiteSharedGroupDetails.php │ │ ├── AppsDynamiteSharedGroupVisibility.php │ │ ├── AppsDynamiteSharedIcon.php │ │ ├── AppsDynamiteSharedImage.php │ │ ├── AppsDynamiteSharedImageComponent.php │ │ ├── AppsDynamiteSharedImageCropStyle.php │ │ ├── AppsDynamiteSharedJustification.php │ │ ├── AppsDynamiteSharedJustificationPerson.php │ │ ├── AppsDynamiteSharedMeetMetadata.php │ │ ├── AppsDynamiteSharedMessageInfo.php │ │ ├── AppsDynamiteSharedMessageIntegrationPayload.php │ │ ├── AppsDynamiteSharedOnClick.php │ │ ├── AppsDynamiteSharedOpenLink.php │ │ ├── AppsDynamiteSharedOpenLinkAppUri.php │ │ ├── AppsDynamiteSharedOpenLinkAppUriIntent.php │ │ ├── AppsDynamiteSharedOpenLinkAppUriIntentExtraData.php │ │ ├── AppsDynamiteSharedOrganizationInfo.php │ │ ├── AppsDynamiteSharedOrganizationInfoConsumerInfo.php │ │ ├── AppsDynamiteSharedOrganizationInfoCustomerInfo.php │ │ ├── AppsDynamiteSharedOriginAppSuggestion.php │ │ ├── AppsDynamiteSharedPhoneNumber.php │ │ ├── AppsDynamiteSharedReaction.php │ │ ├── AppsDynamiteSharedRetentionSettings.php │ │ ├── AppsDynamiteSharedSegmentedMembershipCount.php │ │ ├── AppsDynamiteSharedSegmentedMembershipCounts.php │ │ ├── AppsDynamiteSharedSelectionInput.php │ │ ├── AppsDynamiteSharedSelectionInputSelectionItem.php │ │ ├── AppsDynamiteSharedSpaceInfo.php │ │ ├── AppsDynamiteSharedSuggestions.php │ │ ├── AppsDynamiteSharedSuggestionsSuggestionItem.php │ │ ├── AppsDynamiteSharedTasksAnnotationData.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataAssigneeChange.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataCompletionChange.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataCreation.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataDeletionChange.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataTaskProperties.php │ │ ├── AppsDynamiteSharedTasksAnnotationDataUserDefinedMessage.php │ │ ├── AppsDynamiteSharedTasksMessageIntegrationPayload.php │ │ ├── AppsDynamiteSharedTextInput.php │ │ ├── AppsDynamiteSharedTextParagraph.php │ │ ├── AppsDynamiteSharedUserBlockRelationship.php │ │ ├── AppsDynamiteSharedVideoReference.php │ │ ├── AppsDynamiteSharedWidget.php │ │ ├── AppsDynamiteSlashCommandMetadata.php │ │ ├── AppsDynamiteSpaceId.php │ │ ├── AppsDynamiteStorageAction.php │ │ ├── AppsDynamiteStorageActionActionParameter.php │ │ ├── AppsDynamiteStorageBorderStyle.php │ │ ├── AppsDynamiteStorageButton.php │ │ ├── AppsDynamiteStorageButtonList.php │ │ ├── AppsDynamiteStorageCard.php │ │ ├── AppsDynamiteStorageCardCardAction.php │ │ ├── AppsDynamiteStorageCardCardHeader.php │ │ ├── AppsDynamiteStorageCardSection.php │ │ ├── AppsDynamiteStorageColumns.php │ │ ├── AppsDynamiteStorageColumnsColumn.php │ │ ├── AppsDynamiteStorageColumnsColumnWidgets.php │ │ ├── AppsDynamiteStorageDateTimePicker.php │ │ ├── AppsDynamiteStorageDecoratedText.php │ │ ├── AppsDynamiteStorageDecoratedTextSwitchControl.php │ │ ├── AppsDynamiteStorageDivider.php │ │ ├── AppsDynamiteStorageGrid.php │ │ ├── AppsDynamiteStorageGridGridItem.php │ │ ├── AppsDynamiteStorageIcon.php │ │ ├── AppsDynamiteStorageImage.php │ │ ├── AppsDynamiteStorageImageComponent.php │ │ ├── AppsDynamiteStorageImageCropStyle.php │ │ ├── AppsDynamiteStorageOnClick.php │ │ ├── AppsDynamiteStorageOpenLink.php │ │ ├── AppsDynamiteStorageOpenLinkAppUri.php │ │ ├── AppsDynamiteStorageOpenLinkAppUriIntent.php │ │ ├── AppsDynamiteStorageOpenLinkAppUriIntentExtraData.php │ │ ├── AppsDynamiteStorageSelectionInput.php │ │ ├── AppsDynamiteStorageSelectionInputSelectionItem.php │ │ ├── AppsDynamiteStorageSuggestions.php │ │ ├── AppsDynamiteStorageSuggestionsSuggestionItem.php │ │ ├── AppsDynamiteStorageTextInput.php │ │ ├── AppsDynamiteStorageTextParagraph.php │ │ ├── AppsDynamiteStorageWidget.php │ │ ├── AppsDynamiteTombstoneMetadata.php │ │ ├── AppsDynamiteTopicId.php │ │ ├── AppsDynamiteUploadMetadata.php │ │ ├── AppsDynamiteUrlMetadata.php │ │ ├── AppsDynamiteUserId.php │ │ ├── AppsDynamiteUserMentionMetadata.php │ │ ├── AppsDynamiteV1ApiCompatV1Action.php │ │ ├── AppsDynamiteV1ApiCompatV1ActionConfirm.php │ │ ├── AppsDynamiteV1ApiCompatV1Attachment.php │ │ ├── AppsDynamiteV1ApiCompatV1Field.php │ │ ├── AppsDynamiteVideoCallMetadata.php │ │ ├── AppsDynamiteYoutubeMetadata.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkup.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkupAddonAttachment.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkup.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupError.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupEditAttendeesActionMarkup.php │ │ ├── AppsExtensionsMarkupCalendarClientActionMarkupEditConferenceDataActionMarkup.php │ │ ├── Attachment.php │ │ ├── AttachmentMetadata.php │ │ ├── Attribute.php │ │ ├── AttributeRemoved.php │ │ ├── AttributeSet.php │ │ ├── Attributes.php │ │ ├── AuditLoggingSettings.php │ │ ├── AuthorizedItemId.php │ │ ├── AutoComplete.php │ │ ├── AutoCompleteItem.php │ │ ├── AvatarInfo.php │ │ ├── BabelMessageProps.php │ │ ├── BabelPlaceholderMetadata.php │ │ ├── BooleanOperatorOptions.php │ │ ├── BooleanPropertyOptions.php │ │ ├── BorderStyle.php │ │ ├── BotInfo.php │ │ ├── BotMessageMetadata.php │ │ ├── BotResponse.php │ │ ├── BroadcastAccess.php │ │ ├── BroadcastSessionInfo.php │ │ ├── BroadcastStats.php │ │ ├── Button.php │ │ ├── CalendarClientActionMarkup.php │ │ ├── CalendarEventMetadata.php │ │ ├── CallInfo.php │ │ ├── CallSettings.php │ │ ├── CapTokenHolderProto.php │ │ ├── Card.php │ │ ├── CardAction.php │ │ ├── CardCapabilityMetadata.php │ │ ├── CardHeader.php │ │ ├── CaribouAttributeValue.php │ │ ├── ChatClientActionMarkup.php │ │ ├── ChatConfig.php │ │ ├── ChatConserverDynamitePlaceholderMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataAttachmentMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataBotMessageMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataCalendarEventMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataDeleteMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataEditMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataTasksMetadata.php │ │ ├── ChatConserverDynamitePlaceholderMetadataVideoCallMetadata.php │ │ ├── ChatConserverMessageContent.php │ │ ├── ChatContentExtension.php │ │ ├── ChatProto.php │ │ ├── CheckAccessResponse.php │ │ ├── CircleProto.php │ │ ├── ClientContext.php │ │ ├── CloudPrincipalProto.php │ │ ├── ClusterInfo.php │ │ ├── CoActivity.php │ │ ├── Collaboration.php │ │ ├── Color.php │ │ ├── CommunalLabelTag.php │ │ ├── CompositeFilter.php │ │ ├── ConsentedAppUnfurlMetadata.php │ │ ├── ContactGroupProto.php │ │ ├── ContentReport.php │ │ ├── ContentReportJustification.php │ │ ├── ContentReportSummary.php │ │ ├── ContextAttribute.php │ │ ├── ContextualAddOnMarkup.php │ │ ├── CseInfo.php │ │ ├── CustomEmoji.php │ │ ├── CustomEmojiMetadata.php │ │ ├── CustomFunctionReturnValueMarkup.php │ │ ├── CustomerId.php │ │ ├── CustomerIndexStats.php │ │ ├── CustomerQueryStats.php │ │ ├── CustomerSearchApplicationStats.php │ │ ├── CustomerSessionStats.php │ │ ├── CustomerSettings.php │ │ ├── CustomerUserStats.php │ │ ├── DataLossPreventionMetadata.php │ │ ├── DataSource.php │ │ ├── DataSourceIndexStats.php │ │ ├── DataSourceRestriction.php │ │ ├── Date.php │ │ ├── DateOperatorOptions.php │ │ ├── DatePropertyOptions.php │ │ ├── DateTimePicker.php │ │ ├── DateValues.php │ │ ├── DebugOptions.php │ │ ├── DeepLinkData.php │ │ ├── DeleteMetadata.php │ │ ├── DeleteQueueItemsRequest.php │ │ ├── DeliveryMedium.php │ │ ├── DisplayedProperty.php │ │ ├── Divider.php │ │ ├── DlpScanSummary.php │ │ ├── DmId.php │ │ ├── DocumentInfo.php │ │ ├── DoubleOperatorOptions.php │ │ ├── DoublePropertyOptions.php │ │ ├── DoubleValues.php │ │ ├── DriveClientActionMarkup.php │ │ ├── DriveFollowUpRestrict.php │ │ ├── DriveLocationRestrict.php │ │ ├── DriveMetadata.php │ │ ├── DriveMimeTypeRestrict.php │ │ ├── DriveTimeSpanRestrict.php │ │ ├── DynamiteMessagesScoringInfo.php │ │ ├── DynamitePlaceholderMetadata.php │ │ ├── DynamiteSpacesScoringInfo.php │ │ ├── EditMetadata.php │ │ ├── EditorClientActionMarkup.php │ │ ├── EmailAddress.php │ │ ├── EmailOwnerProto.php │ │ ├── EmbedClientItem.php │ │ ├── Emoji.php │ │ ├── EnumOperatorOptions.php │ │ ├── EnumPropertyOptions.php │ │ ├── EnumValuePair.php │ │ ├── EnumValues.php │ │ ├── ErrorInfo.php │ │ ├── ErrorMessage.php │ │ ├── EventAnnotation.php │ │ ├── EventProto.php │ │ ├── FacetBucket.php │ │ ├── FacetOptions.php │ │ ├── FacetResult.php │ │ ├── FieldViolation.php │ │ ├── Filter.php │ │ ├── FilterCreated.php │ │ ├── FilterDeleted.php │ │ ├── FilterOptions.php │ │ ├── FilterUpdate.php │ │ ├── FixedFooter.php │ │ ├── Folder.php │ │ ├── FolderAttribute.php │ │ ├── FormAction.php │ │ ├── FormatMetadata.php │ │ ├── Formatting.php │ │ ├── FreshnessOptions.php │ │ ├── FuseboxItem.php │ │ ├── FuseboxItemThreadMatchInfo.php │ │ ├── FuseboxPrefUpdatePreState.php │ │ ├── GSuitePrincipal.php │ │ ├── GaiaGroupProto.php │ │ ├── GaiaUserProto.php │ │ ├── GatewayAccess.php │ │ ├── GatewaySipAccess.php │ │ ├── GetCustomerIndexStatsResponse.php │ │ ├── GetCustomerQueryStatsResponse.php │ │ ├── GetCustomerSearchApplicationStatsResponse.php │ │ ├── GetCustomerSessionStatsResponse.php │ │ ├── GetCustomerUserStatsResponse.php │ │ ├── GetDataSourceIndexStatsResponse.php │ │ ├── GetSearchApplicationQueryStatsResponse.php │ │ ├── GetSearchApplicationSessionStatsResponse.php │ │ ├── GetSearchApplicationUserStatsResponse.php │ │ ├── GmailClientActionMarkup.php │ │ ├── GoogleChatConfig.php │ │ ├── GoogleChatV1ContextualAddOnMarkup.php │ │ ├── GoogleChatV1ContextualAddOnMarkupCard.php │ │ ├── GoogleChatV1ContextualAddOnMarkupCardCardAction.php │ │ ├── GoogleChatV1ContextualAddOnMarkupCardCardHeader.php │ │ ├── GoogleChatV1ContextualAddOnMarkupCardSection.php │ │ ├── GoogleChatV1WidgetMarkup.php │ │ ├── GoogleChatV1WidgetMarkupButton.php │ │ ├── GoogleChatV1WidgetMarkupFormAction.php │ │ ├── GoogleChatV1WidgetMarkupFormActionActionParameter.php │ │ ├── GoogleChatV1WidgetMarkupImage.php │ │ ├── GoogleChatV1WidgetMarkupImageButton.php │ │ ├── GoogleChatV1WidgetMarkupKeyValue.php │ │ ├── GoogleChatV1WidgetMarkupOnClick.php │ │ ├── GoogleChatV1WidgetMarkupOpenLink.php │ │ ├── GoogleChatV1WidgetMarkupTextButton.php │ │ ├── GoogleChatV1WidgetMarkupTextParagraph.php │ │ ├── GoogleDocsMetadata.php │ │ ├── GoogleDocsResultInfo.php │ │ ├── Grid.php │ │ ├── GridItem.php │ │ ├── GroupDetailsUpdatedMetadata.php │ │ ├── GroupId.php │ │ ├── GroupLinkSharingModificationEvent.php │ │ ├── GroupRetentionSettingsUpdatedMetaData.php │ │ ├── GsuiteIntegrationMetadata.php │ │ ├── HangoutEvent.php │ │ ├── HangoutVideoEventMetadata.php │ │ ├── HashtagData.php │ │ ├── History.php │ │ ├── HistoryRecord.php │ │ ├── HostAppActionMarkup.php │ │ ├── HostProto.php │ │ ├── HtmlOperatorOptions.php │ │ ├── HtmlPropertyOptions.php │ │ ├── HtmlValues.php │ │ ├── IconImage.php │ │ ├── Id.php │ │ ├── Image.php │ │ ├── ImageButton.php │ │ ├── ImageComponent.php │ │ ├── ImageCropStyle.php │ │ ├── ImageKeyValue.php │ │ ├── ImapSessionContext.php │ │ ├── ImapSyncDelete.php │ │ ├── ImapUidsReassign.php │ │ ├── ImapUpdate.php │ │ ├── ImapsyncFolderAttributeFolderMessage.php │ │ ├── ImapsyncFolderAttributeFolderMessageFlags.php │ │ ├── IncomingWebhookChangedMetadata.php │ │ ├── IndexItemOptions.php │ │ ├── IndexItemRequest.php │ │ ├── InitializeCustomerRequest.php │ │ ├── InsertContent.php │ │ ├── IntegerFacetingOptions.php │ │ ├── IntegerOperatorOptions.php │ │ ├── IntegerPropertyOptions.php │ │ ├── IntegerValues.php │ │ ├── IntegrationConfigMutation.php │ │ ├── IntegrationConfigUpdatedMetadata.php │ │ ├── Interaction.php │ │ ├── InteractionData.php │ │ ├── InviteAcceptedEvent.php │ │ ├── InviteeInfo.php │ │ ├── Item.php │ │ ├── ItemAcl.php │ │ ├── ItemContent.php │ │ ├── ItemCountByStatus.php │ │ ├── ItemMetadata.php │ │ ├── ItemParts.php │ │ ├── ItemStatus.php │ │ ├── ItemStructuredData.php │ │ ├── ItemThread.php │ │ ├── JobsettedServerSpec.php │ │ ├── KeyValue.php │ │ ├── LabelAdded.php │ │ ├── LabelCreated.php │ │ ├── LabelDeleted.php │ │ ├── LabelRemoved.php │ │ ├── LabelRenamed.php │ │ ├── LabelUpdate.php │ │ ├── LabelUpdated.php │ │ ├── Labels.php │ │ ├── LanguageConfig.php │ │ ├── LdapGroupProto.php │ │ ├── LdapUserProto.php │ │ ├── LegacyUploadMetadata.php │ │ ├── LinkData.php │ │ ├── ListDataSourceResponse.php │ │ ├── ListItemNamesForUnmappedIdentityResponse.php │ │ ├── ListItemsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListQuerySourcesResponse.php │ │ ├── ListSearchApplicationsResponse.php │ │ ├── ListUnmappedIdentitiesResponse.php │ │ ├── MatchInfo.php │ │ ├── MatchRange.php │ │ ├── MdbGroupProto.php │ │ ├── MdbUserProto.php │ │ ├── Media.php │ │ ├── MeetingSpace.php │ │ ├── Member.php │ │ ├── MemberId.php │ │ ├── MembershipChangeEvent.php │ │ ├── MembershipChangedMetadata.php │ │ ├── Menu.php │ │ ├── MenuItem.php │ │ ├── Message.php │ │ ├── MessageAdded.php │ │ ├── MessageAttributes.php │ │ ├── MessageContent.php │ │ ├── MessageDeleted.php │ │ ├── MessageId.php │ │ ├── MessageInfo.php │ │ ├── MessageParentId.php │ │ ├── MessageProps.php │ │ ├── MessageSet.php │ │ ├── Metadata.php │ │ ├── Metaline.php │ │ ├── MultiKey.php │ │ ├── Name.php │ │ ├── NamedProperty.php │ │ ├── OAuthConsumerProto.php │ │ ├── ObjectDefinition.php │ │ ├── ObjectDisplayOptions.php │ │ ├── ObjectOptions.php │ │ ├── ObjectPropertyOptions.php │ │ ├── ObjectValues.php │ │ ├── OnClick.php │ │ ├── OpenCreatedDraftActionMarkup.php │ │ ├── OpenLink.php │ │ ├── Operation.php │ │ ├── OsVersion.php │ │ ├── OtrChatMessageEvent.php │ │ ├── OtrModificationEvent.php │ │ ├── PackagingServiceClient.php │ │ ├── PaygateInfo.php │ │ ├── PeopleSuggestion.php │ │ ├── Person.php │ │ ├── PersonalLabelTag.php │ │ ├── PhoneAccess.php │ │ ├── PhoneNumber.php │ │ ├── Photo.php │ │ ├── PinnedItemId.php │ │ ├── PollItemsRequest.php │ │ ├── PollItemsResponse.php │ │ ├── PossiblyTrimmedModel.php │ │ ├── PostiniUserProto.php │ │ ├── PreState.php │ │ ├── PrefDeleted.php │ │ ├── PrefUpdate.php │ │ ├── PrefWritten.php │ │ ├── Presenter.php │ │ ├── Principal.php │ │ ├── PrincipalProto.php │ │ ├── PrivateMessageInfo.php │ │ ├── ProcessingError.php │ │ ├── PropertyDefinition.php │ │ ├── PropertyDisplayOptions.php │ │ ├── Provenance.php │ │ ├── PushItem.php │ │ ├── PushItemRequest.php │ │ ├── QueryCountByStatus.php │ │ ├── QueryInterpretation.php │ │ ├── QueryInterpretationConfig.php │ │ ├── QueryInterpretationOptions.php │ │ ├── QueryItem.php │ │ ├── QueryOperator.php │ │ ├── QuerySource.php │ │ ├── QuerySuggestion.php │ │ ├── QuotedMessageMetadata.php │ │ ├── Rank.php │ │ ├── RbacRoleProto.php │ │ ├── RbacSubjectProto.php │ │ ├── ReactionInfo.php │ │ ├── ReadReceiptsSettingsUpdatedMetadata.php │ │ ├── Recipient.php │ │ ├── RecordingEvent.php │ │ ├── RecordingInfo.php │ │ ├── RecordingSessionInfo.php │ │ ├── Reference.php │ │ ├── References.php │ │ ├── RenameEvent.php │ │ ├── RepositoryError.php │ │ ├── RequestFileScope.php │ │ ├── RequestFileScopeForActiveDocument.php │ │ ├── RequestOptions.php │ │ ├── RequiredMessageFeaturesMetadata.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 │ │ │ └── V1.php │ │ ├── ResourceRoleProto.php │ │ ├── ResponseDebugInfo.php │ │ ├── RestrictItem.php │ │ ├── ResultCounts.php │ │ ├── ResultDebugInfo.php │ │ ├── ResultDisplayField.php │ │ ├── ResultDisplayLine.php │ │ ├── ResultDisplayMetadata.php │ │ ├── RetrievalImportance.php │ │ ├── RoomRenameMetadata.php │ │ ├── RoomUpdatedMetadata.php │ │ ├── Roster.php │ │ ├── RosterId.php │ │ ├── RpcOptions.php │ │ ├── SafeUrlProto.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 │ │ ├── Section.php │ │ ├── Segment.php │ │ ├── SelectionControl.php │ │ ├── SelectionItem.php │ │ ├── SessionContext.php │ │ ├── SessionEvent.php │ │ ├── SessionStateInfo.php │ │ ├── Settings.php │ │ ├── ShareScope.php │ │ ├── SheetsClientActionMarkup.php │ │ ├── SigningKeyPossessorProto.php │ │ ├── SimpleSecretHolderProto.php │ │ ├── SimpleSecretLabelProto.php │ │ ├── SlashCommandMetadata.php │ │ ├── Snippet.php │ │ ├── SocialCommonAttachmentAttachment.php │ │ ├── SocialGraphNodeProto.php │ │ ├── SortOptions.php │ │ ├── Source.php │ │ ├── SourceConfig.php │ │ ├── SourceCrowdingConfig.php │ │ ├── SourceResultCount.php │ │ ├── SourceScoringConfig.php │ │ ├── SpaceId.php │ │ ├── SpaceInfo.php │ │ ├── SpellResult.php │ │ ├── SquareProto.php │ │ ├── StartUploadItemRequest.php │ │ ├── Status.php │ │ ├── StoredParticipantId.php │ │ ├── StreamViewerStats.php │ │ ├── StreamingSessionInfo.php │ │ ├── StructuredDataObject.php │ │ ├── StructuredResult.php │ │ ├── SuggestRequest.php │ │ ├── SuggestResponse.php │ │ ├── SuggestResult.php │ │ ├── SupportUrls.php │ │ ├── SwitchWidget.php │ │ ├── TaskActionMarkup.php │ │ ├── TasksMetadata.php │ │ ├── TextButton.php │ │ ├── TextField.php │ │ ├── TextKeyValue.php │ │ ├── TextOperatorOptions.php │ │ ├── TextParagraph.php │ │ ├── TextPropertyOptions.php │ │ ├── TextValues.php │ │ ├── ThreadKeySet.php │ │ ├── ThreadUpdate.php │ │ ├── TimestampOperatorOptions.php │ │ ├── TimestampPropertyOptions.php │ │ ├── TimestampValues.php │ │ ├── TombstoneMetadata.php │ │ ├── Toolbar.php │ │ ├── TopicId.php │ │ ├── TopicState.php │ │ ├── TopicStateUpdate.php │ │ ├── TransactionContext.php │ │ ├── TransactionDebugInfo.php │ │ ├── TranscriptionSessionInfo.php │ │ ├── TransientData.php │ │ ├── Trigger.php │ │ ├── TriggerAction.php │ │ ├── TriggerKey.php │ │ ├── Triggers.php │ │ ├── TrustedResourceUrlProto.php │ │ ├── TypeInfo.php │ │ ├── UniversalPhoneAccess.php │ │ ├── UnmappedIdentity.php │ │ ├── UnreserveItemsRequest.php │ │ ├── UpdateBccRecipients.php │ │ ├── UpdateBody.php │ │ ├── UpdateCcRecipients.php │ │ ├── UpdateDataSourceRequest.php │ │ ├── UpdateDraftActionMarkup.php │ │ ├── UpdateSchemaRequest.php │ │ ├── UpdateSubject.php │ │ ├── UpdateToRecipients.php │ │ ├── UploadItemRef.php │ │ ├── UploadMetadata.php │ │ ├── UrlMetadata.php │ │ ├── User.php │ │ ├── UserDisplayInfo.php │ │ ├── UserId.php │ │ ├── UserInfo.php │ │ ├── UserMentionData.php │ │ ├── UserMentionMetadata.php │ │ ├── VPCSettings.php │ │ ├── Value.php │ │ ├── ValueFilter.php │ │ ├── VideoCallMetadata.php │ │ ├── VideoInfo.php │ │ ├── VoicePhoneNumber.php │ │ ├── VoicePhoneNumberI18nData.php │ │ ├── WhiteboardInfo.php │ │ ├── WidgetMarkup.php │ │ ├── WonderCardDelete.php │ │ ├── WonderMessageMapping.php │ │ ├── WrappedResourceKey.php │ │ ├── YouTubeBroadcastSessionInfo.php │ │ ├── YouTubeBroadcastStats.php │ │ ├── YouTubeLiveBroadcastEvent.php │ │ ├── YoutubeMetadata.php │ │ ├── YoutubeUserProto.php │ │ └── ZwiebackSessionProto.php │ │ ├── CloudSecurityToken.php │ │ ├── CloudSecurityToken │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIdentityStsV1AccessBoundary.php │ │ ├── GoogleIdentityStsV1AccessBoundaryRule.php │ │ ├── GoogleIdentityStsV1ExchangeOauthTokenRequest.php │ │ ├── GoogleIdentityStsV1ExchangeOauthTokenResponse.php │ │ ├── GoogleIdentityStsV1ExchangeTokenRequest.php │ │ ├── GoogleIdentityStsV1ExchangeTokenResponse.php │ │ ├── GoogleIdentityStsV1IntrospectTokenRequest.php │ │ ├── GoogleIdentityStsV1IntrospectTokenResponse.php │ │ ├── GoogleIdentityStsV1Options.php │ │ ├── GoogleIdentityStsV1betaAccessBoundary.php │ │ ├── GoogleIdentityStsV1betaAccessBoundaryRule.php │ │ ├── GoogleIdentityStsV1betaOptions.php │ │ ├── GoogleTypeExpr.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 │ │ ├── CloudSupport.php │ │ ├── CloudSupport │ │ ├── Actor.php │ │ ├── Attachment.php │ │ ├── Blobstore2Info.php │ │ ├── CaseClassification.php │ │ ├── CloseCaseRequest.php │ │ ├── CloudsupportCase.php │ │ ├── Comment.php │ │ ├── CompositeMedia.php │ │ ├── ContentTypeInfo.php │ │ ├── CreateAttachmentRequest.php │ │ ├── DiffChecksumsResponse.php │ │ ├── DiffDownloadResponse.php │ │ ├── DiffUploadRequest.php │ │ ├── DiffUploadResponse.php │ │ ├── DiffVersionResponse.php │ │ ├── DownloadParameters.php │ │ ├── EscalateCaseRequest.php │ │ ├── Escalation.php │ │ ├── ListAttachmentsResponse.php │ │ ├── ListCasesResponse.php │ │ ├── ListCommentsResponse.php │ │ ├── Media.php │ │ ├── ObjectId.php │ │ ├── Resource │ │ │ ├── Attachments.php │ │ │ ├── CaseClassifications.php │ │ │ ├── Cases.php │ │ │ ├── CasesAttachments.php │ │ │ ├── CasesComments.php │ │ │ ├── Customers.php │ │ │ ├── CustomersCases.php │ │ │ ├── CustomersCasesComments.php │ │ │ ├── Media.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsCases.php │ │ │ ├── OrganizationsCasesComments.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsCases.php │ │ │ └── ProjectsCasesComments.php │ │ ├── SearchCaseClassificationsResponse.php │ │ ├── SearchCasesResponse.php │ │ └── WorkflowOperationMetadata.php │ │ ├── CloudTalentSolution.php │ │ ├── CloudTalentSolution │ │ ├── ApplicationInfo.php │ │ ├── BatchCreateJobsRequest.php │ │ ├── BatchCreateJobsResponse.php │ │ ├── BatchDeleteJobsRequest.php │ │ ├── BatchDeleteJobsResponse.php │ │ ├── BatchOperationMetadata.php │ │ ├── BatchUpdateJobsRequest.php │ │ ├── BatchUpdateJobsResponse.php │ │ ├── ClientEvent.php │ │ ├── CommuteFilter.php │ │ ├── CommuteInfo.php │ │ ├── Company.php │ │ ├── CompanyDerivedInfo.php │ │ ├── CompensationEntry.php │ │ ├── CompensationFilter.php │ │ ├── CompensationInfo.php │ │ ├── CompensationRange.php │ │ ├── CompleteQueryResponse.php │ │ ├── CompletionResult.php │ │ ├── CustomAttribute.php │ │ ├── CustomRankingInfo.php │ │ ├── DeviceInfo.php │ │ ├── HistogramQuery.php │ │ ├── HistogramQueryResult.php │ │ ├── Job.php │ │ ├── JobDerivedInfo.php │ │ ├── JobEvent.php │ │ ├── JobQuery.php │ │ ├── JobResult.php │ │ ├── JobsEmpty.php │ │ ├── LatLng.php │ │ ├── ListCompaniesResponse.php │ │ ├── ListJobsResponse.php │ │ ├── ListTenantsResponse.php │ │ ├── Location.php │ │ ├── LocationFilter.php │ │ ├── MatchingJob.php │ │ ├── MendelDebugInput.php │ │ ├── Money.php │ │ ├── NamespacedDebugInput.php │ │ ├── Operation.php │ │ ├── PostalAddress.php │ │ ├── ProcessingOptions.php │ │ ├── RequestMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsOperations.php │ │ │ ├── ProjectsTenants.php │ │ │ ├── ProjectsTenantsClientEvents.php │ │ │ ├── ProjectsTenantsCompanies.php │ │ │ └── ProjectsTenantsJobs.php │ │ ├── ResponseMetadata.php │ │ ├── SearchJobsRequest.php │ │ ├── SearchJobsResponse.php │ │ ├── SpellingCorrection.php │ │ ├── Status.php │ │ ├── Tenant.php │ │ ├── TimeOfDay.php │ │ └── TimestampRange.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 │ │ ├── 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 │ │ ├── CloudWorkstations.php │ │ ├── CloudWorkstations │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── Container.php │ │ ├── CustomerEncryptionKey.php │ │ ├── Expr.php │ │ ├── GceConfidentialInstanceConfig.php │ │ ├── GceInstance.php │ │ ├── GceRegionalPersistentDisk.php │ │ ├── GceShieldedInstanceConfig.php │ │ ├── GenerateAccessTokenRequest.php │ │ ├── GenerateAccessTokenResponse.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── Host.php │ │ ├── ListOperationsResponse.php │ │ ├── ListUsableWorkstationConfigsResponse.php │ │ ├── ListUsableWorkstationsResponse.php │ │ ├── ListWorkstationClustersResponse.php │ │ ├── ListWorkstationConfigsResponse.php │ │ ├── ListWorkstationsResponse.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── PersistentDirectory.php │ │ ├── Policy.php │ │ ├── PrivateClusterConfig.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsWorkstationClusters.php │ │ │ ├── ProjectsLocationsWorkstationClustersWorkstationConfigs.php │ │ │ └── ProjectsLocationsWorkstationClustersWorkstationConfigsWorkstations.php │ │ ├── SetIamPolicyRequest.php │ │ ├── StartWorkstationRequest.php │ │ ├── Status.php │ │ ├── StopWorkstationRequest.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── Workstation.php │ │ ├── WorkstationCluster.php │ │ ├── WorkstationConfig.php │ │ └── WorkstationsEmpty.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 │ │ ├── Cloudchannel.php │ │ ├── Cloudchannel │ │ ├── GoogleCloudChannelV1ActivateEntitlementRequest.php │ │ ├── GoogleCloudChannelV1AdminUser.php │ │ ├── GoogleCloudChannelV1AssociationInfo.php │ │ ├── GoogleCloudChannelV1CancelEntitlementRequest.php │ │ ├── GoogleCloudChannelV1ChangeOfferRequest.php │ │ ├── GoogleCloudChannelV1ChangeParametersRequest.php │ │ ├── GoogleCloudChannelV1ChangeRenewalSettingsRequest.php │ │ ├── GoogleCloudChannelV1ChannelPartnerLink.php │ │ ├── GoogleCloudChannelV1ChannelPartnerRepricingConfig.php │ │ ├── GoogleCloudChannelV1CheckCloudIdentityAccountsExistRequest.php │ │ ├── GoogleCloudChannelV1CheckCloudIdentityAccountsExistResponse.php │ │ ├── GoogleCloudChannelV1CloudIdentityCustomerAccount.php │ │ ├── GoogleCloudChannelV1CloudIdentityInfo.php │ │ ├── GoogleCloudChannelV1Column.php │ │ ├── GoogleCloudChannelV1CommitmentSettings.php │ │ ├── GoogleCloudChannelV1ConditionalOverride.php │ │ ├── GoogleCloudChannelV1Constraints.php │ │ ├── GoogleCloudChannelV1ContactInfo.php │ │ ├── GoogleCloudChannelV1CreateEntitlementRequest.php │ │ ├── GoogleCloudChannelV1Customer.php │ │ ├── GoogleCloudChannelV1CustomerConstraints.php │ │ ├── GoogleCloudChannelV1CustomerEvent.php │ │ ├── GoogleCloudChannelV1CustomerRepricingConfig.php │ │ ├── GoogleCloudChannelV1DateRange.php │ │ ├── GoogleCloudChannelV1EduData.php │ │ ├── GoogleCloudChannelV1Entitlement.php │ │ ├── GoogleCloudChannelV1EntitlementEvent.php │ │ ├── GoogleCloudChannelV1FetchReportResultsRequest.php │ │ ├── GoogleCloudChannelV1FetchReportResultsResponse.php │ │ ├── GoogleCloudChannelV1ImportCustomerRequest.php │ │ ├── GoogleCloudChannelV1ListChannelPartnerLinksResponse.php │ │ ├── GoogleCloudChannelV1ListChannelPartnerRepricingConfigsResponse.php │ │ ├── GoogleCloudChannelV1ListCustomerRepricingConfigsResponse.php │ │ ├── GoogleCloudChannelV1ListCustomersResponse.php │ │ ├── GoogleCloudChannelV1ListEntitlementsResponse.php │ │ ├── GoogleCloudChannelV1ListOffersResponse.php │ │ ├── GoogleCloudChannelV1ListProductsResponse.php │ │ ├── GoogleCloudChannelV1ListPurchasableOffersResponse.php │ │ ├── GoogleCloudChannelV1ListPurchasableSkusResponse.php │ │ ├── GoogleCloudChannelV1ListReportsResponse.php │ │ ├── GoogleCloudChannelV1ListSkusResponse.php │ │ ├── GoogleCloudChannelV1ListSubscribersResponse.php │ │ ├── GoogleCloudChannelV1ListTransferableOffersRequest.php │ │ ├── GoogleCloudChannelV1ListTransferableOffersResponse.php │ │ ├── GoogleCloudChannelV1ListTransferableSkusRequest.php │ │ ├── GoogleCloudChannelV1ListTransferableSkusResponse.php │ │ ├── GoogleCloudChannelV1MarketingInfo.php │ │ ├── GoogleCloudChannelV1Media.php │ │ ├── GoogleCloudChannelV1Offer.php │ │ ├── GoogleCloudChannelV1OperationMetadata.php │ │ ├── GoogleCloudChannelV1Parameter.php │ │ ├── GoogleCloudChannelV1ParameterDefinition.php │ │ ├── GoogleCloudChannelV1PercentageAdjustment.php │ │ ├── GoogleCloudChannelV1Period.php │ │ ├── GoogleCloudChannelV1Plan.php │ │ ├── GoogleCloudChannelV1Price.php │ │ ├── GoogleCloudChannelV1PriceByResource.php │ │ ├── GoogleCloudChannelV1PricePhase.php │ │ ├── GoogleCloudChannelV1PriceTier.php │ │ ├── GoogleCloudChannelV1Product.php │ │ ├── GoogleCloudChannelV1ProvisionCloudIdentityRequest.php │ │ ├── GoogleCloudChannelV1ProvisionedService.php │ │ ├── GoogleCloudChannelV1PurchasableOffer.php │ │ ├── GoogleCloudChannelV1PurchasableSku.php │ │ ├── GoogleCloudChannelV1RegisterSubscriberRequest.php │ │ ├── GoogleCloudChannelV1RegisterSubscriberResponse.php │ │ ├── GoogleCloudChannelV1RenewalSettings.php │ │ ├── GoogleCloudChannelV1Report.php │ │ ├── GoogleCloudChannelV1ReportJob.php │ │ ├── GoogleCloudChannelV1ReportResultsMetadata.php │ │ ├── GoogleCloudChannelV1ReportStatus.php │ │ ├── GoogleCloudChannelV1ReportValue.php │ │ ├── GoogleCloudChannelV1RepricingAdjustment.php │ │ ├── GoogleCloudChannelV1RepricingCondition.php │ │ ├── GoogleCloudChannelV1RepricingConfig.php │ │ ├── GoogleCloudChannelV1RepricingConfigChannelPartnerGranularity.php │ │ ├── GoogleCloudChannelV1RepricingConfigEntitlementGranularity.php │ │ ├── GoogleCloudChannelV1Row.php │ │ ├── GoogleCloudChannelV1RunReportJobRequest.php │ │ ├── GoogleCloudChannelV1RunReportJobResponse.php │ │ ├── GoogleCloudChannelV1Sku.php │ │ ├── GoogleCloudChannelV1SkuGroupCondition.php │ │ ├── GoogleCloudChannelV1StartPaidServiceRequest.php │ │ ├── GoogleCloudChannelV1SubscriberEvent.php │ │ ├── GoogleCloudChannelV1SuspendEntitlementRequest.php │ │ ├── GoogleCloudChannelV1TransferEligibility.php │ │ ├── GoogleCloudChannelV1TransferEntitlementsRequest.php │ │ ├── GoogleCloudChannelV1TransferEntitlementsResponse.php │ │ ├── GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.php │ │ ├── GoogleCloudChannelV1TransferableOffer.php │ │ ├── GoogleCloudChannelV1TransferableSku.php │ │ ├── GoogleCloudChannelV1TrialSettings.php │ │ ├── GoogleCloudChannelV1UnregisterSubscriberRequest.php │ │ ├── GoogleCloudChannelV1UnregisterSubscriberResponse.php │ │ ├── GoogleCloudChannelV1UpdateChannelPartnerLinkRequest.php │ │ ├── GoogleCloudChannelV1Value.php │ │ ├── GoogleCloudChannelV1alpha1AssociationInfo.php │ │ ├── GoogleCloudChannelV1alpha1ChannelPartnerEvent.php │ │ ├── GoogleCloudChannelV1alpha1Column.php │ │ ├── GoogleCloudChannelV1alpha1CommitmentSettings.php │ │ ├── GoogleCloudChannelV1alpha1CustomerEvent.php │ │ ├── GoogleCloudChannelV1alpha1DateRange.php │ │ ├── GoogleCloudChannelV1alpha1Entitlement.php │ │ ├── GoogleCloudChannelV1alpha1EntitlementEvent.php │ │ ├── GoogleCloudChannelV1alpha1OperationMetadata.php │ │ ├── GoogleCloudChannelV1alpha1Parameter.php │ │ ├── GoogleCloudChannelV1alpha1Period.php │ │ ├── GoogleCloudChannelV1alpha1ProvisionedService.php │ │ ├── GoogleCloudChannelV1alpha1RenewalSettings.php │ │ ├── GoogleCloudChannelV1alpha1Report.php │ │ ├── GoogleCloudChannelV1alpha1ReportJob.php │ │ ├── GoogleCloudChannelV1alpha1ReportResultsMetadata.php │ │ ├── GoogleCloudChannelV1alpha1ReportStatus.php │ │ ├── GoogleCloudChannelV1alpha1RunReportJobResponse.php │ │ ├── GoogleCloudChannelV1alpha1SubscriberEvent.php │ │ ├── GoogleCloudChannelV1alpha1TransferEntitlementsResponse.php │ │ ├── GoogleCloudChannelV1alpha1TrialSettings.php │ │ ├── GoogleCloudChannelV1alpha1Value.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDate.php │ │ ├── GoogleTypeDateTime.php │ │ ├── GoogleTypeDecimal.php │ │ ├── GoogleTypeMoney.php │ │ ├── GoogleTypePostalAddress.php │ │ ├── GoogleTypeTimeZone.php │ │ └── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsChannelPartnerLinks.php │ │ │ ├── AccountsChannelPartnerLinksChannelPartnerRepricingConfigs.php │ │ │ ├── AccountsChannelPartnerLinksCustomers.php │ │ │ ├── AccountsCustomers.php │ │ │ ├── AccountsCustomersCustomerRepricingConfigs.php │ │ │ ├── AccountsCustomersEntitlements.php │ │ │ ├── AccountsOffers.php │ │ │ ├── AccountsReportJobs.php │ │ │ ├── AccountsReports.php │ │ │ ├── Operations.php │ │ │ ├── Products.php │ │ │ └── ProductsSkus.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 │ │ ├── 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 │ │ ├── AdvancedMachineFeatures.php │ │ ├── AliasIpRange.php │ │ ├── AllocationResourceStatus.php │ │ ├── AllocationResourceStatusSpecificSKUAllocation.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 │ │ ├── AutoscalingPolicyScalingSchedule.php │ │ ├── Backend.php │ │ ├── BackendBucket.php │ │ ├── BackendBucketCdnPolicy.php │ │ ├── BackendBucketCdnPolicyBypassCacheOnRequestHeader.php │ │ ├── BackendBucketCdnPolicyCacheKeyPolicy.php │ │ ├── BackendBucketCdnPolicyNegativeCachingPolicy.php │ │ ├── BackendBucketList.php │ │ ├── BackendBucketListWarning.php │ │ ├── BackendBucketListWarningData.php │ │ ├── BackendService.php │ │ ├── BackendServiceAggregatedList.php │ │ ├── BackendServiceAggregatedListWarning.php │ │ ├── BackendServiceAggregatedListWarningData.php │ │ ├── BackendServiceCdnPolicy.php │ │ ├── BackendServiceCdnPolicyBypassCacheOnRequestHeader.php │ │ ├── BackendServiceCdnPolicyNegativeCachingPolicy.php │ │ ├── BackendServiceConnectionTrackingPolicy.php │ │ ├── BackendServiceFailoverPolicy.php │ │ ├── BackendServiceGroupHealth.php │ │ ├── BackendServiceIAP.php │ │ ├── BackendServiceList.php │ │ ├── BackendServiceListWarning.php │ │ ├── BackendServiceListWarningData.php │ │ ├── BackendServiceLocalityLoadBalancingPolicyConfig.php │ │ ├── BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy.php │ │ ├── BackendServiceLocalityLoadBalancingPolicyConfigPolicy.php │ │ ├── BackendServiceLogConfig.php │ │ ├── BackendServiceReference.php │ │ ├── BackendServicesScopedList.php │ │ ├── BackendServicesScopedListWarning.php │ │ ├── BackendServicesScopedListWarningData.php │ │ ├── BfdPacket.php │ │ ├── BfdStatus.php │ │ ├── BfdStatusPacketCounts.php │ │ ├── Binding.php │ │ ├── BulkInsertInstanceResource.php │ │ ├── BulkInsertInstanceResourcePerInstanceProperties.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 │ │ ├── DiskParams.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 │ │ ├── ErrorInfo.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 │ │ ├── FirewallPoliciesListAssociationsResponse.php │ │ ├── FirewallPolicy.php │ │ ├── FirewallPolicyAssociation.php │ │ ├── FirewallPolicyList.php │ │ ├── FirewallPolicyListWarning.php │ │ ├── FirewallPolicyListWarningData.php │ │ ├── FirewallPolicyRule.php │ │ ├── FirewallPolicyRuleMatcher.php │ │ ├── FirewallPolicyRuleMatcherLayer4Config.php │ │ ├── FirewallPolicyRuleSecureTag.php │ │ ├── FixedOrPercent.php │ │ ├── ForwardingRule.php │ │ ├── ForwardingRuleAggregatedList.php │ │ ├── ForwardingRuleAggregatedListWarning.php │ │ ├── ForwardingRuleAggregatedListWarningData.php │ │ ├── ForwardingRuleList.php │ │ ├── ForwardingRuleListWarning.php │ │ ├── ForwardingRuleListWarningData.php │ │ ├── ForwardingRuleReference.php │ │ ├── ForwardingRuleServiceDirectoryRegistration.php │ │ ├── ForwardingRulesScopedList.php │ │ ├── ForwardingRulesScopedListWarning.php │ │ ├── ForwardingRulesScopedListWarningData.php │ │ ├── GRPCHealthCheck.php │ │ ├── GlobalNetworkEndpointGroupsAttachEndpointsRequest.php │ │ ├── GlobalNetworkEndpointGroupsDetachEndpointsRequest.php │ │ ├── GlobalOrganizationSetPolicyRequest.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 │ │ ├── Help.php │ │ ├── HelpLink.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 │ │ ├── ImageFamilyView.php │ │ ├── ImageList.php │ │ ├── ImageListWarning.php │ │ ├── ImageListWarningData.php │ │ ├── ImageRawDisk.php │ │ ├── InitialStateConfig.php │ │ ├── Instance.php │ │ ├── InstanceAggregatedList.php │ │ ├── InstanceAggregatedListWarning.php │ │ ├── InstanceAggregatedListWarningData.php │ │ ├── InstanceConsumptionData.php │ │ ├── InstanceConsumptionInfo.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 │ │ ├── InstanceParams.php │ │ ├── InstanceProperties.php │ │ ├── InstanceReference.php │ │ ├── InstanceTemplate.php │ │ ├── InstanceTemplateAggregatedList.php │ │ ├── InstanceTemplateAggregatedListWarning.php │ │ ├── InstanceTemplateAggregatedListWarningData.php │ │ ├── InstanceTemplateList.php │ │ ├── InstanceTemplateListWarning.php │ │ ├── InstanceTemplateListWarningData.php │ │ ├── InstanceTemplatesScopedList.php │ │ ├── InstanceTemplatesScopedListWarning.php │ │ ├── InstanceTemplatesScopedListWarningData.php │ │ ├── InstanceWithNamedPorts.php │ │ ├── InstancesAddResourcePoliciesRequest.php │ │ ├── InstancesGetEffectiveFirewallsResponse.php │ │ ├── InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php │ │ ├── InstancesRemoveResourcePoliciesRequest.php │ │ ├── InstancesScopedList.php │ │ ├── InstancesScopedListWarning.php │ │ ├── InstancesScopedListWarningData.php │ │ ├── InstancesSetLabelsRequest.php │ │ ├── InstancesSetMachineResourcesRequest.php │ │ ├── InstancesSetMachineTypeRequest.php │ │ ├── InstancesSetMinCpuPlatformRequest.php │ │ ├── InstancesSetNameRequest.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 │ │ ├── LocalDisk.php │ │ ├── LocalizedMessage.php │ │ ├── LocationPolicy.php │ │ ├── LocationPolicyLocation.php │ │ ├── LocationPolicyLocationConstraints.php │ │ ├── LogConfig.php │ │ ├── LogConfigCloudAuditOptions.php │ │ ├── LogConfigCounterOptions.php │ │ ├── LogConfigCounterOptionsCustomField.php │ │ ├── LogConfigDataAccessOptions.php │ │ ├── MachineImage.php │ │ ├── MachineImageList.php │ │ ├── MachineImageListWarning.php │ │ ├── MachineImageListWarningData.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 │ │ ├── ManagedInstanceLastAttemptErrorsErrorsErrorDetails.php │ │ ├── ManagedInstanceVersion.php │ │ ├── Metadata.php │ │ ├── MetadataFilter.php │ │ ├── MetadataFilterLabelMatch.php │ │ ├── MetadataItems.php │ │ ├── NamedPort.php │ │ ├── Network.php │ │ ├── NetworkAttachment.php │ │ ├── NetworkAttachmentAggregatedList.php │ │ ├── NetworkAttachmentAggregatedListWarning.php │ │ ├── NetworkAttachmentAggregatedListWarningData.php │ │ ├── NetworkAttachmentConnectedEndpoint.php │ │ ├── NetworkAttachmentList.php │ │ ├── NetworkAttachmentListWarning.php │ │ ├── NetworkAttachmentListWarningData.php │ │ ├── NetworkAttachmentsScopedList.php │ │ ├── NetworkAttachmentsScopedListWarning.php │ │ ├── NetworkAttachmentsScopedListWarningData.php │ │ ├── NetworkEdgeSecurityService.php │ │ ├── NetworkEdgeSecurityServiceAggregatedList.php │ │ ├── NetworkEdgeSecurityServiceAggregatedListWarning.php │ │ ├── NetworkEdgeSecurityServiceAggregatedListWarningData.php │ │ ├── NetworkEdgeSecurityServicesScopedList.php │ │ ├── NetworkEdgeSecurityServicesScopedListWarning.php │ │ ├── NetworkEdgeSecurityServicesScopedListWarningData.php │ │ ├── NetworkEndpoint.php │ │ ├── NetworkEndpointGroup.php │ │ ├── NetworkEndpointGroupAggregatedList.php │ │ ├── NetworkEndpointGroupAggregatedListWarning.php │ │ ├── NetworkEndpointGroupAggregatedListWarningData.php │ │ ├── NetworkEndpointGroupAppEngine.php │ │ ├── NetworkEndpointGroupCloudFunction.php │ │ ├── NetworkEndpointGroupCloudRun.php │ │ ├── NetworkEndpointGroupList.php │ │ ├── NetworkEndpointGroupListWarning.php │ │ ├── NetworkEndpointGroupListWarningData.php │ │ ├── NetworkEndpointGroupPscData.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 │ │ ├── NetworkPerformanceConfig.php │ │ ├── NetworkRoutingConfig.php │ │ ├── NetworksAddPeeringRequest.php │ │ ├── NetworksGetEffectiveFirewallsResponse.php │ │ ├── NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.php │ │ ├── NetworksRemovePeeringRequest.php │ │ ├── NetworksUpdatePeeringRequest.php │ │ ├── NodeGroup.php │ │ ├── NodeGroupAggregatedList.php │ │ ├── NodeGroupAggregatedListWarning.php │ │ ├── NodeGroupAggregatedListWarningData.php │ │ ├── NodeGroupAutoscalingPolicy.php │ │ ├── NodeGroupList.php │ │ ├── NodeGroupListWarning.php │ │ ├── NodeGroupListWarningData.php │ │ ├── NodeGroupMaintenanceWindow.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 │ │ ├── OperationErrorErrorsErrorDetails.php │ │ ├── OperationList.php │ │ ├── OperationListWarning.php │ │ ├── OperationListWarningData.php │ │ ├── OperationWarnings.php │ │ ├── OperationWarningsData.php │ │ ├── OperationsScopedList.php │ │ ├── OperationsScopedListWarning.php │ │ ├── OperationsScopedListWarningData.php │ │ ├── OutlierDetection.php │ │ ├── PacketIntervals.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 │ │ ├── PublicAdvertisedPrefix.php │ │ ├── PublicAdvertisedPrefixList.php │ │ ├── PublicAdvertisedPrefixListWarning.php │ │ ├── PublicAdvertisedPrefixListWarningData.php │ │ ├── PublicAdvertisedPrefixPublicDelegatedPrefix.php │ │ ├── PublicDelegatedPrefix.php │ │ ├── PublicDelegatedPrefixAggregatedList.php │ │ ├── PublicDelegatedPrefixAggregatedListWarning.php │ │ ├── PublicDelegatedPrefixAggregatedListWarningData.php │ │ ├── PublicDelegatedPrefixList.php │ │ ├── PublicDelegatedPrefixListWarning.php │ │ ├── PublicDelegatedPrefixListWarningData.php │ │ ├── PublicDelegatedPrefixPublicDelegatedSubPrefix.php │ │ ├── PublicDelegatedPrefixesScopedList.php │ │ ├── PublicDelegatedPrefixesScopedListWarning.php │ │ ├── PublicDelegatedPrefixesScopedListWarningData.php │ │ ├── Quota.php │ │ ├── QuotaExceededInfo.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 │ │ ├── RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.php │ │ ├── RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.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 │ │ │ ├── FirewallPolicies.php │ │ │ ├── Firewalls.php │ │ │ ├── ForwardingRules.php │ │ │ ├── GlobalAddresses.php │ │ │ ├── GlobalForwardingRules.php │ │ │ ├── GlobalNetworkEndpointGroups.php │ │ │ ├── GlobalOperations.php │ │ │ ├── GlobalOrganizationOperations.php │ │ │ ├── GlobalPublicDelegatedPrefixes.php │ │ │ ├── HealthChecks.php │ │ │ ├── HttpHealthChecks.php │ │ │ ├── HttpsHealthChecks.php │ │ │ ├── ImageFamilyViews.php │ │ │ ├── Images.php │ │ │ ├── InstanceGroupManagers.php │ │ │ ├── InstanceGroups.php │ │ │ ├── InstanceTemplates.php │ │ │ ├── Instances.php │ │ │ ├── InterconnectAttachments.php │ │ │ ├── InterconnectLocations.php │ │ │ ├── Interconnects.php │ │ │ ├── LicenseCodes.php │ │ │ ├── Licenses.php │ │ │ ├── MachineImages.php │ │ │ ├── MachineTypes.php │ │ │ ├── NetworkAttachments.php │ │ │ ├── NetworkEdgeSecurityServices.php │ │ │ ├── NetworkEndpointGroups.php │ │ │ ├── NetworkFirewallPolicies.php │ │ │ ├── Networks.php │ │ │ ├── NodeGroups.php │ │ │ ├── NodeTemplates.php │ │ │ ├── NodeTypes.php │ │ │ ├── PacketMirrorings.php │ │ │ ├── Projects.php │ │ │ ├── PublicAdvertisedPrefixes.php │ │ │ ├── PublicDelegatedPrefixes.php │ │ │ ├── RegionAutoscalers.php │ │ │ ├── RegionBackendServices.php │ │ │ ├── RegionCommitments.php │ │ │ ├── RegionDiskTypes.php │ │ │ ├── RegionDisks.php │ │ │ ├── RegionHealthCheckServices.php │ │ │ ├── RegionHealthChecks.php │ │ │ ├── RegionInstanceGroupManagers.php │ │ │ ├── RegionInstanceGroups.php │ │ │ ├── RegionInstanceTemplates.php │ │ │ ├── RegionInstances.php │ │ │ ├── RegionNetworkEndpointGroups.php │ │ │ ├── RegionNetworkFirewallPolicies.php │ │ │ ├── RegionNotificationEndpoints.php │ │ │ ├── RegionOperations.php │ │ │ ├── RegionSecurityPolicies.php │ │ │ ├── RegionSslCertificates.php │ │ │ ├── RegionSslPolicies.php │ │ │ ├── RegionTargetHttpProxies.php │ │ │ ├── RegionTargetHttpsProxies.php │ │ │ ├── RegionTargetTcpProxies.php │ │ │ ├── RegionUrlMaps.php │ │ │ ├── Regions.php │ │ │ ├── Reservations.php │ │ │ ├── ResourcePolicies.php │ │ │ ├── Routers.php │ │ │ ├── Routes.php │ │ │ ├── SecurityPolicies.php │ │ │ ├── ServiceAttachments.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 │ │ ├── ResourcePolicyInstanceSchedulePolicy.php │ │ ├── ResourcePolicyInstanceSchedulePolicySchedule.php │ │ ├── ResourcePolicyList.php │ │ ├── ResourcePolicyListWarning.php │ │ ├── ResourcePolicyListWarningData.php │ │ ├── ResourcePolicyResourceStatus.php │ │ ├── ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.php │ │ ├── ResourcePolicySnapshotSchedulePolicy.php │ │ ├── ResourcePolicySnapshotSchedulePolicyRetentionPolicy.php │ │ ├── ResourcePolicySnapshotSchedulePolicySchedule.php │ │ ├── ResourcePolicySnapshotSchedulePolicySnapshotProperties.php │ │ ├── ResourcePolicyWeeklyCycle.php │ │ ├── ResourcePolicyWeeklyCycleDayOfWeek.php │ │ ├── ResourceStatus.php │ │ ├── Route.php │ │ ├── RouteAsPath.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 │ │ ├── RouterBgpPeerBfd.php │ │ ├── RouterInterface.php │ │ ├── RouterList.php │ │ ├── RouterListWarning.php │ │ ├── RouterListWarningData.php │ │ ├── RouterMd5AuthenticationKey.php │ │ ├── RouterNat.php │ │ ├── RouterNatLogConfig.php │ │ ├── RouterNatRule.php │ │ ├── RouterNatRuleAction.php │ │ ├── RouterNatSubnetworkToNat.php │ │ ├── RouterStatus.php │ │ ├── RouterStatusBgpPeerStatus.php │ │ ├── RouterStatusNatStatus.php │ │ ├── RouterStatusNatStatusNatRuleStatus.php │ │ ├── RouterStatusResponse.php │ │ ├── RoutersPreviewResponse.php │ │ ├── RoutersScopedList.php │ │ ├── RoutersScopedListWarning.php │ │ ├── RoutersScopedListWarningData.php │ │ ├── Rule.php │ │ ├── SSLHealthCheck.php │ │ ├── SavedAttachedDisk.php │ │ ├── SavedDisk.php │ │ ├── ScalingScheduleStatus.php │ │ ├── Scheduling.php │ │ ├── SchedulingNodeAffinity.php │ │ ├── Screenshot.php │ │ ├── SecurityPoliciesAggregatedList.php │ │ ├── SecurityPoliciesAggregatedListWarning.php │ │ ├── SecurityPoliciesAggregatedListWarningData.php │ │ ├── SecurityPoliciesListPreconfiguredExpressionSetsResponse.php │ │ ├── SecurityPoliciesScopedList.php │ │ ├── SecurityPoliciesScopedListWarning.php │ │ ├── SecurityPoliciesScopedListWarningData.php │ │ ├── SecurityPoliciesWafConfig.php │ │ ├── SecurityPolicy.php │ │ ├── SecurityPolicyAdaptiveProtectionConfig.php │ │ ├── SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.php │ │ ├── SecurityPolicyAdvancedOptionsConfig.php │ │ ├── SecurityPolicyAdvancedOptionsConfigJsonCustomConfig.php │ │ ├── SecurityPolicyDdosProtectionConfig.php │ │ ├── SecurityPolicyList.php │ │ ├── SecurityPolicyListWarning.php │ │ ├── SecurityPolicyListWarningData.php │ │ ├── SecurityPolicyRecaptchaOptionsConfig.php │ │ ├── SecurityPolicyReference.php │ │ ├── SecurityPolicyRule.php │ │ ├── SecurityPolicyRuleHttpHeaderAction.php │ │ ├── SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.php │ │ ├── SecurityPolicyRuleMatcher.php │ │ ├── SecurityPolicyRuleMatcherConfig.php │ │ ├── SecurityPolicyRuleRateLimitOptions.php │ │ ├── SecurityPolicyRuleRateLimitOptionsThreshold.php │ │ ├── SecurityPolicyRuleRedirectOptions.php │ │ ├── SecuritySettings.php │ │ ├── SerialPortOutput.php │ │ ├── ServerBinding.php │ │ ├── ServiceAccount.php │ │ ├── ServiceAttachment.php │ │ ├── ServiceAttachmentAggregatedList.php │ │ ├── ServiceAttachmentAggregatedListWarning.php │ │ ├── ServiceAttachmentAggregatedListWarningData.php │ │ ├── ServiceAttachmentConnectedEndpoint.php │ │ ├── ServiceAttachmentConsumerProjectLimit.php │ │ ├── ServiceAttachmentList.php │ │ ├── ServiceAttachmentListWarning.php │ │ ├── ServiceAttachmentListWarningData.php │ │ ├── ServiceAttachmentsScopedList.php │ │ ├── ServiceAttachmentsScopedListWarning.php │ │ ├── ServiceAttachmentsScopedListWarningData.php │ │ ├── ShareSettings.php │ │ ├── ShareSettingsProjectConfig.php │ │ ├── ShieldedInstanceConfig.php │ │ ├── ShieldedInstanceIdentity.php │ │ ├── ShieldedInstanceIdentityEntry.php │ │ ├── ShieldedInstanceIntegrityPolicy.php │ │ ├── SignedUrlKey.php │ │ ├── Snapshot.php │ │ ├── SnapshotList.php │ │ ├── SnapshotListWarning.php │ │ ├── SnapshotListWarningData.php │ │ ├── SourceDiskEncryptionKey.php │ │ ├── SourceInstanceParams.php │ │ ├── SourceInstanceProperties.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 │ │ ├── SslPoliciesAggregatedList.php │ │ ├── SslPoliciesAggregatedListWarning.php │ │ ├── SslPoliciesAggregatedListWarningData.php │ │ ├── SslPoliciesList.php │ │ ├── SslPoliciesListAvailableFeaturesResponse.php │ │ ├── SslPoliciesListWarning.php │ │ ├── SslPoliciesListWarningData.php │ │ ├── SslPoliciesScopedList.php │ │ ├── SslPoliciesScopedListWarning.php │ │ ├── SslPoliciesScopedListWarningData.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 │ │ ├── Subsetting.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 │ │ ├── TargetHttpsProxiesSetCertificateMapRequest.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 │ │ ├── TargetSslProxiesSetCertificateMapRequest.php │ │ ├── TargetSslProxiesSetProxyHeaderRequest.php │ │ ├── TargetSslProxiesSetSslCertificatesRequest.php │ │ ├── TargetSslProxy.php │ │ ├── TargetSslProxyList.php │ │ ├── TargetSslProxyListWarning.php │ │ ├── TargetSslProxyListWarningData.php │ │ ├── TargetTcpProxiesScopedList.php │ │ ├── TargetTcpProxiesScopedListWarning.php │ │ ├── TargetTcpProxiesScopedListWarningData.php │ │ ├── TargetTcpProxiesSetBackendServiceRequest.php │ │ ├── TargetTcpProxiesSetProxyHeaderRequest.php │ │ ├── TargetTcpProxy.php │ │ ├── TargetTcpProxyAggregatedList.php │ │ ├── TargetTcpProxyAggregatedListWarning.php │ │ ├── TargetTcpProxyAggregatedListWarningData.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 │ │ ├── Uint128.php │ │ ├── UrlMap.php │ │ ├── UrlMapList.php │ │ ├── UrlMapListWarning.php │ │ ├── UrlMapListWarningData.php │ │ ├── UrlMapReference.php │ │ ├── UrlMapTest.php │ │ ├── UrlMapTestHeader.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 │ │ ├── VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.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 │ │ ├── Connectors.php │ │ ├── Connectors │ │ ├── Action.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── AuthConfig.php │ │ ├── AuthConfigTemplate.php │ │ ├── AuthorizationCodeLink.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── ConfigVariable.php │ │ ├── ConfigVariableTemplate.php │ │ ├── Connection.php │ │ ├── ConnectionSchemaMetadata.php │ │ ├── ConnectionStatus.php │ │ ├── Connector.php │ │ ├── ConnectorVersion.php │ │ ├── ConnectorsEmpty.php │ │ ├── ConnectorsResource.php │ │ ├── EgressControlConfig.php │ │ ├── Entity.php │ │ ├── EntityType.php │ │ ├── EnumOption.php │ │ ├── ExecuteActionRequest.php │ │ ├── ExecuteActionResponse.php │ │ ├── ExecuteSqlQueryRequest.php │ │ ├── ExecuteSqlQueryResponse.php │ │ ├── Expr.php │ │ ├── ExtractionRule.php │ │ ├── ExtractionRules.php │ │ ├── Field.php │ │ ├── InputParameter.php │ │ ├── JwtClaims.php │ │ ├── ListActionsResponse.php │ │ ├── ListConnectionsResponse.php │ │ ├── ListConnectorVersionsResponse.php │ │ ├── ListConnectorsResponse.php │ │ ├── ListEntitiesResponse.php │ │ ├── ListEntityTypesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListProvidersResponse.php │ │ ├── ListRuntimeActionSchemasResponse.php │ │ ├── ListRuntimeEntitySchemasResponse.php │ │ ├── Location.php │ │ ├── LockConfig.php │ │ ├── Oauth2ClientCredentials.php │ │ ├── Oauth2JwtBearer.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Provider.php │ │ ├── Query.php │ │ ├── Reference.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsConnections.php │ │ │ ├── ProjectsLocationsConnectionsActions.php │ │ │ ├── ProjectsLocationsConnectionsEntityTypes.php │ │ │ ├── ProjectsLocationsConnectionsEntityTypesEntities.php │ │ │ ├── ProjectsLocationsConnectionsRuntimeActionSchemas.php │ │ │ ├── ProjectsLocationsConnectionsRuntimeEntitySchemas.php │ │ │ ├── ProjectsLocationsConnectorsGlobal.php │ │ │ ├── ProjectsLocationsConnectorsGlobalProviders.php │ │ │ ├── ProjectsLocationsConnectorsGlobalProvidersConnectors.php │ │ │ ├── ProjectsLocationsConnectorsGlobalProvidersConnectorsVersions.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsProviders.php │ │ ├── ResultMetadata.php │ │ ├── RoleGrant.php │ │ ├── RuntimeActionSchema.php │ │ ├── RuntimeConfig.php │ │ ├── RuntimeEntitySchema.php │ │ ├── Secret.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Source.php │ │ ├── SshPublicKey.php │ │ ├── Status.php │ │ ├── SupportedRuntimeFeatures.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── UpdateEntitiesWithConditionsResponse.php │ │ └── UserPassword.php │ │ ├── Contactcenterinsights.php │ │ ├── Contactcenterinsights │ │ ├── GoogleCloudContactcenterinsightsV1Analysis.php │ │ ├── GoogleCloudContactcenterinsightsV1AnalysisResult.php │ │ ├── GoogleCloudContactcenterinsightsV1AnalysisResultCallAnalysisMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1AnnotationBoundary.php │ │ ├── GoogleCloudContactcenterinsightsV1AnnotatorSelector.php │ │ ├── GoogleCloudContactcenterinsightsV1AnswerFeedback.php │ │ ├── GoogleCloudContactcenterinsightsV1ArticleSuggestionData.php │ │ ├── GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1CalculateIssueModelStatsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1CalculateStatsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1CalculateStatsResponseTimeSeries.php │ │ ├── GoogleCloudContactcenterinsightsV1CalculateStatsResponseTimeSeriesInterval.php │ │ ├── GoogleCloudContactcenterinsightsV1CallAnnotation.php │ │ ├── GoogleCloudContactcenterinsightsV1Conversation.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationCallMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationDataSource.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationLevelSentiment.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationParticipant.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationTranscript.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegment.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentDialogflowSegmentMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.php │ │ ├── GoogleCloudContactcenterinsightsV1CreateAnalysisOperationMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1CreateIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1DeleteIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1DeployIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1DeployIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1DeployIssueModelResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1DialogflowIntent.php │ │ ├── GoogleCloudContactcenterinsightsV1DialogflowInteractionData.php │ │ ├── GoogleCloudContactcenterinsightsV1DialogflowSource.php │ │ ├── GoogleCloudContactcenterinsightsV1Entity.php │ │ ├── GoogleCloudContactcenterinsightsV1EntityMentionData.php │ │ ├── GoogleCloudContactcenterinsightsV1ExactMatchConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1ExportInsightsDataMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination.php │ │ ├── GoogleCloudContactcenterinsightsV1ExportInsightsDataResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1FaqAnswerData.php │ │ ├── GoogleCloudContactcenterinsightsV1GcsSource.php │ │ ├── GoogleCloudContactcenterinsightsV1HoldData.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1IngestConversationsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1Intent.php │ │ ├── GoogleCloudContactcenterinsightsV1IntentMatchData.php │ │ ├── GoogleCloudContactcenterinsightsV1InterruptionData.php │ │ ├── GoogleCloudContactcenterinsightsV1Issue.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueAssignment.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueMatchData.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueModel.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueModelLabelStats.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats.php │ │ ├── GoogleCloudContactcenterinsightsV1IssueModelResult.php │ │ ├── GoogleCloudContactcenterinsightsV1ListAnalysesResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1ListConversationsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1ListIssueModelsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1ListIssuesResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1ListViewsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1PhraseMatchData.php │ │ ├── GoogleCloudContactcenterinsightsV1PhraseMatchRule.php │ │ ├── GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.php │ │ ├── GoogleCloudContactcenterinsightsV1PhraseMatcher.php │ │ ├── GoogleCloudContactcenterinsightsV1RuntimeAnnotation.php │ │ ├── GoogleCloudContactcenterinsightsV1SentimentData.php │ │ ├── GoogleCloudContactcenterinsightsV1Settings.php │ │ ├── GoogleCloudContactcenterinsightsV1SettingsAnalysisConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1SilenceData.php │ │ ├── GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData.php │ │ ├── GoogleCloudContactcenterinsightsV1SmartReplyData.php │ │ ├── GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1UndeployIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1UndeployIssueModelResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1View.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1CreateAnalysisOperationMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1DeployIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1DeployIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1DeployIssueModelResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IngestConversationsResponse.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IssueModel.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStats.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStatsIssueStats.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelMetadata.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelRequest.php │ │ ├── GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelResponse.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsConversations.php │ │ │ ├── ProjectsLocationsConversationsAnalyses.php │ │ │ ├── ProjectsLocationsInsightsdata.php │ │ │ ├── ProjectsLocationsIssueModels.php │ │ │ ├── ProjectsLocationsIssueModelsIssues.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsPhraseMatchers.php │ │ │ └── ProjectsLocationsViews.php │ │ ├── Container.php │ │ ├── Container │ │ ├── AcceleratorConfig.php │ │ ├── AddonsConfig.php │ │ ├── AdvancedMachineFeatures.php │ │ ├── AuthenticatorGroupsConfig.php │ │ ├── AutoUpgradeOptions.php │ │ ├── Autopilot.php │ │ ├── AutoprovisioningNodePoolDefaults.php │ │ ├── BigQueryDestination.php │ │ ├── BinaryAuthorization.php │ │ ├── BlueGreenInfo.php │ │ ├── BlueGreenSettings.php │ │ ├── CancelOperationRequest.php │ │ ├── CidrBlock.php │ │ ├── ClientCertificateConfig.php │ │ ├── CloudRunConfig.php │ │ ├── Cluster.php │ │ ├── ClusterAutoscaling.php │ │ ├── ClusterUpdate.php │ │ ├── CompleteIPRotationRequest.php │ │ ├── CompleteNodePoolUpgradeRequest.php │ │ ├── ConfidentialNodes.php │ │ ├── ConfigConnectorConfig.php │ │ ├── ConsumptionMeteringConfig.php │ │ ├── ContainerEmpty.php │ │ ├── CostManagementConfig.php │ │ ├── CreateClusterRequest.php │ │ ├── CreateNodePoolRequest.php │ │ ├── DNSConfig.php │ │ ├── DailyMaintenanceWindow.php │ │ ├── DatabaseEncryption.php │ │ ├── DefaultSnatStatus.php │ │ ├── DnsCacheConfig.php │ │ ├── EphemeralStorageLocalSsdConfig.php │ │ ├── FastSocket.php │ │ ├── Filter.php │ │ ├── GPUSharingConfig.php │ │ ├── GatewayAPIConfig.php │ │ ├── GcePersistentDiskCsiDriverConfig.php │ │ ├── GcfsConfig.php │ │ ├── GcpFilestoreCsiDriverConfig.php │ │ ├── GetJSONWebKeysResponse.php │ │ ├── GetOpenIDConfigResponse.php │ │ ├── GkeBackupAgentConfig.php │ │ ├── HorizontalPodAutoscaling.php │ │ ├── HttpCacheControlResponseHeader.php │ │ ├── HttpLoadBalancing.php │ │ ├── ILBSubsettingConfig.php │ │ ├── IPAllocationPolicy.php │ │ ├── IdentityServiceConfig.php │ │ ├── IntraNodeVisibilityConfig.php │ │ ├── Jwk.php │ │ ├── KubernetesDashboard.php │ │ ├── LegacyAbac.php │ │ ├── LinuxNodeConfig.php │ │ ├── ListClustersResponse.php │ │ ├── ListNodePoolsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListUsableSubnetworksResponse.php │ │ ├── LocalNvmeSsdBlockConfig.php │ │ ├── LoggingComponentConfig.php │ │ ├── LoggingConfig.php │ │ ├── LoggingVariantConfig.php │ │ ├── MaintenanceExclusionOptions.php │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceWindow.php │ │ ├── ManagedPrometheusConfig.php │ │ ├── MasterAuth.php │ │ ├── MasterAuthorizedNetworksConfig.php │ │ ├── MaxPodsConstraint.php │ │ ├── MeshCertificates.php │ │ ├── Metric.php │ │ ├── MonitoringComponentConfig.php │ │ ├── MonitoringConfig.php │ │ ├── NetworkConfig.php │ │ ├── NetworkPerformanceConfig.php │ │ ├── NetworkPolicy.php │ │ ├── NetworkPolicyConfig.php │ │ ├── NetworkTags.php │ │ ├── NodeConfig.php │ │ ├── NodeConfigDefaults.php │ │ ├── NodeKubeletConfig.php │ │ ├── NodeLabels.php │ │ ├── NodeManagement.php │ │ ├── NodeNetworkConfig.php │ │ ├── NodePool.php │ │ ├── NodePoolAutoConfig.php │ │ ├── NodePoolAutoscaling.php │ │ ├── NodePoolDefaults.php │ │ ├── NodePoolLoggingConfig.php │ │ ├── NodeTaint.php │ │ ├── NodeTaints.php │ │ ├── NotificationConfig.php │ │ ├── Operation.php │ │ ├── OperationProgress.php │ │ ├── PlacementPolicy.php │ │ ├── PrivateClusterConfig.php │ │ ├── PrivateClusterMasterGlobalAccessConfig.php │ │ ├── PubSub.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 │ │ ├── ResourceLabels.php │ │ ├── ResourceLimit.php │ │ ├── ResourceUsageExportConfig.php │ │ ├── RollbackNodePoolUpgradeRequest.php │ │ ├── SandboxConfig.php │ │ ├── SecurityBulletinEvent.php │ │ ├── ServerConfig.php │ │ ├── ServiceExternalIPsConfig.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 │ │ ├── StandardRolloutPolicy.php │ │ ├── StartIPRotationRequest.php │ │ ├── Status.php │ │ ├── StatusCondition.php │ │ ├── TimeWindow.php │ │ ├── UpdateClusterRequest.php │ │ ├── UpdateInfo.php │ │ ├── UpdateMasterRequest.php │ │ ├── UpdateNodePoolRequest.php │ │ ├── UpgradeAvailableEvent.php │ │ ├── UpgradeEvent.php │ │ ├── UpgradeSettings.php │ │ ├── UsableSubnetwork.php │ │ ├── UsableSubnetworkSecondaryRange.php │ │ ├── VerticalPodAutoscaling.php │ │ ├── VirtualNIC.php │ │ ├── WindowsNodeConfig.php │ │ ├── WorkloadIdentityConfig.php │ │ └── WorkloadMetadataConfig.php │ │ ├── ContainerAnalysis.php │ │ ├── ContainerAnalysis │ │ ├── AliasContext.php │ │ ├── AnalysisCompleted.php │ │ ├── Artifact.php │ │ ├── ArtifactHashes.php │ │ ├── ArtifactRule.php │ │ ├── Attestation.php │ │ ├── AttestationNote.php │ │ ├── AttestationOccurrence.php │ │ ├── Authority.php │ │ ├── Basis.php │ │ ├── BatchCreateNotesRequest.php │ │ ├── BatchCreateNotesResponse.php │ │ ├── BatchCreateOccurrencesRequest.php │ │ ├── BatchCreateOccurrencesResponse.php │ │ ├── Binding.php │ │ ├── Build.php │ │ ├── BuildNote.php │ │ ├── BuildOccurrence.php │ │ ├── BuildProvenance.php │ │ ├── BuildSignature.php │ │ ├── BuildStep.php │ │ ├── BuilderConfig.php │ │ ├── ByProducts.php │ │ ├── CVSS.php │ │ ├── CVSSv3.php │ │ ├── CancelOperationRequest.php │ │ ├── Category.php │ │ ├── CisBenchmark.php │ │ ├── CloudRepoSourceContext.php │ │ ├── Command.php │ │ ├── Completeness.php │ │ ├── ComplianceNote.php │ │ ├── ComplianceOccurrence.php │ │ ├── ComplianceVersion.php │ │ ├── ContaineranalysisEmpty.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalConfig.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalResult.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Build.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildApproval.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStep.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Hash.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1InlineSecret.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Results.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Secret.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1SecretManagerSecret.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Secrets.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Source.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1SourceProvenance.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage.php │ │ ├── ContaineranalysisGoogleDevtoolsCloudbuildV1Volume.php │ │ ├── ContaineranalysisResource.php │ │ ├── DSSEAttestationNote.php │ │ ├── DSSEAttestationOccurrence.php │ │ ├── DSSEHint.php │ │ ├── Deployable.php │ │ ├── Deployment.php │ │ ├── DeploymentNote.php │ │ ├── DeploymentOccurrence.php │ │ ├── Derived.php │ │ ├── Detail.php │ │ ├── Details.php │ │ ├── Digest.php │ │ ├── Discovered.php │ │ ├── Discovery.php │ │ ├── DiscoveryNote.php │ │ ├── DiscoveryOccurrence.php │ │ ├── Distribution.php │ │ ├── DocumentNote.php │ │ ├── DocumentOccurrence.php │ │ ├── Envelope.php │ │ ├── EnvelopeSignature.php │ │ ├── Environment.php │ │ ├── Expr.php │ │ ├── ExternalRef.php │ │ ├── FileHashes.php │ │ ├── FileNote.php │ │ ├── FileOccurrence.php │ │ ├── Fingerprint.php │ │ ├── FixableTotalByDigest.php │ │ ├── GenericSignedAttestation.php │ │ ├── GerritSourceContext.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── GitSourceContext.php │ │ ├── GoogleDevtoolsContaineranalysisV1alpha1OperationMetadata.php │ │ ├── GrafeasV1FileLocation.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaBuilder.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaCompleteness.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaConfigSource.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaInvocation.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaMaterial.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaMetadata.php │ │ ├── GrafeasV1beta1BuildDetails.php │ │ ├── GrafeasV1beta1DeploymentDetails.php │ │ ├── GrafeasV1beta1DiscoveryDetails.php │ │ ├── GrafeasV1beta1ImageDetails.php │ │ ├── GrafeasV1beta1IntotoArtifact.php │ │ ├── GrafeasV1beta1IntotoDetails.php │ │ ├── GrafeasV1beta1IntotoSignature.php │ │ ├── GrafeasV1beta1PackageDetails.php │ │ ├── GrafeasV1beta1VulnerabilityDetails.php │ │ ├── Hash.php │ │ ├── Hint.php │ │ ├── Identity.php │ │ ├── ImageNote.php │ │ ├── ImageOccurrence.php │ │ ├── InToto.php │ │ ├── InTotoProvenance.php │ │ ├── InTotoStatement.php │ │ ├── Installation.php │ │ ├── Jwt.php │ │ ├── KnowledgeBase.php │ │ ├── Layer.php │ │ ├── License.php │ │ ├── Link.php │ │ ├── ListNoteOccurrencesResponse.php │ │ ├── ListNotesResponse.php │ │ ├── ListOccurrencesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListScanConfigsResponse.php │ │ ├── Location.php │ │ ├── Material.php │ │ ├── Metadata.php │ │ ├── NonCompliantFile.php │ │ ├── Note.php │ │ ├── Occurrence.php │ │ ├── Operation.php │ │ ├── Package.php │ │ ├── PackageIssue.php │ │ ├── PackageNote.php │ │ ├── PackageOccurrence.php │ │ ├── PgpSignedAttestation.php │ │ ├── Policy.php │ │ ├── ProjectRepoId.php │ │ ├── Recipe.php │ │ ├── RelatedUrl.php │ │ ├── RelationshipNote.php │ │ ├── RelationshipOccurrence.php │ │ ├── RepoId.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsNotes.php │ │ │ ├── ProjectsNotesOccurrences.php │ │ │ ├── ProjectsOccurrences.php │ │ │ └── ProjectsScanConfigs.php │ │ ├── ScanConfig.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Signature.php │ │ ├── SigningKey.php │ │ ├── SlsaBuilder.php │ │ ├── SlsaCompleteness.php │ │ ├── SlsaMetadata.php │ │ ├── SlsaProvenance.php │ │ ├── SlsaProvenanceZeroTwo.php │ │ ├── SlsaRecipe.php │ │ ├── Source.php │ │ ├── SourceContext.php │ │ ├── Status.php │ │ ├── Subject.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TimeSpan.php │ │ ├── UpgradeDistribution.php │ │ ├── UpgradeNote.php │ │ ├── UpgradeOccurrence.php │ │ ├── Version.php │ │ ├── Volume.php │ │ ├── Vulnerability.php │ │ ├── VulnerabilityLocation.php │ │ ├── VulnerabilityNote.php │ │ ├── VulnerabilityOccurrence.php │ │ ├── VulnerabilityOccurrencesSummary.php │ │ ├── WindowsDetail.php │ │ └── WindowsUpdate.php │ │ ├── Contentwarehouse.php │ │ ├── Contentwarehouse │ │ ├── AbuseiamAbuseType.php │ │ ├── AbuseiamAgeRestriction.php │ │ ├── AbuseiamAndRestriction.php │ │ ├── AbuseiamClient.php │ │ ├── AbuseiamClusterEvaluationContext.php │ │ ├── AbuseiamConstantRestriction.php │ │ ├── AbuseiamContentRestriction.php │ │ ├── AbuseiamEvaluation.php │ │ ├── AbuseiamFeature.php │ │ ├── AbuseiamGeoRestriction.php │ │ ├── AbuseiamGeoRestrictionLocale.php │ │ ├── AbuseiamHash.php │ │ ├── AbuseiamManualReviewEvaluationInfo.php │ │ ├── AbuseiamManualReviewTool.php │ │ ├── AbuseiamManualReviewerInfo.php │ │ ├── AbuseiamNameValuePair.php │ │ ├── AbuseiamNotRestriction.php │ │ ├── AbuseiamOrRestriction.php │ │ ├── AbuseiamRegion.php │ │ ├── AbuseiamSpecialRestriction.php │ │ ├── AbuseiamTarget.php │ │ ├── AbuseiamUserNotification.php │ │ ├── AbuseiamUserRestriction.php │ │ ├── AbuseiamVerdict.php │ │ ├── AbuseiamVerdictRestriction.php │ │ ├── AbuseiamVerdictRestrictionContext.php │ │ ├── AbuseiamVideoReviewData.php │ │ ├── AbuseiamVideoReviewer.php │ │ ├── AdsShoppingReportingOffersSerializedSoriId.php │ │ ├── Anchors.php │ │ ├── AnchorsAnchor.php │ │ ├── AnchorsAnchorSource.php │ │ ├── AnchorsRedundantAnchorInfo.php │ │ ├── AppsDynamiteCustomerId.php │ │ ├── AppsDynamiteSharedOrganizationInfo.php │ │ ├── AppsDynamiteSharedOrganizationInfoConsumerInfo.php │ │ ├── AppsDynamiteSharedOrganizationInfoCustomerInfo.php │ │ ├── AppsPeopleActivityBackendDestinationStream.php │ │ ├── AppsPeopleActivityStreamqualityDistillerEngagements.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAbout.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedDataNameDisplayOptions.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedDataPhotosCompareData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedDataPhotosCompareDataDiffData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedDataProfileEditability.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAboutMeExtendedDataProfileNameModificationHistory.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAccountEmail.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAdditionalContainerInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAddress.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAffinity.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAgeRangeType.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiAppUniqueInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiBestDisplayName.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiBirthday.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiBirthdayAgeDisableGracePeriod.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiBirthdayAgeDisableGracePeriodManualGracePeriodInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiBraggingRights.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCalendar.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCallerIdExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCallerIdExtendedDataCallerIdSource.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCertifiedBornBefore.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiChannelData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCircleMembership.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiClientData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCommunicationEmail.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiConnectionReminder.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiContactCreateContextInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiContactEditContextInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiContactGroupMembership.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiContactStateInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCoverPhoto.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCustomSchemaField.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiCustomerInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiDedupedContainerInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiDelegatedGroupInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiDeviceContactExtraMetadata.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiDeviceContactId.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiDeviceContactInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEdgeKeyInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEdgeKeyInfoExtensionData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmail.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmailCertificate.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmailCertificateCertificateStatus.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmailContactGroupPreference.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmailExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmailSignupEmailMetadata.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEmergencyInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiEvent.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiExternalId.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAcl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntry.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntryScope.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntryScopeMembershipAcl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntryScopeMembershipAclCircleAcl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntryScopeMembershipAclContactGroupAcl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldAclAclEntryScopePersonAcl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFieldEmergencyInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiFileAs.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiGPayExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiGender.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiGplusExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiHangoutsExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiIdentityInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiIm.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInAppNotificationTarget.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInAppNotificationTargetClientData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInAppNotificationTargetOriginatingField.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInAppReachability.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInAppReachabilityReachabilityKey.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInteractionSettings.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiInterest.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLanguage.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLatLng.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLegacyFields.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLimitedProfileSettingsField.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLocation.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiLocationExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiManagementUpchain.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiManagementUpchainIndirectManager.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMapsExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMapsProfile.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMapsProfileFieldRestriction.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMapsProfileUrlLink.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMatchInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMatchInfoLookupTokenMatch.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMembership.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiMission.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiName.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiNamePronunciationAudioMetadataInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiNickname.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOccupation.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOpeningHours.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOpeningHoursEndpoint.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOpeningHoursPeriod.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOrganization.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOrganizationAssignment.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOrganizationProject.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiOtherKeyword.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPerson.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonAttribute.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonFieldMetadata.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonListWithTotalNumber.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonMetadata.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonMetadataScoringInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPersonMetadataScoringInfoStExpressionResult.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPhone.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPhoneExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPhoto.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPhotoPhotoStorageId.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPlaceDetails.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPlayGamesExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPlayGamesExtendedDataAchievement.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPlusPageInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPointSpec.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPosixAccount.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiProductMetadata.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiProductProfileFailure.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiProfileOwnerStats.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiProfileUrl.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiPronoun.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRawDeviceContactAnalyticalInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRawDeviceContactInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiReadOnlyProfileInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiReadOnlyProfileInfoDomainInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRelation.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRelationRelationDetails.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRelationshipInterest.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRelationshipStatus.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRightOfPublicityState.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRosterDetails.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRosterMember.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiRosterMemberCount.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSearchProfile.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSipAddress.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSkills.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSocialConnection.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSortKeys.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSourceIdentity.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiSshPublicKey.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiStructuredPhone.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiStructuredPhonePhoneNumber.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiStructuredPhonePhoneNumberI18nData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiStructuredPhoneShortCode.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiTagline.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiTeamsExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiUserDefined.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiUserVisibleStats.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiVisibleToGuests.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiWebContactsExtendedData.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiWebsite.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiWebsiteRelationshipInfo.php │ │ ├── AppsPeopleOzExternalMergedpeopleapiYoutubeExtendedData.php │ │ ├── AssistantApiAccessControlOutput.php │ │ ├── AssistantApiActionV2SupportedFeatures.php │ │ ├── AssistantApiAndroidIntentCapabilities.php │ │ ├── AssistantApiAndroidIntentCapabilitiesAndroidIntentCapability.php │ │ ├── AssistantApiAppCapabilities.php │ │ ├── AssistantApiAppCapabilitiesDelta.php │ │ ├── AssistantApiAppControlSupport.php │ │ ├── AssistantApiAppIntegrationsSettings.php │ │ ├── AssistantApiAssistantContinuedPresenceSupport.php │ │ ├── AssistantApiAudioInput.php │ │ ├── AssistantApiAudioOutput.php │ │ ├── AssistantApiCallCapabilities.php │ │ ├── AssistantApiCameraCapabilities.php │ │ ├── AssistantApiCameraReceiverCapabilities.php │ │ ├── AssistantApiCapabilitiesHomeAppCapabilities.php │ │ ├── AssistantApiCarAssistantCapabilities.php │ │ ├── AssistantApiCarSettingsCapabilities.php │ │ ├── AssistantApiCastAssistantSettingLinkingResult.php │ │ ├── AssistantApiCastCapabilities.php │ │ ├── AssistantApiClientOpPropertiesDeviceModifySettingClientOpProperty.php │ │ ├── AssistantApiClientOpPropertiesProviderOpenClientOpProperty.php │ │ ├── AssistantApiClockCapabilities.php │ │ ├── AssistantApiCommunicationUiCapabilities.php │ │ ├── AssistantApiContactLookupCapabilities.php │ │ ├── AssistantApiCoreTypesAndroidAppInfo.php │ │ ├── AssistantApiCoreTypesAndroidAppInfoDelta.php │ │ ├── AssistantApiCoreTypesCalendarEvent.php │ │ ├── AssistantApiCoreTypesCalendarEventAttendee.php │ │ ├── AssistantApiCoreTypesCalendarEventMeetingContact.php │ │ ├── AssistantApiCoreTypesCalendarEventRoom.php │ │ ├── AssistantApiCoreTypesCalendarEventRoomRoomLocationDetails.php │ │ ├── AssistantApiCoreTypesCalendarEventWrapper.php │ │ ├── AssistantApiCoreTypesCastAppInfo.php │ │ ├── AssistantApiCoreTypesChromeOsAppInfo.php │ │ ├── AssistantApiCoreTypesCloudProviderInfo.php │ │ ├── AssistantApiCoreTypesCloudProviderInfoAgentStyle.php │ │ ├── AssistantApiCoreTypesDeviceConfig.php │ │ ├── AssistantApiCoreTypesDeviceId.php │ │ ├── AssistantApiCoreTypesDeviceUserIdentity.php │ │ ├── AssistantApiCoreTypesGovernedColor.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadata.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataCharacterAlarmMetadata.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataFuntimeMetadata.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataGenMlAlarmMetadata.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataGentleWakeInfo.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataOnDeviceAlarmMetadata.php │ │ ├── AssistantApiCoreTypesGovernedRingtoneTaskMetadataRoutineAlarmMetadata.php │ │ ├── AssistantApiCoreTypesHomeAppInfo.php │ │ ├── AssistantApiCoreTypesImage.php │ │ ├── AssistantApiCoreTypesInternalProviderInfo.php │ │ ├── AssistantApiCoreTypesIosAppInfo.php │ │ ├── AssistantApiCoreTypesKaiOsAppInfo.php │ │ ├── AssistantApiCoreTypesLocationCoordinates.php │ │ ├── AssistantApiCoreTypesMessageNotification.php │ │ ├── AssistantApiCoreTypesMessageNotificationNotificationEntry.php │ │ ├── AssistantApiCoreTypesMessageNotificationPerson.php │ │ ├── AssistantApiCoreTypesProvider.php │ │ ├── AssistantApiCoreTypesProviderDelta.php │ │ ├── AssistantApiCoreTypesSipProviderInfo.php │ │ ├── AssistantApiCoreTypesSurfaceIdentity.php │ │ ├── AssistantApiCoreTypesSurfaceType.php │ │ ├── AssistantApiCoreTypesSurfaceVersion.php │ │ ├── AssistantApiCoreTypesWebProviderInfo.php │ │ ├── AssistantApiCoreTypesWebProviderInfoThirdPartyCustomNluInfo.php │ │ ├── AssistantApiCrossDeviceExecutionCapability.php │ │ ├── AssistantApiDate.php │ │ ├── AssistantApiDateTime.php │ │ ├── AssistantApiDeviceCapabilities.php │ │ ├── AssistantApiDuration.php │ │ ├── AssistantApiFeatureSpecificActionSupport.php │ │ ├── AssistantApiFitnessFeatureSupport.php │ │ ├── AssistantApiFluidActionsSupport.php │ │ ├── AssistantApiGacsCapabilities.php │ │ ├── AssistantApiGcmCapabilities.php │ │ ├── AssistantApiGestureCapabilities.php │ │ ├── AssistantApiGuestAccessOutput.php │ │ ├── AssistantApiImmersiveCanvasSupport.php │ │ ├── AssistantApiJwnCapabilities.php │ │ ├── AssistantApiLensPerceptionCapabilities.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilities.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesDining.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesEducation.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesOutdoor.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesShopping.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesText.php │ │ ├── AssistantApiLensPerceptionCapabilitiesLensCapabilitiesTranslate.php │ │ ├── AssistantApiLiveTvChannelCapabilities.php │ │ ├── AssistantApiLiveTvChannelCapabilitiesChannelsByProvider.php │ │ ├── AssistantApiLiveTvChannelCapabilitiesLiveTvChannel.php │ │ ├── AssistantApiLiveTvProvider.php │ │ ├── AssistantApiLocationCapabilities.php │ │ ├── AssistantApiLoggingOnlyData.php │ │ ├── AssistantApiMediaControlSupport.php │ │ ├── AssistantApiMessageCapabilities.php │ │ ├── AssistantApiMovementCapabilities.php │ │ ├── AssistantApiNotificationOutputRestrictions.php │ │ ├── AssistantApiNotificationOutputRestrictionsOptOutState.php │ │ ├── AssistantApiNotificationOutputRestrictionsOptOutStateCategoryGroupState.php │ │ ├── AssistantApiNotificationOutputRestrictionsOptOutStateCategoryState.php │ │ ├── AssistantApiOemCapabilities.php │ │ ├── AssistantApiOnDeviceAssistantCapabilities.php │ │ ├── AssistantApiOnDeviceSmartHomeCapabilities.php │ │ ├── AssistantApiOnDeviceStorageCapabilities.php │ │ ├── AssistantApiOutputRestrictions.php │ │ ├── AssistantApiProactiveOutput.php │ │ ├── AssistantApiProtobuf.php │ │ ├── AssistantApiRecurrence.php │ │ ├── AssistantApiRecurrenceDatetimeRange.php │ │ ├── AssistantApiScreenCapabilities.php │ │ ├── AssistantApiScreenCapabilitiesMask.php │ │ ├── AssistantApiScreenCapabilitiesProtoLayoutVersion.php │ │ ├── AssistantApiScreenCapabilitiesResolution.php │ │ ├── AssistantApiSelinaCapabilites.php │ │ ├── AssistantApiSettingsAmbientSettings.php │ │ ├── AssistantApiSettingsAppCapabilities.php │ │ ├── AssistantApiSettingsAutoFramingSettings.php │ │ ├── AssistantApiSettingsCarrierCallDeviceSettings.php │ │ ├── AssistantApiSettingsCommunicationsFilter.php │ │ ├── AssistantApiSettingsDeviceDowntimeSettings.php │ │ ├── AssistantApiSettingsDeviceFeatureFilters.php │ │ ├── AssistantApiSettingsDeviceLogsOptIn.php │ │ ├── AssistantApiSettingsDeviceSettings.php │ │ ├── AssistantApiSettingsDeviceSettingsCrossSurfaceAvailability.php │ │ ├── AssistantApiSettingsDeviceSupervisionSettings.php │ │ ├── AssistantApiSettingsDowntimePeriod.php │ │ ├── AssistantApiSettingsDowntimeSchedule.php │ │ ├── AssistantApiSettingsDuoCallDeviceSettings.php │ │ ├── AssistantApiSettingsFeatureFilters.php │ │ ├── AssistantApiSettingsGcmSettings.php │ │ ├── AssistantApiSettingsHomeGraphData.php │ │ ├── AssistantApiSettingsHospitalityCardSettings.php │ │ ├── AssistantApiSettingsHospitalityCardSettingsCardConfig.php │ │ ├── AssistantApiSettingsHospitalityCardSettingsYouTubeCardConfig.php │ │ ├── AssistantApiSettingsHospitalityMode.php │ │ ├── AssistantApiSettingsHospitalityModeBranding.php │ │ ├── AssistantApiSettingsHotwordThresholdAdjustmentFactor.php │ │ ├── AssistantApiSettingsInternalAncillaryDeviceId.php │ │ ├── AssistantApiSettingsInternalVersion.php │ │ ├── AssistantApiSettingsKidsMode.php │ │ ├── AssistantApiSettingsLabeledDowntimeSchedule.php │ │ ├── AssistantApiSettingsLinkedUser.php │ │ ├── AssistantApiSettingsMarketplaceDisclosure.php │ │ ├── AssistantApiSettingsMasqueradeMode.php │ │ ├── AssistantApiSettingsMusicFilter.php │ │ ├── AssistantApiSettingsNewsFilter.php │ │ ├── AssistantApiSettingsNotificationProfile.php │ │ ├── AssistantApiSettingsNotificationProfileAlloNotificationProfile.php │ │ ├── AssistantApiSettingsOnDeviceAppSettings.php │ │ ├── AssistantApiSettingsPersonalizationMetadata.php │ │ ├── AssistantApiSettingsPodcastFilter.php │ │ ├── AssistantApiSettingsPoliteMode.php │ │ ├── AssistantApiSettingsReauthTrustedDeviceSettings.php │ │ ├── AssistantApiSettingsReauthTrustedDeviceSettingsTrustSettings.php │ │ ├── AssistantApiSettingsSearchFilter.php │ │ ├── AssistantApiSettingsSpeechOutputSettings.php │ │ ├── AssistantApiSettingsSpeechSettings.php │ │ ├── AssistantApiSettingsTetheredInfo.php │ │ ├── AssistantApiSettingsThirdPartyAppsFilter.php │ │ ├── AssistantApiSettingsVideoFilter.php │ │ ├── AssistantApiSettingsWebviewFilter.php │ │ ├── AssistantApiSignInMethod.php │ │ ├── AssistantApiSodaCapabilities.php │ │ ├── AssistantApiSoftwareCapabilities.php │ │ ├── AssistantApiSpeechCapabilities.php │ │ ├── AssistantApiSuggestionsSupport.php │ │ ├── AssistantApiSuggestionsSupportDisplayTargetSupport.php │ │ ├── AssistantApiSunriseFeaturesSupport.php │ │ ├── AssistantApiSupportedClientOp.php │ │ ├── AssistantApiSupportedClientOpSupportedExecution.php │ │ ├── AssistantApiSupportedConversationVersion.php │ │ ├── AssistantApiSupportedFeatures.php │ │ ├── AssistantApiSupportedProtocolVersion.php │ │ ├── AssistantApiSupportedProtocolVersionMessageVersionPair.php │ │ ├── AssistantApiSupportedProviderTypes.php │ │ ├── AssistantApiSurfaceProperties.php │ │ ├── AssistantApiSurfacePropertiesExecutionCapabilities.php │ │ ├── AssistantApiSystemNotificationRestrictions.php │ │ ├── AssistantApiSystemNotificationRestrictionsNotificationCategoryState.php │ │ ├── AssistantApiSystemNotificationRestrictionsNotificationChannelState.php │ │ ├── AssistantApiThirdPartyActionConfig.php │ │ ├── AssistantApiThirdPartyActionConfigProjectConfig.php │ │ ├── AssistantApiThirdPartyCapabilities.php │ │ ├── AssistantApiTimeOfDay.php │ │ ├── AssistantApiTimeZone.php │ │ ├── AssistantApiTimestamp.php │ │ ├── AssistantApiTransactionFeaturesSupport.php │ │ ├── AssistantApiVolumeProperties.php │ │ ├── AssistantDeviceTargetingDeviceTargetingError.php │ │ ├── AssistantDevicesPlatformProtoAlarmCapability.php │ │ ├── AssistantDevicesPlatformProtoArgSpec.php │ │ ├── AssistantDevicesPlatformProtoCallCallCapability.php │ │ ├── AssistantDevicesPlatformProtoClientReconnectCapability.php │ │ ├── AssistantDevicesPlatformProtoCloudCapability.php │ │ ├── AssistantDevicesPlatformProtoCloudEndpoint.php │ │ ├── AssistantDevicesPlatformProtoDeviceActionCapability.php │ │ ├── AssistantDevicesPlatformProtoDeviceModifySettingCapability.php │ │ ├── AssistantDevicesPlatformProtoDeviceTakePhotoCapability.php │ │ ├── AssistantDevicesPlatformProtoExecutionConfig.php │ │ ├── AssistantDevicesPlatformProtoInlinedActionCapability.php │ │ ├── AssistantDevicesPlatformProtoIntValueSpec.php │ │ ├── AssistantDevicesPlatformProtoIntent.php │ │ ├── AssistantDevicesPlatformProtoInternalCapability.php │ │ ├── AssistantDevicesPlatformProtoInternalCapabilityStadiaAssistantConfig.php │ │ ├── AssistantDevicesPlatformProtoMediaNextCapability.php │ │ ├── AssistantDevicesPlatformProtoMediaPauseCapability.php │ │ ├── AssistantDevicesPlatformProtoMediaPlayMediaCapability.php │ │ ├── AssistantDevicesPlatformProtoMediaPreviousCapability.php │ │ ├── AssistantDevicesPlatformProtoMediaResumeCapability.php │ │ ├── AssistantDevicesPlatformProtoMediaStopCapability.php │ │ ├── AssistantDevicesPlatformProtoOptionValueSpec.php │ │ ├── AssistantDevicesPlatformProtoProvidedData.php │ │ ├── AssistantDevicesPlatformProtoProviderOpenCapability.php │ │ ├── AssistantDevicesPlatformProtoResponseLimits.php │ │ ├── AssistantDevicesPlatformProtoSecurityConfig.php │ │ ├── AssistantDevicesPlatformProtoSendChatMessageCapability.php │ │ ├── AssistantDevicesPlatformProtoSupportedDeviceOps.php │ │ ├── AssistantDevicesPlatformProtoTimerCapability.php │ │ ├── AssistantDevicesPlatformProtoTriggerCondition.php │ │ ├── AssistantDevicesPlatformProtoUnderstandingConfig.php │ │ ├── AssistantGroundingRankerAssistantInteractionFeatures.php │ │ ├── AssistantGroundingRankerContactGroundingProviderFeatures.php │ │ ├── AssistantGroundingRankerDeviceContactAffinityFeatures.php │ │ ├── AssistantGroundingRankerGroundingProviderFeatures.php │ │ ├── AssistantGroundingRankerLaaFeatures.php │ │ ├── AssistantGroundingRankerLaaFeaturesBindingSet.php │ │ ├── AssistantGroundingRankerLaaFeaturesCommunicationEndpoint.php │ │ ├── AssistantGroundingRankerLaaFeaturesContact.php │ │ ├── AssistantGroundingRankerLaaFeaturesProvider.php │ │ ├── AssistantGroundingRankerMediaGroundingProviderFeatures.php │ │ ├── AssistantGroundingRankerProviderGroundingProviderFeatures.php │ │ ├── AssistantLogsAllMediaStreamLog.php │ │ ├── AssistantLogsAmbiguousTargetDeviceLog.php │ │ ├── AssistantLogsAmbiguousTargetDeviceLogPuntInfoLog.php │ │ ├── AssistantLogsCommunicationDeviceContactInfoLog.php │ │ ├── AssistantLogsCommunicationFuzzyNgramMatchLog.php │ │ ├── AssistantLogsCommunicationGoogleAccountProvenance.php │ │ ├── AssistantLogsCommunicationPersonMetadataLog.php │ │ ├── AssistantLogsCommunicationPersonalContactDataLog.php │ │ ├── AssistantLogsCommunicationPhoneLog.php │ │ ├── AssistantLogsCommunicationRawDeviceContactInfoLog.php │ │ ├── AssistantLogsDefaultDeviceLog.php │ │ ├── AssistantLogsDefaultDevicesLog.php │ │ ├── AssistantLogsDeviceAnnotationLog.php │ │ ├── AssistantLogsDeviceInfoLog.php │ │ ├── AssistantLogsDeviceMediaSessionLog.php │ │ ├── AssistantLogsDeviceSelectionLog.php │ │ ├── AssistantLogsDeviceSelectionResultLog.php │ │ ├── AssistantLogsDeviceTargetingTestCode.php │ │ ├── AssistantLogsInputErrorLog.php │ │ ├── AssistantLogsLowConfidenceTargetDeviceLog.php │ │ ├── AssistantLogsLumosProcessorInfo.php │ │ ├── AssistantLogsMediaCapabilities.php │ │ ├── AssistantLogsMediaDeviceSelectionDecisionSummary.php │ │ ├── AssistantLogsMediaFocusInfoLog.php │ │ ├── AssistantLogsMediaFocusesLog.php │ │ ├── AssistantLogsMediaStreamLog.php │ │ ├── AssistantLogsNearbyDevicesLog.php │ │ ├── AssistantLogsProviderAnnotationLog.php │ │ ├── AssistantLogsQueryAnnotationLog.php │ │ ├── AssistantLogsReminderLog.php │ │ ├── AssistantLogsRoomAnnotationLog.php │ │ ├── AssistantLogsSettingsDeviceIdLog.php │ │ ├── AssistantLogsStructureAnnotationLog.php │ │ ├── AssistantLogsTargetDeviceLog.php │ │ ├── AssistantPrefulfillmentRankerPrefulfillmentSignals.php │ │ ├── AssistantProductivityListItem.php │ │ ├── AssistantRemindersAttachment.php │ │ ├── AssistantRemindersAttachmentLink.php │ │ ├── AssistantRemindersMemoryPayload.php │ │ ├── AssistantRemindersNlgTemplateKey.php │ │ ├── AssistantTeleportTeleportNicknameSignals.php │ │ ├── AssistantVerticalsCommonContactMatchSignal.php │ │ ├── AssistantVerticalsHomeautomationProtoActionProjectConfig.php │ │ ├── AssistantVerticalsHomeautomationProtoAgentDeviceId.php │ │ ├── AssistantVerticalsHomeautomationProtoAgentInformation.php │ │ ├── AssistantVerticalsHomeautomationProtoAttribute.php │ │ ├── AssistantVerticalsHomeautomationProtoAttributes.php │ │ ├── AssistantVerticalsHomeautomationProtoCommonEventTrigger.php │ │ ├── AssistantVerticalsHomeautomationProtoCommonStructureBasedRoutine.php │ │ ├── AssistantVerticalsHomeautomationProtoCommonStructureBasedRoutineTrigger.php │ │ ├── AssistantVerticalsHomeautomationProtoCommonVoiceTrigger.php │ │ ├── AssistantVerticalsHomeautomationProtoConciergeFeatures.php │ │ ├── AssistantVerticalsHomeautomationProtoDeviceTargetingOutputQueryInfo.php │ │ ├── AssistantVerticalsHomeautomationProtoHomeAutomationDevice.php │ │ ├── AssistantVerticalsHomeautomationProtoHomeAutomationDeviceItem.php │ │ ├── AssistantVerticalsHomeautomationProtoHomeAutomationMetaData.php │ │ ├── AssistantVerticalsHomeautomationProtoHomeAutomationMetaDataSupportedTraits.php │ │ ├── AssistantVerticalsHomeautomationProtoPhysicalLocation.php │ │ ├── AssistantVerticalsHomeautomationProtoRoleInformation.php │ │ ├── AssistantVerticalsHomeautomationProtoSmartDeviceManagementData.php │ │ ├── AssistantVerticalsHomeautomationProtoSmartHomeFeatures.php │ │ ├── AssistantVerticalsHomeautomationProtoSupportedStructureFeatures.php │ │ ├── AttentionalEntitiesMentionProperties.php │ │ ├── AttentionalEntitiesMentionPropertiesListEntryInfo.php │ │ ├── AttentionalEntitiesMentionPropertiesSource.php │ │ ├── AttentionalEntitiesMentionPropertiesSourceClient.php │ │ ├── AttentionalEntitiesMentionPropertiesSourceSystem.php │ │ ├── AttentionalEntitiesMentionPropertiesSourceUser.php │ │ ├── AttentionalEntitiesSemanticRoleId.php │ │ ├── AttentionalEntitiesSpatialProperties.php │ │ ├── AttentionalEntitiesSurfaceForm.php │ │ ├── BiasingPerDocData.php │ │ ├── BiasingPerDocData2.php │ │ ├── BiasingPerDocData2BiasingField.php │ │ ├── BiasingPerDocDataBiasingField.php │ │ ├── BlobstoreBlobRef.php │ │ ├── BlogPerDocData.php │ │ ├── BlogPerDocDataOutlinks.php │ │ ├── BlogsearchConversationNode.php │ │ ├── BlogsearchConversationTree.php │ │ ├── BlueGingerClientVisibleProtoBlueGingerSupportedServices.php │ │ ├── BlueGingerClientVisibleProtoBlueGingerSupportedServicesBlueGingerModule.php │ │ ├── BookCitationPerDocData.php │ │ ├── BusinessHours.php │ │ ├── BusinessHoursInterval.php │ │ ├── ChatBotPlatformBotSendToken.php │ │ ├── ChatBotPlatformFireballId.php │ │ ├── ClassifierPornAggregatedUrlPornScores.php │ │ ├── ClassifierPornClassifierData.php │ │ ├── ClassifierPornClassifierDataClassification.php │ │ ├── ClassifierPornDocumentData.php │ │ ├── ClassifierPornQueryClassifierOutput.php │ │ ├── ClassifierPornQueryMultiLabelClassifierOutput.php │ │ ├── ClassifierPornQueryStats.php │ │ ├── ClassifierPornReferrerCounts.php │ │ ├── ClassifierPornSiteData.php │ │ ├── ClassifierPornSiteDataVersionedScore.php │ │ ├── ClassifierPornSiteViolenceStats.php │ │ ├── CommerceDatastoreDeepTag.php │ │ ├── CommerceDatastoreImageDeepTags.php │ │ ├── CommerceDatastoreImageDeepTagsModelOutput.php │ │ ├── CompositeDoc.php │ │ ├── CompositeDocAdditionalChecksums.php │ │ ├── CompositeDocAlternateName.php │ │ ├── CompositeDocExtraDup.php │ │ ├── CompositeDocForwardingDup.php │ │ ├── CompositeDocIncludedContent.php │ │ ├── CompositeDocIndexingInfo.php │ │ ├── CompositeDocLiveExperimentInfo.php │ │ ├── CompositeDocLiveExperimentInfoPerLiveExperimentInfo.php │ │ ├── CompositeDocLocalizedVariations.php │ │ ├── CompositeDocPartialUpdateInfo.php │ │ ├── CompositeDocPartialUpdateInfoLastFullIndexingInfo.php │ │ ├── CompositeDocQualitySignals.php │ │ ├── CompositeDocRobotsInfoList.php │ │ ├── CompressedQualitySignals.php │ │ ├── ContentAttributions.php │ │ ├── ContentAttributionsOutgoingAttribution.php │ │ ├── ContentAwareCropsIndexing.php │ │ ├── CopleyLexicalMetadata.php │ │ ├── CopleyPersonalReference.php │ │ ├── CopleyPersonalReferenceMetadata.php │ │ ├── CopleySourceTypeList.php │ │ ├── CopleySourceTypeMetadata.php │ │ ├── CopleySubreferenceMetadata.php │ │ ├── CopleySubreferenceReference.php │ │ ├── CopleySubreferenceResolution.php │ │ ├── CorpusSelectionInfo.php │ │ ├── CountryClickDistribution.php │ │ ├── CountryClickDistributionItem.php │ │ ├── CountryCountryAttachment.php │ │ ├── CountryGeoLocation.php │ │ ├── CountryGeoLocations.php │ │ ├── CountryLocationInfo.php │ │ ├── CountryMetroNBFeature.php │ │ ├── CountryProvinceGeotoken.php │ │ ├── CountrySalientCountry.php │ │ ├── CrawlerChangerateMultipleComponentDistribution.php │ │ ├── CrawlerChangerateSingleComponentDistribution.php │ │ ├── CrawlerChangerateUrlChange.php │ │ ├── CrawlerChangerateUrlChangerate.php │ │ ├── CrawlerChangerateUrlHistory.php │ │ ├── CrawlerChangerateUrlVersion.php │ │ ├── CrowdingPerDocData.php │ │ ├── CrowdingPerDocDataNewsCluster.php │ │ ├── DeepCropIndexing.php │ │ ├── DeepCropPixels.php │ │ ├── DocProperties.php │ │ ├── DocPropertiesBadTitleInfo.php │ │ ├── DrishtiDenseFeatureData.php │ │ ├── DrishtiFeatureExtra.php │ │ ├── DrishtiFeatureSetData.php │ │ ├── DrishtiFeatureSetDataFeatureSetElement.php │ │ ├── DrishtiFeatureSetDataSequence.php │ │ ├── DrishtiIndexedFeatureData.php │ │ ├── DrishtiLabelSetData.php │ │ ├── DrishtiLabelSetElement.php │ │ ├── DrishtiQuantizedByteDenseFeatureData.php │ │ ├── DrishtiQuantizedByteIndexedFeatureData.php │ │ ├── DrishtiQuantizedDenseFeatureData.php │ │ ├── DrishtiSparseFeatureData.php │ │ ├── DrishtiVesperEncodedThumbnail.php │ │ ├── DrishtiVesperMovingThumbnail.php │ │ ├── DrishtiVesperMovingThumbnailScoreComponents.php │ │ ├── DrishtiVesperThumbnail.php │ │ ├── DrishtiVesperThumbnailQualityScore.php │ │ ├── DrishtiVesperUserReportHumanLabel.php │ │ ├── DrishtiVesperUserReportModelScore.php │ │ ├── DrishtiVesperUserReportUserReportedThumbnail.php │ │ ├── DrishtiVesperVideoThumbnail.php │ │ ├── EmbedsDeepLinkData.php │ │ ├── EmbedsEmbedClientItem.php │ │ ├── EmbedsPackagingServiceClient.php │ │ ├── EmbedsProvenance.php │ │ ├── EmbedsTransientData.php │ │ ├── EntitySignalsClassificationOutput.php │ │ ├── EntitySignalsEntityClassification.php │ │ ├── EntitySignalsEntityFeature.php │ │ ├── EntitySignalsWeightedRelevanceRating.php │ │ ├── EventIdMessage.php │ │ ├── ExtraSnippetInfoResponse.php │ │ ├── ExtraSnippetInfoResponseMatchInfo.php │ │ ├── ExtraSnippetInfoResponseQuerySubitem.php │ │ ├── ExtraSnippetInfoResponseTidbit.php │ │ ├── ExtraSnippetInfoResponseTidbitAnchorInfo.php │ │ ├── FaceIndexing.php │ │ ├── FatcatCompactBinaryClassification.php │ │ ├── FatcatCompactDocClassification.php │ │ ├── FatcatCompactRephilClusters.php │ │ ├── FatcatCompactRephilClustersCluster.php │ │ ├── FatcatCompactTaxonomicClassification.php │ │ ├── FatcatCompactTaxonomicClassificationCategory.php │ │ ├── FocusBackendContactDetailHash.php │ │ ├── FocusBackendContactPointer.php │ │ ├── FocusBackendDeviceContactId.php │ │ ├── FocusBackendDeviceId.php │ │ ├── FocusBackendDeviceRawContactId.php │ │ ├── FocusBackendOtherContactId.php │ │ ├── FocusBackendSecondaryContactId.php │ │ ├── FreebaseCitation.php │ │ ├── FreebaseId.php │ │ ├── FreebaseLatLong.php │ │ ├── FreebaseMeasurement.php │ │ ├── FreebaseMeasurementUnit.php │ │ ├── FreebaseNestedStruct.php │ │ ├── FreebasePropertyValue.php │ │ ├── FreebaseTopic.php │ │ ├── FreebaseValue.php │ │ ├── GDocumentBase.php │ │ ├── GDocumentBaseContent.php │ │ ├── GDocumentBaseDirectory.php │ │ ├── GDocumentBaseOriginalContent.php │ │ ├── GenericSnippetResponse.php │ │ ├── GeoOndemandAssistantSupportedActions.php │ │ ├── GeostoreAccessPointProto.php │ │ ├── GeostoreAddressComponentProto.php │ │ ├── GeostoreAddressLinesProto.php │ │ ├── GeostoreAddressProto.php │ │ ├── GeostoreAddressRangeProto.php │ │ ├── GeostoreAnchoredGeometryProto.php │ │ ├── GeostoreAppliedSpeedLimitProto.php │ │ ├── GeostoreAttachmentsAttachmentProto.php │ │ ├── GeostoreAttributeIdProto.php │ │ ├── GeostoreAttributeProto.php │ │ ├── GeostoreAttributeValueDisplayProto.php │ │ ├── GeostoreBarrierLogicalMaterialProto.php │ │ ├── GeostoreBestLocaleProto.php │ │ ├── GeostoreBizBuilderReferenceProto.php │ │ ├── GeostoreBorderProto.php │ │ ├── GeostoreBoundingMarkerProto.php │ │ ├── GeostoreBuildingProto.php │ │ ├── GeostoreBusinessChainProto.php │ │ ├── GeostoreBusinessHoursProto.php │ │ ├── GeostoreCallToActionProto.php │ │ ├── GeostoreCanonicalGConceptProto.php │ │ ├── GeostoreCellCoveringProto.php │ │ ├── GeostoreComposableItemProto.php │ │ ├── GeostoreCountComparisonProto.php │ │ ├── GeostoreCrossingStripePatternProto.php │ │ ├── GeostoreCurveConnectionProto.php │ │ ├── GeostoreCurveConnectionProtoBezierParams.php │ │ ├── GeostoreCurveConnectionProtoBezierParamsControlPoint.php │ │ ├── GeostoreCurveConnectionProtoCircleParams.php │ │ ├── GeostoreDataSourceProto.php │ │ ├── GeostoreDateTimeProto.php │ │ ├── GeostoreDimensionComparisonProto.php │ │ ├── GeostoreDimensionProto.php │ │ ├── GeostoreDisplayDataProto.php │ │ ├── GeostoreDoodleProto.php │ │ ├── GeostoreDurationBasedRateProto.php │ │ ├── GeostoreElevationModelProto.php │ │ ├── GeostoreElevationProto.php │ │ ├── GeostoreEntranceProto.php │ │ ├── GeostoreEntranceReferenceProto.php │ │ ├── GeostoreEstablishmentProto.php │ │ ├── GeostoreExceptionalHoursProto.php │ │ ├── GeostoreExistenceProto.php │ │ ├── GeostoreFeatureFieldMetadataProto.php │ │ ├── GeostoreFeatureFieldMetadataProtoFieldProvenance.php │ │ ├── GeostoreFeatureHistoryMetadataProto.php │ │ ├── GeostoreFeatureIdForwardingsProto.php │ │ ├── GeostoreFeatureIdListProto.php │ │ ├── GeostoreFeatureIdProto.php │ │ ├── GeostoreFeatureMetadataProto.php │ │ ├── GeostoreFeaturePropertyIdProto.php │ │ ├── GeostoreFeatureProto.php │ │ ├── GeostoreFeatureReplacementInfoProto.php │ │ ├── GeostoreFieldMetadataProto.php │ │ ├── GeostoreFieldWithRightsProto.php │ │ ├── GeostoreFlowLineProto.php │ │ ├── GeostoreFoodMenuItemOptionProto.php │ │ ├── GeostoreFoodMenuItemOptionProtoIngredient.php │ │ ├── GeostoreFoodMenuItemOptionProtoPortionSize.php │ │ ├── GeostoreFoodMenuItemProto.php │ │ ├── GeostoreGConceptInstanceProto.php │ │ ├── GeostoreGeometryComposition.php │ │ ├── GeostoreGeopoliticalGeometryProto.php │ │ ├── GeostoreGradeLevelProto.php │ │ ├── GeostoreHtmlTextProto.php │ │ ├── GeostoreInferredGeometryProto.php │ │ ├── GeostoreInternalFeatureProto.php │ │ ├── GeostoreInternalFieldMetadataProto.php │ │ ├── GeostoreInternalSegmentProto.php │ │ ├── GeostoreInternalSourceSummaryProto.php │ │ ├── GeostoreIntersectionGroupProto.php │ │ ├── GeostoreIntersectionProto.php │ │ ├── GeostoreJobMetadata.php │ │ ├── GeostoreJobRelatedCategory.php │ │ ├── GeostoreKnowledgeGraphReferenceProto.php │ │ ├── GeostoreLandmarkReferenceProto.php │ │ ├── GeostoreLaneMarkerProto.php │ │ ├── GeostoreLaneProto.php │ │ ├── GeostoreLaneProtoLaneConnection.php │ │ ├── GeostoreLanguageTaggedTextProto.php │ │ ├── GeostoreLevelProto.php │ │ ├── GeostoreLinearStripePatternProto.php │ │ ├── GeostoreLocaleLanguageProto.php │ │ ├── GeostoreLocaleProto.php │ │ ├── GeostoreLogicalBorderProto.php │ │ ├── GeostoreMediaItemProto.php │ │ ├── GeostoreMediaItemProtoMediaSize.php │ │ ├── GeostoreNameProto.php │ │ ├── GeostoreOntologyRawGConceptInstanceContainerProto.php │ │ ├── GeostoreOntologyRawGConceptInstanceProto.php │ │ ├── GeostoreOpeningHoursProto.php │ │ ├── GeostoreOperationsProto.php │ │ ├── GeostoreOverrideBorderStatusProto.php │ │ ├── GeostorePaintedElementLogicalColorProto.php │ │ ├── GeostoreParkingAllowanceProto.php │ │ ├── GeostoreParkingProto.php │ │ ├── GeostoreParkingRestrictionProto.php │ │ ├── GeostorePeakProto.php │ │ ├── GeostorePedestrianCrossingProto.php │ │ ├── GeostorePhysicalLineProto.php │ │ ├── GeostorePointProto.php │ │ ├── GeostorePointWithHeightProto.php │ │ ├── GeostorePoliticalProto.php │ │ ├── GeostorePolyLineProto.php │ │ ├── GeostorePolygonProto.php │ │ ├── GeostorePoseProto.php │ │ ├── GeostorePriceInfoFoodNutritionFacts.php │ │ ├── GeostorePriceInfoFoodNutritionFactsCaloriesFact.php │ │ ├── GeostorePriceInfoFoodNutritionFactsNutritionFact.php │ │ ├── GeostorePriceInfoProto.php │ │ ├── GeostorePriceInfoSourceDetails.php │ │ ├── GeostorePriceInfoSourceDetailsSourceData.php │ │ ├── GeostorePriceInfoStatus.php │ │ ├── GeostorePriceListNameInfoProto.php │ │ ├── GeostorePriceListProto.php │ │ ├── GeostorePriceListSectionProto.php │ │ ├── GeostorePriceRangeProto.php │ │ ├── GeostorePropertyValueStatusProto.php │ │ ├── GeostoreProvenanceProto.php │ │ ├── GeostoreRankDetailsProto.php │ │ ├── GeostoreRankSignalProto.php │ │ ├── GeostoreRawDataProto.php │ │ ├── GeostoreRawMetadataProto.php │ │ ├── GeostoreRectProto.php │ │ ├── GeostoreRegulatedAreaProto.php │ │ ├── GeostoreRelationProto.php │ │ ├── GeostoreRestrictionGroupProto.php │ │ ├── GeostoreRestrictionProto.php │ │ ├── GeostoreRightsStatusProto.php │ │ ├── GeostoreRoadConditionalProto.php │ │ ├── GeostoreRoadMonitorProto.php │ │ ├── GeostoreRoadSignComponentProto.php │ │ ├── GeostoreRoadSignProto.php │ │ ├── GeostoreRouteAssociationProto.php │ │ ├── GeostoreRouteProto.php │ │ ├── GeostoreSchoolDistrictProto.php │ │ ├── GeostoreSegmentPathProto.php │ │ ├── GeostoreSegmentProto.php │ │ ├── GeostoreServiceAreaProto.php │ │ ├── GeostoreServicedStopProto.php │ │ ├── GeostoreSkiBoundaryProto.php │ │ ├── GeostoreSkiLiftProto.php │ │ ├── GeostoreSkiTrailProto.php │ │ ├── GeostoreSocialReferenceProto.php │ │ ├── GeostoreSourceInfoProto.php │ │ ├── GeostoreSourceTrustProto.php │ │ ├── GeostoreSpeedLimitProto.php │ │ ├── GeostoreSpeedProto.php │ │ ├── GeostoreStableFieldPathProto.php │ │ ├── GeostoreStableFieldPathProtoStableFieldSelector.php │ │ ├── GeostoreSweepProto.php │ │ ├── GeostoreTelephoneProto.php │ │ ├── GeostoreTemporaryClosureProto.php │ │ ├── GeostoreTextAffixProto.php │ │ ├── GeostoreThreeDimensionalModelProto.php │ │ ├── GeostoreTimeBasedRateProto.php │ │ ├── GeostoreTimeComponentProto.php │ │ ├── GeostoreTimeEndpointProto.php │ │ ├── GeostoreTimeIntervalProto.php │ │ ├── GeostoreTimeScheduleProto.php │ │ ├── GeostoreTimezoneProto.php │ │ ├── GeostoreTollClusterProto.php │ │ ├── GeostoreTrackProto.php │ │ ├── GeostoreTransitLineProto.php │ │ ├── GeostoreTransitLineVariantProto.php │ │ ├── GeostoreTransitStationProto.php │ │ ├── GeostoreTrustSignalsProto.php │ │ ├── GeostoreUnlimitedSpeedProto.php │ │ ├── GeostoreUrlListProto.php │ │ ├── GeostoreUrlProto.php │ │ ├── GeostoreUserProto.php │ │ ├── GeostoreVariableSpeedProto.php │ │ ├── GeostoreVehicleAttributeFilterProto.php │ │ ├── GeostoreVerticalOrderingProto.php │ │ ├── GeostoreWeightComparisonProto.php │ │ ├── GeostoreWeightProto.php │ │ ├── GoodocAnchorLabel.php │ │ ├── GoodocBoundingBox.php │ │ ├── GoodocBoxPartitions.php │ │ ├── GoodocBreakLabel.php │ │ ├── GoodocCharLabel.php │ │ ├── GoodocDocument.php │ │ ├── GoodocDocumentHeader.php │ │ ├── GoodocDocumentHeaderFont.php │ │ ├── GoodocDocumentPage.php │ │ ├── GoodocDocumentPageBlock.php │ │ ├── GoodocDocumentPageMergedPageInfo.php │ │ ├── GoodocFontSizeStats.php │ │ ├── GoodocLabel.php │ │ ├── GoodocLanguageCombinationLanguage.php │ │ ├── GoodocLanguageLabel.php │ │ ├── GoodocLogicalEntity.php │ │ ├── GoodocLogicalEntityLink.php │ │ ├── GoodocOrdinal.php │ │ ├── GoodocOrientationLabel.php │ │ ├── GoodocOverrides.php │ │ ├── GoodocOverridesStyle.php │ │ ├── GoodocParagraph.php │ │ ├── GoodocParagraphDroppedCap.php │ │ ├── GoodocParagraphRoute.php │ │ ├── GoodocRotatedBoundingBox.php │ │ ├── GoodocRoutePoint.php │ │ ├── GoodocSemanticLabel.php │ │ ├── GoodocSemanticLabelColumnDetails.php │ │ ├── GoodocSemanticLabelContentLink.php │ │ ├── GoodocSemanticLabelContentLinkCitationTarget.php │ │ ├── GoodocSemanticLabelContentLinkInVolumeTarget.php │ │ ├── GoodocSemanticLabelEditCorrectionCandidate.php │ │ ├── GoodocSemanticLabelSnippetFilter.php │ │ ├── GoodocSemanticLabelTableCellDetails.php │ │ ├── GoodocSemanticLabelTableDetails.php │ │ ├── GoodocSummaryStats.php │ │ ├── GoodocSymbol.php │ │ ├── GoodocSymbolSymbolVariant.php │ │ ├── GoodocWord.php │ │ ├── GoodocWordAlternates.php │ │ ├── GoodocWordAlternatesAlternate.php │ │ ├── GoogleAssistantAccessoryV1AudioOutConfig.php │ │ ├── GoogleAssistantAccessoryV1DeviceConfig.php │ │ ├── GoogleAssistantAccessoryV1DeviceState.php │ │ ├── GoogleAssistantAccessoryV1ResponseConfig.php │ │ ├── GoogleAssistantAccessoryV1ScreenOutConfig.php │ │ ├── GoogleAssistantAccessoryV1ScreenOutConfigDimensions.php │ │ ├── GoogleAssistantEmbeddedV1Alarm.php │ │ ├── GoogleAssistantEmbeddedV1AlarmRecurrence.php │ │ ├── GoogleAssistantEmbeddedV1Alarms.php │ │ ├── GoogleAssistantEmbeddedV1DeviceBuild.php │ │ ├── GoogleAssistantEmbeddedV1DeviceModelCapabilitiesOverride.php │ │ ├── GoogleAssistantEmbeddedV1FitnessActivities.php │ │ ├── GoogleAssistantEmbeddedV1FitnessActivity.php │ │ ├── GoogleAssistantEmbeddedV1Timer.php │ │ ├── GoogleAssistantEmbeddedV1Timers.php │ │ ├── GoogleCloudContentwarehouseV1AccessControlAction.php │ │ ├── GoogleCloudContentwarehouseV1Action.php │ │ ├── GoogleCloudContentwarehouseV1ActionExecutorOutput.php │ │ ├── GoogleCloudContentwarehouseV1ActionOutput.php │ │ ├── GoogleCloudContentwarehouseV1AddToFolderAction.php │ │ ├── GoogleCloudContentwarehouseV1ClassifySplitAndExtractPipeline.php │ │ ├── GoogleCloudContentwarehouseV1CloudAIDocumentOption.php │ │ ├── GoogleCloudContentwarehouseV1CreateDocumentLinkRequest.php │ │ ├── GoogleCloudContentwarehouseV1CreateDocumentMetadata.php │ │ ├── GoogleCloudContentwarehouseV1CreateDocumentRequest.php │ │ ├── GoogleCloudContentwarehouseV1CreateDocumentResponse.php │ │ ├── GoogleCloudContentwarehouseV1CustomWeightsMetadata.php │ │ ├── GoogleCloudContentwarehouseV1DataUpdateAction.php │ │ ├── GoogleCloudContentwarehouseV1DataValidationAction.php │ │ ├── GoogleCloudContentwarehouseV1DateTimeArray.php │ │ ├── GoogleCloudContentwarehouseV1DateTimeTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1DeleteDocumentAction.php │ │ ├── GoogleCloudContentwarehouseV1DeleteDocumentLinkRequest.php │ │ ├── GoogleCloudContentwarehouseV1DeleteDocumentRequest.php │ │ ├── GoogleCloudContentwarehouseV1Document.php │ │ ├── GoogleCloudContentwarehouseV1DocumentLink.php │ │ ├── GoogleCloudContentwarehouseV1DocumentQuery.php │ │ ├── GoogleCloudContentwarehouseV1DocumentReference.php │ │ ├── GoogleCloudContentwarehouseV1DocumentSchema.php │ │ ├── GoogleCloudContentwarehouseV1EnumArray.php │ │ ├── GoogleCloudContentwarehouseV1EnumTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1EnumValue.php │ │ ├── GoogleCloudContentwarehouseV1ExportToCdwPipeline.php │ │ ├── GoogleCloudContentwarehouseV1FetchAclRequest.php │ │ ├── GoogleCloudContentwarehouseV1FetchAclResponse.php │ │ ├── GoogleCloudContentwarehouseV1FileTypeFilter.php │ │ ├── GoogleCloudContentwarehouseV1FloatArray.php │ │ ├── GoogleCloudContentwarehouseV1FloatTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1GcsIngestPipeline.php │ │ ├── GoogleCloudContentwarehouseV1GcsIngestWithDocAiProcessorsPipeline.php │ │ ├── GoogleCloudContentwarehouseV1GetDocumentRequest.php │ │ ├── GoogleCloudContentwarehouseV1HistogramQuery.php │ │ ├── GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.php │ │ ├── GoogleCloudContentwarehouseV1HistogramQueryResult.php │ │ ├── GoogleCloudContentwarehouseV1InitializeProjectRequest.php │ │ ├── GoogleCloudContentwarehouseV1InitializeProjectResponse.php │ │ ├── GoogleCloudContentwarehouseV1IntegerArray.php │ │ ├── GoogleCloudContentwarehouseV1IntegerTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1InvalidRule.php │ │ ├── GoogleCloudContentwarehouseV1ListDocumentSchemasResponse.php │ │ ├── GoogleCloudContentwarehouseV1ListLinkedSourcesRequest.php │ │ ├── GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.php │ │ ├── GoogleCloudContentwarehouseV1ListLinkedTargetsRequest.php │ │ ├── GoogleCloudContentwarehouseV1ListLinkedTargetsResponse.php │ │ ├── GoogleCloudContentwarehouseV1ListRuleSetsResponse.php │ │ ├── GoogleCloudContentwarehouseV1ListSynonymSetsResponse.php │ │ ├── GoogleCloudContentwarehouseV1MapProperty.php │ │ ├── GoogleCloudContentwarehouseV1MapTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1MergeFieldsOptions.php │ │ ├── GoogleCloudContentwarehouseV1ProcessWithDocAi.php │ │ ├── GoogleCloudContentwarehouseV1ProcessorInfo.php │ │ ├── GoogleCloudContentwarehouseV1Property.php │ │ ├── GoogleCloudContentwarehouseV1PropertyArray.php │ │ ├── GoogleCloudContentwarehouseV1PropertyDefinition.php │ │ ├── GoogleCloudContentwarehouseV1PropertyDefinitionSchemaSource.php │ │ ├── GoogleCloudContentwarehouseV1PropertyFilter.php │ │ ├── GoogleCloudContentwarehouseV1PropertyTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1PublishAction.php │ │ ├── GoogleCloudContentwarehouseV1QAResult.php │ │ ├── GoogleCloudContentwarehouseV1QAResultHighlight.php │ │ ├── GoogleCloudContentwarehouseV1RemoveFromFolderAction.php │ │ ├── GoogleCloudContentwarehouseV1RequestMetadata.php │ │ ├── GoogleCloudContentwarehouseV1ResponseMetadata.php │ │ ├── GoogleCloudContentwarehouseV1Rule.php │ │ ├── GoogleCloudContentwarehouseV1RuleActionsPair.php │ │ ├── GoogleCloudContentwarehouseV1RuleEngineOutput.php │ │ ├── GoogleCloudContentwarehouseV1RuleEvaluatorOutput.php │ │ ├── GoogleCloudContentwarehouseV1RuleSet.php │ │ ├── GoogleCloudContentwarehouseV1RunPipelineRequest.php │ │ ├── GoogleCloudContentwarehouseV1SearchDocumentsRequest.php │ │ ├── GoogleCloudContentwarehouseV1SearchDocumentsResponse.php │ │ ├── GoogleCloudContentwarehouseV1SearchDocumentsResponseMatchingDocument.php │ │ ├── GoogleCloudContentwarehouseV1SetAclRequest.php │ │ ├── GoogleCloudContentwarehouseV1SetAclResponse.php │ │ ├── GoogleCloudContentwarehouseV1SynonymSet.php │ │ ├── GoogleCloudContentwarehouseV1SynonymSetSynonym.php │ │ ├── GoogleCloudContentwarehouseV1TextArray.php │ │ ├── GoogleCloudContentwarehouseV1TextTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1TimeFilter.php │ │ ├── GoogleCloudContentwarehouseV1TimestampArray.php │ │ ├── GoogleCloudContentwarehouseV1TimestampTypeOptions.php │ │ ├── GoogleCloudContentwarehouseV1TimestampValue.php │ │ ├── GoogleCloudContentwarehouseV1UpdateDocumentMetadata.php │ │ ├── GoogleCloudContentwarehouseV1UpdateDocumentRequest.php │ │ ├── GoogleCloudContentwarehouseV1UpdateDocumentResponse.php │ │ ├── GoogleCloudContentwarehouseV1UpdateDocumentSchemaRequest.php │ │ ├── GoogleCloudContentwarehouseV1UpdateOptions.php │ │ ├── GoogleCloudContentwarehouseV1UpdateRuleSetRequest.php │ │ ├── GoogleCloudContentwarehouseV1UserInfo.php │ │ ├── GoogleCloudContentwarehouseV1Value.php │ │ ├── GoogleCloudContentwarehouseV1WeightedSchemaProperty.php │ │ ├── GoogleCloudContentwarehouseV1beta1CreateDocumentMetadata.php │ │ ├── GoogleCloudContentwarehouseV1beta1InitializeProjectResponse.php │ │ ├── GoogleCloudContentwarehouseV1beta1UpdateDocumentMetadata.php │ │ ├── GoogleCloudDocumentaiV1Barcode.php │ │ ├── GoogleCloudDocumentaiV1BoundingPoly.php │ │ ├── GoogleCloudDocumentaiV1Document.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntity.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntityNormalizedValue.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntityRelation.php │ │ ├── GoogleCloudDocumentaiV1DocumentPage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageAnchor.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageAnchorPageRef.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageBlock.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDetectedBarcode.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDimension.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageFormField.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImageQualityScores.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImageQualityScoresDetectedDefect.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageLayout.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageLine.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageMatrix.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageParagraph.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageSymbol.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTable.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTableTableCell.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTableTableRow.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageToken.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreak.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageVisualElement.php │ │ ├── GoogleCloudDocumentaiV1DocumentProvenance.php │ │ ├── GoogleCloudDocumentaiV1DocumentProvenanceParent.php │ │ ├── GoogleCloudDocumentaiV1DocumentRevision.php │ │ ├── GoogleCloudDocumentaiV1DocumentRevisionHumanReview.php │ │ ├── GoogleCloudDocumentaiV1DocumentShardInfo.php │ │ ├── GoogleCloudDocumentaiV1DocumentStyle.php │ │ ├── GoogleCloudDocumentaiV1DocumentStyleFontSize.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextAnchor.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextAnchorTextSegment.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextChange.php │ │ ├── GoogleCloudDocumentaiV1NormalizedVertex.php │ │ ├── GoogleCloudDocumentaiV1Vertex.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleInternalAppsWaldoV1alphaAvailabilityPeriod.php │ │ ├── GoogleInternalAppsWaldoV1alphaCalendarBusy.php │ │ ├── GoogleInternalAppsWaldoV1alphaCustomLocation.php │ │ ├── GoogleInternalAppsWaldoV1alphaDoNotDisturb.php │ │ ├── GoogleInternalAppsWaldoV1alphaHomeLocation.php │ │ ├── GoogleInternalAppsWaldoV1alphaInMeeting.php │ │ ├── GoogleInternalAppsWaldoV1alphaInactive.php │ │ ├── GoogleInternalAppsWaldoV1alphaLocalTimeContext.php │ │ ├── GoogleInternalAppsWaldoV1alphaOfficeLocation.php │ │ ├── GoogleInternalAppsWaldoV1alphaOutOfOffice.php │ │ ├── GoogleInternalAppsWaldoV1alphaOutsideWorkingHours.php │ │ ├── GoogleInternalAppsWaldoV1alphaTimeRange.php │ │ ├── GoogleInternalAppsWaldoV1alphaUpcomingCommitmentContext.php │ │ ├── GoogleInternalAppsWaldoV1alphaUpcomingOooContext.php │ │ ├── GoogleInternalAppsWaldoV1alphaUserAvailabilities.php │ │ ├── GoogleInternalAppsWaldoV1alphaUserAvailability.php │ │ ├── GoogleInternalAppsWaldoV1alphaUserContext.php │ │ ├── GoogleInternalAppsWaldoV1alphaUserLocation.php │ │ ├── GoogleInternalAppsWaldoV1alphaUserStatus.php │ │ ├── GoogleInternalAppsWaldoV1alphaWorkingElsewhereContext.php │ │ ├── GoogleInternalAppsWaldoV1alphaWorkingHours.php │ │ ├── GoogleInternalCommunicationsInstantmessagingV1Id.php │ │ ├── GoogleInternalCommunicationsInstantmessagingV1LocationHint.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeColor.php │ │ ├── GoogleTypeDate.php │ │ ├── GoogleTypeDateTime.php │ │ ├── GoogleTypeExpr.php │ │ ├── GoogleTypeInterval.php │ │ ├── GoogleTypeLatLng.php │ │ ├── GoogleTypeMoney.php │ │ ├── GoogleTypePostalAddress.php │ │ ├── GoogleTypeTimeOfDay.php │ │ ├── GoogleTypeTimeZone.php │ │ ├── GroupsPerDocData.php │ │ ├── HomeGraphCommonRoute.php │ │ ├── HomeGraphCommonRoutingTable.php │ │ ├── HomeGraphCommonTraitRoutingHints.php │ │ ├── HtmlrenderWebkitHeadlessProtoAnonTimingStatPair.php │ │ ├── HtmlrenderWebkitHeadlessProtoBox.php │ │ ├── HtmlrenderWebkitHeadlessProtoChromiumTrace.php │ │ ├── HtmlrenderWebkitHeadlessProtoConsoleLogEntry.php │ │ ├── HtmlrenderWebkitHeadlessProtoCookie.php │ │ ├── HtmlrenderWebkitHeadlessProtoDOMStorageItem.php │ │ ├── HtmlrenderWebkitHeadlessProtoDOMTreeNode.php │ │ ├── HtmlrenderWebkitHeadlessProtoDOMTreeNodeAttribute.php │ │ ├── HtmlrenderWebkitHeadlessProtoDocument.php │ │ ├── HtmlrenderWebkitHeadlessProtoFrameResizeEvent.php │ │ ├── HtmlrenderWebkitHeadlessProtoImage.php │ │ ├── HtmlrenderWebkitHeadlessProtoInitialLoadEvent.php │ │ ├── HtmlrenderWebkitHeadlessProtoModalDialogEvent.php │ │ ├── HtmlrenderWebkitHeadlessProtoOffset.php │ │ ├── HtmlrenderWebkitHeadlessProtoPartialRender.php │ │ ├── HtmlrenderWebkitHeadlessProtoPdf.php │ │ ├── HtmlrenderWebkitHeadlessProtoRectangle.php │ │ ├── HtmlrenderWebkitHeadlessProtoRedirectEvent.php │ │ ├── HtmlrenderWebkitHeadlessProtoRedirectHop.php │ │ ├── HtmlrenderWebkitHeadlessProtoReferencedResource.php │ │ ├── HtmlrenderWebkitHeadlessProtoReferencedResourceFetchTiming.php │ │ ├── HtmlrenderWebkitHeadlessProtoReferencedResourceHttpHeader.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderEvent.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderExtensionResult.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderResponse.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderStats.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderStatsCounter.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderTreeNode.php │ │ ├── HtmlrenderWebkitHeadlessProtoRenderTreeNodeInlineTextBox.php │ │ ├── HtmlrenderWebkitHeadlessProtoResource.php │ │ ├── HtmlrenderWebkitHeadlessProtoResourceHttpHeader.php │ │ ├── HtmlrenderWebkitHeadlessProtoScriptStackFrame.php │ │ ├── HtmlrenderWebkitHeadlessProtoStyle.php │ │ ├── HtmlrenderWebkitHeadlessProtoWebKitFetchMetadata.php │ │ ├── HtmlrenderWebkitHeadlessProtoWindowOpenEvent.php │ │ ├── I18nPhonenumbersPhoneNumber.php │ │ ├── ImageBaseThumbnailMetadata.php │ │ ├── ImageBaseVideoPreviewMetadata.php │ │ ├── ImageContentFlowProtoProd.php │ │ ├── ImageContentQueryBoost.php │ │ ├── ImageContentQueryBoostQueryBoost.php │ │ ├── ImageContentStarburstVersionGroup.php │ │ ├── ImageData.php │ │ ├── ImageDataMultibangEntities.php │ │ ├── ImageDataMultibangEntitiesMultibangEntity.php │ │ ├── ImageDataThumbnail.php │ │ ├── ImageExactBoost.php │ │ ├── ImageExactBoostNavQuery.php │ │ ├── ImageExifIPTCMetadata.php │ │ ├── ImageExifIPTCMetadataArtwork.php │ │ ├── ImageExifIPTCMetadataContactInfo.php │ │ ├── ImageExifIPTCMetadataLocation.php │ │ ├── ImageExifIPTCMetadataLocationInfo.php │ │ ├── ImageExifImageEmbeddedMetadata.php │ │ ├── ImageMonetizationFeaturedImageProperties.php │ │ ├── ImageMoosedogCrawlState.php │ │ ├── ImageMustangImageLinkSelectionInfo.php │ │ ├── ImageMustangShoppingOffer.php │ │ ├── ImagePerDocData.php │ │ ├── ImagePornDebugInfo.php │ │ ├── ImageRegionsImageRegion.php │ │ ├── ImageRegionsImageRegions.php │ │ ├── ImageRepositoryAmarnaCloudSpeechSignals.php │ │ ├── ImageRepositoryAmarnaSignalsBlob.php │ │ ├── ImageRepositoryAmarnaSignalsBlobInfo.php │ │ ├── ImageRepositoryAmarnaStatus.php │ │ ├── ImageRepositoryAnimatedImagePerdocData.php │ │ ├── ImageRepositoryApiItagSpecificMetadata.php │ │ ├── ImageRepositoryApiXtag.php │ │ ├── ImageRepositoryApiXtagList.php │ │ ├── ImageRepositoryContentBasedVideoMetadata.php │ │ ├── ImageRepositoryCrawlStatusInfo.php │ │ ├── ImageRepositoryDeepImageEngagingnessOutput.php │ │ ├── ImageRepositoryFileTruncationInfo.php │ │ ├── ImageRepositoryFrameIdentifier.php │ │ ├── ImageRepositoryFrameIdentifierPreviewFrameZeroVariant.php │ │ ├── ImageRepositoryFrameIdentifierThumbnailVariant.php │ │ ├── ImageRepositoryFramePerdoc.php │ │ ├── ImageRepositoryFramePerdocs.php │ │ ├── ImageRepositoryNimaOutput.php │ │ ├── ImageRepositoryS3LangIdSignals.php │ │ ├── ImageRepositoryShoppingProductInformation.php │ │ ├── ImageRepositoryShoppingProductInformationBoundingBox.php │ │ ├── ImageRepositoryShoppingProductInformationEntity.php │ │ ├── ImageRepositoryShoppingProductInformationProductInformation.php │ │ ├── ImageRepositoryShoppingProductInformationProductInformationTokenGroup.php │ │ ├── ImageRepositoryShoppingProductInformationVersionedProductInformationSet.php │ │ ├── ImageRepositorySpeechRecognitionAlternative.php │ │ ├── ImageRepositorySpeechRecognitionResult.php │ │ ├── ImageRepositoryUnwantedContent.php │ │ ├── ImageRepositoryVenomProcessingInfo.php │ │ ├── ImageRepositoryVenomStatus.php │ │ ├── ImageRepositoryVideoIndexingInfo.php │ │ ├── ImageRepositoryVideoLinkIndexingInfo.php │ │ ├── ImageRepositoryVideoPreviewsDebuggingInfo.php │ │ ├── ImageRepositoryVideoPreviewsVideoPreview.php │ │ ├── ImageRepositoryVideoProperties.php │ │ ├── ImageRepositoryWordInfo.php │ │ ├── ImageRepositoryYoutubeProcessingFilter.php │ │ ├── ImageSafesearchContentBrainPornAnnotation.php │ │ ├── ImageSafesearchContentOCRAnnotation.php │ │ ├── ImageSafesearchContentOffensiveSymbolDetection.php │ │ ├── ImageSafesearchContentOffensiveSymbolMatch.php │ │ ├── ImageSearchImageIndexingInfo.php │ │ ├── ImageSearchImageLicenseInfo.php │ │ ├── ImageSearchImageSelectionInfo.php │ │ ├── ImageSearchUnindexedImageLink.php │ │ ├── ImageUnderstandingIndexingAnnotation.php │ │ ├── ImageUnderstandingIndexingAnnotationGroup.php │ │ ├── ImageUnderstandingIndexingFeature.php │ │ ├── ImageUnderstandingIndexingImageRegion.php │ │ ├── ImageUnderstandingIndexingLabel.php │ │ ├── ImageUnderstandingIndexingLabelGroup.php │ │ ├── ImageUnderstandingIndexingMetaData.php │ │ ├── IndexingBadSSLCertificate.php │ │ ├── IndexingConverterLocalizedAlternateName.php │ │ ├── IndexingConverterRawRedirectInfo.php │ │ ├── IndexingConverterRedirectChain.php │ │ ├── IndexingConverterRedirectChainHop.php │ │ ├── IndexingConverterRedirectParams.php │ │ ├── IndexingConverterRichContentData.php │ │ ├── IndexingConverterRichContentDataRange.php │ │ ├── IndexingConverterRobotsInfo.php │ │ ├── IndexingConverterShingleFingerprint.php │ │ ├── IndexingCrawlerIdServingDocumentIdentifier.php │ │ ├── IndexingDocjoinerAnchorPhraseSpamInfo.php │ │ ├── IndexingDocjoinerAnchorSpamInfo.php │ │ ├── IndexingDocjoinerAnchorStatistics.php │ │ ├── IndexingDocjoinerAnchorStatisticsPerDupStats.php │ │ ├── IndexingDocjoinerAnchorStatisticsRedundantAnchorInfo.php │ │ ├── IndexingDocjoinerAnchorStatisticsRedundantAnchorInfoForPhraseCap.php │ │ ├── IndexingDocjoinerAnchorTrustedInfo.php │ │ ├── IndexingDocjoinerCDocBuildInfo.php │ │ ├── IndexingDocjoinerDataVersion.php │ │ ├── IndexingDocjoinerDataVersionVersionInfo.php │ │ ├── IndexingDocjoinerServingTimeClusterId.php │ │ ├── IndexingDocjoinerServingTimeClusterIds.php │ │ ├── IndexingDupsComputedLocalizedAlternateNamesLocaleEntry.php │ │ ├── IndexingDupsLocalizedLocalizedCluster.php │ │ ├── IndexingDupsLocalizedLocalizedClusterCluster.php │ │ ├── IndexingDupsLocalizedLocalizedClusterLinkBasedClusterInfo.php │ │ ├── IndexingDupsLocalizedLocalizedClusterLinkBasedClusterInfoLinkData.php │ │ ├── IndexingDupsLocalizedLocalizedClusterLinkBasedClusterInfoLinkMember.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLink.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLinkLink.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLinkLinkAnnotationSourceInfo.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLinkMetadata.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLinkSets.php │ │ ├── IndexingDupsLocalizedLocalizedClusterTargetLinkTargetDocData.php │ │ ├── IndexingEmbeddedContentEmbeddedContentInfo.php │ │ ├── IndexingEmbeddedContentEmbeddedLinksInfo.php │ │ ├── IndexingEmbeddedContentEmbedderInfo.php │ │ ├── IndexingEmbeddedContentFetchHostCount.php │ │ ├── IndexingEmbeddedContentFetchHostCountCounter.php │ │ ├── IndexingEmbeddedContentFetchUrlResponseMetadata.php │ │ ├── IndexingEmbeddedContentLinkInfo.php │ │ ├── IndexingEmbeddedContentOutputGenerationTimestamps.php │ │ ├── IndexingEmbeddedContentPageSizeInfo.php │ │ ├── IndexingEmbeddedContentRenderCacheStats.php │ │ ├── IndexingEmbeddedContentRenderRequestConfigConfigParams.php │ │ ├── IndexingEmbeddedContentRenderingFetchStats.php │ │ ├── IndexingEmbeddedContentRenderingOutputMetadata.php │ │ ├── IndexingEmbeddedContentSelectionResult.php │ │ ├── IndexingMlVerticalVerticalItem.php │ │ ├── IndexingMobileInterstitialsProtoDesktopInterstitials.php │ │ ├── IndexingMobileInterstitialsProtoDesktopInterstitialsDetails.php │ │ ├── IndexingMobileInterstitialsProtoInterstitialBasicInfo.php │ │ ├── IndexingMobileVoltCoreWebVitals.php │ │ ├── IndexingMobileVoltVoltPerDocData.php │ │ ├── IndexingPrivacyAccessAccessRequirements.php │ │ ├── IndexingSignalAggregatorAdaptiveIntervalData.php │ │ ├── IndexingSignalAggregatorAgeWeightedCoverageData.php │ │ ├── IndexingSignalAggregatorAggregatedScore.php │ │ ├── IndexingSignalAggregatorRunningMeanAndVarianceInternalState.php │ │ ├── IndexingSignalAggregatorSccData.php │ │ ├── IndexingSignalAggregatorSccSignal.php │ │ ├── IndexingSignalAggregatorUrlPatternSignals.php │ │ ├── IndexingSignalAggregatorUrlPatternSignalsPriorSignal.php │ │ ├── IndexingSignalAggregatorUrlScore.php │ │ ├── IndexingSpeechSpeechPropertiesProto.php │ │ ├── IndexingUrlPatternUrlTreeBigTreeBranch.php │ │ ├── IndexingUrlPatternUrlTreeUrlFeature.php │ │ ├── IndexingUrlPatternUrlTreeUrlFeatures.php │ │ ├── IndexingUrlPatternUrlTreeUrlTree.php │ │ ├── IndexingUrlPatternUrlTreeUrlTreeDebugInfo.php │ │ ├── IndexingUrlPatternUrlTreeUrlTreeKey.php │ │ ├── IndexingUrlPatternUrlTreeUrlTreeNode.php │ │ ├── IndexingVideosAsrTranscriptRepairAnnotation.php │ │ ├── KaltixPerDocData.php │ │ ├── KeGovernanceTypedRegions.php │ │ ├── KnowledgeAnswersAnyType.php │ │ ├── KnowledgeAnswersAttributeType.php │ │ ├── KnowledgeAnswersBooleanType.php │ │ ├── KnowledgeAnswersCollectionType.php │ │ ├── KnowledgeAnswersCompoundType.php │ │ ├── KnowledgeAnswersContainerType.php │ │ ├── KnowledgeAnswersDateType.php │ │ ├── KnowledgeAnswersDependencyType.php │ │ ├── KnowledgeAnswersDialogReferentialResolution.php │ │ ├── KnowledgeAnswersDurationType.php │ │ ├── KnowledgeAnswersEntityType.php │ │ ├── KnowledgeAnswersIntentModifiers.php │ │ ├── KnowledgeAnswersIntentQueryAnnotationLayerSignals.php │ │ ├── KnowledgeAnswersIntentQueryArgPath.php │ │ ├── KnowledgeAnswersIntentQueryArgPathComponent.php │ │ ├── KnowledgeAnswersIntentQueryArgument.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenance.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceAttentionalEntity.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceCurrentQuery.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceInjectedContextualSchema.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceNeuralLocationAnnotator.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousQuery.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousQueryRole.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousResponseMeaning.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousTaskState.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousTaskStateListCandidate.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenancePreviousTaskStatePreviousFunctionCall.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceQueryAnaphor.php │ │ ├── KnowledgeAnswersIntentQueryArgumentProvenanceSearchAnswerValue.php │ │ ├── KnowledgeAnswersIntentQueryArgumentSignals.php │ │ ├── KnowledgeAnswersIntentQueryArgumentValue.php │ │ ├── KnowledgeAnswersIntentQueryAttributeSignal.php │ │ ├── KnowledgeAnswersIntentQueryCollectionMembership.php │ │ ├── KnowledgeAnswersIntentQueryCollectionScore.php │ │ ├── KnowledgeAnswersIntentQueryCoreference.php │ │ ├── KnowledgeAnswersIntentQueryCustomVehicleActionArgumentAnnotatorSignals.php │ │ ├── KnowledgeAnswersIntentQueryFreetextAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQueryFunctionCall.php │ │ ├── KnowledgeAnswersIntentQueryFunctionCallSignals.php │ │ ├── KnowledgeAnswersIntentQueryGroundingSignals.php │ │ ├── KnowledgeAnswersIntentQueryIdentifier.php │ │ ├── KnowledgeAnswersIntentQueryImpliedEntity.php │ │ ├── KnowledgeAnswersIntentQueryIndexingIQLAttachment.php │ │ ├── KnowledgeAnswersIntentQueryLocalResultSignals.php │ │ ├── KnowledgeAnswersIntentQueryLocalSignals.php │ │ ├── KnowledgeAnswersIntentQueryLocationMarkersSignals.php │ │ ├── KnowledgeAnswersIntentQueryMediaEntitySignals.php │ │ ├── KnowledgeAnswersIntentQueryMuninSignals.php │ │ ├── KnowledgeAnswersIntentQueryNTPRAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQueryNimbleAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQueryOnDeviceAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQueryParsingSignals.php │ │ ├── KnowledgeAnswersIntentQueryPersonalEntity.php │ │ ├── KnowledgeAnswersIntentQueryPersonalEntityEntityRelationship.php │ │ ├── KnowledgeAnswersIntentQueryQrefAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQueryRelatednessSignals.php │ │ ├── KnowledgeAnswersIntentQueryResponseMeaningSignalsResponseMeaningSignals.php │ │ ├── KnowledgeAnswersIntentQuerySaftSignals.php │ │ ├── KnowledgeAnswersIntentQuerySemanticAnnotationSignals.php │ │ ├── KnowledgeAnswersIntentQuerySemanticAnnotationSignalsFeature.php │ │ ├── KnowledgeAnswersIntentQuerySensitiveArgumentValueGuard.php │ │ ├── KnowledgeAnswersIntentQueryShoppingIds.php │ │ ├── KnowledgeAnswersIntentQueryShoppingIdsMeasureValue.php │ │ ├── KnowledgeAnswersIntentQuerySignalComputationFallbackIntent.php │ │ ├── KnowledgeAnswersIntentQuerySimpleValue.php │ │ ├── KnowledgeAnswersIntentQuerySupportTransferSignals.php │ │ ├── KnowledgeAnswersIntentQueryTeleportArgumentAnnotatorSignals.php │ │ ├── KnowledgeAnswersIntentQueryToken.php │ │ ├── KnowledgeAnswersIntentQueryTokenSynonym.php │ │ ├── KnowledgeAnswersIntentQueryTokens.php │ │ ├── KnowledgeAnswersIntersectType.php │ │ ├── KnowledgeAnswersMarker.php │ │ ├── KnowledgeAnswersMarkerCommand.php │ │ ├── KnowledgeAnswersMarkerOpenQuestion.php │ │ ├── KnowledgeAnswersMarkerPolarQuestion.php │ │ ├── KnowledgeAnswersMarkerStateOfAffairs.php │ │ ├── KnowledgeAnswersMeaningSchemaKey.php │ │ ├── KnowledgeAnswersMeaningSchemaSlotKey.php │ │ ├── KnowledgeAnswersMeasurementType.php │ │ ├── KnowledgeAnswersNormalizedStringType.php │ │ ├── KnowledgeAnswersNumberType.php │ │ ├── KnowledgeAnswersOpaqueAogType.php │ │ ├── KnowledgeAnswersOpaqueAppAnnotationType.php │ │ ├── KnowledgeAnswersOpaqueAudioType.php │ │ ├── KnowledgeAnswersOpaqueCalendarEventType.php │ │ ├── KnowledgeAnswersOpaqueCalendarEventWrapperType.php │ │ ├── KnowledgeAnswersOpaqueCalendarReferenceType.php │ │ ├── KnowledgeAnswersOpaqueComplexQueriesRewriteType.php │ │ ├── KnowledgeAnswersOpaqueComponentReferenceIndexType.php │ │ ├── KnowledgeAnswersOpaqueDeviceIdType.php │ │ ├── KnowledgeAnswersOpaqueDeviceType.php │ │ ├── KnowledgeAnswersOpaqueDeviceUserIdentityType.php │ │ ├── KnowledgeAnswersOpaqueHomeAutomationDeviceType.php │ │ ├── KnowledgeAnswersOpaqueLocationType.php │ │ ├── KnowledgeAnswersOpaqueMediaType.php │ │ ├── KnowledgeAnswersOpaqueMessageNotificationType.php │ │ ├── KnowledgeAnswersOpaqueMoneyType.php │ │ ├── KnowledgeAnswersOpaqueNewsProviderType.php │ │ ├── KnowledgeAnswersOpaqueOnDeviceType.php │ │ ├── KnowledgeAnswersOpaquePersonType.php │ │ ├── KnowledgeAnswersOpaquePersonalIntelligenceEntityType.php │ │ ├── KnowledgeAnswersOpaqueProductivityListItemType.php │ │ ├── KnowledgeAnswersOpaqueRecurrenceType.php │ │ ├── KnowledgeAnswersOpaqueReminderType.php │ │ ├── KnowledgeAnswersOpaqueShoppingMerchantType.php │ │ ├── KnowledgeAnswersOpaqueShoppingOfferType.php │ │ ├── KnowledgeAnswersOpaqueShoppingProductExpressionType.php │ │ ├── KnowledgeAnswersOpaqueShoppingProductType.php │ │ ├── KnowledgeAnswersOpaqueShoppingStoreType.php │ │ ├── KnowledgeAnswersOpaqueTimerType.php │ │ ├── KnowledgeAnswersOpaqueType.php │ │ ├── KnowledgeAnswersPlexityRequirement.php │ │ ├── KnowledgeAnswersPolarQuestionType.php │ │ ├── KnowledgeAnswersRangeConstraint.php │ │ ├── KnowledgeAnswersRangeConstraintRangeEndpoint.php │ │ ├── KnowledgeAnswersSameType.php │ │ ├── KnowledgeAnswersSemanticType.php │ │ ├── KnowledgeAnswersSensitivityArgumentEvalPolicy.php │ │ ├── KnowledgeAnswersSensitivityInstruction.php │ │ ├── KnowledgeAnswersSensitivityInstructionArgument.php │ │ ├── KnowledgeAnswersSensitivityInstructionIntent.php │ │ ├── KnowledgeAnswersSensitivityInstructionPreviousQuery.php │ │ ├── KnowledgeAnswersSensitivityIntentEvalPolicy.php │ │ ├── KnowledgeAnswersSensitivityLoggingPolicy.php │ │ ├── KnowledgeAnswersSensitivityMyActivityPolicy.php │ │ ├── KnowledgeAnswersSensitivitySensitivity.php │ │ ├── KnowledgeAnswersSensitivityServingPolicy.php │ │ ├── KnowledgeAnswersSensitivityStoragePolicy.php │ │ ├── KnowledgeAnswersStateOfAffairsType.php │ │ ├── KnowledgeAnswersStringType.php │ │ ├── KnowledgeAnswersTimeZoneType.php │ │ ├── KnowledgeAnswersTrackingNumberType.php │ │ ├── KnowledgeAnswersTypeTrait.php │ │ ├── KnowledgeAnswersUnionType.php │ │ ├── KnowledgeAnswersValueType.php │ │ ├── KnowledgeGraphDateTimeProto.php │ │ ├── KnowledgeGraphNestedStruct.php │ │ ├── KnowledgeGraphNestedStructPredicateObjs.php │ │ ├── KnowledgeGraphQualifier.php │ │ ├── KnowledgeGraphQualifierSet.php │ │ ├── KnowledgeGraphTriple.php │ │ ├── KnowledgeGraphTripleObj.php │ │ ├── KnowledgeGraphTripleObjProto.php │ │ ├── KnowledgeGraphTripleProvenance.php │ │ ├── KnowledgeVerticalsWeatherProtoUserSpecifiedLocation.php │ │ ├── LegalCitation.php │ │ ├── LegalCitationCourtDocument.php │ │ ├── LegalCitationCourtDocumentCourt.php │ │ ├── LegalCitationCourtDocumentCourtNameComponent.php │ │ ├── LegalCitationCourtDocumentOpinionInfo.php │ │ ├── LegalCitationCourtDocumentPerDocketInfo.php │ │ ├── LegalCitationCourtDocumentPub.php │ │ ├── LegalCitationCourtDocumentUnknownDate.php │ │ ├── LegalCitationLaw.php │ │ ├── LegalCitationLawCollectionName.php │ │ ├── LegalCitationLawLevel.php │ │ ├── LegalDate.php │ │ ├── LegalPerson.php │ │ ├── LensDiscoveryStyleAestheticsScoreSignals.php │ │ ├── LensDiscoveryStyleBoundingBox.php │ │ ├── LensDiscoveryStylePersonAttributes.php │ │ ├── LensDiscoveryStylePersonAttributesPersonVisibilityScores.php │ │ ├── LensDiscoveryStylePersonAttributesPersonVisibilityScoresPersonVisibilityPrediction.php │ │ ├── LensDiscoveryStylePersonDetectionSignals.php │ │ ├── LensDiscoveryStylePersonDetectionSignalsDetectedPerson.php │ │ ├── LensDiscoveryStyleStyleImageTypeSignals.php │ │ ├── LensDiscoveryStyleStyleImageTypeSignalsStyleImageTypePrediction.php │ │ ├── ListSnippetResponse.php │ │ ├── ListSnippetResponseRow.php │ │ ├── LocalWWWInfo.php │ │ ├── LocalWWWInfoAddress.php │ │ ├── LocalWWWInfoCluster.php │ │ ├── LocalWWWInfoOpeningHours.php │ │ ├── LocalWWWInfoPhone.php │ │ ├── LocalWWWInfoWrapptorItem.php │ │ ├── LocalsearchChainId.php │ │ ├── LocalsearchDocInfo.php │ │ ├── LocalsearchProtoInternalFoodOrderingActionMetadata.php │ │ ├── LocalsearchProtoInternalFoodOrderingActionMetadataAvailablePartnerInfo.php │ │ ├── LocalsearchProtoInternalFoodOrderingActionMetadataServiceInfo.php │ │ ├── LogsProtoIndexingCrawlerIdCrawlerIdProto.php │ │ ├── LogsSemanticInterpretationIntentQueryEntityLinkMetadata.php │ │ ├── LogsSemanticInterpretationIntentQueryLinkKindFlags.php │ │ ├── LogsSemanticInterpretationIntentQueryLinkKindInfo.php │ │ ├── LogsSemanticInterpretationIntentQuerySupportTransferRule.php │ │ ├── LogsSemanticInterpretationIntentQueryWebrefEntityRelationship.php │ │ ├── LongStructuredSnippet.php │ │ ├── LongStructuredSnippetEntry.php │ │ ├── MajelContactInformationShortcutInformation.php │ │ ├── ManyboxData.php │ │ ├── MapsQualitySpecialWordsFlags.php │ │ ├── MapsQualitySpecialWordsProto.php │ │ ├── MediaIndexBoundingbox.php │ │ ├── MediaIndexEntityField.php │ │ ├── MediaIndexFrameIdentifier.php │ │ ├── MediaIndexFrameIdentifierPreviewFrameZeroVariant.php │ │ ├── MediaIndexRegion.php │ │ ├── MediaIndexSparseFloatVector.php │ │ ├── MediaIndexVideoCentroid.php │ │ ├── MediaIndexVideoCentroidDomainScore.php │ │ ├── MediaIndexVideoCoreSignals.php │ │ ├── MediaIndexVideoFrame.php │ │ ├── MediaIndexVideoFrames.php │ │ ├── MediaIndexXtag.php │ │ ├── MediaIndexXtagList.php │ │ ├── MobilePerDocData.php │ │ ├── MultiscaleFieldPresence.php │ │ ├── MultiscaleLayerPresence.php │ │ ├── MultiscalePointerIndex.php │ │ ├── MultiscalePointerSpan.php │ │ ├── MustangReposWwwSnippetsCandidateFeature.php │ │ ├── MustangReposWwwSnippetsOrganicListSnippetResponse.php │ │ ├── MustangReposWwwSnippetsSnippetCandidate.php │ │ ├── MustangReposWwwSnippetsSnippetsRanklabFeatures.php │ │ ├── MustangSnippetsRenderedToken.php │ │ ├── NSRVersionedItem.php │ │ ├── NetFabricRpcVirtualNetworkId.php │ │ ├── NewsReconServiceLrsQ2lrs2EntryPayload.php │ │ ├── NewsReconServiceLrsQ2lrs2QueryToLrsDataset.php │ │ ├── NewsReconServiceLrsQ2lrs2QueryToLrsEntry.php │ │ ├── NewsReconServiceLrsQ2lrs2QueryToLrsEntryEntity.php │ │ ├── NewsReconServiceLrsQ2lrs2QueryToLrsEntryLocaleRestrict.php │ │ ├── NewsReconServiceLrsQ2lrs2QueryToLrsEntryPattern.php │ │ ├── NlpLoggingQRewriteClientCallPathInfo.php │ │ ├── NlpLoggingQusClientCallPathInfo.php │ │ ├── NlpMeaningMeaningRemodeling.php │ │ ├── NlpMeaningMeaningRemodelingControl.php │ │ ├── NlpMeaningMeaningRemodelings.php │ │ ├── NlpMeaningSemanticTypeNameMeaningRemodelings.php │ │ ├── NlpSaftAnnotatedPhrase.php │ │ ├── NlpSaftConstituencyNode.php │ │ ├── NlpSaftDocument.php │ │ ├── NlpSaftDocumentTopic.php │ │ ├── NlpSaftEntity.php │ │ ├── NlpSaftEntityProfile.php │ │ ├── NlpSaftEntityProfileAlternate.php │ │ ├── NlpSaftEntityProfileAttribute.php │ │ ├── NlpSaftEntityProfileKeyword.php │ │ ├── NlpSaftEntityProfileReference.php │ │ ├── NlpSaftEntityProfileRelated.php │ │ ├── NlpSaftEntityType.php │ │ ├── NlpSaftHyperlink.php │ │ ├── NlpSaftIdentifier.php │ │ ├── NlpSaftLabeledSpan.php │ │ ├── NlpSaftLabeledSpans.php │ │ ├── NlpSaftMeasure.php │ │ ├── NlpSaftMention.php │ │ ├── NlpSaftMentionResolution.php │ │ ├── NlpSaftMorphology.php │ │ ├── NlpSaftPhrase.php │ │ ├── NlpSaftReferent.php │ │ ├── NlpSaftRelation.php │ │ ├── NlpSaftRelationMention.php │ │ ├── NlpSaftSemanticNode.php │ │ ├── NlpSaftSemanticNodeArc.php │ │ ├── NlpSaftToken.php │ │ ├── NlpSciencelitArticleData.php │ │ ├── NlpSciencelitArticleId.php │ │ ├── NlpSciencelitArticleMetadata.php │ │ ├── NlpSciencelitAuthor.php │ │ ├── NlpSciencelitCitationData.php │ │ ├── NlpSciencelitDataset.php │ │ ├── NlpSciencelitMeshHeading.php │ │ ├── NlpSciencelitPubDate.php │ │ ├── NlpSciencelitPublicationType.php │ │ ├── NlpSciencelitReferencedBlock.php │ │ ├── NlpSciencelitRetrievalQueryEncodingDebugInfo.php │ │ ├── NlpSciencelitRetrievalSearchResultDebugInfo.php │ │ ├── NlpSciencelitRetrievalSearchResultSetDebugInfo.php │ │ ├── NlpSciencelitRetrievalSnippetDebugInfo.php │ │ ├── NlpSciencelitSubjectHeading.php │ │ ├── NlpSciencelitTokenizedText.php │ │ ├── NlpSemanticParsingAnnotationEvalData.php │ │ ├── NlpSemanticParsingAppAnnotation.php │ │ ├── NlpSemanticParsingDateTimeAnnotation.php │ │ ├── NlpSemanticParsingDatetimeAbsoluteDateTime.php │ │ ├── NlpSemanticParsingDatetimeDateTime.php │ │ ├── NlpSemanticParsingDatetimeDateTimeProperty.php │ │ ├── NlpSemanticParsingDatetimeDuration.php │ │ ├── NlpSemanticParsingDatetimeEvent.php │ │ ├── NlpSemanticParsingDatetimeFetchedRelativeDateTime.php │ │ ├── NlpSemanticParsingDatetimeHoliday.php │ │ ├── NlpSemanticParsingDatetimeMoonEventInfo.php │ │ ├── NlpSemanticParsingDatetimeNonGregorianDate.php │ │ ├── NlpSemanticParsingDatetimeQuantity.php │ │ ├── NlpSemanticParsingDatetimeRange.php │ │ ├── NlpSemanticParsingDatetimeRecurrent.php │ │ ├── NlpSemanticParsingDatetimeRelativeDateTime.php │ │ ├── NlpSemanticParsingDatetimeResolutionProperties.php │ │ ├── NlpSemanticParsingDatetimeShiftedRelativeDateTime.php │ │ ├── NlpSemanticParsingDatetimeSpan.php │ │ ├── NlpSemanticParsingDatetimeTargetToFetch.php │ │ ├── NlpSemanticParsingDatetimeTimeZone.php │ │ ├── NlpSemanticParsingEntitySourceData.php │ │ ├── NlpSemanticParsingExpressionStatus.php │ │ ├── NlpSemanticParsingLocalAmenities.php │ │ ├── NlpSemanticParsingLocalBasicLocation.php │ │ ├── NlpSemanticParsingLocalBusinessType.php │ │ ├── NlpSemanticParsingLocalChainMemberConstraint.php │ │ ├── NlpSemanticParsingLocalCompoundLocation.php │ │ ├── NlpSemanticParsingLocalContactLocation.php │ │ ├── NlpSemanticParsingLocalCuisineConstraint.php │ │ ├── NlpSemanticParsingLocalEvChargingStationConnectorConstraint.php │ │ ├── NlpSemanticParsingLocalEvChargingStationSpeedConstraint.php │ │ ├── NlpSemanticParsingLocalExtent.php │ │ ├── NlpSemanticParsingLocalGcidConstraint.php │ │ ├── NlpSemanticParsingLocalHealthInsuranceConstraint.php │ │ ├── NlpSemanticParsingLocalHotelType.php │ │ ├── NlpSemanticParsingLocalHyperReliableData.php │ │ ├── NlpSemanticParsingLocalHyperReliableDataGCIDSynsOverride.php │ │ ├── NlpSemanticParsingLocalImplicitLocalCategory.php │ │ ├── NlpSemanticParsingLocalJoiner.php │ │ ├── NlpSemanticParsingLocalLocalResultId.php │ │ ├── NlpSemanticParsingLocalLocation.php │ │ ├── NlpSemanticParsingLocalLocationConstraint.php │ │ ├── NlpSemanticParsingLocalLocationElement.php │ │ ├── NlpSemanticParsingLocalMenuItem.php │ │ ├── NlpSemanticParsingLocalPriceConstraint.php │ │ ├── NlpSemanticParsingLocalQualityConstraint.php │ │ ├── NlpSemanticParsingLocalRoomConstraint.php │ │ ├── NlpSemanticParsingLocalScalableAttribute.php │ │ ├── NlpSemanticParsingLocalServiceConstraint.php │ │ ├── NlpSemanticParsingLocalStarRatings.php │ │ ├── NlpSemanticParsingLocalVicinityLocation.php │ │ ├── NlpSemanticParsingLocalVisitHistoryConstraint.php │ │ ├── NlpSemanticParsingModelsCommunicationPhoneType.php │ │ ├── NlpSemanticParsingModelsCommunicationRecipient.php │ │ ├── NlpSemanticParsingModelsCommunicationRelationshipArgument.php │ │ ├── NlpSemanticParsingModelsDevice.php │ │ ├── NlpSemanticParsingModelsDeviceName.php │ │ ├── NlpSemanticParsingModelsDialogReferentsDialogReferents.php │ │ ├── NlpSemanticParsingModelsDialogReferentsListSelection.php │ │ ├── NlpSemanticParsingModelsMediaAlbumTitle.php │ │ ├── NlpSemanticParsingModelsMediaAudio.php │ │ ├── NlpSemanticParsingModelsMediaAudiobookInfo.php │ │ ├── NlpSemanticParsingModelsMediaBook.php │ │ ├── NlpSemanticParsingModelsMediaCastDeviceAnnotation.php │ │ ├── NlpSemanticParsingModelsMediaCost.php │ │ ├── NlpSemanticParsingModelsMediaDeeplinkInfo.php │ │ ├── NlpSemanticParsingModelsMediaDeeplinkInfoTimeWindow.php │ │ ├── NlpSemanticParsingModelsMediaDescription.php │ │ ├── NlpSemanticParsingModelsMediaEpisodeConstraint.php │ │ ├── NlpSemanticParsingModelsMediaFrequency.php │ │ ├── NlpSemanticParsingModelsMediaGame.php │ │ ├── NlpSemanticParsingModelsMediaGenericMusic.php │ │ ├── NlpSemanticParsingModelsMediaLatLng.php │ │ ├── NlpSemanticParsingModelsMediaMediaAnnotation.php │ │ ├── NlpSemanticParsingModelsMediaMediaAnnotationList.php │ │ ├── NlpSemanticParsingModelsMediaMediaProviderInfo.php │ │ ├── NlpSemanticParsingModelsMediaMovie.php │ │ ├── NlpSemanticParsingModelsMediaMusicArtist.php │ │ ├── NlpSemanticParsingModelsMediaMusicGenre.php │ │ ├── NlpSemanticParsingModelsMediaMusicPlaylist.php │ │ ├── NlpSemanticParsingModelsMediaNewsInfo.php │ │ ├── NlpSemanticParsingModelsMediaNewsTopic.php │ │ ├── NlpSemanticParsingModelsMediaPaidOfferDetail.php │ │ ├── NlpSemanticParsingModelsMediaPodcast.php │ │ ├── NlpSemanticParsingModelsMediaPodcastInfo.php │ │ ├── NlpSemanticParsingModelsMediaProviderMetadata.php │ │ ├── NlpSemanticParsingModelsMediaPurchaseInfo.php │ │ ├── NlpSemanticParsingModelsMediaQuantification.php │ │ ├── NlpSemanticParsingModelsMediaRadio.php │ │ ├── NlpSemanticParsingModelsMediaRadioInfo.php │ │ ├── NlpSemanticParsingModelsMediaRadioNetwork.php │ │ ├── NlpSemanticParsingModelsMediaRentalInfo.php │ │ ├── NlpSemanticParsingModelsMediaSeasonConstraint.php │ │ ├── NlpSemanticParsingModelsMediaSong.php │ │ ├── NlpSemanticParsingModelsMediaTVShow.php │ │ ├── NlpSemanticParsingModelsMediaYouTubeDeeplinkInfo.php │ │ ├── NlpSemanticParsingModelsMediaYouTubePlaylistInfo.php │ │ ├── NlpSemanticParsingModelsMoneyCurrency.php │ │ ├── NlpSemanticParsingModelsMoneyMoney.php │ │ ├── NlpSemanticParsingModelsNarrativeNewsNewsProvider.php │ │ ├── NlpSemanticParsingModelsOnDevice.php │ │ ├── NlpSemanticParsingModelsPersonPerson.php │ │ ├── NlpSemanticParsingModelsRecurrence.php │ │ ├── NlpSemanticParsingModelsRecurrenceDailyPattern.php │ │ ├── NlpSemanticParsingModelsRecurrenceMonthlyPattern.php │ │ ├── NlpSemanticParsingModelsRecurrenceRecurrenceEnd.php │ │ ├── NlpSemanticParsingModelsRecurrenceRecurrenceStart.php │ │ ├── NlpSemanticParsingModelsRecurrenceWeeklyPattern.php │ │ ├── NlpSemanticParsingModelsRecurrenceYearlyPattern.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantBrandPhrase.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantMerchant.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantMerchantMerchantCenterId.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantOffer.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantPhrase.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProduct.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProductClassification.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProductExpression.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProductMediaProduct.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProductMediaProductMediaAttributeValue.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantProductPhrase.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantShoppingListItemInfo.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantStore.php │ │ ├── NlpSemanticParsingModelsShoppingAssistantUnrecognizedPhrase.php │ │ ├── NlpSemanticParsingNumberFractionNumber.php │ │ ├── NlpSemanticParsingNumberNumber.php │ │ ├── NlpSemanticParsingNumberSimpleNumber.php │ │ ├── NlpSemanticParsingPersonalIntelligenceEntity.php │ │ ├── NlpSemanticParsingPersonalReferenceAnnotation.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleAogSlot.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleDateTime.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleDateTimeProperty.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleSlotList.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleSlotMap.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleSlotValue.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleSlotValueSingleValue.php │ │ ├── NlpSemanticParsingProtoActionsOnGoogleTypedValue.php │ │ ├── NlpSemanticParsingQRefAnnotation.php │ │ ├── NlpSemanticParsingQRefAnnotationCollectionMembership.php │ │ ├── NlpSemanticParsingQRefAnnotationEntityRelationship.php │ │ ├── NlpSemanticParsingQRefAnnotationMerlotCategoryData.php │ │ ├── NlpSemanticParsingQRefAnnotationSubCluster.php │ │ ├── NlpSemanticParsingRelatedEntity.php │ │ ├── NlpSemanticParsingSaftCoreference.php │ │ ├── NlpSemanticParsingSaftMeasure.php │ │ ├── NlpSemanticParsingSaftMentionAnnotation.php │ │ ├── NlpSemanticParsingSaftSpan.php │ │ ├── NlxDataSchemaByte.php │ │ ├── NlxDataSchemaCharacter.php │ │ ├── NlxDataSchemaDocument.php │ │ ├── NlxDataSchemaEntity.php │ │ ├── NlxDataSchemaLanguageSpan.php │ │ ├── NlxDataSchemaMention.php │ │ ├── NlxDataSchemaParagraph.php │ │ ├── NlxDataSchemaScaleSet.php │ │ ├── NlxDataSchemaSentence.php │ │ ├── NlxDataSchemaToken.php │ │ ├── NlxDataSchemaTokenDependencyEdge.php │ │ ├── OceanDataDocinfoWoodwingItemMetadata.php │ │ ├── OceanDocInfo.php │ │ ├── OceanDocTag.php │ │ ├── OceanDocTagBookSpecific.php │ │ ├── OceanDocTagBookSpecificNumberingRange.php │ │ ├── OceanDocTagCatalogSpecific.php │ │ ├── OceanDocTagContributor.php │ │ ├── OceanDocTagMagazineSpecific.php │ │ ├── OceanDocTagNewspaperSpecific.php │ │ ├── OceanDocTagPatentSpecific.php │ │ ├── OceanDocTagWorkCluster.php │ │ ├── OceanGEMoney.php │ │ ├── OceanGEPrice.php │ │ ├── OceanGEPriceLocale.php │ │ ├── OceanImageSize.php │ │ ├── OceanLocaleViewability.php │ │ ├── OceanLocaleViewabilityDates.php │ │ ├── OceanLocaleViewabilitySourceDetails.php │ │ ├── OceanPerDocData.php │ │ ├── OceanVolumeAccessRights.php │ │ ├── OceanVolumeComputedAccessRights.php │ │ ├── OceanVolumeDisplayDetails.php │ │ ├── OceanVolumeImprint.php │ │ ├── OceanVolumeViewability.php │ │ ├── OceanVolumeViewabilityLocale.php │ │ ├── OcrPhotoBoundingBox.php │ │ ├── OcrPhotoCurve.php │ │ ├── OcrPhotoCurvePoint.php │ │ ├── OcrPhotoCurvedBoundingBox.php │ │ ├── OcrPhotoTextBox.php │ │ ├── OfficialPagesOfficialKey.php │ │ ├── OfficialPagesQuerySet.php │ │ ├── OrionDocEntitiesProto.php │ │ ├── PairwiseQScoringData.php │ │ ├── PairwiseQVersionedItem.php │ │ ├── PeoplestackFlexorgsProtoInternalExternal.php │ │ ├── PeoplestackFlexorgsProtoInternalExternalStateStatus.php │ │ ├── PerDocData.php │ │ ├── PerDocDebugEvent.php │ │ ├── PersonalizationMapsAliasAliasId.php │ │ ├── PersonalizationMapsAliasIcon.php │ │ ├── PersonalizationSettingsApiProtoLocalDiscoveryLocalDiscoverySettingsMetadata.php │ │ ├── PersonalizationSettingsApiProtoLocalDiscoveryOpaRecipesContext.php │ │ ├── PhilPerDocData.php │ │ ├── PhotosAnimationMetadata.php │ │ ├── PhotosDynamicDepthMetadata.php │ │ ├── PhotosFourCMetadata.php │ │ ├── PhotosGDepthMetadata.php │ │ ├── PhotosImageMetadata.php │ │ ├── PhotosPanoramaMetadata.php │ │ ├── PhotosVisionGroundtruthdbNormalizedBoundingBox.php │ │ ├── PhotosVisionObjectrecFeatureVector.php │ │ ├── PhotosVisionObjectrecGeoLocation.php │ │ ├── PhotosVisionObjectrecGlobalFeature.php │ │ ├── PhotosVisionObjectrecImageTemplate.php │ │ ├── PhotosVisionObjectrecImageTemplateSubSet.php │ │ ├── PhotosVisionObjectrecLocalDescriptor.php │ │ ├── PhotosVisionObjectrecMatrix2D.php │ │ ├── PhotosVisionObjectrecQuantizedFeatureVector.php │ │ ├── PhotosVisionObjectrecROI.php │ │ ├── PornFlagData.php │ │ ├── PornStatsImage.php │ │ ├── PornStatsText.php │ │ ├── PostalAddress.php │ │ ├── PrecomputedRestricts.php │ │ ├── PremiumPerDocData.php │ │ ├── Proto2BridgeMessageSet.php │ │ ├── PseudoVideoData.php │ │ ├── PseudoVideoDataTranscript.php │ │ ├── PseudoVideoDataTranscriptTimestamp.php │ │ ├── PtokenPToken.php │ │ ├── QualityActionsAppInfo.php │ │ ├── QualityActionsAppInfoSourceData.php │ │ ├── QualityActionsAppInfoSourceDataAllowListSourceData.php │ │ ├── QualityActionsAppInfoSourceDataMediaProviderSourceData.php │ │ ├── QualityActionsAppUnderstandingCategory.php │ │ ├── QualityActionsCustomizedNotification.php │ │ ├── QualityActionsCustomizedNotificationButton.php │ │ ├── QualityActionsCustomizedNotificationPayload.php │ │ ├── QualityActionsNewsProviderAnnotationData.php │ │ ├── QualityActionsNewsProviderAnnotationDataProvider.php │ │ ├── QualityActionsReminder.php │ │ ├── QualityActionsReminderDocument.php │ │ ├── QualityActionsReminderDynamiteGroup.php │ │ ├── QualityActionsReminderLocation.php │ │ ├── QualityActionsReminderLocationCategoryInfo.php │ │ ├── QualityActionsReminderLocationChainInfo.php │ │ ├── QualityActionsReminderPerson.php │ │ ├── QualityActionsReminderRecurrenceInfo.php │ │ ├── QualityActionsRingtone.php │ │ ├── QualityActionsRoom.php │ │ ├── QualityActionsTimer.php │ │ ├── QualityAuthorityTopicEmbeddingsVersionedItem.php │ │ ├── QualityCalypsoAppsLink.php │ │ ├── QualityCalypsoAppsUniversalAuLiveOpDetail.php │ │ ├── QualityCalypsoAppsUniversalAuLiveOpEvent.php │ │ ├── QualityCalypsoAppsUniversalAuLiveOpFormat.php │ │ ├── QualityCalypsoAppsUniversalAuLiveOpsDetailInfo.php │ │ ├── QualityCalypsoAppsUniversalImage.php │ │ ├── QualityCalypsoAppsUniversalImageData.php │ │ ├── QualityCopiaFireflySiteSignal.php │ │ ├── QualityDialogManagerExternalIds.php │ │ ├── QualityDialogManagerLocalIntentOptions.php │ │ ├── QualityDialogManagerLocalResult.php │ │ ├── QualityDialogManagerReminderClientType.php │ │ ├── QualityDniDocPreviewRestrictions.php │ │ ├── QualityDniExtendedNewsPreviews.php │ │ ├── QualityFringeFringeQueryPriorPerDocData.php │ │ ├── QualityGenieComplexQueriesComplexQueriesOutputRewrite.php │ │ ├── QualityGenieComplexQueriesComplexQueriesOutputRewriteEntity.php │ │ ├── QualityGeoBrainlocBrainlocAttachment.php │ │ ├── QualityLabelsGoogleLabelData.php │ │ ├── QualityLabelsGoogleLabelDataLabel.php │ │ ├── QualityLabelsGoogleLabelDataLabelProvider.php │ │ ├── QualityNavboostCrapsAgingData.php │ │ ├── QualityNavboostCrapsAgingDataAgingAgeBucket.php │ │ ├── QualityNavboostCrapsCrapsClickSignals.php │ │ ├── QualityNavboostCrapsCrapsData.php │ │ ├── QualityNavboostCrapsCrapsDevice.php │ │ ├── QualityNavboostCrapsFeatureCrapsData.php │ │ ├── QualityNavboostCrapsStatsWithWeightsProto.php │ │ ├── QualityNsrExperimentalNsrTeamData.php │ │ ├── QualityNsrExperimentalNsrTeamScoringSignal.php │ │ ├── QualityNsrExperimentalNsrTeamWSJData.php │ │ ├── QualityNsrNSRVersionedData.php │ │ ├── QualityNsrNsrChunksProto.php │ │ ├── QualityNsrNsrChunksWithSourceInfo.php │ │ ├── QualityNsrNsrData.php │ │ ├── QualityNsrNsrDataClusterUplift.php │ │ ├── QualityNsrNsrDataMetadata.php │ │ ├── QualityNsrPQData.php │ │ ├── QualityNsrPQDataSubchunkData.php │ │ ├── QualityNsrVersionedFloatSignal.php │ │ ├── QualityOrbitAsteroidBeltDocumentIntentScores.php │ │ ├── QualityOrbitAsteroidBeltImageIntentScores.php │ │ ├── QualityPreviewChosenSnippetInfo.php │ │ ├── QualityPreviewChosenSnippetInfoTidbitInfo.php │ │ ├── QualityPreviewRanklabSnippet.php │ │ ├── QualityPreviewRanklabTitle.php │ │ ├── QualityPreviewSnippetBrainFeatures.php │ │ ├── QualityPreviewSnippetDocumentFeatures.php │ │ ├── QualityPreviewSnippetExperimentalFeatures.php │ │ ├── QualityPreviewSnippetQualityFeatures.php │ │ ├── QualityPreviewSnippetQueryFeatures.php │ │ ├── QualityPreviewSnippetQueryTermCoverageFeatures.php │ │ ├── QualityPreviewSnippetRadishFeatures.php │ │ ├── QualityProductProductSiteData.php │ │ ├── QualityProductProductSiteDataLocaleData.php │ │ ├── QualityProseCSEUrlInfo.php │ │ ├── QualityQrewriteAccountProvenance.php │ │ ├── QualityQrewriteAccountProvenanceGoogleAccount.php │ │ ├── QualityQrewriteAccountProvenanceThirdPartyAccount.php │ │ ├── QualityQrewriteAlternativeNameInfo.php │ │ ├── QualityQrewriteCalendarReference.php │ │ ├── QualityQrewriteCandidateId.php │ │ ├── QualityQrewriteCandidateIdField.php │ │ ├── QualityQrewriteContactCalendarName.php │ │ ├── QualityQrewriteFamilyCalendarAlias.php │ │ ├── QualityQrewritePersonalContactData.php │ │ ├── QualityQrewritePrimaryCalendarAlias.php │ │ ├── QualityQrewriteQRewriteAccountAwareCalendarAliasWrapper.php │ │ ├── QualityQrewriteRelationshipMemoryData.php │ │ ├── QualityRankembedMustangMustangRankEmbedInfo.php │ │ ├── QualityRankembedMustangMustangRankEmbedInfoCompressedEmbedding.php │ │ ├── QualityRichsnippetsAppsProtosLaunchAppInfoPerDocData.php │ │ ├── QualityRichsnippetsAppsProtosLaunchableAppPerDocData.php │ │ ├── QualitySalientCountriesSalientCountry.php │ │ ├── QualitySalientCountriesSalientCountrySet.php │ │ ├── QualitySalientTermsDocData.php │ │ ├── QualitySalientTermsSalientTerm.php │ │ ├── QualitySalientTermsSalientTermSet.php │ │ ├── QualitySalientTermsSignalData.php │ │ ├── QualitySalientTermsSignalTermData.php │ │ ├── QualitySherlockKnexAnnotation.php │ │ ├── QualitySherlockKnexAnnotationItem.php │ │ ├── QualityShoppingShoppingAttachment.php │ │ ├── QualityShoppingShoppingAttachmentLocale.php │ │ ├── QualityShoppingShoppingAttachmentMokaFacetValue.php │ │ ├── QualityShoppingShoppingAttachmentOffer.php │ │ ├── QualityShoppingShoppingAttachmentPBlock.php │ │ ├── QualityShoppingShoppingAttachmentPBlockImageInfo.php │ │ ├── QualityShoppingShoppingAttachmentProduct.php │ │ ├── QualitySitemapBreadcrumbTarget.php │ │ ├── QualitySitemapBreadcrumbTargetDoc.php │ │ ├── QualitySitemapCoClickTarget.php │ │ ├── QualitySitemapCoClickTargetDoc.php │ │ ├── QualitySitemapCoClickTargetDocCoClickByLocale.php │ │ ├── QualitySitemapScoringSignals.php │ │ ├── QualitySitemapSubresult.php │ │ ├── QualitySitemapSubresultList.php │ │ ├── QualitySitemapTarget.php │ │ ├── QualitySitemapTargetGroup.php │ │ ├── QualitySitemapThirdPartyCarouselsListItemMuppetMetadata.php │ │ ├── QualitySitemapTopURL.php │ │ ├── QualitySitemapTwoLevelTarget.php │ │ ├── QualitySnippetsTruncationSnippetBoldedRange.php │ │ ├── QualitySnippetsTruncationSnippetBoldedRangePosition.php │ │ ├── QualityTimebasedLastSignificantUpdate.php │ │ ├── QualityTimebasedLastSignificantUpdateAdjustments.php │ │ ├── QualityTimebasedOldnessInfo.php │ │ ├── QualityTimebasedPageType.php │ │ ├── QualityTimebasedSyntacticDate.php │ │ ├── QualityTimebasedSyntacticDateDateRange.php │ │ ├── QualityTimebasedSyntacticDatePosition.php │ │ ├── QualityTravelGoodSitesData.php │ │ ├── QualityTravelGoodSitesDataI18n.php │ │ ├── QualityTravelGoodSitesDataSignal.php │ │ ├── QualityVidyaVideoLanguageVideoLanguage.php │ │ ├── QualityViewsExtractionClusterInfo.php │ │ ├── QualityWebanswersTranscriptAnnotations.php │ │ ├── QualityWebanswersVideoTranscriptAnnotations.php │ │ ├── QualityWebanswersVideoYouTubeCaptionTimingInfoAnnotations.php │ │ ├── QualityWebanswersVideoYouTubeCaptionTimingInfoAnnotationsInstance.php │ │ ├── RegistrationInfo.php │ │ ├── RepositoryAnnotationsGeoTopic.php │ │ ├── RepositoryAnnotationsGeoTopicality.php │ │ ├── RepositoryAnnotationsGeoTopicalityScore.php │ │ ├── RepositoryAnnotationsMustangSentimentSnippetAnnotations.php │ │ ├── RepositoryAnnotationsRdfaBreadcrumbs.php │ │ ├── RepositoryAnnotationsRdfaCrumb.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplication.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplicationAppTypeData.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplicationCountryPrice.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplicationLocalizedTrustedGenome.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplicationRank.php │ │ ├── RepositoryAnnotationsRdfaRdfaRichSnippetsApplicationRankData.php │ │ ├── RepositoryWebrefAbsoluteLegacyId.php │ │ ├── RepositoryWebrefAggregatedEntityNameScores.php │ │ ├── RepositoryWebrefAnchorIndices.php │ │ ├── RepositoryWebrefAnnotatedCategoryInfo.php │ │ ├── RepositoryWebrefAnnotationDebugInfo.php │ │ ├── RepositoryWebrefAnnotationRatings.php │ │ ├── RepositoryWebrefAnnotationStatsPerType.php │ │ ├── RepositoryWebrefAnnotatorCheckpointFprint.php │ │ ├── RepositoryWebrefAnnotatorProfile.php │ │ ├── RepositoryWebrefBookEditionMetadata.php │ │ ├── RepositoryWebrefBootstrappingScore.php │ │ ├── RepositoryWebrefCategoryAnnotation.php │ │ ├── RepositoryWebrefCategoryAnnotationBrowsyTopic.php │ │ ├── RepositoryWebrefCategoryAnnotationHitCatSource.php │ │ ├── RepositoryWebrefCategoryAnnotationShoppingSignals.php │ │ ├── RepositoryWebrefCategoryInfo.php │ │ ├── RepositoryWebrefClusterMetadata.php │ │ ├── RepositoryWebrefClusterProtoMidListRule.php │ │ ├── RepositoryWebrefClusterProtoMidListRuleInstance.php │ │ ├── RepositoryWebrefClusterProtoRelationRule.php │ │ ├── RepositoryWebrefClusterProtoRelationRuleInstance.php │ │ ├── RepositoryWebrefClusterProtoRuleInstance.php │ │ ├── RepositoryWebrefCompactFlatPropertyValue.php │ │ ├── RepositoryWebrefCompactKgPropertyValue.php │ │ ├── RepositoryWebrefCompactKgTopic.php │ │ ├── RepositoryWebrefCompactKgValue.php │ │ ├── RepositoryWebrefComponentReference.php │ │ ├── RepositoryWebrefConceptNameMetadata.php │ │ ├── RepositoryWebrefDetailedEntityScores.php │ │ ├── RepositoryWebrefDetailedMentionScores.php │ │ ├── RepositoryWebrefDisplayInfo.php │ │ ├── RepositoryWebrefDisplayName.php │ │ ├── RepositoryWebrefDocLevelRelevanceRatings.php │ │ ├── RepositoryWebrefDocumentMetadata.php │ │ ├── RepositoryWebrefDomainSpecificRepresentation.php │ │ ├── RepositoryWebrefEnricherDebugData.php │ │ ├── RepositoryWebrefEntityAnnotations.php │ │ ├── RepositoryWebrefEntityDebugInfo.php │ │ ├── RepositoryWebrefEntityJoin.php │ │ ├── RepositoryWebrefEntityLinkMetadata.php │ │ ├── RepositoryWebrefEntityLinkSource.php │ │ ├── RepositoryWebrefEntityNameRatings.php │ │ ├── RepositoryWebrefEntityNameRatingsEntityNameRating.php │ │ ├── RepositoryWebrefEntityNameScore.php │ │ ├── RepositoryWebrefEntityNameSource.php │ │ ├── RepositoryWebrefEntityScores.php │ │ ├── RepositoryWebrefExplainedRangeInfo.php │ │ ├── RepositoryWebrefExplainedRangeInfoExplainedRange.php │ │ ├── RepositoryWebrefExtendedEntityNameScore.php │ │ ├── RepositoryWebrefExtraMetadata.php │ │ ├── RepositoryWebrefFatcatCategory.php │ │ ├── RepositoryWebrefForwardingUrls.php │ │ ├── RepositoryWebrefFprintModifierProto.php │ │ ├── RepositoryWebrefFreebaseType.php │ │ ├── RepositoryWebrefGenericIndices.php │ │ ├── RepositoryWebrefGeoMetadataProto.php │ │ ├── RepositoryWebrefGeoMetadataProtoAddressSynonym.php │ │ ├── RepositoryWebrefGlobalLinkInfo.php │ │ ├── RepositoryWebrefGlobalNameInfo.php │ │ ├── RepositoryWebrefHumanRatings.php │ │ ├── RepositoryWebrefImageQueryIndices.php │ │ ├── RepositoryWebrefJuggernautIndices.php │ │ ├── RepositoryWebrefKCAttributeMetadata.php │ │ ├── RepositoryWebrefKGCollection.php │ │ ├── RepositoryWebrefLatentEntities.php │ │ ├── RepositoryWebrefLatentEntity.php │ │ ├── RepositoryWebrefLexicalAnnotation.php │ │ ├── RepositoryWebrefLexicalRange.php │ │ ├── RepositoryWebrefLightweightTokensMatchedLightweightToken.php │ │ ├── RepositoryWebrefLightweightTokensPerMentionLightweightToken.php │ │ ├── RepositoryWebrefLightweightTokensPerNameLightweightToken.php │ │ ├── RepositoryWebrefLinkInfo.php │ │ ├── RepositoryWebrefLinkKindFlags.php │ │ ├── RepositoryWebrefLinkKindInfo.php │ │ ├── RepositoryWebrefLocalizedString.php │ │ ├── RepositoryWebrefMdvcMetadata.php │ │ ├── RepositoryWebrefMdvcMetadataPerVertical.php │ │ ├── RepositoryWebrefMention.php │ │ ├── RepositoryWebrefMentionAdditionalExplainedRange.php │ │ ├── RepositoryWebrefMentionComponent.php │ │ ├── RepositoryWebrefMentionCompoundMention.php │ │ ├── RepositoryWebrefMentionDebugInfo.php │ │ ├── RepositoryWebrefMentionEvalInfo.php │ │ ├── RepositoryWebrefMentionRatings.php │ │ ├── RepositoryWebrefMentionRatingsSingleMentionRating.php │ │ ├── RepositoryWebrefNameDebugInfo.php │ │ ├── RepositoryWebrefNameDebugInfoCandidateInfo.php │ │ ├── RepositoryWebrefNameInfo.php │ │ ├── RepositoryWebrefNameScores.php │ │ ├── RepositoryWebrefNgramContext.php │ │ ├── RepositoryWebrefNgramMention.php │ │ ├── RepositoryWebrefOysterType.php │ │ ├── RepositoryWebrefPatternInfo.php │ │ ├── RepositoryWebrefPerDocRelevanceRating.php │ │ ├── RepositoryWebrefPerDocRelevanceRatings.php │ │ ├── RepositoryWebrefPersonalizationContextOutput.php │ │ ├── RepositoryWebrefPersonalizationContextOutputs.php │ │ ├── RepositoryWebrefPreprocessingNameEntityMetadata.php │ │ ├── RepositoryWebrefPreprocessingNameEntityScores.php │ │ ├── RepositoryWebrefPreprocessingNameSignals.php │ │ ├── RepositoryWebrefPreprocessingNameVariantData.php │ │ ├── RepositoryWebrefPreprocessingNameVariantSignals.php │ │ ├── RepositoryWebrefPreprocessingNormalizedNameData.php │ │ ├── RepositoryWebrefPreprocessingOriginalNames.php │ │ ├── RepositoryWebrefPreprocessingOriginalNamesOriginalName.php │ │ ├── RepositoryWebrefPreprocessingUrlMatchingMetadata.php │ │ ├── RepositoryWebrefPreprocessingUrlSourceInfo.php │ │ ├── RepositoryWebrefPreprocessingUrlSourceInfoNewSchema.php │ │ ├── RepositoryWebrefPreprocessingUrlSourceInfoOldSchema.php │ │ ├── RepositoryWebrefProcessorCounter.php │ │ ├── RepositoryWebrefProcessorTiming.php │ │ ├── RepositoryWebrefProductMetadata.php │ │ ├── RepositoryWebrefQueryIndices.php │ │ ├── RepositoryWebrefRangeAnnotations.php │ │ ├── RepositoryWebrefRangeMetadata.php │ │ ├── RepositoryWebrefRefconDocumentMentionSpans.php │ │ ├── RepositoryWebrefRefconMentionSpans.php │ │ ├── RepositoryWebrefRefconQueryStats.php │ │ ├── RepositoryWebrefRefconRefconDocumentMetadata.php │ │ ├── RepositoryWebrefRefconRefconNameInfo.php │ │ ├── RepositoryWebrefReferencePageScores.php │ │ ├── RepositoryWebrefSegmentMention.php │ │ ├── RepositoryWebrefSegmentMentions.php │ │ ├── RepositoryWebrefSemanticDateRange.php │ │ ├── RepositoryWebrefSimplifiedAnchor.php │ │ ├── RepositoryWebrefSimplifiedAnchors.php │ │ ├── RepositoryWebrefSimplifiedCompositeDoc.php │ │ ├── RepositoryWebrefSubSegmentIndex.php │ │ ├── RepositoryWebrefSupportTransferRule.php │ │ ├── RepositoryWebrefTaskData.php │ │ ├── RepositoryWebrefTaskDetails.php │ │ ├── RepositoryWebrefToprefListMembership.php │ │ ├── RepositoryWebrefToprefListMembershipListMember.php │ │ ├── RepositoryWebrefToprefPageClassification.php │ │ ├── RepositoryWebrefToprefPageClassificationRatedTitle.php │ │ ├── RepositoryWebrefTripleAnnotation.php │ │ ├── RepositoryWebrefTripleAnnotations.php │ │ ├── RepositoryWebrefTripleMention.php │ │ ├── RepositoryWebrefUniversalNgramData.php │ │ ├── RepositoryWebrefWebrefAnnotationStats.php │ │ ├── RepositoryWebrefWebrefAttachmentMetadata.php │ │ ├── RepositoryWebrefWebrefDocumentInfo.php │ │ ├── RepositoryWebrefWebrefEntities.php │ │ ├── RepositoryWebrefWebrefEntity.php │ │ ├── RepositoryWebrefWebrefEntityCollections.php │ │ ├── RepositoryWebrefWebrefEntityId.php │ │ ├── RepositoryWebrefWebrefEntityRelationship.php │ │ ├── RepositoryWebrefWebrefMustangAttachment.php │ │ ├── RepositoryWebrefWebrefMustangAttachmentUndermergedMembers.php │ │ ├── RepositoryWebrefWebrefOutlinkInfo.php │ │ ├── RepositoryWebrefWebrefOutlinkInfos.php │ │ ├── RepositoryWebrefWebrefStatus.php │ │ ├── RepositoryWebrefWikipediaCategory.php │ │ ├── RepositoryWebrefWikipediaGeocode.php │ │ ├── ResearchScamCoscamConjunction.php │ │ ├── ResearchScamCoscamDisjunction.php │ │ ├── ResearchScamCoscamEasyConjunction.php │ │ ├── ResearchScamCoscamEasyDisjunction.php │ │ ├── ResearchScamCoscamEasyRestrictDefinition.php │ │ ├── ResearchScamCoscamRestrictDefinition.php │ │ ├── ResearchScamCoscamRestrictTokensV2.php │ │ ├── ResearchScamCoscamTokenGroup.php │ │ ├── ResearchScamGenericFeatureVector.php │ │ ├── ResearchScamGenericFeatureVectorCrowding.php │ │ ├── ResearchScamGenericFeatureVectorFixedPointMetadata.php │ │ ├── ResearchScamGenericFeatureVectorRestrictTokens.php │ │ ├── ResearchScamNearestNeighbors.php │ │ ├── ResearchScamNearestNeighborsNeighbor.php │ │ ├── ResearchScamNeighborSelectionOverride.php │ │ ├── ResearchScamOnlineSearchLatencyStats.php │ │ ├── ResearchScamQueryMetadata.php │ │ ├── ResearchScamQueryResponse.php │ │ ├── ResearchScamRestrictStats.php │ │ ├── ResearchScamTokenNamespace.php │ │ ├── ResearchScamV3Restrict.php │ │ ├── ResearchScienceSearchCatalog.php │ │ ├── ResearchScienceSearchCitation.php │ │ ├── ResearchScienceSearchDataDownload.php │ │ ├── ResearchScienceSearchDataSize.php │ │ ├── ResearchScienceSearchDate.php │ │ ├── ResearchScienceSearchFieldOfStudyInfo.php │ │ ├── ResearchScienceSearchLicense.php │ │ ├── ResearchScienceSearchLocation.php │ │ ├── ResearchScienceSearchNavboostQueryInfo.php │ │ ├── ResearchScienceSearchOrganization.php │ │ ├── ResearchScienceSearchReconciledMetadata.php │ │ ├── ResearchScienceSearchReplica.php │ │ ├── ResearchScienceSearchScholarlyArticle.php │ │ ├── ResearchScienceSearchSourceUrlDocjoinInfo.php │ │ ├── ResearchScienceSearchSourceUrlDocjoinInfoWebrefEntityInfo.php │ │ ├── ResearchScienceSearchVersionClusterInfo.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDocumentSchemas.php │ │ │ ├── ProjectsLocationsDocuments.php │ │ │ ├── ProjectsLocationsDocumentsDocumentLinks.php │ │ │ ├── ProjectsLocationsDocumentsReferenceId.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRuleSets.php │ │ │ └── ProjectsLocationsSynonymSets.php │ │ ├── RichsnippetsDataObject.php │ │ ├── RichsnippetsDataObjectAttribute.php │ │ ├── RichsnippetsPageMap.php │ │ ├── RichsnippetsPageMapTemplateType.php │ │ ├── S3AudioLanguageS3AudioLanguage.php │ │ ├── SafesearchInternalImageSignals.php │ │ ├── SafesearchVideoClassifierOutput.php │ │ ├── SafesearchVideoContentSignals.php │ │ ├── ScholarCitationPredictionSignal.php │ │ ├── ScienceCitation.php │ │ ├── ScienceCitationAccessURL.php │ │ ├── ScienceCitationAlternateAbstract.php │ │ ├── ScienceCitationAlternateTitle.php │ │ ├── ScienceCitationAnchor.php │ │ ├── ScienceCitationAuthor.php │ │ ├── ScienceCitationCategory.php │ │ ├── ScienceCitationDownloadURL.php │ │ ├── ScienceCitationFunding.php │ │ ├── ScienceCitationFundingExtractionInfo.php │ │ ├── ScienceCitationReferenceDiscussion.php │ │ ├── ScienceCitationSubject.php │ │ ├── ScienceCitationTranslatedAuthor.php │ │ ├── ScienceCitationUnionCatalog.php │ │ ├── ScienceIndexSignal.php │ │ ├── ScienceIndexSignalAuthor.php │ │ ├── ScienceOceanView.php │ │ ├── ScienceOceanViewCountryView.php │ │ ├── SciencePerDocData.php │ │ ├── SciencePerDocDataAuthor.php │ │ ├── SciencePerDocDataReferenceDiscussion.php │ │ ├── SciencePerDocDataSection.php │ │ ├── SciencePerDocDataSignal.php │ │ ├── SdrEmbedding.php │ │ ├── SdrPageAnchorsDocInfo.php │ │ ├── SdrPageAnchorsSitelink.php │ │ ├── SdrPageAnchorsSitelinkWrapper.php │ │ ├── SdrScrollTo.php │ │ ├── SdrScrollToOnPageMatches.php │ │ ├── SearchPolicyRankableSensitivity.php │ │ ├── SearchPolicyRankableSensitivityAttentionalEntity.php │ │ ├── SearchPolicyRankableSensitivityFollowOn.php │ │ ├── SearchPolicyRankableSensitivityFulfillment.php │ │ ├── SearchPolicyRankableSensitivityPrefilter.php │ │ ├── SearchPolicyRankableSensitivityQueryUnderstanding.php │ │ ├── SearchPolicyRankableSensitivitySyntheticIntent.php │ │ ├── SecurityCredentialsAllAuthenticatedUsersProto.php │ │ ├── SecurityCredentialsCapTokenHolderProto.php │ │ ├── SecurityCredentialsChatProto.php │ │ ├── SecurityCredentialsCircleProto.php │ │ ├── SecurityCredentialsCloudPrincipalProto.php │ │ ├── SecurityCredentialsContactGroupProto.php │ │ ├── SecurityCredentialsEmailOwnerProto.php │ │ ├── SecurityCredentialsEventProto.php │ │ ├── SecurityCredentialsGaiaGroupProto.php │ │ ├── SecurityCredentialsGaiaUserProto.php │ │ ├── SecurityCredentialsHostProto.php │ │ ├── SecurityCredentialsLdapGroupProto.php │ │ ├── SecurityCredentialsLdapUserProto.php │ │ ├── SecurityCredentialsMdbGroupProto.php │ │ ├── SecurityCredentialsMdbUserProto.php │ │ ├── SecurityCredentialsOAuthConsumerProto.php │ │ ├── SecurityCredentialsPostiniUserProto.php │ │ ├── SecurityCredentialsPrincipalProto.php │ │ ├── SecurityCredentialsRbacRoleProto.php │ │ ├── SecurityCredentialsRbacSubjectProto.php │ │ ├── SecurityCredentialsResourceRoleProto.php │ │ ├── SecurityCredentialsSigningKeyPossessorProto.php │ │ ├── SecurityCredentialsSimpleSecretHolderProto.php │ │ ├── SecurityCredentialsSimpleSecretLabelProto.php │ │ ├── SecurityCredentialsSocialGraphNodeProto.php │ │ ├── SecurityCredentialsSquareProto.php │ │ ├── SecurityCredentialsYoutubeUserProto.php │ │ ├── SecurityCredentialsZwiebackSessionProto.php │ │ ├── SentenceBoundaryAnnotations.php │ │ ├── SentenceBoundaryAnnotationsInstance.php │ │ ├── SentimentSentiment.php │ │ ├── SentimentSentimentBehaviors.php │ │ ├── SentimentSentimentEmotions.php │ │ ├── ShingleInfoPerDocData.php │ │ ├── ShingleSource.php │ │ ├── ShoppingWebentityShoppingAnnotationInferredImage.php │ │ ├── ShoppingWebentityShoppingAnnotationProductRating.php │ │ ├── ShoppingWebentityShoppingAnnotationSoriVersionId.php │ │ ├── Sitemap.php │ │ ├── SitemapDEPRECATEDTarget.php │ │ ├── SmartphonePerDocData.php │ │ ├── SmearedWebLandingPageEntry.php │ │ ├── SnapshotBox.php │ │ ├── SnapshotImageNode.php │ │ ├── SnapshotSnapshotDocument.php │ │ ├── SnapshotSnapshotMetadata.php │ │ ├── SnapshotTextNode.php │ │ ├── SnippetExtraInfo.php │ │ ├── SnippetExtraInfoSnippetCandidateInfo.php │ │ ├── SnippetExtraInfoSnippetScoringInfo.php │ │ ├── SnippetExtraInfoSnippetsBrainModelInfo.php │ │ ├── SnippetsLeadingtextLeadingTextAnnotation.php │ │ ├── SnippetsLeadingtextLeadingTextAnnotationPiece.php │ │ ├── SnippetsLeadingtextLeadingTextInfo.php │ │ ├── SocialCommonAttachmentAttachment.php │ │ ├── SocialCommonFormatting.php │ │ ├── SocialCommonHashtagData.php │ │ ├── SocialCommonLinkData.php │ │ ├── SocialCommonSegment.php │ │ ├── SocialCommonSegments.php │ │ ├── SocialCommonUserMentionData.php │ │ ├── SocialDiscoveryExternalEntityKey.php │ │ ├── SocialGraphApiAppContactData.php │ │ ├── SocialGraphApiDataColumn.php │ │ ├── SocialGraphApiProtoAndroidDeviceInfo.php │ │ ├── SocialGraphApiProtoBirthdayDecoration.php │ │ ├── SocialGraphApiProtoContactCreateContext.php │ │ ├── SocialGraphApiProtoContactDeletionContext.php │ │ ├── SocialGraphApiProtoContactEditContext.php │ │ ├── SocialGraphApiProtoContactMutationContext.php │ │ ├── SocialGraphApiProtoContactPromptSettings.php │ │ ├── SocialGraphApiProtoContactState.php │ │ ├── SocialGraphApiProtoDailyRecurrence.php │ │ ├── SocialGraphApiProtoDecorationOverlay.php │ │ ├── SocialGraphApiProtoDelegatedGroupId.php │ │ ├── SocialGraphApiProtoDisplayNameSource.php │ │ ├── SocialGraphApiProtoHostAppInfo.php │ │ ├── SocialGraphApiProtoImageReference.php │ │ ├── SocialGraphApiProtoLimitedProfileNameSettings.php │ │ ├── SocialGraphApiProtoLimitedProfilePictureSettings.php │ │ ├── SocialGraphApiProtoLimitedProfileSettings.php │ │ ├── SocialGraphApiProtoMonthlyDayRecurrence.php │ │ ├── SocialGraphApiProtoMonthlyRecurrence.php │ │ ├── SocialGraphApiProtoMonthlyWeekdayRecurrence.php │ │ ├── SocialGraphApiProtoNamePronunciationAudioMetadata.php │ │ ├── SocialGraphApiProtoNotificationTrigger.php │ │ ├── SocialGraphApiProtoPartialNameOptions.php │ │ ├── SocialGraphApiProtoPartialNameOptionsNamePartSpec.php │ │ ├── SocialGraphApiProtoPartialNameOptionsParsedDisplayNameSpec.php │ │ ├── SocialGraphApiProtoPartialNameOptionsTwoPartNameSpec.php │ │ ├── SocialGraphApiProtoPhotoOverlay.php │ │ ├── SocialGraphApiProtoPrompt.php │ │ ├── SocialGraphApiProtoPromptContent.php │ │ ├── SocialGraphApiProtoPronounData.php │ │ ├── SocialGraphApiProtoPronounEntry.php │ │ ├── SocialGraphApiProtoPronunciation.php │ │ ├── SocialGraphApiProtoPronunciations.php │ │ ├── SocialGraphApiProtoRecurrence.php │ │ ├── SocialGraphApiProtoRecurrenceRepeatForever.php │ │ ├── SocialGraphApiProtoRelativePosition.php │ │ ├── SocialGraphApiProtoRelativeScale.php │ │ ├── SocialGraphApiProtoSearchProfileData.php │ │ ├── SocialGraphApiProtoSearchProfileEducation.php │ │ ├── SocialGraphApiProtoSearchProfileEntity.php │ │ ├── SocialGraphApiProtoSearchProfileLocation.php │ │ ├── SocialGraphApiProtoSearchProfileLocationInfo.php │ │ ├── SocialGraphApiProtoSearchProfileMetadata.php │ │ ├── SocialGraphApiProtoSearchProfileSocialLink.php │ │ ├── SocialGraphApiProtoSearchProfileState.php │ │ ├── SocialGraphApiProtoSearchProfileWorkplace.php │ │ ├── SocialGraphApiProtoSingleRecurrence.php │ │ ├── SocialGraphApiProtoSyncInfo.php │ │ ├── SocialGraphApiProtoThirdPartyInfo.php │ │ ├── SocialGraphApiProtoUsageInfo.php │ │ ├── SocialGraphApiProtoWeeklyRecurrence.php │ │ ├── SocialGraphApiProtoYearlyRecurrence.php │ │ ├── SocialGraphWireProtoPeopleapiAffinityMetadata.php │ │ ├── SocialGraphWireProtoPeopleapiAffinityMetadataClientInteractionInfo.php │ │ ├── SocialGraphWireProtoPeopleapiAffinityMetadataCloudDeviceDataInfo.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionAppsWaldoExtendedData.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionCorpDeskbookingLocationExtendedData.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionDynamiteExtendedData.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionPaisaExtendedData.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionPeopleStackExtendedData.php │ │ ├── SocialGraphWireProtoPeopleapiExtensionPeopleStackPersonExtendedData.php │ │ ├── SocialPersonalizationKnexAnnotation.php │ │ ├── SocialPersonalizationKnexAnnotationItem.php │ │ ├── SocialPersonalizationKnexAnnotationItemTopic.php │ │ ├── SocialStanzaDeliveryRestriction.php │ │ ├── SocialStanzaModerationInfo.php │ │ ├── SocialStanzaStanzaRestriction.php │ │ ├── SpamBrainData.php │ │ ├── SpamBrainScore.php │ │ ├── SpamCookbookAction.php │ │ ├── SpamMuppetjoinsMuppetSignals.php │ │ ├── SpeechS3LanguageIdentificationResult.php │ │ ├── SpeechS3Locale.php │ │ ├── StorageGraphBfgAuthorityFeedbackMetadata.php │ │ ├── StorageGraphBfgLegalRequestMetadata.php │ │ ├── StorageGraphBfgLivegraphProvenanceMetadata.php │ │ ├── StorageGraphBfgLmsPolicyMetadata.php │ │ ├── StorageGraphBfgPolicyMetadata.php │ │ ├── StorageGraphBfgPublicInformationMetadata.php │ │ ├── StorageGraphBfgSpiiCertification.php │ │ ├── StorageGraphBfgTripleProvenance.php │ │ ├── StorageGraphBfgUmpPolicyMetadata.php │ │ ├── SuperrootPodcastsRecommendationsPodcastRecsFeatures.php │ │ ├── SuperrootPodcastsRecommendationsPodcastRecsFeaturesUserLanguage.php │ │ ├── TelephoneNumber.php │ │ ├── TeragoogleDocumentInfo.php │ │ ├── TeragoogleDocumentInfoAttachment.php │ │ ├── TeragoogleDocumentInfoSection.php │ │ ├── TeragoogleRepositoryAttachmentOptions.php │ │ ├── TitleSizeParams.php │ │ ├── ToolBarPerDocData.php │ │ ├── TravelFlightsAirlineConfig.php │ │ ├── TravelFlightsAirlineConfigContactInfo.php │ │ ├── TravelFlightsAirlineConfigCountryContactInfo.php │ │ ├── TravelFlightsAirlineConfigLocalizedContactInfo.php │ │ ├── TravelFlightsNameCatalogEntry.php │ │ ├── TravelFlightsNameCatalogProto.php │ │ ├── TrawlerClientServiceInfo.php │ │ ├── TrawlerClientServiceInfoClientLabels.php │ │ ├── TrawlerClientServiceInfoClientLabelsClientLabelValues.php │ │ ├── TrawlerContentRangeInfo.php │ │ ├── TrawlerCrawlTimes.php │ │ ├── TrawlerEvent.php │ │ ├── TrawlerFetchBodyData.php │ │ ├── TrawlerFetchReplyData.php │ │ ├── TrawlerFetchReplyDataCrawlDates.php │ │ ├── TrawlerFetchReplyDataDeliveryReport.php │ │ ├── TrawlerFetchReplyDataFetchStats.php │ │ ├── TrawlerFetchReplyDataFetchStatsClientStateStats.php │ │ ├── TrawlerFetchReplyDataFetchStatsStateStats.php │ │ ├── TrawlerFetchReplyDataHTTPHeader.php │ │ ├── TrawlerFetchReplyDataPartialResponse.php │ │ ├── TrawlerFetchReplyDataProtocolResponse.php │ │ ├── TrawlerFetchReplyDataRedirects.php │ │ ├── TrawlerFetchStatus.php │ │ ├── TrawlerHostBucketData.php │ │ ├── TrawlerHostBucketDataUrlList.php │ │ ├── TrawlerLoggedVPCDestination.php │ │ ├── TrawlerMultiverseClientIdentifier.php │ │ ├── TrawlerOriginalClientParams.php │ │ ├── TrawlerPolicyData.php │ │ ├── TrawlerSSLCertificateInfo.php │ │ ├── TrawlerTCPIPInfo.php │ │ ├── TrawlerThrottleClientData.php │ │ ├── TrawlerTrawlerPrivateFetchReplyData.php │ │ ├── UniversalsearchNewPackerKnowledgeResultSupport.php │ │ ├── UniversalsearchNewPackerKnowledgeResultSupportProvenance.php │ │ ├── UrlPoisoningData.php │ │ ├── UtilStatusProto.php │ │ ├── VendingConsumerProtoTrustedGenomeAnnotation.php │ │ ├── VendingConsumerProtoTrustedGenomeEntity.php │ │ ├── VendingConsumerProtoTrustedGenomeHierarchy.php │ │ ├── VendingConsumerProtoTrustedGenomePolicy.php │ │ ├── VendingConsumerProtoTrustedGenomePolicyTargetRegion.php │ │ ├── VideoAmbisonicsAmbisonicsMetadata.php │ │ ├── VideoAssetsVenomACL.php │ │ ├── VideoAssetsVenomSettings.php │ │ ├── VideoAssetsVenomTransition.php │ │ ├── VideoAssetsVenomVideoId.php │ │ ├── VideoAudioStream.php │ │ ├── VideoClipInfo.php │ │ ├── VideoClosedCaptions.php │ │ ├── VideoContentSearchAnchorCommonFeatureSet.php │ │ ├── VideoContentSearchAnchorCommonFeatureSetLabelSpanTimestamp.php │ │ ├── VideoContentSearchAnchorThumbnail.php │ │ ├── VideoContentSearchAnchorThumbnailInfo.php │ │ ├── VideoContentSearchAnchorsCommonFeatureSet.php │ │ ├── VideoContentSearchAnchorsThumbnailInfo.php │ │ ├── VideoContentSearchAspect.php │ │ ├── VideoContentSearchAsrCaption.php │ │ ├── VideoContentSearchBleurtFeatures.php │ │ ├── VideoContentSearchCaptionEntityAnchorFeatures.php │ │ ├── VideoContentSearchCaptionEntityAnchorSetFeatures.php │ │ ├── VideoContentSearchCaptionEntityDocInfo.php │ │ ├── VideoContentSearchCaptionInfo.php │ │ ├── VideoContentSearchCaptionLabelFeatures.php │ │ ├── VideoContentSearchCaptionSpanAnchorFeatures.php │ │ ├── VideoContentSearchCaptionSpanAnchorSetFeatures.php │ │ ├── VideoContentSearchCommentAnchorSetFeatures.php │ │ ├── VideoContentSearchCommentAnchorSetFeaturesComment.php │ │ ├── VideoContentSearchDescriptionAnchorFeatures.php │ │ ├── VideoContentSearchDescriptionAnchorSetFeatures.php │ │ ├── VideoContentSearchDescriptionSpanInfo.php │ │ ├── VideoContentSearchDolphinEnsembleScore.php │ │ ├── VideoContentSearchDolphinFeatures.php │ │ ├── VideoContentSearchDolphinScoringConfig.php │ │ ├── VideoContentSearchEntityAnnotations.php │ │ ├── VideoContentSearchEntityGroupInfo.php │ │ ├── VideoContentSearchFrameSimilarityInterval.php │ │ ├── VideoContentSearchFrameStarburstData.php │ │ ├── VideoContentSearchGenerativePredictionFeatures.php │ │ ├── VideoContentSearchGenerativeTopicPredictionFeatures.php │ │ ├── VideoContentSearchInstructionAnchorFeatures.php │ │ ├── VideoContentSearchInstructionTrainingDataAnchorFeatures.php │ │ ├── VideoContentSearchListAnchorFeatures.php │ │ ├── VideoContentSearchListAnchorSetFeatures.php │ │ ├── VideoContentSearchListTrainingDataAnchorFeatures.php │ │ ├── VideoContentSearchListTrainingDataSetFeatures.php │ │ ├── VideoContentSearchMatchScores.php │ │ ├── VideoContentSearchMetricStats.php │ │ ├── VideoContentSearchMultimodalTopicFeatures.php │ │ ├── VideoContentSearchMultimodalTopicTrainingFeatures.php │ │ ├── VideoContentSearchNamedEntity.php │ │ ├── VideoContentSearchNavboostAnchorFeatures.php │ │ ├── VideoContentSearchOCRText.php │ │ ├── VideoContentSearchOcrAsrFeature.php │ │ ├── VideoContentSearchOcrAsrSetFeature.php │ │ ├── VideoContentSearchOcrDescriptionTrainingDataAnchorFeatures.php │ │ ├── VideoContentSearchOcrDescriptionTrainingDataSetFeatures.php │ │ ├── VideoContentSearchOcrVideoFeature.php │ │ ├── VideoContentSearchOnScreenTextClusterFeature.php │ │ ├── VideoContentSearchOnScreenTextFeature.php │ │ ├── VideoContentSearchQbstTermsOverlapFeatures.php │ │ ├── VideoContentSearchQnaAnchorFeatures.php │ │ ├── VideoContentSearchQnaAnchorSetFeatures.php │ │ ├── VideoContentSearchRankEmbedNearestNeighborsFeatures.php │ │ ├── VideoContentSearchSaftEntityInfo.php │ │ ├── VideoContentSearchShoppingOpinionsAnchorFeatures.php │ │ ├── VideoContentSearchSimilarityMatchInfo.php │ │ ├── VideoContentSearchSpanDolphinFeatures.php │ │ ├── VideoContentSearchSpanDolphinScores.php │ │ ├── VideoContentSearchSpanDolphinScoresSpanCandidate.php │ │ ├── VideoContentSearchSpanDolphinScoresSpanToken.php │ │ ├── VideoContentSearchSportsKeyMomentsAnchorSetFeatures.php │ │ ├── VideoContentSearchTextMatchInfo.php │ │ ├── VideoContentSearchTextSimilarityFeatures.php │ │ ├── VideoContentSearchTokenAlignment.php │ │ ├── VideoContentSearchTokenTimingInfo.php │ │ ├── VideoContentSearchVideoActions.php │ │ ├── VideoContentSearchVideoAnchor.php │ │ ├── VideoContentSearchVideoAnchorRatingScore.php │ │ ├── VideoContentSearchVideoAnchorScoreInfo.php │ │ ├── VideoContentSearchVideoAnchorScoreInfoLabelTransformation.php │ │ ├── VideoContentSearchVideoAnchorSetRatingScore.php │ │ ├── VideoContentSearchVideoAnchorSets.php │ │ ├── VideoContentSearchVideoAnchors.php │ │ ├── VideoContentSearchVideoAnchorsScoreInfo.php │ │ ├── VideoContentSearchVideoCommonFeatures.php │ │ ├── VideoContentSearchVideoGeneratedQueryFeatures.php │ │ ├── VideoContentSearchVideoInfo.php │ │ ├── VideoContentSearchVideoIntroduction.php │ │ ├── VideoContentSearchVideoMultimodalTopicFeatures.php │ │ ├── VideoContentSearchVideoScoreInfo.php │ │ ├── VideoContentSearchVisualFeatures.php │ │ ├── VideoCrawlVideoInlinePlaybackMetadata.php │ │ ├── VideoDoViDecoderConfiguration.php │ │ ├── VideoFileColorInfo.php │ │ ├── VideoFileContentLightLevel.php │ │ ├── VideoFileFramePackingArrangement.php │ │ ├── VideoFileHDR10PlusStats.php │ │ ├── VideoFileMasteringDisplayMetadata.php │ │ ├── VideoFileMasteringDisplayMetadataCIE1931Coordinate.php │ │ ├── VideoFileSphericalMetadata.php │ │ ├── VideoFileSphericalMetadataCroppedArea.php │ │ ├── VideoFileSphericalMetadataCubemapProjection.php │ │ ├── VideoFileSphericalMetadataEquirectProjection.php │ │ ├── VideoFileSphericalMetadataFOVBounds.php │ │ ├── VideoFileSphericalMetadataMeshProjection.php │ │ ├── VideoFileSphericalMetadataPose.php │ │ ├── VideoFileSphericalMetadataViewDirection.php │ │ ├── VideoLegosLegosAnnotationsSet.php │ │ ├── VideoLegosLegosAnnotationsSets.php │ │ ├── VideoMediaInfo.php │ │ ├── VideoMediaOverview.php │ │ ├── VideoMediaOverviewAudioOverview.php │ │ ├── VideoMediaOverviewDataOverview.php │ │ ├── VideoMediaOverviewMediaClipInfoOverview.php │ │ ├── VideoMediaOverviewTimedTextOverview.php │ │ ├── VideoMediaOverviewVideoOverview.php │ │ ├── VideoPerDocData.php │ │ ├── VideoPipelineViperThumbnailerColumnData.php │ │ ├── VideoPipelineViperVSIColumnData.php │ │ ├── VideoPipelineViperVSIColumnDataVsiStats.php │ │ ├── VideoRational32.php │ │ ├── VideoSEIMessage.php │ │ ├── VideoStorageLoudnessData.php │ │ ├── VideoThumbnailsFrameFile.php │ │ ├── VideoThumbnailsFrameFileList.php │ │ ├── VideoThumbnailsThumbnailScore.php │ │ ├── VideoTimedtextS4ALIResults.php │ │ ├── VideoTimedtextS4LangScore.php │ │ ├── VideoUserDataRegisteredItuTT35.php │ │ ├── VideoUserDataUnregistered.php │ │ ├── VideoVideoClipInfo.php │ │ ├── VideoVideoGeoLocation.php │ │ ├── VideoVideoStream.php │ │ ├── VideoVideoStreamInfo.php │ │ ├── VideoVideoStreamInfoAudioStream.php │ │ ├── VideoVideoStreamInfoDataStream.php │ │ ├── VideoVideoStreamInfoMetadata.php │ │ ├── VideoVideoStreamInfoMetadataLutAttachments.php │ │ ├── VideoVideoStreamInfoMetadataLutAttachmentsLut3D.php │ │ ├── VideoVideoStreamInfoTimedTextStream.php │ │ ├── VideoVideoStreamInfoVideoStream.php │ │ ├── VideoVideoStreamInfoVideoStreamCleanAperture.php │ │ ├── VideoVideoStreamInfoVideoStreamStatistics.php │ │ ├── VideoYoutubeCommentsClassificationProtoSmartSuggestion.php │ │ ├── VideoYoutubeCommentsClassificationProtoYouTubeCommentSmartReply.php │ │ ├── VideoYoutubeCommentsRankingCTRMetrics.php │ │ ├── WWWDocInfo.php │ │ ├── WWWDocInfoRelatedImages.php │ │ ├── WWWDocInfoThumbnail.php │ │ ├── WWWMetaTag.php │ │ ├── WWWResultInfoSubImageDocInfo.php │ │ ├── WWWSnippetResponse.php │ │ ├── WWWSnippetResponseBitmapPB.php │ │ ├── WatchpageLanguageWatchPageLanguageResult.php │ │ ├── WeboftrustLiveResultDocBoostData.php │ │ ├── WeboftrustLiveResultProviderDocAttachment.php │ │ ├── WeboftrustLiveResultsDocAttachments.php │ │ ├── WeboftrustTimeRange.php │ │ ├── WebutilHtmlTypesSafeHtmlProto.php │ │ ├── WirelessTranscoderFetchFetchMetadata.php │ │ ├── WirelessTranscoderFetchFetchSourceInfo.php │ │ ├── YoutubeBackstageSuperVodCommentInfo.php │ │ ├── YoutubeCommentsClusteringMiniStanza.php │ │ ├── YoutubeCommentsRankingYouTubeCommentTextEmbedding.php │ │ ├── YoutubeCommentsRankingYouTubeCommentTextQualityAnnotation.php │ │ ├── YoutubeCommentsSentimentSentiment.php │ │ ├── YoutubeCommentsSentimentSentimentEntitySentimentAnnotation.php │ │ ├── YoutubeCommentsSentimentSentimentEntitySentimentAnnotationMentionSentimentAnnotation.php │ │ ├── YoutubeDiscoveryLegosLegosAnnotation.php │ │ ├── YoutubeDiscoveryLegosLegosAnnotations.php │ │ ├── YoutubeDiscoveryLegosLegosEntity.php │ │ ├── YoutubeDiscoveryLegosLegosFormatRelationship.php │ │ ├── YoutubeDiscoveryLegosLegosPresentRelationship.php │ │ ├── YoutubeDiscoveryLegosLegosSemanticRelationship.php │ │ ├── YoutubeDiscoveryLegosLegosSemanticRelationshipContext.php │ │ ├── YoutubeDiscoveryLegosLegosTaxonomicRelationship.php │ │ ├── YoutubeDistillerBlarneyStoneScores.php │ │ └── YoutubeDistillerModelScore.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 │ │ ├── DLP.php │ │ ├── DLP │ │ ├── GooglePrivacyDlpV2Action.php │ │ ├── GooglePrivacyDlpV2ActivateJobTriggerRequest.php │ │ ├── GooglePrivacyDlpV2AllInfoTypes.php │ │ ├── GooglePrivacyDlpV2AllText.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 │ │ ├── GooglePrivacyDlpV2DataProfileAction.php │ │ ├── GooglePrivacyDlpV2DataProfileConfigSnapshot.php │ │ ├── GooglePrivacyDlpV2DataProfileJobConfig.php │ │ ├── GooglePrivacyDlpV2DataProfileLocation.php │ │ ├── GooglePrivacyDlpV2DataProfilePubSubCondition.php │ │ ├── GooglePrivacyDlpV2DataProfilePubSubMessage.php │ │ ├── GooglePrivacyDlpV2DataRiskLevel.php │ │ ├── GooglePrivacyDlpV2DatastoreKey.php │ │ ├── GooglePrivacyDlpV2DatastoreOptions.php │ │ ├── GooglePrivacyDlpV2DateShiftConfig.php │ │ ├── GooglePrivacyDlpV2DateTime.php │ │ ├── GooglePrivacyDlpV2Deidentify.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 │ │ ├── GooglePrivacyDlpV2ExcludeByHotword.php │ │ ├── GooglePrivacyDlpV2ExcludeInfoTypes.php │ │ ├── GooglePrivacyDlpV2ExclusionRule.php │ │ ├── GooglePrivacyDlpV2Export.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 │ │ ├── GooglePrivacyDlpV2ImageTransformation.php │ │ ├── GooglePrivacyDlpV2ImageTransformations.php │ │ ├── GooglePrivacyDlpV2InfoType.php │ │ ├── GooglePrivacyDlpV2InfoTypeCategory.php │ │ ├── GooglePrivacyDlpV2InfoTypeDescription.php │ │ ├── GooglePrivacyDlpV2InfoTypeLimit.php │ │ ├── GooglePrivacyDlpV2InfoTypeStats.php │ │ ├── GooglePrivacyDlpV2InfoTypeSummary.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 │ │ ├── GooglePrivacyDlpV2OtherInfoTypeSummary.php │ │ ├── GooglePrivacyDlpV2OutputStorageConfig.php │ │ ├── GooglePrivacyDlpV2PartitionId.php │ │ ├── GooglePrivacyDlpV2PathElement.php │ │ ├── GooglePrivacyDlpV2PrimitiveTransformation.php │ │ ├── GooglePrivacyDlpV2PrivacyMetric.php │ │ ├── GooglePrivacyDlpV2ProfileStatus.php │ │ ├── GooglePrivacyDlpV2Proximity.php │ │ ├── GooglePrivacyDlpV2PubSubCondition.php │ │ ├── GooglePrivacyDlpV2PubSubExpressions.php │ │ ├── GooglePrivacyDlpV2PubSubNotification.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 │ │ ├── GooglePrivacyDlpV2RecordTransformation.php │ │ ├── GooglePrivacyDlpV2RecordTransformations.php │ │ ├── GooglePrivacyDlpV2RedactConfig.php │ │ ├── GooglePrivacyDlpV2RedactImageRequest.php │ │ ├── GooglePrivacyDlpV2RedactImageResponse.php │ │ ├── GooglePrivacyDlpV2Regex.php │ │ ├── GooglePrivacyDlpV2ReidentifyContentRequest.php │ │ ├── GooglePrivacyDlpV2ReidentifyContentResponse.php │ │ ├── GooglePrivacyDlpV2ReplaceDictionaryConfig.php │ │ ├── GooglePrivacyDlpV2ReplaceValueConfig.php │ │ ├── GooglePrivacyDlpV2ReplaceWithInfoTypeConfig.php │ │ ├── GooglePrivacyDlpV2RequestedOptions.php │ │ ├── GooglePrivacyDlpV2RequestedRiskAnalysisOptions.php │ │ ├── GooglePrivacyDlpV2Result.php │ │ ├── GooglePrivacyDlpV2RiskAnalysisJobConfig.php │ │ ├── GooglePrivacyDlpV2Row.php │ │ ├── GooglePrivacyDlpV2SaveFindings.php │ │ ├── GooglePrivacyDlpV2Schedule.php │ │ ├── GooglePrivacyDlpV2SelectedInfoTypes.php │ │ ├── GooglePrivacyDlpV2SensitivityScore.php │ │ ├── GooglePrivacyDlpV2StatisticalTable.php │ │ ├── GooglePrivacyDlpV2StorageConfig.php │ │ ├── GooglePrivacyDlpV2StorageMetadataLabel.php │ │ ├── GooglePrivacyDlpV2StoredInfoType.php │ │ ├── GooglePrivacyDlpV2StoredInfoTypeConfig.php │ │ ├── GooglePrivacyDlpV2StoredInfoTypeStats.php │ │ ├── GooglePrivacyDlpV2StoredInfoTypeVersion.php │ │ ├── GooglePrivacyDlpV2StoredType.php │ │ ├── GooglePrivacyDlpV2SummaryResult.php │ │ ├── GooglePrivacyDlpV2SurrogateType.php │ │ ├── GooglePrivacyDlpV2Table.php │ │ ├── GooglePrivacyDlpV2TableDataProfile.php │ │ ├── GooglePrivacyDlpV2TableLocation.php │ │ ├── GooglePrivacyDlpV2TableOptions.php │ │ ├── GooglePrivacyDlpV2TaggedField.php │ │ ├── GooglePrivacyDlpV2ThrowError.php │ │ ├── GooglePrivacyDlpV2TimePartConfig.php │ │ ├── GooglePrivacyDlpV2TimeZone.php │ │ ├── GooglePrivacyDlpV2TimespanConfig.php │ │ ├── GooglePrivacyDlpV2TransformationConfig.php │ │ ├── GooglePrivacyDlpV2TransformationDescription.php │ │ ├── GooglePrivacyDlpV2TransformationDetails.php │ │ ├── GooglePrivacyDlpV2TransformationDetailsStorageConfig.php │ │ ├── GooglePrivacyDlpV2TransformationErrorHandling.php │ │ ├── GooglePrivacyDlpV2TransformationLocation.php │ │ ├── GooglePrivacyDlpV2TransformationOverview.php │ │ ├── GooglePrivacyDlpV2TransformationResultStatus.php │ │ ├── GooglePrivacyDlpV2TransformationSummary.php │ │ ├── GooglePrivacyDlpV2TransientCryptoKey.php │ │ ├── GooglePrivacyDlpV2Trigger.php │ │ ├── GooglePrivacyDlpV2UnwrappedCryptoKey.php │ │ ├── GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest.php │ │ ├── GooglePrivacyDlpV2UpdateInspectTemplateRequest.php │ │ ├── GooglePrivacyDlpV2UpdateJobTriggerRequest.php │ │ ├── GooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php │ │ ├── GooglePrivacyDlpV2Value.php │ │ ├── GooglePrivacyDlpV2ValueFrequency.php │ │ ├── GooglePrivacyDlpV2VersionDescription.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 │ │ │ ├── OrganizationsLocationsDlpJobs.php │ │ │ ├── OrganizationsLocationsInspectTemplates.php │ │ │ ├── OrganizationsLocationsJobTriggers.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 │ │ ├── GoogleCloudDatacatalogV1BigQueryConnectionSpec.php │ │ ├── GoogleCloudDatacatalogV1BigQueryDateShardedSpec.php │ │ ├── GoogleCloudDatacatalogV1BigQueryRoutineSpec.php │ │ ├── GoogleCloudDatacatalogV1BigQueryTableSpec.php │ │ ├── GoogleCloudDatacatalogV1BusinessContext.php │ │ ├── GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec.php │ │ ├── GoogleCloudDatacatalogV1ColumnSchema.php │ │ ├── GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpec.php │ │ ├── GoogleCloudDatacatalogV1CommonUsageStats.php │ │ ├── GoogleCloudDatacatalogV1Contacts.php │ │ ├── GoogleCloudDatacatalogV1ContactsPerson.php │ │ ├── GoogleCloudDatacatalogV1CrossRegionalSource.php │ │ ├── GoogleCloudDatacatalogV1DataSource.php │ │ ├── GoogleCloudDatacatalogV1DataSourceConnectionSpec.php │ │ ├── GoogleCloudDatacatalogV1DatabaseTableSpec.php │ │ ├── GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec.php │ │ ├── GoogleCloudDatacatalogV1DataplexExternalTable.php │ │ ├── GoogleCloudDatacatalogV1DataplexFilesetSpec.php │ │ ├── GoogleCloudDatacatalogV1DataplexSpec.php │ │ ├── GoogleCloudDatacatalogV1DataplexTableSpec.php │ │ ├── GoogleCloudDatacatalogV1Entry.php │ │ ├── GoogleCloudDatacatalogV1EntryGroup.php │ │ ├── GoogleCloudDatacatalogV1EntryOverview.php │ │ ├── GoogleCloudDatacatalogV1ExportTaxonomiesResponse.php │ │ ├── GoogleCloudDatacatalogV1FieldType.php │ │ ├── GoogleCloudDatacatalogV1FieldTypeEnumType.php │ │ ├── GoogleCloudDatacatalogV1FieldTypeEnumTypeEnumValue.php │ │ ├── GoogleCloudDatacatalogV1FilesetSpec.php │ │ ├── GoogleCloudDatacatalogV1GcsFileSpec.php │ │ ├── GoogleCloudDatacatalogV1GcsFilesetSpec.php │ │ ├── GoogleCloudDatacatalogV1ImportEntriesMetadata.php │ │ ├── GoogleCloudDatacatalogV1ImportEntriesRequest.php │ │ ├── GoogleCloudDatacatalogV1ImportEntriesResponse.php │ │ ├── GoogleCloudDatacatalogV1ImportTaxonomiesRequest.php │ │ ├── GoogleCloudDatacatalogV1ImportTaxonomiesResponse.php │ │ ├── GoogleCloudDatacatalogV1InlineSource.php │ │ ├── GoogleCloudDatacatalogV1ListEntriesResponse.php │ │ ├── GoogleCloudDatacatalogV1ListEntryGroupsResponse.php │ │ ├── GoogleCloudDatacatalogV1ListPolicyTagsResponse.php │ │ ├── GoogleCloudDatacatalogV1ListTagsResponse.php │ │ ├── GoogleCloudDatacatalogV1ListTaxonomiesResponse.php │ │ ├── GoogleCloudDatacatalogV1LookerSystemSpec.php │ │ ├── GoogleCloudDatacatalogV1ModifyEntryContactsRequest.php │ │ ├── GoogleCloudDatacatalogV1ModifyEntryOverviewRequest.php │ │ ├── GoogleCloudDatacatalogV1PersonalDetails.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema.php │ │ ├── GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema.php │ │ ├── GoogleCloudDatacatalogV1PolicyTag.php │ │ ├── GoogleCloudDatacatalogV1ReconcileTagsMetadata.php │ │ ├── GoogleCloudDatacatalogV1ReconcileTagsRequest.php │ │ ├── GoogleCloudDatacatalogV1ReconcileTagsResponse.php │ │ ├── GoogleCloudDatacatalogV1RenameTagTemplateFieldEnumValueRequest.php │ │ ├── GoogleCloudDatacatalogV1RenameTagTemplateFieldRequest.php │ │ ├── GoogleCloudDatacatalogV1ReplaceTaxonomyRequest.php │ │ ├── GoogleCloudDatacatalogV1RoutineSpec.php │ │ ├── GoogleCloudDatacatalogV1RoutineSpecArgument.php │ │ ├── GoogleCloudDatacatalogV1Schema.php │ │ ├── GoogleCloudDatacatalogV1SearchCatalogRequest.php │ │ ├── GoogleCloudDatacatalogV1SearchCatalogRequestScope.php │ │ ├── GoogleCloudDatacatalogV1SearchCatalogResponse.php │ │ ├── GoogleCloudDatacatalogV1SearchCatalogResult.php │ │ ├── GoogleCloudDatacatalogV1SerializedPolicyTag.php │ │ ├── GoogleCloudDatacatalogV1SerializedTaxonomy.php │ │ ├── GoogleCloudDatacatalogV1SqlDatabaseSystemSpec.php │ │ ├── GoogleCloudDatacatalogV1StarEntryRequest.php │ │ ├── GoogleCloudDatacatalogV1StarEntryResponse.php │ │ ├── GoogleCloudDatacatalogV1StorageProperties.php │ │ ├── GoogleCloudDatacatalogV1SystemTimestamps.php │ │ ├── GoogleCloudDatacatalogV1TableSpec.php │ │ ├── GoogleCloudDatacatalogV1Tag.php │ │ ├── GoogleCloudDatacatalogV1TagField.php │ │ ├── GoogleCloudDatacatalogV1TagFieldEnumValue.php │ │ ├── GoogleCloudDatacatalogV1TagTemplate.php │ │ ├── GoogleCloudDatacatalogV1TagTemplateField.php │ │ ├── GoogleCloudDatacatalogV1Taxonomy.php │ │ ├── GoogleCloudDatacatalogV1TaxonomyService.php │ │ ├── GoogleCloudDatacatalogV1UnstarEntryRequest.php │ │ ├── GoogleCloudDatacatalogV1UnstarEntryResponse.php │ │ ├── GoogleCloudDatacatalogV1UsageSignal.php │ │ ├── GoogleCloudDatacatalogV1UsageStats.php │ │ ├── GoogleCloudDatacatalogV1ViewSpec.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 │ │ ├── GoogleCloudDatacatalogV1beta1UsageSignal.php │ │ ├── GoogleCloudDatacatalogV1beta1UsageStats.php │ │ ├── GoogleCloudDatacatalogV1beta1ViewSpec.php │ │ ├── ListOperationsResponse.php │ │ ├── Operation.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Catalog.php │ │ │ ├── Entries.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEntryGroups.php │ │ │ ├── ProjectsLocationsEntryGroupsEntries.php │ │ │ ├── ProjectsLocationsEntryGroupsEntriesTags.php │ │ │ ├── ProjectsLocationsEntryGroupsTags.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsTagTemplates.php │ │ │ ├── ProjectsLocationsTagTemplatesFields.php │ │ │ ├── ProjectsLocationsTagTemplatesFieldsEnumValues.php │ │ │ ├── ProjectsLocationsTaxonomies.php │ │ │ └── ProjectsLocationsTaxonomiesPolicyTags.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.php │ │ ├── DataFusion.php │ │ ├── DataFusion │ │ ├── Accelerator.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CryptoKeyConfig.php │ │ ├── DatafusionEmpty.php │ │ ├── DnsPeering.php │ │ ├── EventPublishConfig.php │ │ ├── Expr.php │ │ ├── Instance.php │ │ ├── ListAvailableVersionsResponse.php │ │ ├── ListDnsPeeringsResponse.php │ │ ├── ListInstancesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── NetworkConfig.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsInstancesDnsPeerings.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 │ │ ├── DatabaseMigrationService.php │ │ ├── DatabaseMigrationService │ │ ├── AlloyDbConnectionProfile.php │ │ ├── AlloyDbSettings.php │ │ ├── ApplyConversionWorkspaceRequest.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── BackgroundJobLogEntry.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CloudSqlConnectionProfile.php │ │ ├── CloudSqlSettings.php │ │ ├── ColumnEntity.php │ │ ├── CommitConversionWorkspaceRequest.php │ │ ├── ConnectionProfile.php │ │ ├── ConstraintEntity.php │ │ ├── ConversionWorkspace.php │ │ ├── ConversionWorkspaceInfo.php │ │ ├── ConvertConversionWorkspaceRequest.php │ │ ├── DatabaseEngineInfo.php │ │ ├── DatabaseEntity.php │ │ ├── DatabaseType.php │ │ ├── DatamigrationEmpty.php │ │ ├── DescribeConversionWorkspaceRevisionsResponse.php │ │ ├── DescribeDatabaseEntitiesResponse.php │ │ ├── DumpFlag.php │ │ ├── DumpFlags.php │ │ ├── EntityMapping.php │ │ ├── EntityMappingLogEntry.php │ │ ├── Expr.php │ │ ├── FetchStaticIpsResponse.php │ │ ├── ForwardSshTunnelConnectivity.php │ │ ├── FunctionEntity.php │ │ ├── GenerateSshScriptRequest.php │ │ ├── GoogleCloudClouddmsV1OperationMetadata.php │ │ ├── ImportMappingRulesRequest.php │ │ ├── ImportRulesJobDetails.php │ │ ├── IndexEntity.php │ │ ├── ListConnectionProfilesResponse.php │ │ ├── ListConversionWorkspacesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMigrationJobsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPrivateConnectionsResponse.php │ │ ├── Location.php │ │ ├── MachineConfig.php │ │ ├── MigrationJob.php │ │ ├── MigrationJobVerificationError.php │ │ ├── MySqlConnectionProfile.php │ │ ├── Operation.php │ │ ├── OracleConnectionProfile.php │ │ ├── PackageEntity.php │ │ ├── Policy.php │ │ ├── PostgreSqlConnectionProfile.php │ │ ├── PrimaryInstanceSettings.php │ │ ├── PrivateConnection.php │ │ ├── PrivateConnectivity.php │ │ ├── PrivateServiceConnectConnectivity.php │ │ ├── PromoteMigrationJobRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsConnectionProfiles.php │ │ │ ├── ProjectsLocationsConversionWorkspaces.php │ │ │ ├── ProjectsLocationsConversionWorkspacesMappingRules.php │ │ │ ├── ProjectsLocationsMigrationJobs.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsPrivateConnections.php │ │ ├── RestartMigrationJobRequest.php │ │ ├── ResumeMigrationJobRequest.php │ │ ├── ReverseSshConnectivity.php │ │ ├── RollbackConversionWorkspaceRequest.php │ │ ├── RulesFile.php │ │ ├── SchemaEntity.php │ │ ├── SearchBackgroundJobsResponse.php │ │ ├── SeedConversionWorkspaceRequest.php │ │ ├── SeedJobDetails.php │ │ ├── SequenceEntity.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SqlAclEntry.php │ │ ├── SqlIpConfig.php │ │ ├── SshScript.php │ │ ├── SslConfig.php │ │ ├── StartMigrationJobRequest.php │ │ ├── StaticIpConnectivity.php │ │ ├── StaticServiceIpConnectivity.php │ │ ├── Status.php │ │ ├── StopMigrationJobRequest.php │ │ ├── StoredProcedureEntity.php │ │ ├── SynonymEntity.php │ │ ├── TableEntity.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TriggerEntity.php │ │ ├── UserPassword.php │ │ ├── VerifyMigrationJobRequest.php │ │ ├── ViewEntity.php │ │ ├── VmCreationConfig.php │ │ ├── VmSelectionConfig.php │ │ ├── VpcPeeringConfig.php │ │ └── VpcPeeringConnectivity.php │ │ ├── Dataflow.php │ │ ├── Dataflow │ │ ├── ApproximateProgress.php │ │ ├── ApproximateReportedProgress.php │ │ ├── ApproximateSplitRequest.php │ │ ├── AutoscalingEvent.php │ │ ├── AutoscalingSettings.php │ │ ├── BigQueryIODetails.php │ │ ├── BigTableIODetails.php │ │ ├── CPUTime.php │ │ ├── ComponentSource.php │ │ ├── ComponentTransform.php │ │ ├── ComputationTopology.php │ │ ├── ConcatPosition.php │ │ ├── ContainerSpec.php │ │ ├── CounterMetadata.php │ │ ├── CounterStructuredName.php │ │ ├── CounterStructuredNameAndMetadata.php │ │ ├── CounterUpdate.php │ │ ├── CreateJobFromTemplateRequest.php │ │ ├── CustomSourceLocation.php │ │ ├── DataDiskAssignment.php │ │ ├── DatastoreIODetails.php │ │ ├── DebugOptions.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 │ │ ├── HotKeyDebuggingInfo.php │ │ ├── HotKeyDetection.php │ │ ├── HotKeyInfo.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 │ │ ├── MapTask.php │ │ ├── MemInfo.php │ │ ├── MetricShortId.php │ │ ├── MetricStructuredName.php │ │ ├── MetricUpdate.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 │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── Straggler.php │ │ ├── StragglerDebuggingInfo.php │ │ ├── StragglerInfo.php │ │ ├── StragglerSummary.php │ │ ├── StreamLocation.php │ │ ├── StreamingApplianceSnapshotConfig.php │ │ ├── StreamingComputationConfig.php │ │ ├── StreamingComputationRanges.php │ │ ├── StreamingComputationTask.php │ │ ├── StreamingConfigTask.php │ │ ├── StreamingSetupTask.php │ │ ├── StreamingSideInputLocation.php │ │ ├── StreamingStageLocation.php │ │ ├── StreamingStragglerInfo.php │ │ ├── StringList.php │ │ ├── StructuredMessage.php │ │ ├── TaskRunnerSettings.php │ │ ├── TemplateMetadata.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 │ │ ├── WorkerThreadScalingReport.php │ │ ├── WorkerThreadScalingReportResponse.php │ │ └── WriteInstruction.php │ │ ├── Dataform.php │ │ ├── Dataform │ │ ├── Assertion.php │ │ ├── BigQueryAction.php │ │ ├── CancelWorkflowInvocationRequest.php │ │ ├── CodeCompilationConfig.php │ │ ├── ColumnDescriptor.php │ │ ├── CommitAuthor.php │ │ ├── CommitWorkspaceChangesRequest.php │ │ ├── CompilationError.php │ │ ├── CompilationResult.php │ │ ├── CompilationResultAction.php │ │ ├── DataformEmpty.php │ │ ├── Declaration.php │ │ ├── DirectoryEntry.php │ │ ├── FetchFileDiffResponse.php │ │ ├── FetchFileGitStatusesResponse.php │ │ ├── FetchGitAheadBehindResponse.php │ │ ├── FetchRemoteBranchesResponse.php │ │ ├── GitRemoteSettings.php │ │ ├── IncrementalTableConfig.php │ │ ├── InstallNpmPackagesRequest.php │ │ ├── InstallNpmPackagesResponse.php │ │ ├── Interval.php │ │ ├── InvocationConfig.php │ │ ├── ListCompilationResultsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListReleaseConfigsResponse.php │ │ ├── ListRepositoriesResponse.php │ │ ├── ListWorkflowConfigsResponse.php │ │ ├── ListWorkflowInvocationsResponse.php │ │ ├── ListWorkspacesResponse.php │ │ ├── Location.php │ │ ├── MakeDirectoryRequest.php │ │ ├── MakeDirectoryResponse.php │ │ ├── MoveDirectoryRequest.php │ │ ├── MoveDirectoryResponse.php │ │ ├── MoveFileRequest.php │ │ ├── MoveFileResponse.php │ │ ├── OperationMetadata.php │ │ ├── Operations.php │ │ ├── PullGitCommitsRequest.php │ │ ├── PushGitCommitsRequest.php │ │ ├── QueryCompilationResultActionsResponse.php │ │ ├── QueryDirectoryContentsResponse.php │ │ ├── QueryWorkflowInvocationActionsResponse.php │ │ ├── ReadFileResponse.php │ │ ├── Relation.php │ │ ├── RelationDescriptor.php │ │ ├── ReleaseConfig.php │ │ ├── RemoveDirectoryRequest.php │ │ ├── RemoveFileRequest.php │ │ ├── Repository.php │ │ ├── ResetWorkspaceChangesRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsRepositories.php │ │ │ ├── ProjectsLocationsRepositoriesCompilationResults.php │ │ │ ├── ProjectsLocationsRepositoriesReleaseConfigs.php │ │ │ ├── ProjectsLocationsRepositoriesWorkflowConfigs.php │ │ │ ├── ProjectsLocationsRepositoriesWorkflowInvocations.php │ │ │ └── ProjectsLocationsRepositoriesWorkspaces.php │ │ ├── ScheduledExecutionRecord.php │ │ ├── ScheduledReleaseRecord.php │ │ ├── Status.php │ │ ├── Target.php │ │ ├── UncommittedFileChange.php │ │ ├── WorkflowConfig.php │ │ ├── WorkflowInvocation.php │ │ ├── WorkflowInvocationAction.php │ │ ├── Workspace.php │ │ ├── WorkspaceCompilationOverrides.php │ │ ├── WriteFileRequest.php │ │ └── WriteFileResponse.php │ │ ├── Datapipelines.php │ │ ├── Datapipelines │ │ ├── GoogleCloudDatapipelinesV1ArrayValue.php │ │ ├── GoogleCloudDatapipelinesV1AtomicValue.php │ │ ├── GoogleCloudDatapipelinesV1BatchGetTransformDescriptionsResponse.php │ │ ├── GoogleCloudDatapipelinesV1ComputeSchemaRequest.php │ │ ├── GoogleCloudDatapipelinesV1ConfiguredTransform.php │ │ ├── GoogleCloudDatapipelinesV1DataflowJobDetails.php │ │ ├── GoogleCloudDatapipelinesV1EnumerationValue.php │ │ ├── GoogleCloudDatapipelinesV1Field.php │ │ ├── GoogleCloudDatapipelinesV1FieldType.php │ │ ├── GoogleCloudDatapipelinesV1FieldValue.php │ │ ├── GoogleCloudDatapipelinesV1FixedBytesValue.php │ │ ├── GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironment.php │ │ ├── GoogleCloudDatapipelinesV1IterableValue.php │ │ ├── GoogleCloudDatapipelinesV1Job.php │ │ ├── GoogleCloudDatapipelinesV1LaunchFlexTemplateParameter.php │ │ ├── GoogleCloudDatapipelinesV1LaunchFlexTemplateRequest.php │ │ ├── GoogleCloudDatapipelinesV1LaunchTemplateParameters.php │ │ ├── GoogleCloudDatapipelinesV1LaunchTemplateRequest.php │ │ ├── GoogleCloudDatapipelinesV1ListJobsResponse.php │ │ ├── GoogleCloudDatapipelinesV1ListPipelinesResponse.php │ │ ├── GoogleCloudDatapipelinesV1LogicalType.php │ │ ├── GoogleCloudDatapipelinesV1LogicalTypeEnumerationType.php │ │ ├── GoogleCloudDatapipelinesV1LogicalTypeFixedBytes.php │ │ ├── GoogleCloudDatapipelinesV1MapType.php │ │ ├── GoogleCloudDatapipelinesV1MapValue.php │ │ ├── GoogleCloudDatapipelinesV1MapValueEntry.php │ │ ├── GoogleCloudDatapipelinesV1Pipeline.php │ │ ├── GoogleCloudDatapipelinesV1RawSchemaInfo.php │ │ ├── GoogleCloudDatapipelinesV1Row.php │ │ ├── GoogleCloudDatapipelinesV1RunPipelineRequest.php │ │ ├── GoogleCloudDatapipelinesV1RunPipelineResponse.php │ │ ├── GoogleCloudDatapipelinesV1RuntimeEnvironment.php │ │ ├── GoogleCloudDatapipelinesV1ScheduleSpec.php │ │ ├── GoogleCloudDatapipelinesV1Schema.php │ │ ├── GoogleCloudDatapipelinesV1SchemaSource.php │ │ ├── GoogleCloudDatapipelinesV1SdkVersion.php │ │ ├── GoogleCloudDatapipelinesV1StopPipelineRequest.php │ │ ├── GoogleCloudDatapipelinesV1TransformDescription.php │ │ ├── GoogleCloudDatapipelinesV1Workload.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDateTime.php │ │ ├── GoogleTypeDecimal.php │ │ ├── GoogleTypeTimeZone.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsPipelines.php │ │ │ ├── ProjectsLocationsPipelinesJobs.php │ │ │ └── ProjectsLocationsTransformDescriptions.php │ │ ├── Dataproc.php │ │ ├── Dataproc │ │ ├── AcceleratorConfig.php │ │ ├── AuthenticationConfig.php │ │ ├── AutoscalingConfig.php │ │ ├── AutoscalingPolicy.php │ │ ├── AuxiliaryNodeGroup.php │ │ ├── AuxiliaryServicesConfig.php │ │ ├── BasicAutoscalingAlgorithm.php │ │ ├── BasicYarnAutoscalingConfig.php │ │ ├── Batch.php │ │ ├── BatchOperationMetadata.php │ │ ├── Binding.php │ │ ├── CancelJobRequest.php │ │ ├── Cluster.php │ │ ├── ClusterConfig.php │ │ ├── ClusterMetrics.php │ │ ├── ClusterOperation.php │ │ ├── ClusterOperationMetadata.php │ │ ├── ClusterOperationStatus.php │ │ ├── ClusterSelector.php │ │ ├── ClusterStatus.php │ │ ├── ConfidentialInstanceConfig.php │ │ ├── DataprocEmpty.php │ │ ├── DataprocMetricConfig.php │ │ ├── DiagnoseClusterRequest.php │ │ ├── DiagnoseClusterResults.php │ │ ├── DiskConfig.php │ │ ├── DriverSchedulingConfig.php │ │ ├── EncryptionConfig.php │ │ ├── EndpointConfig.php │ │ ├── EnvironmentConfig.php │ │ ├── ExecutionConfig.php │ │ ├── Expr.php │ │ ├── GceClusterConfig.php │ │ ├── GceNodePoolOperationMetadata.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── GkeClusterConfig.php │ │ ├── GkeNodeConfig.php │ │ ├── GkeNodePoolAcceleratorConfig.php │ │ ├── GkeNodePoolAutoscalingConfig.php │ │ ├── GkeNodePoolConfig.php │ │ ├── GkeNodePoolTarget.php │ │ ├── HadoopJob.php │ │ ├── HiveJob.php │ │ ├── IdentityConfig.php │ │ ├── InjectCredentialsRequest.php │ │ ├── InjectableCredentialsConfig.php │ │ ├── InstanceGroupAutoscalingPolicyConfig.php │ │ ├── InstanceGroupConfig.php │ │ ├── InstanceReference.php │ │ ├── InstantiateWorkflowTemplateRequest.php │ │ ├── Interval.php │ │ ├── Job.php │ │ ├── JobMetadata.php │ │ ├── JobPlacement.php │ │ ├── JobReference.php │ │ ├── JobScheduling.php │ │ ├── JobStatus.php │ │ ├── KerberosConfig.php │ │ ├── KubernetesClusterConfig.php │ │ ├── KubernetesSoftwareConfig.php │ │ ├── LifecycleConfig.php │ │ ├── ListAutoscalingPoliciesResponse.php │ │ ├── ListBatchesResponse.php │ │ ├── ListClustersResponse.php │ │ ├── ListJobsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListWorkflowTemplatesResponse.php │ │ ├── LoggingConfig.php │ │ ├── ManagedCluster.php │ │ ├── ManagedGroupConfig.php │ │ ├── MetastoreConfig.php │ │ ├── Metric.php │ │ ├── NamespacedGkeDeploymentTarget.php │ │ ├── NodeGroup.php │ │ ├── NodeGroupAffinity.php │ │ ├── NodeGroupOperationMetadata.php │ │ ├── NodeInitializationAction.php │ │ ├── NodePool.php │ │ ├── Operation.php │ │ ├── OrderedJob.php │ │ ├── ParameterValidation.php │ │ ├── PeripheralsConfig.php │ │ ├── PigJob.php │ │ ├── Policy.php │ │ ├── PrestoJob.php │ │ ├── PySparkBatch.php │ │ ├── PySparkJob.php │ │ ├── QueryList.php │ │ ├── RegexValidation.php │ │ ├── RepairClusterRequest.php │ │ ├── ReservationAffinity.php │ │ ├── ResizeNodeGroupRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAutoscalingPolicies.php │ │ │ ├── ProjectsLocationsBatches.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsWorkflowTemplates.php │ │ │ ├── ProjectsRegions.php │ │ │ ├── ProjectsRegionsAutoscalingPolicies.php │ │ │ ├── ProjectsRegionsClusters.php │ │ │ ├── ProjectsRegionsClustersNodeGroups.php │ │ │ ├── ProjectsRegionsJobs.php │ │ │ ├── ProjectsRegionsOperations.php │ │ │ └── ProjectsRegionsWorkflowTemplates.php │ │ ├── RuntimeConfig.php │ │ ├── RuntimeInfo.php │ │ ├── SecurityConfig.php │ │ ├── SessionOperationMetadata.php │ │ ├── SetIamPolicyRequest.php │ │ ├── ShieldedInstanceConfig.php │ │ ├── SoftwareConfig.php │ │ ├── SparkBatch.php │ │ ├── SparkHistoryServerConfig.php │ │ ├── SparkJob.php │ │ ├── SparkRBatch.php │ │ ├── SparkRJob.php │ │ ├── SparkSqlBatch.php │ │ ├── SparkSqlJob.php │ │ ├── SparkStandaloneAutoscalingConfig.php │ │ ├── StartClusterRequest.php │ │ ├── StateHistory.php │ │ ├── Status.php │ │ ├── StopClusterRequest.php │ │ ├── SubmitJobRequest.php │ │ ├── TemplateParameter.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TrinoJob.php │ │ ├── UsageMetrics.php │ │ ├── UsageSnapshot.php │ │ ├── ValueValidation.php │ │ ├── VirtualClusterConfig.php │ │ ├── WorkflowGraph.php │ │ ├── WorkflowMetadata.php │ │ ├── WorkflowNode.php │ │ ├── WorkflowTemplate.php │ │ ├── WorkflowTemplatePlacement.php │ │ └── YarnApplication.php │ │ ├── DataprocMetastore.php │ │ ├── DataprocMetastore │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── AuxiliaryVersionConfig.php │ │ ├── BackendMetastore.php │ │ ├── Backup.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── Consumer.php │ │ ├── DataCatalogConfig.php │ │ ├── DatabaseDump.php │ │ ├── DataplexConfig.php │ │ ├── EncryptionConfig.php │ │ ├── ExportMetadataRequest.php │ │ ├── Expr.php │ │ ├── Federation.php │ │ ├── HiveMetastoreConfig.php │ │ ├── HiveMetastoreVersion.php │ │ ├── KerberosConfig.php │ │ ├── Lake.php │ │ ├── ListBackupsResponse.php │ │ ├── ListFederationsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMetadataImportsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServicesResponse.php │ │ ├── Location.php │ │ ├── LocationMetadata.php │ │ ├── MaintenanceWindow.php │ │ ├── MetadataExport.php │ │ ├── MetadataImport.php │ │ ├── MetadataIntegration.php │ │ ├── MetadataManagementActivity.php │ │ ├── MetastoreEmpty.php │ │ ├── NetworkConfig.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── RemoveIamPolicyRequest.php │ │ ├── RemoveIamPolicyResponse.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsFederations.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsServices.php │ │ │ ├── ProjectsLocationsServicesBackups.php │ │ │ ├── ProjectsLocationsServicesDatabases.php │ │ │ ├── ProjectsLocationsServicesDatabasesTables.php │ │ │ └── ProjectsLocationsServicesMetadataImports.php │ │ ├── Restore.php │ │ ├── RestoreServiceRequest.php │ │ ├── Secret.php │ │ ├── Service.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TelemetryConfig.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.php │ │ ├── Datastore.php │ │ ├── Datastore │ │ ├── Aggregation.php │ │ ├── AggregationQuery.php │ │ ├── AggregationResult.php │ │ ├── AggregationResultBatch.php │ │ ├── AllocateIdsRequest.php │ │ ├── AllocateIdsResponse.php │ │ ├── ArrayValue.php │ │ ├── BeginTransactionRequest.php │ │ ├── BeginTransactionResponse.php │ │ ├── CommitRequest.php │ │ ├── CommitResponse.php │ │ ├── CompositeFilter.php │ │ ├── Count.php │ │ ├── DatastoreEmpty.php │ │ ├── DatastoreReadOnly.php │ │ ├── Entity.php │ │ ├── EntityResult.php │ │ ├── Filter.php │ │ ├── GoogleDatastoreAdminV1CommonMetadata.php │ │ ├── GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata.php │ │ ├── GoogleDatastoreAdminV1EntityFilter.php │ │ ├── GoogleDatastoreAdminV1ExportEntitiesMetadata.php │ │ ├── GoogleDatastoreAdminV1ExportEntitiesRequest.php │ │ ├── GoogleDatastoreAdminV1ExportEntitiesResponse.php │ │ ├── GoogleDatastoreAdminV1ImportEntitiesMetadata.php │ │ ├── GoogleDatastoreAdminV1ImportEntitiesRequest.php │ │ ├── GoogleDatastoreAdminV1Index.php │ │ ├── GoogleDatastoreAdminV1IndexOperationMetadata.php │ │ ├── GoogleDatastoreAdminV1IndexedProperty.php │ │ ├── GoogleDatastoreAdminV1ListIndexesResponse.php │ │ ├── GoogleDatastoreAdminV1MigrationProgressEvent.php │ │ ├── GoogleDatastoreAdminV1MigrationStateEvent.php │ │ ├── GoogleDatastoreAdminV1PrepareStepDetails.php │ │ ├── GoogleDatastoreAdminV1Progress.php │ │ ├── GoogleDatastoreAdminV1RedirectWritesStepDetails.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 │ │ ├── ReadOptions.php │ │ ├── ReadWrite.php │ │ ├── ReserveIdsRequest.php │ │ ├── ReserveIdsResponse.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsIndexes.php │ │ │ └── ProjectsOperations.php │ │ ├── RollbackRequest.php │ │ ├── RollbackResponse.php │ │ ├── RunAggregationQueryRequest.php │ │ ├── RunAggregationQueryResponse.php │ │ ├── RunQueryRequest.php │ │ ├── RunQueryResponse.php │ │ ├── Status.php │ │ ├── TransactionOptions.php │ │ └── Value.php │ │ ├── Datastream.php │ │ ├── Datastream │ │ ├── AvroFileFormat.php │ │ ├── BackfillAllStrategy.php │ │ ├── BackfillJob.php │ │ ├── BackfillNoneStrategy.php │ │ ├── BigQueryDestinationConfig.php │ │ ├── BigQueryProfile.php │ │ ├── CancelOperationRequest.php │ │ ├── ConnectionProfile.php │ │ ├── DatasetTemplate.php │ │ ├── DatastreamEmpty.php │ │ ├── DestinationConfig.php │ │ ├── DiscoverConnectionProfileRequest.php │ │ ├── DiscoverConnectionProfileResponse.php │ │ ├── DropLargeObjects.php │ │ ├── Error.php │ │ ├── FetchErrorsRequest.php │ │ ├── FetchErrorsResponse.php │ │ ├── FetchStaticIpsResponse.php │ │ ├── ForwardSshTunnelConnectivity.php │ │ ├── GcsDestinationConfig.php │ │ ├── GcsProfile.php │ │ ├── JsonFileFormat.php │ │ ├── ListConnectionProfilesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPrivateConnectionsResponse.php │ │ ├── ListRoutesResponse.php │ │ ├── ListStreamObjectsResponse.php │ │ ├── ListStreamsResponse.php │ │ ├── Location.php │ │ ├── LookupStreamObjectRequest.php │ │ ├── MysqlColumn.php │ │ ├── MysqlDatabase.php │ │ ├── MysqlObjectIdentifier.php │ │ ├── MysqlProfile.php │ │ ├── MysqlRdbms.php │ │ ├── MysqlSourceConfig.php │ │ ├── MysqlSslConfig.php │ │ ├── MysqlTable.php │ │ ├── NoConnectivitySettings.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── OracleColumn.php │ │ ├── OracleDropLargeObjects.php │ │ ├── OracleObjectIdentifier.php │ │ ├── OracleProfile.php │ │ ├── OracleRdbms.php │ │ ├── OracleSchema.php │ │ ├── OracleSourceConfig.php │ │ ├── OracleTable.php │ │ ├── PostgresqlColumn.php │ │ ├── PostgresqlObjectIdentifier.php │ │ ├── PostgresqlProfile.php │ │ ├── PostgresqlRdbms.php │ │ ├── PostgresqlSchema.php │ │ ├── PostgresqlSourceConfig.php │ │ ├── PostgresqlTable.php │ │ ├── PrivateConnection.php │ │ ├── PrivateConnectivity.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsConnectionProfiles.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsPrivateConnections.php │ │ │ ├── ProjectsLocationsPrivateConnectionsRoutes.php │ │ │ ├── ProjectsLocationsStreams.php │ │ │ └── ProjectsLocationsStreamsObjects.php │ │ ├── Route.php │ │ ├── SingleTargetDataset.php │ │ ├── SourceConfig.php │ │ ├── SourceHierarchyDatasets.php │ │ ├── SourceObjectIdentifier.php │ │ ├── StartBackfillJobRequest.php │ │ ├── StartBackfillJobResponse.php │ │ ├── StaticServiceIpConnectivity.php │ │ ├── Status.php │ │ ├── StopBackfillJobRequest.php │ │ ├── StopBackfillJobResponse.php │ │ ├── Stream.php │ │ ├── StreamLargeObjects.php │ │ ├── StreamObject.php │ │ ├── Validation.php │ │ ├── ValidationMessage.php │ │ ├── ValidationResult.php │ │ └── VpcPeeringConfig.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 │ │ ├── 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 │ │ ├── AdvertiserInvoicesListResponse.php │ │ ├── AdvertiserLandingPagesListResponse.php │ │ ├── AdvertisersListResponse.php │ │ ├── AudienceSegment.php │ │ ├── AudienceSegmentGroup.php │ │ ├── BillingAssignment.php │ │ ├── BillingAssignmentsListResponse.php │ │ ├── BillingProfile.php │ │ ├── BillingProfilesListResponse.php │ │ ├── BillingRate.php │ │ ├── BillingRateTieredRate.php │ │ ├── BillingRatesListResponse.php │ │ ├── Browser.php │ │ ├── BrowsersListResponse.php │ │ ├── Campaign.php │ │ ├── CampaignCreativeAssociation.php │ │ ├── CampaignCreativeAssociationsListResponse.php │ │ ├── CampaignSummary.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 │ │ ├── CustomFloodlightVariable.php │ │ ├── CustomRichMediaEvents.php │ │ ├── CustomViewabilityMetric.php │ │ ├── CustomViewabilityMetricConfiguration.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 │ │ ├── Invoice.php │ │ ├── KeyValueTargetingExpression.php │ │ ├── LandingPage.php │ │ ├── Language.php │ │ ├── LanguageTargeting.php │ │ ├── LanguagesListResponse.php │ │ ├── LastModifiedInfo.php │ │ ├── ListPopulationClause.php │ │ ├── ListPopulationRule.php │ │ ├── ListPopulationTerm.php │ │ ├── ListTargetingExpression.php │ │ ├── LookbackConfiguration.php │ │ ├── MeasurementPartnerAdvertiserLink.php │ │ ├── MeasurementPartnerCampaignLink.php │ │ ├── MeasurementPartnerWrappingData.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 │ │ │ ├── AdvertiserInvoices.php │ │ │ ├── AdvertiserLandingPages.php │ │ │ ├── Advertisers.php │ │ │ ├── BillingAssignments.php │ │ │ ├── BillingProfiles.php │ │ │ ├── BillingRates.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 │ │ │ ├── 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 │ │ ├── UvarFilter.php │ │ ├── VideoFormat.php │ │ ├── VideoFormatsListResponse.php │ │ ├── VideoOffset.php │ │ └── VideoSettings.php │ │ ├── Dialogflow.php │ │ ├── Dialogflow │ │ ├── GoogleCloudDialogflowCxV3AdvancedSettings.php │ │ ├── GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings.php │ │ ├── GoogleCloudDialogflowCxV3Agent.php │ │ ├── GoogleCloudDialogflowCxV3AgentValidationResult.php │ │ ├── GoogleCloudDialogflowCxV3AudioInput.php │ │ ├── GoogleCloudDialogflowCxV3BatchDeleteTestCasesRequest.php │ │ ├── GoogleCloudDialogflowCxV3BatchRunTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3BatchRunTestCasesRequest.php │ │ ├── GoogleCloudDialogflowCxV3BatchRunTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3CalculateCoverageResponse.php │ │ ├── GoogleCloudDialogflowCxV3Changelog.php │ │ ├── GoogleCloudDialogflowCxV3CompareVersionsRequest.php │ │ ├── GoogleCloudDialogflowCxV3CompareVersionsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ContinuousTestResult.php │ │ ├── GoogleCloudDialogflowCxV3ConversationSignals.php │ │ ├── GoogleCloudDialogflowCxV3ConversationTurn.php │ │ ├── GoogleCloudDialogflowCxV3ConversationTurnUserInput.php │ │ ├── GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput.php │ │ ├── GoogleCloudDialogflowCxV3CreateDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3CreateVersionOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3DeployFlowMetadata.php │ │ ├── GoogleCloudDialogflowCxV3DeployFlowRequest.php │ │ ├── GoogleCloudDialogflowCxV3DeployFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3Deployment.php │ │ ├── GoogleCloudDialogflowCxV3DeploymentResult.php │ │ ├── GoogleCloudDialogflowCxV3DetectIntentRequest.php │ │ ├── GoogleCloudDialogflowCxV3DetectIntentResponse.php │ │ ├── GoogleCloudDialogflowCxV3DtmfInput.php │ │ ├── GoogleCloudDialogflowCxV3EntityType.php │ │ ├── GoogleCloudDialogflowCxV3EntityTypeEntity.php │ │ ├── GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase.php │ │ ├── GoogleCloudDialogflowCxV3Environment.php │ │ ├── GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig.php │ │ ├── GoogleCloudDialogflowCxV3EnvironmentVersionConfig.php │ │ ├── GoogleCloudDialogflowCxV3EnvironmentWebhookConfig.php │ │ ├── GoogleCloudDialogflowCxV3EventHandler.php │ │ ├── GoogleCloudDialogflowCxV3EventInput.php │ │ ├── GoogleCloudDialogflowCxV3Experiment.php │ │ ├── GoogleCloudDialogflowCxV3ExperimentDefinition.php │ │ ├── GoogleCloudDialogflowCxV3ExperimentResult.php │ │ ├── GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval.php │ │ ├── GoogleCloudDialogflowCxV3ExperimentResultMetric.php │ │ ├── GoogleCloudDialogflowCxV3ExperimentResultVersionMetrics.php │ │ ├── GoogleCloudDialogflowCxV3ExportAgentRequest.php │ │ ├── GoogleCloudDialogflowCxV3ExportAgentResponse.php │ │ ├── GoogleCloudDialogflowCxV3ExportFlowRequest.php │ │ ├── GoogleCloudDialogflowCxV3ExportFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3ExportTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ExportTestCasesRequest.php │ │ ├── GoogleCloudDialogflowCxV3ExportTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3Flow.php │ │ ├── GoogleCloudDialogflowCxV3FlowValidationResult.php │ │ ├── GoogleCloudDialogflowCxV3Form.php │ │ ├── GoogleCloudDialogflowCxV3FormParameter.php │ │ ├── GoogleCloudDialogflowCxV3FormParameterFillBehavior.php │ │ ├── GoogleCloudDialogflowCxV3FulfillIntentRequest.php │ │ ├── GoogleCloudDialogflowCxV3FulfillIntentResponse.php │ │ ├── GoogleCloudDialogflowCxV3Fulfillment.php │ │ ├── GoogleCloudDialogflowCxV3FulfillmentConditionalCases.php │ │ ├── GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCase.php │ │ ├── GoogleCloudDialogflowCxV3FulfillmentConditionalCasesCaseCaseContent.php │ │ ├── GoogleCloudDialogflowCxV3FulfillmentSetParameterAction.php │ │ ├── GoogleCloudDialogflowCxV3GcsDestination.php │ │ ├── GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ImportDocumentsOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ImportDocumentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ImportFlowRequest.php │ │ ├── GoogleCloudDialogflowCxV3ImportFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3ImportTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ImportTestCasesRequest.php │ │ ├── GoogleCloudDialogflowCxV3ImportTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3InputAudioConfig.php │ │ ├── GoogleCloudDialogflowCxV3Intent.php │ │ ├── GoogleCloudDialogflowCxV3IntentCoverage.php │ │ ├── GoogleCloudDialogflowCxV3IntentCoverageIntent.php │ │ ├── GoogleCloudDialogflowCxV3IntentInput.php │ │ ├── GoogleCloudDialogflowCxV3IntentParameter.php │ │ ├── GoogleCloudDialogflowCxV3IntentTrainingPhrase.php │ │ ├── GoogleCloudDialogflowCxV3IntentTrainingPhrasePart.php │ │ ├── GoogleCloudDialogflowCxV3ListAgentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListChangelogsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListDeploymentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListEntityTypesResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListEnvironmentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListExperimentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListFlowsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListIntentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListPagesResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListSecuritySettingsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListSessionEntityTypesResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListTestCaseResultsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListVersionsResponse.php │ │ ├── GoogleCloudDialogflowCxV3ListWebhooksResponse.php │ │ ├── GoogleCloudDialogflowCxV3LoadVersionRequest.php │ │ ├── GoogleCloudDialogflowCxV3LookupEnvironmentHistoryResponse.php │ │ ├── GoogleCloudDialogflowCxV3Match.php │ │ ├── GoogleCloudDialogflowCxV3MatchIntentRequest.php │ │ ├── GoogleCloudDialogflowCxV3MatchIntentResponse.php │ │ ├── GoogleCloudDialogflowCxV3NluSettings.php │ │ ├── GoogleCloudDialogflowCxV3OutputAudioConfig.php │ │ ├── GoogleCloudDialogflowCxV3Page.php │ │ ├── GoogleCloudDialogflowCxV3PageInfo.php │ │ ├── GoogleCloudDialogflowCxV3PageInfoFormInfo.php │ │ ├── GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo.php │ │ ├── GoogleCloudDialogflowCxV3QueryInput.php │ │ ├── GoogleCloudDialogflowCxV3QueryParameters.php │ │ ├── GoogleCloudDialogflowCxV3QueryResult.php │ │ ├── GoogleCloudDialogflowCxV3ReloadDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ResourceName.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessage.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageEndInteraction.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageLiveAgentHandoff.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageMixedAudio.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageOutputAudioText.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessagePlayAudio.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall.php │ │ ├── GoogleCloudDialogflowCxV3ResponseMessageText.php │ │ ├── GoogleCloudDialogflowCxV3RestoreAgentRequest.php │ │ ├── GoogleCloudDialogflowCxV3RolloutConfig.php │ │ ├── GoogleCloudDialogflowCxV3RolloutConfigRolloutStep.php │ │ ├── GoogleCloudDialogflowCxV3RolloutState.php │ │ ├── GoogleCloudDialogflowCxV3RunContinuousTestMetadata.php │ │ ├── GoogleCloudDialogflowCxV3RunContinuousTestRequest.php │ │ ├── GoogleCloudDialogflowCxV3RunContinuousTestResponse.php │ │ ├── GoogleCloudDialogflowCxV3RunTestCaseMetadata.php │ │ ├── GoogleCloudDialogflowCxV3RunTestCaseRequest.php │ │ ├── GoogleCloudDialogflowCxV3RunTestCaseResponse.php │ │ ├── GoogleCloudDialogflowCxV3SecuritySettings.php │ │ ├── GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings.php │ │ ├── GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings.php │ │ ├── GoogleCloudDialogflowCxV3SentimentAnalysisResult.php │ │ ├── GoogleCloudDialogflowCxV3SessionEntityType.php │ │ ├── GoogleCloudDialogflowCxV3SessionInfo.php │ │ ├── GoogleCloudDialogflowCxV3SpeechToTextSettings.php │ │ ├── GoogleCloudDialogflowCxV3StartExperimentRequest.php │ │ ├── GoogleCloudDialogflowCxV3StopExperimentRequest.php │ │ ├── GoogleCloudDialogflowCxV3SynthesizeSpeechConfig.php │ │ ├── GoogleCloudDialogflowCxV3TestCase.php │ │ ├── GoogleCloudDialogflowCxV3TestCaseError.php │ │ ├── GoogleCloudDialogflowCxV3TestCaseResult.php │ │ ├── GoogleCloudDialogflowCxV3TestConfig.php │ │ ├── GoogleCloudDialogflowCxV3TestError.php │ │ ├── GoogleCloudDialogflowCxV3TestRunDifference.php │ │ ├── GoogleCloudDialogflowCxV3TextInput.php │ │ ├── GoogleCloudDialogflowCxV3TextToSpeechSettings.php │ │ ├── GoogleCloudDialogflowCxV3TrainFlowRequest.php │ │ ├── GoogleCloudDialogflowCxV3TransitionCoverage.php │ │ ├── GoogleCloudDialogflowCxV3TransitionCoverageTransition.php │ │ ├── GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.php │ │ ├── GoogleCloudDialogflowCxV3TransitionRoute.php │ │ ├── GoogleCloudDialogflowCxV3TransitionRouteGroup.php │ │ ├── GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage.php │ │ ├── GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage.php │ │ ├── GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition.php │ │ ├── GoogleCloudDialogflowCxV3TurnSignals.php │ │ ├── GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3ValidateAgentRequest.php │ │ ├── GoogleCloudDialogflowCxV3ValidateFlowRequest.php │ │ ├── GoogleCloudDialogflowCxV3ValidationMessage.php │ │ ├── GoogleCloudDialogflowCxV3VariantsHistory.php │ │ ├── GoogleCloudDialogflowCxV3Version.php │ │ ├── GoogleCloudDialogflowCxV3VersionVariants.php │ │ ├── GoogleCloudDialogflowCxV3VersionVariantsVariant.php │ │ ├── GoogleCloudDialogflowCxV3VoiceSelectionParams.php │ │ ├── GoogleCloudDialogflowCxV3Webhook.php │ │ ├── GoogleCloudDialogflowCxV3WebhookGenericWebService.php │ │ ├── GoogleCloudDialogflowCxV3WebhookRequest.php │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo.php │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestIntentInfo.php │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue.php │ │ ├── GoogleCloudDialogflowCxV3WebhookRequestSentimentAnalysisResult.php │ │ ├── GoogleCloudDialogflowCxV3WebhookResponse.php │ │ ├── GoogleCloudDialogflowCxV3WebhookResponseFulfillmentResponse.php │ │ ├── GoogleCloudDialogflowCxV3WebhookServiceDirectoryConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1AudioInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1BatchRunTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1BatchRunTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1ContinuousTestResult.php │ │ ├── GoogleCloudDialogflowCxV3beta1ConversationSignals.php │ │ ├── GoogleCloudDialogflowCxV3beta1ConversationTurn.php │ │ ├── GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput.php │ │ ├── GoogleCloudDialogflowCxV3beta1CreateDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1DeployFlowMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1DeployFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1DtmfInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1Environment.php │ │ ├── GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1EventHandler.php │ │ ├── GoogleCloudDialogflowCxV3beta1EventInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1ExportAgentResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1ExportFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1ExportTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1Form.php │ │ ├── GoogleCloudDialogflowCxV3beta1FormParameter.php │ │ ├── GoogleCloudDialogflowCxV3beta1FormParameterFillBehavior.php │ │ ├── GoogleCloudDialogflowCxV3beta1Fulfillment.php │ │ ├── GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases.php │ │ ├── GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCase.php │ │ ├── GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCasesCaseCaseContent.php │ │ ├── GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction.php │ │ ├── GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1ImportDocumentsOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1ImportDocumentsResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1ImportFlowResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1ImportTestCasesResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1InputAudioConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1Intent.php │ │ ├── GoogleCloudDialogflowCxV3beta1IntentInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1IntentParameter.php │ │ ├── GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase.php │ │ ├── GoogleCloudDialogflowCxV3beta1IntentTrainingPhrasePart.php │ │ ├── GoogleCloudDialogflowCxV3beta1Page.php │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfoFormInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1QueryInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1ReloadDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessage.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudio.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageMixedAudioSegment.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageOutputAudioText.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall.php │ │ ├── GoogleCloudDialogflowCxV3beta1ResponseMessageText.php │ │ ├── GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1RunTestCaseResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1SessionInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestCase.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestCaseError.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestCaseResult.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestConfig.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestError.php │ │ ├── GoogleCloudDialogflowCxV3beta1TestRunDifference.php │ │ ├── GoogleCloudDialogflowCxV3beta1TextInput.php │ │ ├── GoogleCloudDialogflowCxV3beta1TransitionRoute.php │ │ ├── GoogleCloudDialogflowCxV3beta1TurnSignals.php │ │ ├── GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowCxV3beta1Webhook.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookGenericWebService.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequest.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookRequestSentimentAnalysisResult.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse.php │ │ ├── GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig.php │ │ ├── GoogleCloudDialogflowV2AnnotatedMessagePart.php │ │ ├── GoogleCloudDialogflowV2ArticleAnswer.php │ │ ├── GoogleCloudDialogflowV2ArticleSuggestionModelMetadata.php │ │ ├── GoogleCloudDialogflowV2BatchUpdateEntityTypesResponse.php │ │ ├── GoogleCloudDialogflowV2BatchUpdateIntentsResponse.php │ │ ├── GoogleCloudDialogflowV2ClearSuggestionFeatureConfigOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2Context.php │ │ ├── GoogleCloudDialogflowV2ConversationEvent.php │ │ ├── GoogleCloudDialogflowV2ConversationModel.php │ │ ├── GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2CreateConversationModelEvaluationOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2CreateConversationModelOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2DeleteConversationDatasetOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2DeleteConversationModelOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2DeployConversationModelOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2EntityType.php │ │ ├── GoogleCloudDialogflowV2EntityTypeEntity.php │ │ ├── GoogleCloudDialogflowV2EventInput.php │ │ ├── GoogleCloudDialogflowV2ExportAgentResponse.php │ │ ├── GoogleCloudDialogflowV2ExportOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2FaqAnswer.php │ │ ├── GoogleCloudDialogflowV2GcsDestination.php │ │ ├── GoogleCloudDialogflowV2HumanAgentAssistantEvent.php │ │ ├── GoogleCloudDialogflowV2ImportConversationDataOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2ImportConversationDataOperationResponse.php │ │ ├── GoogleCloudDialogflowV2ImportDocumentsResponse.php │ │ ├── GoogleCloudDialogflowV2InputDataset.php │ │ ├── GoogleCloudDialogflowV2Intent.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 │ │ ├── GoogleCloudDialogflowV2KnowledgeOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2Message.php │ │ ├── GoogleCloudDialogflowV2MessageAnnotation.php │ │ ├── GoogleCloudDialogflowV2OriginalDetectIntentRequest.php │ │ ├── GoogleCloudDialogflowV2QueryResult.php │ │ ├── GoogleCloudDialogflowV2Sentiment.php │ │ ├── GoogleCloudDialogflowV2SentimentAnalysisResult.php │ │ ├── GoogleCloudDialogflowV2SessionEntityType.php │ │ ├── GoogleCloudDialogflowV2SetSuggestionFeatureConfigOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2SmartReplyAnswer.php │ │ ├── GoogleCloudDialogflowV2SmartReplyModelMetadata.php │ │ ├── GoogleCloudDialogflowV2SuggestArticlesResponse.php │ │ ├── GoogleCloudDialogflowV2SuggestFaqAnswersResponse.php │ │ ├── GoogleCloudDialogflowV2SuggestSmartRepliesResponse.php │ │ ├── GoogleCloudDialogflowV2SuggestionResult.php │ │ ├── GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2WebhookRequest.php │ │ ├── GoogleCloudDialogflowV2WebhookResponse.php │ │ ├── GoogleCloudDialogflowV2beta1AnnotatedMessagePart.php │ │ ├── GoogleCloudDialogflowV2beta1ArticleAnswer.php │ │ ├── GoogleCloudDialogflowV2beta1BatchUpdateEntityTypesResponse.php │ │ ├── GoogleCloudDialogflowV2beta1BatchUpdateIntentsResponse.php │ │ ├── GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2beta1Context.php │ │ ├── GoogleCloudDialogflowV2beta1ConversationEvent.php │ │ ├── GoogleCloudDialogflowV2beta1EntityType.php │ │ ├── GoogleCloudDialogflowV2beta1EntityTypeEntity.php │ │ ├── GoogleCloudDialogflowV2beta1EventInput.php │ │ ├── GoogleCloudDialogflowV2beta1ExportAgentResponse.php │ │ ├── GoogleCloudDialogflowV2beta1ExportOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2beta1FaqAnswer.php │ │ ├── GoogleCloudDialogflowV2beta1GcsDestination.php │ │ ├── GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent.php │ │ ├── GoogleCloudDialogflowV2beta1ImportDocumentsResponse.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 │ │ ├── GoogleCloudDialogflowV2beta1Message.php │ │ ├── GoogleCloudDialogflowV2beta1MessageAnnotation.php │ │ ├── GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.php │ │ ├── GoogleCloudDialogflowV2beta1QueryResult.php │ │ ├── GoogleCloudDialogflowV2beta1Sentiment.php │ │ ├── GoogleCloudDialogflowV2beta1SentimentAnalysisResult.php │ │ ├── GoogleCloudDialogflowV2beta1SessionEntityType.php │ │ ├── GoogleCloudDialogflowV2beta1SetSuggestionFeatureConfigOperationMetadata.php │ │ ├── GoogleCloudDialogflowV2beta1SmartReplyAnswer.php │ │ ├── GoogleCloudDialogflowV2beta1SuggestArticlesResponse.php │ │ ├── GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse.php │ │ ├── GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse.php │ │ ├── GoogleCloudDialogflowV2beta1SuggestionResult.php │ │ ├── GoogleCloudDialogflowV2beta1WebhookRequest.php │ │ ├── GoogleCloudDialogflowV2beta1WebhookResponse.php │ │ ├── GoogleCloudDialogflowV3alpha1ConversationSignals.php │ │ ├── GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowV3alpha1DeleteDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata.php │ │ ├── GoogleCloudDialogflowV3alpha1ImportDocumentsOperationMetadata.php │ │ ├── GoogleCloudDialogflowV3alpha1ImportDocumentsResponse.php │ │ ├── GoogleCloudDialogflowV3alpha1ReloadDocumentOperationMetadata.php │ │ ├── GoogleCloudDialogflowV3alpha1TurnSignals.php │ │ ├── GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata.php │ │ ├── GoogleCloudLocationListLocationsResponse.php │ │ ├── GoogleCloudLocationLocation.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeLatLng.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAgents.php │ │ │ ├── ProjectsLocationsAgentsChangelogs.php │ │ │ ├── ProjectsLocationsAgentsEntityTypes.php │ │ │ ├── ProjectsLocationsAgentsEnvironments.php │ │ │ ├── ProjectsLocationsAgentsEnvironmentsContinuousTestResults.php │ │ │ ├── ProjectsLocationsAgentsEnvironmentsDeployments.php │ │ │ ├── ProjectsLocationsAgentsEnvironmentsExperiments.php │ │ │ ├── ProjectsLocationsAgentsEnvironmentsSessions.php │ │ │ ├── ProjectsLocationsAgentsEnvironmentsSessionsEntityTypes.php │ │ │ ├── ProjectsLocationsAgentsFlows.php │ │ │ ├── ProjectsLocationsAgentsFlowsPages.php │ │ │ ├── ProjectsLocationsAgentsFlowsTransitionRouteGroups.php │ │ │ ├── ProjectsLocationsAgentsFlowsVersions.php │ │ │ ├── ProjectsLocationsAgentsIntents.php │ │ │ ├── ProjectsLocationsAgentsSessions.php │ │ │ ├── ProjectsLocationsAgentsSessionsEntityTypes.php │ │ │ ├── ProjectsLocationsAgentsTestCases.php │ │ │ ├── ProjectsLocationsAgentsTestCasesResults.php │ │ │ ├── ProjectsLocationsAgentsWebhooks.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsSecuritySettings.php │ │ │ └── ProjectsOperations.php │ │ ├── Digitalassetlinks.php │ │ ├── Digitalassetlinks │ │ ├── AndroidAppAsset.php │ │ ├── Asset.php │ │ ├── BulkCheckRequest.php │ │ ├── BulkCheckResponse.php │ │ ├── CertificateInfo.php │ │ ├── CheckResponse.php │ │ ├── ListResponse.php │ │ ├── Resource │ │ │ ├── Assetlinks.php │ │ │ └── Statements.php │ │ ├── Statement.php │ │ ├── StatementTemplate.php │ │ └── WebAsset.php │ │ ├── Directory.php │ │ ├── Directory │ │ ├── AdminEmpty.php │ │ ├── Alias.php │ │ ├── Aliases.php │ │ ├── Asp.php │ │ ├── Asps.php │ │ ├── AuxiliaryMessage.php │ │ ├── BatchCreatePrintServersRequest.php │ │ ├── BatchCreatePrintServersResponse.php │ │ ├── BatchCreatePrintersRequest.php │ │ ├── BatchCreatePrintersResponse.php │ │ ├── BatchDeletePrintServersRequest.php │ │ ├── BatchDeletePrintServersResponse.php │ │ ├── BatchDeletePrintersRequest.php │ │ ├── BatchDeletePrintersResponse.php │ │ ├── Building.php │ │ ├── BuildingAddress.php │ │ ├── BuildingCoordinates.php │ │ ├── Buildings.php │ │ ├── CalendarResource.php │ │ ├── CalendarResources.php │ │ ├── Channel.php │ │ ├── ChromeOsDevice.php │ │ ├── ChromeOsDeviceAction.php │ │ ├── ChromeOsDeviceActiveTimeRanges.php │ │ ├── ChromeOsDeviceCpuInfo.php │ │ ├── ChromeOsDeviceCpuInfoLogicalCpus.php │ │ ├── ChromeOsDeviceCpuInfoLogicalCpusCStates.php │ │ ├── ChromeOsDeviceCpuStatusReports.php │ │ ├── ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo.php │ │ ├── ChromeOsDeviceDeviceFiles.php │ │ ├── ChromeOsDeviceDiskVolumeReports.php │ │ ├── ChromeOsDeviceDiskVolumeReportsVolumeInfo.php │ │ ├── ChromeOsDeviceLastKnownNetwork.php │ │ ├── ChromeOsDeviceRecentUsers.php │ │ ├── ChromeOsDeviceScreenshotFiles.php │ │ ├── ChromeOsDeviceSystemRamFreeReports.php │ │ ├── ChromeOsDeviceTpmVersionInfo.php │ │ ├── ChromeOsDevices.php │ │ ├── ChromeOsMoveDevicesToOu.php │ │ ├── CreatePrintServerRequest.php │ │ ├── CreatePrinterRequest.php │ │ ├── Customer.php │ │ ├── CustomerPostalAddress.php │ │ ├── DirectoryChromeosdevicesCommand.php │ │ ├── DirectoryChromeosdevicesCommandResult.php │ │ ├── DirectoryChromeosdevicesIssueCommandRequest.php │ │ ├── DirectoryChromeosdevicesIssueCommandResponse.php │ │ ├── DomainAlias.php │ │ ├── DomainAliases.php │ │ ├── Domains.php │ │ ├── Domains2.php │ │ ├── FailureInfo.php │ │ ├── Feature.php │ │ ├── FeatureInstance.php │ │ ├── FeatureRename.php │ │ ├── Features.php │ │ ├── Group.php │ │ ├── GroupAlias.php │ │ ├── Groups.php │ │ ├── ListPrintServersResponse.php │ │ ├── ListPrinterModelsResponse.php │ │ ├── ListPrintersResponse.php │ │ ├── Member.php │ │ ├── Members.php │ │ ├── MembersHasMember.php │ │ ├── MobileDevice.php │ │ ├── MobileDeviceAction.php │ │ ├── MobileDeviceApplications.php │ │ ├── MobileDevices.php │ │ ├── OrgUnit.php │ │ ├── OrgUnits.php │ │ ├── OsUpdateStatus.php │ │ ├── PrintServer.php │ │ ├── PrintServerFailureInfo.php │ │ ├── Printer.php │ │ ├── PrinterModel.php │ │ ├── Privilege.php │ │ ├── Privileges.php │ │ ├── Resource │ │ │ ├── Asps.php │ │ │ ├── Channels.php │ │ │ ├── Chromeosdevices.php │ │ │ ├── Customer.php │ │ │ ├── CustomerDevices.php │ │ │ ├── CustomerDevicesChromeos.php │ │ │ ├── CustomerDevicesChromeosCommands.php │ │ │ ├── Customers.php │ │ │ ├── CustomersChrome.php │ │ │ ├── CustomersChromePrintServers.php │ │ │ ├── CustomersChromePrinters.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 │ │ ├── UserAlias.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 │ │ ├── DiscoveryEngine.php │ │ ├── DiscoveryEngine │ │ ├── GoogleApiHttpBody.php │ │ ├── GoogleCloudDiscoveryengineLoggingErrorContext.php │ │ ├── GoogleCloudDiscoveryengineLoggingErrorLog.php │ │ ├── GoogleCloudDiscoveryengineLoggingHttpRequestContext.php │ │ ├── GoogleCloudDiscoveryengineLoggingImportErrorContext.php │ │ ├── GoogleCloudDiscoveryengineLoggingServiceContext.php │ │ ├── GoogleCloudDiscoveryengineLoggingSourceLocation.php │ │ ├── GoogleCloudDiscoveryengineV1alphaImportDocumentsMetadata.php │ │ ├── GoogleCloudDiscoveryengineV1alphaImportDocumentsResponse.php │ │ ├── GoogleCloudDiscoveryengineV1alphaImportErrorConfig.php │ │ ├── GoogleCloudDiscoveryengineV1alphaImportUserEventsMetadata.php │ │ ├── GoogleCloudDiscoveryengineV1alphaImportUserEventsResponse.php │ │ ├── GoogleCloudDiscoveryengineV1betaBigQuerySource.php │ │ ├── GoogleCloudDiscoveryengineV1betaCompletionInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaCustomAttribute.php │ │ ├── GoogleCloudDiscoveryengineV1betaDocument.php │ │ ├── GoogleCloudDiscoveryengineV1betaDocumentInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaGcsSource.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportDocumentsMetadata.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportDocumentsRequest.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportDocumentsRequestInlineSource.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportDocumentsResponse.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportErrorConfig.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportUserEventsMetadata.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportUserEventsRequest.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportUserEventsRequestInlineSource.php │ │ ├── GoogleCloudDiscoveryengineV1betaImportUserEventsResponse.php │ │ ├── GoogleCloudDiscoveryengineV1betaListDocumentsResponse.php │ │ ├── GoogleCloudDiscoveryengineV1betaMediaInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaPageInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaPanelInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaRecommendRequest.php │ │ ├── GoogleCloudDiscoveryengineV1betaRecommendResponse.php │ │ ├── GoogleCloudDiscoveryengineV1betaRecommendResponseRecommendationResult.php │ │ ├── GoogleCloudDiscoveryengineV1betaSearchInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaTransactionInfo.php │ │ ├── GoogleCloudDiscoveryengineV1betaUserEvent.php │ │ ├── GoogleCloudDiscoveryengineV1betaUserInfo.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDate.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDataStores.php │ │ │ ├── ProjectsLocationsDataStoresBranches.php │ │ │ ├── ProjectsLocationsDataStoresBranchesDocuments.php │ │ │ ├── ProjectsLocationsDataStoresBranchesOperations.php │ │ │ ├── ProjectsLocationsDataStoresModels.php │ │ │ ├── ProjectsLocationsDataStoresModelsOperations.php │ │ │ ├── ProjectsLocationsDataStoresOperations.php │ │ │ ├── ProjectsLocationsDataStoresServingConfigs.php │ │ │ ├── ProjectsLocationsDataStoresUserEvents.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsOperations.php │ │ ├── DisplayVideo.php │ │ ├── DisplayVideo │ │ ├── ActivateManualTriggerRequest.php │ │ ├── ActiveViewVideoViewabilityMetricConfig.php │ │ ├── AdUrl.php │ │ ├── Adloox.php │ │ ├── Advertiser.php │ │ ├── AdvertiserAdServerConfig.php │ │ ├── AdvertiserBillingConfig.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 │ │ ├── AudioAd.php │ │ ├── AudioContentTypeAssignedTargetingOptionDetails.php │ │ ├── AudioContentTypeTargetingOptionDetails.php │ │ ├── AudioVideoOffset.php │ │ ├── AuditAdvertiserResponse.php │ │ ├── AuthorizedSellerStatusAssignedTargetingOptionDetails.php │ │ ├── AuthorizedSellerStatusTargetingOptionDetails.php │ │ ├── BiddingStrategy.php │ │ ├── BrowserAssignedTargetingOptionDetails.php │ │ ├── BrowserTargetingOptionDetails.php │ │ ├── BudgetSummary.php │ │ ├── BulkEditAdvertiserAssignedTargetingOptionsRequest.php │ │ ├── BulkEditAdvertiserAssignedTargetingOptionsResponse.php │ │ ├── BulkEditAssignedInventorySourcesRequest.php │ │ ├── BulkEditAssignedInventorySourcesResponse.php │ │ ├── BulkEditAssignedLocationsRequest.php │ │ ├── BulkEditAssignedLocationsResponse.php │ │ ├── BulkEditAssignedTargetingOptionsRequest.php │ │ ├── BulkEditAssignedTargetingOptionsResponse.php │ │ ├── BulkEditAssignedUserRolesRequest.php │ │ ├── BulkEditAssignedUserRolesResponse.php │ │ ├── BulkEditLineItemAssignedTargetingOptionsRequest.php │ │ ├── BulkEditLineItemAssignedTargetingOptionsResponse.php │ │ ├── BulkEditNegativeKeywordsRequest.php │ │ ├── BulkEditNegativeKeywordsResponse.php │ │ ├── BulkEditPartnerAssignedTargetingOptionsRequest.php │ │ ├── BulkEditPartnerAssignedTargetingOptionsResponse.php │ │ ├── BulkEditSitesRequest.php │ │ ├── BulkEditSitesResponse.php │ │ ├── BulkListAdGroupAssignedTargetingOptionsResponse.php │ │ ├── BulkListAdvertiserAssignedTargetingOptionsResponse.php │ │ ├── BulkListAssignedTargetingOptionsResponse.php │ │ ├── BulkListCampaignAssignedTargetingOptionsResponse.php │ │ ├── BulkListInsertionOrderAssignedTargetingOptionsResponse.php │ │ ├── BulkListLineItemAssignedTargetingOptionsResponse.php │ │ ├── BulkUpdateLineItemsRequest.php │ │ ├── BulkUpdateLineItemsResponse.php │ │ ├── BumperAd.php │ │ ├── BusinessChainAssignedTargetingOptionDetails.php │ │ ├── BusinessChainSearchTerms.php │ │ ├── BusinessChainTargetingOptionDetails.php │ │ ├── Campaign.php │ │ ├── CampaignBudget.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 │ │ ├── CommonInStreamAttribute.php │ │ ├── ContactInfo.php │ │ ├── ContactInfoList.php │ │ ├── ContentDurationAssignedTargetingOptionDetails.php │ │ ├── ContentDurationTargetingOptionDetails.php │ │ ├── ContentGenreAssignedTargetingOptionDetails.php │ │ ├── ContentGenreTargetingOptionDetails.php │ │ ├── ContentInstreamPositionAssignedTargetingOptionDetails.php │ │ ├── ContentInstreamPositionTargetingOptionDetails.php │ │ ├── ContentOutstreamPositionAssignedTargetingOptionDetails.php │ │ ├── ContentOutstreamPositionTargetingOptionDetails.php │ │ ├── ContentStreamTypeAssignedTargetingOptionDetails.php │ │ ├── ContentStreamTypeTargetingOptionDetails.php │ │ ├── ConversionCountingConfig.php │ │ ├── CounterEvent.php │ │ ├── CreateAssetRequest.php │ │ ├── CreateAssetResponse.php │ │ ├── CreateAssignedTargetingOptionsRequest.php │ │ ├── CreateSdfDownloadTaskRequest.php │ │ ├── Creative.php │ │ ├── CreativeConfig.php │ │ ├── CustomBiddingAlgorithm.php │ │ ├── CustomBiddingModelDetails.php │ │ ├── CustomBiddingModelReadinessState.php │ │ ├── CustomBiddingScript.php │ │ ├── CustomBiddingScriptRef.php │ │ ├── CustomLabel.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 │ │ ├── DisplayVideoSourceAd.php │ │ ├── DisplayvideoEmpty.php │ │ ├── DoubleVerify.php │ │ ├── DoubleVerifyAppStarRating.php │ │ ├── DoubleVerifyBrandSafetyCategories.php │ │ ├── DoubleVerifyDisplayViewability.php │ │ ├── DoubleVerifyFraudInvalidTraffic.php │ │ ├── DoubleVerifyVideoViewability.php │ │ ├── DuplicateLineItemRequest.php │ │ ├── DuplicateLineItemResponse.php │ │ ├── EditCustomerMatchMembersRequest.php │ │ ├── EditCustomerMatchMembersResponse.php │ │ ├── EditGuaranteedOrderReadAccessorsRequest.php │ │ ├── EditGuaranteedOrderReadAccessorsResponse.php │ │ ├── EditInventorySourceReadWriteAccessorsRequest.php │ │ ├── EditInventorySourceReadWriteAccessorsRequestAdvertisersUpdate.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 │ │ ├── GenerateDefaultLineItemRequest.php │ │ ├── GeoRegionAssignedTargetingOptionDetails.php │ │ ├── GeoRegionSearchTerms.php │ │ ├── GeoRegionTargetingOptionDetails.php │ │ ├── GoogleAudience.php │ │ ├── GoogleAudienceGroup.php │ │ ├── GoogleAudienceTargetingSetting.php │ │ ├── GoogleBytestreamMedia.php │ │ ├── GuaranteedOrder.php │ │ ├── GuaranteedOrderStatus.php │ │ ├── HouseholdIncomeAssignedTargetingOptionDetails.php │ │ ├── HouseholdIncomeTargetingOptionDetails.php │ │ ├── IdFilter.php │ │ ├── ImageAsset.php │ │ ├── InStreamAd.php │ │ ├── InsertionOrder.php │ │ ├── InsertionOrderBudget.php │ │ ├── InsertionOrderBudgetSegment.php │ │ ├── IntegralAdScience.php │ │ ├── IntegrationDetails.php │ │ ├── InventorySource.php │ │ ├── InventorySourceAccessors.php │ │ ├── InventorySourceAccessorsAdvertiserAccessors.php │ │ ├── InventorySourceAccessorsPartnerAccessor.php │ │ ├── InventorySourceAssignedTargetingOptionDetails.php │ │ ├── InventorySourceDisplayCreativeConfig.php │ │ ├── InventorySourceFilter.php │ │ ├── InventorySourceGroup.php │ │ ├── InventorySourceGroupAssignedTargetingOptionDetails.php │ │ ├── InventorySourceStatus.php │ │ ├── InventorySourceVideoCreativeConfig.php │ │ ├── Invoice.php │ │ ├── KeywordAssignedTargetingOptionDetails.php │ │ ├── LanguageAssignedTargetingOptionDetails.php │ │ ├── LanguageTargetingOptionDetails.php │ │ ├── LineItem.php │ │ ├── LineItemAssignedTargetingOption.php │ │ ├── LineItemBudget.php │ │ ├── LineItemFlight.php │ │ ├── ListAdvertiserAssignedTargetingOptionsResponse.php │ │ ├── ListAdvertisersResponse.php │ │ ├── ListAssignedInventorySourcesResponse.php │ │ ├── ListAssignedLocationsResponse.php │ │ ├── ListCampaignAssignedTargetingOptionsResponse.php │ │ ├── ListCampaignsResponse.php │ │ ├── ListChannelsResponse.php │ │ ├── ListCombinedAudiencesResponse.php │ │ ├── ListCreativesResponse.php │ │ ├── ListCustomBiddingAlgorithmsResponse.php │ │ ├── ListCustomBiddingScriptsResponse.php │ │ ├── ListCustomListsResponse.php │ │ ├── ListFirstAndThirdPartyAudiencesResponse.php │ │ ├── ListGoogleAudiencesResponse.php │ │ ├── ListGuaranteedOrdersResponse.php │ │ ├── ListInsertionOrderAssignedTargetingOptionsResponse.php │ │ ├── ListInsertionOrdersResponse.php │ │ ├── ListInventorySourceGroupsResponse.php │ │ ├── ListInventorySourcesResponse.php │ │ ├── ListInvoicesResponse.php │ │ ├── ListLineItemAssignedTargetingOptionsResponse.php │ │ ├── ListLineItemsResponse.php │ │ ├── ListLocationListsResponse.php │ │ ├── ListManualTriggersResponse.php │ │ ├── ListNegativeKeywordListsResponse.php │ │ ├── ListNegativeKeywordsResponse.php │ │ ├── ListPartnerAssignedTargetingOptionsResponse.php │ │ ├── ListPartnersResponse.php │ │ ├── ListSitesResponse.php │ │ ├── ListTargetingOptionsResponse.php │ │ ├── ListUsersResponse.php │ │ ├── ListYoutubeAdGroupAdsResponse.php │ │ ├── ListYoutubeAdGroupAssignedTargetingOptionsResponse.php │ │ ├── ListYoutubeAdGroupsResponse.php │ │ ├── LocationList.php │ │ ├── LookbackWindow.php │ │ ├── LookupInvoiceCurrencyResponse.php │ │ ├── ManualTrigger.php │ │ ├── MastheadAd.php │ │ ├── MaximizeSpendBidStrategy.php │ │ ├── MeasurementConfig.php │ │ ├── MobileApp.php │ │ ├── MobileDeviceIdList.php │ │ ├── Money.php │ │ ├── NativeContentPositionAssignedTargetingOptionDetails.php │ │ ├── NativeContentPositionTargetingOptionDetails.php │ │ ├── NegativeKeyword.php │ │ ├── NegativeKeywordList.php │ │ ├── NegativeKeywordListAssignedTargetingOptionDetails.php │ │ ├── NonSkippableAd.php │ │ ├── ObaIcon.php │ │ ├── OmidAssignedTargetingOptionDetails.php │ │ ├── OmidTargetingOptionDetails.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 │ │ ├── PoiAssignedTargetingOptionDetails.php │ │ ├── PoiSearchTerms.php │ │ ├── PoiTargetingOptionDetails.php │ │ ├── PrismaConfig.php │ │ ├── PrismaCpeCode.php │ │ ├── ProductFeedData.php │ │ ├── ProductMatchDimension.php │ │ ├── ProximityLocationListAssignedTargetingOptionDetails.php │ │ ├── PublisherReviewStatus.php │ │ ├── RateDetails.php │ │ ├── RegionalLocationListAssignedTargetingOptionDetails.php │ │ ├── ReplaceNegativeKeywordsRequest.php │ │ ├── ReplaceNegativeKeywordsResponse.php │ │ ├── ReplaceSitesRequest.php │ │ ├── ReplaceSitesResponse.php │ │ ├── Resource │ │ │ ├── Advertisers.php │ │ │ ├── AdvertisersAssets.php │ │ │ ├── AdvertisersCampaigns.php │ │ │ ├── AdvertisersCampaignsTargetingTypes.php │ │ │ ├── AdvertisersCampaignsTargetingTypesAssignedTargetingOptions.php │ │ │ ├── AdvertisersChannels.php │ │ │ ├── AdvertisersChannelsSites.php │ │ │ ├── AdvertisersCreatives.php │ │ │ ├── AdvertisersInsertionOrders.php │ │ │ ├── AdvertisersInsertionOrdersTargetingTypes.php │ │ │ ├── AdvertisersInsertionOrdersTargetingTypesAssignedTargetingOptions.php │ │ │ ├── AdvertisersInvoices.php │ │ │ ├── AdvertisersLineItems.php │ │ │ ├── AdvertisersLineItemsTargetingTypes.php │ │ │ ├── AdvertisersLineItemsTargetingTypesAssignedTargetingOptions.php │ │ │ ├── AdvertisersLocationLists.php │ │ │ ├── AdvertisersLocationListsAssignedLocations.php │ │ │ ├── AdvertisersManualTriggers.php │ │ │ ├── AdvertisersNegativeKeywordLists.php │ │ │ ├── AdvertisersNegativeKeywordListsNegativeKeywords.php │ │ │ ├── AdvertisersTargetingTypes.php │ │ │ ├── AdvertisersTargetingTypesAssignedTargetingOptions.php │ │ │ ├── AdvertisersYoutubeAdGroupAds.php │ │ │ ├── AdvertisersYoutubeAdGroups.php │ │ │ ├── AdvertisersYoutubeAdGroupsTargetingTypes.php │ │ │ ├── AdvertisersYoutubeAdGroupsTargetingTypesAssignedTargetingOptions.php │ │ │ ├── CombinedAudiences.php │ │ │ ├── CustomBiddingAlgorithms.php │ │ │ ├── CustomBiddingAlgorithmsScripts.php │ │ │ ├── CustomLists.php │ │ │ ├── FirstAndThirdPartyAudiences.php │ │ │ ├── FloodlightGroups.php │ │ │ ├── GoogleAudiences.php │ │ │ ├── GuaranteedOrders.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 │ │ ├── ScriptError.php │ │ ├── SdfConfig.php │ │ ├── SdfDownloadTask.php │ │ ├── SdfDownloadTaskMetadata.php │ │ ├── SearchTargetingOptionsRequest.php │ │ ├── SearchTargetingOptionsResponse.php │ │ ├── SensitiveCategoryAssignedTargetingOptionDetails.php │ │ ├── SensitiveCategoryTargetingOptionDetails.php │ │ ├── SessionPositionAssignedTargetingOptionDetails.php │ │ ├── Site.php │ │ ├── Status.php │ │ ├── SubExchangeAssignedTargetingOptionDetails.php │ │ ├── SubExchangeTargetingOptionDetails.php │ │ ├── TargetFrequency.php │ │ ├── TargetingExpansionConfig.php │ │ ├── TargetingOption.php │ │ ├── ThirdPartyOnlyConfig.php │ │ ├── ThirdPartyUrl.php │ │ ├── ThirdPartyVendorConfig.php │ │ ├── ThirdPartyVerifierAssignedTargetingOptionDetails.php │ │ ├── TimeRange.php │ │ ├── TimerEvent.php │ │ ├── TrackingFloodlightActivityConfig.php │ │ ├── Transcode.php │ │ ├── UniversalAdId.php │ │ ├── UrlAssignedTargetingOptionDetails.php │ │ ├── User.php │ │ ├── UserRewardedContentAssignedTargetingOptionDetails.php │ │ ├── UserRewardedContentTargetingOptionDetails.php │ │ ├── VideoAdSequenceSettings.php │ │ ├── VideoAdSequenceStep.php │ │ ├── VideoDiscoveryAd.php │ │ ├── VideoPerformanceAd.php │ │ ├── VideoPlayerSizeAssignedTargetingOptionDetails.php │ │ ├── VideoPlayerSizeTargetingOptionDetails.php │ │ ├── ViewabilityAssignedTargetingOptionDetails.php │ │ ├── ViewabilityTargetingOptionDetails.php │ │ ├── YoutubeAdGroup.php │ │ ├── YoutubeAdGroupAd.php │ │ ├── YoutubeAdGroupAssignedTargetingOption.php │ │ ├── YoutubeAndPartnersBiddingStrategy.php │ │ ├── YoutubeAndPartnersInventorySourceConfig.php │ │ ├── YoutubeAndPartnersSettings.php │ │ ├── YoutubeAndPartnersThirdPartyMeasurementSettings.php │ │ ├── YoutubeChannelAssignedTargetingOptionDetails.php │ │ ├── YoutubeVideoAssignedTargetingOptionDetails.php │ │ └── YoutubeVideoDetails.php │ │ ├── Dns.php │ │ ├── Dns │ │ ├── Change.php │ │ ├── ChangesListResponse.php │ │ ├── DnsKey.php │ │ ├── DnsKeyDigest.php │ │ ├── DnsKeySpec.php │ │ ├── DnsKeysListResponse.php │ │ ├── Expr.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1GetIamPolicyRequest.php │ │ ├── GoogleIamV1GetPolicyOptions.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ ├── ManagedZone.php │ │ ├── ManagedZoneCloudLoggingConfig.php │ │ ├── ManagedZoneDnsSecConfig.php │ │ ├── ManagedZoneForwardingConfig.php │ │ ├── ManagedZoneForwardingConfigNameServerTarget.php │ │ ├── ManagedZoneOperationsListResponse.php │ │ ├── ManagedZonePeeringConfig.php │ │ ├── ManagedZonePeeringConfigTargetNetwork.php │ │ ├── ManagedZonePrivateVisibilityConfig.php │ │ ├── ManagedZonePrivateVisibilityConfigGKECluster.php │ │ ├── ManagedZonePrivateVisibilityConfigNetwork.php │ │ ├── ManagedZoneReverseLookupConfig.php │ │ ├── ManagedZoneServiceDirectoryConfig.php │ │ ├── ManagedZoneServiceDirectoryConfigNamespace.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 │ │ ├── RRSetRoutingPolicyHealthCheckTargets.php │ │ ├── RRSetRoutingPolicyLoadBalancerTarget.php │ │ ├── RRSetRoutingPolicyPrimaryBackupPolicy.php │ │ ├── RRSetRoutingPolicyWrrPolicy.php │ │ ├── RRSetRoutingPolicyWrrPolicyWrrPolicyItem.php │ │ ├── Resource │ │ │ ├── Changes.php │ │ │ ├── DnsKeys.php │ │ │ ├── ManagedZoneOperations.php │ │ │ ├── ManagedZones.php │ │ │ ├── Policies.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsManagedZones.php │ │ │ ├── ProjectsManagedZonesRrsets.php │ │ │ ├── ResourceRecordSets.php │ │ │ ├── ResponsePolicies.php │ │ │ └── ResponsePolicyRules.php │ │ ├── ResourceRecordSet.php │ │ ├── ResourceRecordSetsDeleteResponse.php │ │ ├── ResourceRecordSetsListResponse.php │ │ ├── ResponseHeader.php │ │ ├── ResponsePoliciesListResponse.php │ │ ├── ResponsePoliciesPatchResponse.php │ │ ├── ResponsePoliciesUpdateResponse.php │ │ ├── ResponsePolicy.php │ │ ├── ResponsePolicyGKECluster.php │ │ ├── ResponsePolicyNetwork.php │ │ ├── ResponsePolicyRule.php │ │ ├── ResponsePolicyRuleLocalData.php │ │ ├── ResponsePolicyRulesListResponse.php │ │ ├── ResponsePolicyRulesPatchResponse.php │ │ └── ResponsePolicyRulesUpdateResponse.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 │ │ ├── Person.php │ │ ├── PersonProperties.php │ │ ├── PinTableHeaderRowsRequest.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 │ │ ├── RichLink.php │ │ ├── RichLinkProperties.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 │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsMetadataIndividualBatchMoveStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3BatchMoveDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3CreateLabelerPoolOperationMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteDataLabelingJobOperationMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteLabelerPoolOperationMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeleteProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DeployProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DisableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DisableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DocumentId.php │ │ ├── GoogleCloudDocumentaiUiv1beta3DocumentIdGCSManagedDocumentId.php │ │ ├── GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3EnableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3EvaluateProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ImportProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument.php │ │ ├── GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3RevisionRef.php │ │ ├── GoogleCloudDocumentaiUiv1beta3RevisionReference.php │ │ ├── GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionMetadataDatasetValidation.php │ │ ├── GoogleCloudDocumentaiUiv1beta3TrainProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3UndeployProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiUiv1beta3UpdateDatasetOperationMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3UpdateHumanReviewConfigMetadata.php │ │ ├── GoogleCloudDocumentaiUiv1beta3UpdateLabelerPoolOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1Barcode.php │ │ ├── GoogleCloudDocumentaiV1BatchDocumentsInputConfig.php │ │ ├── GoogleCloudDocumentaiV1BatchProcessMetadata.php │ │ ├── GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus.php │ │ ├── GoogleCloudDocumentaiV1BatchProcessRequest.php │ │ ├── GoogleCloudDocumentaiV1BatchProcessResponse.php │ │ ├── GoogleCloudDocumentaiV1BoundingPoly.php │ │ ├── GoogleCloudDocumentaiV1CommonOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1DeleteProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1DeleteProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1DeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1DeployProcessorVersionRequest.php │ │ ├── GoogleCloudDocumentaiV1DeployProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1DisableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1DisableProcessorRequest.php │ │ ├── GoogleCloudDocumentaiV1DisableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiV1Document.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntity.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntityNormalizedValue.php │ │ ├── GoogleCloudDocumentaiV1DocumentEntityRelation.php │ │ ├── GoogleCloudDocumentaiV1DocumentOutputConfig.php │ │ ├── GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfig.php │ │ ├── GoogleCloudDocumentaiV1DocumentOutputConfigGcsOutputConfigShardingConfig.php │ │ ├── GoogleCloudDocumentaiV1DocumentPage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageAnchor.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageAnchorPageRef.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageBlock.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDetectedBarcode.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageDimension.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageFormField.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImage.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImageQualityScores.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageImageQualityScoresDetectedDefect.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageLayout.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageLine.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageMatrix.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageParagraph.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageSymbol.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTable.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTableTableCell.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTableTableRow.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageToken.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreak.php │ │ ├── GoogleCloudDocumentaiV1DocumentPageVisualElement.php │ │ ├── GoogleCloudDocumentaiV1DocumentProvenance.php │ │ ├── GoogleCloudDocumentaiV1DocumentProvenanceParent.php │ │ ├── GoogleCloudDocumentaiV1DocumentRevision.php │ │ ├── GoogleCloudDocumentaiV1DocumentRevisionHumanReview.php │ │ ├── GoogleCloudDocumentaiV1DocumentSchema.php │ │ ├── GoogleCloudDocumentaiV1DocumentSchemaEntityType.php │ │ ├── GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues.php │ │ ├── GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty.php │ │ ├── GoogleCloudDocumentaiV1DocumentSchemaMetadata.php │ │ ├── GoogleCloudDocumentaiV1DocumentShardInfo.php │ │ ├── GoogleCloudDocumentaiV1DocumentStyle.php │ │ ├── GoogleCloudDocumentaiV1DocumentStyleFontSize.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextAnchor.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextAnchorTextSegment.php │ │ ├── GoogleCloudDocumentaiV1DocumentTextChange.php │ │ ├── GoogleCloudDocumentaiV1EnableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1EnableProcessorRequest.php │ │ ├── GoogleCloudDocumentaiV1EnableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiV1EntityTypeMetadata.php │ │ ├── GoogleCloudDocumentaiV1EvaluateProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1EvaluateProcessorVersionRequest.php │ │ ├── GoogleCloudDocumentaiV1EvaluateProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1Evaluation.php │ │ ├── GoogleCloudDocumentaiV1EvaluationConfidenceLevelMetrics.php │ │ ├── GoogleCloudDocumentaiV1EvaluationCounters.php │ │ ├── GoogleCloudDocumentaiV1EvaluationMetrics.php │ │ ├── GoogleCloudDocumentaiV1EvaluationMultiConfidenceMetrics.php │ │ ├── GoogleCloudDocumentaiV1EvaluationReference.php │ │ ├── GoogleCloudDocumentaiV1FetchProcessorTypesResponse.php │ │ ├── GoogleCloudDocumentaiV1GcsDocument.php │ │ ├── GoogleCloudDocumentaiV1GcsDocuments.php │ │ ├── GoogleCloudDocumentaiV1GcsPrefix.php │ │ ├── GoogleCloudDocumentaiV1HumanReviewLabelingMetadata.php │ │ ├── GoogleCloudDocumentaiV1HumanReviewStatus.php │ │ ├── GoogleCloudDocumentaiV1HumanReviewValidationMetadata.php │ │ ├── GoogleCloudDocumentaiV1ListEvaluationsResponse.php │ │ ├── GoogleCloudDocumentaiV1ListProcessorTypesResponse.php │ │ ├── GoogleCloudDocumentaiV1ListProcessorVersionsResponse.php │ │ ├── GoogleCloudDocumentaiV1ListProcessorsResponse.php │ │ ├── GoogleCloudDocumentaiV1NormalizedVertex.php │ │ ├── GoogleCloudDocumentaiV1ProcessRequest.php │ │ ├── GoogleCloudDocumentaiV1ProcessResponse.php │ │ ├── GoogleCloudDocumentaiV1Processor.php │ │ ├── GoogleCloudDocumentaiV1ProcessorType.php │ │ ├── GoogleCloudDocumentaiV1ProcessorTypeLocationInfo.php │ │ ├── GoogleCloudDocumentaiV1ProcessorVersion.php │ │ ├── GoogleCloudDocumentaiV1ProcessorVersionDeprecationInfo.php │ │ ├── GoogleCloudDocumentaiV1PropertyMetadata.php │ │ ├── GoogleCloudDocumentaiV1RawDocument.php │ │ ├── GoogleCloudDocumentaiV1ReviewDocumentOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1ReviewDocumentRequest.php │ │ ├── GoogleCloudDocumentaiV1ReviewDocumentResponse.php │ │ ├── GoogleCloudDocumentaiV1Schema.php │ │ ├── GoogleCloudDocumentaiV1SchemaEntityType.php │ │ ├── GoogleCloudDocumentaiV1SchemaMutabilityMetadata.php │ │ ├── GoogleCloudDocumentaiV1SetDefaultProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1SetDefaultProcessorVersionRequest.php │ │ ├── GoogleCloudDocumentaiV1SetDefaultProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1TrainProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1TrainProcessorVersionMetadataDatasetValidation.php │ │ ├── GoogleCloudDocumentaiV1TrainProcessorVersionRequest.php │ │ ├── GoogleCloudDocumentaiV1TrainProcessorVersionRequestInputData.php │ │ ├── GoogleCloudDocumentaiV1TrainProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1UndeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1UndeployProcessorVersionRequest.php │ │ ├── GoogleCloudDocumentaiV1UndeployProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1Vertex.php │ │ ├── GoogleCloudDocumentaiV1alpha1AnalyzeHitlDataMetadata.php │ │ ├── GoogleCloudDocumentaiV1alpha1CommonOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta1Barcode.php │ │ ├── GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiV1beta1BoundingPoly.php │ │ ├── GoogleCloudDocumentaiV1beta1Document.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntity.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentEntityRelation.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPage.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageAnchor.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageAnchorPageRef.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageBlock.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageDetectedBarcode.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageDimension.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageFormField.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageImage.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageImageQualityScores.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageImageQualityScoresDetectedDefect.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageLayout.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageLine.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageMatrix.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageParagraph.php │ │ ├── GoogleCloudDocumentaiV1beta1DocumentPageSymbol.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 │ │ ├── GoogleCloudDocumentaiV1beta1GcsDestination.php │ │ ├── GoogleCloudDocumentaiV1beta1GcsSource.php │ │ ├── GoogleCloudDocumentaiV1beta1InputConfig.php │ │ ├── GoogleCloudDocumentaiV1beta1NormalizedVertex.php │ │ ├── GoogleCloudDocumentaiV1beta1OperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta1OutputConfig.php │ │ ├── GoogleCloudDocumentaiV1beta1ProcessDocumentResponse.php │ │ ├── GoogleCloudDocumentaiV1beta1Vertex.php │ │ ├── GoogleCloudDocumentaiV1beta2Barcode.php │ │ ├── GoogleCloudDocumentaiV1beta2BatchProcessDocumentsResponse.php │ │ ├── GoogleCloudDocumentaiV1beta2BoundingPoly.php │ │ ├── GoogleCloudDocumentaiV1beta2Document.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntity.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentEntityRelation.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentLabel.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPage.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageAnchor.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageAnchorPageRef.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageBlock.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageDetectedBarcode.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageDimension.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageFormField.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageImage.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageImageQualityScores.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageImageQualityScoresDetectedDefect.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageLayout.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageLine.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageMatrix.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageParagraph.php │ │ ├── GoogleCloudDocumentaiV1beta2DocumentPageSymbol.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 │ │ ├── GoogleCloudDocumentaiV1beta2GcsDestination.php │ │ ├── GoogleCloudDocumentaiV1beta2GcsSource.php │ │ ├── GoogleCloudDocumentaiV1beta2InputConfig.php │ │ ├── GoogleCloudDocumentaiV1beta2NormalizedVertex.php │ │ ├── GoogleCloudDocumentaiV1beta2OperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta2OutputConfig.php │ │ ├── GoogleCloudDocumentaiV1beta2ProcessDocumentResponse.php │ │ ├── GoogleCloudDocumentaiV1beta2Vertex.php │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessMetadataIndividualProcessStatus.php │ │ ├── GoogleCloudDocumentaiV1beta3BatchProcessResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3CommonOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3DeleteProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3DeleteProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3DeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3DeployProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3DisableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3DisableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3EnableProcessorMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3EnableProcessorResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3EvaluateProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3EvaluateProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3HumanReviewStatus.php │ │ ├── GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3ReviewDocumentResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3SetDefaultProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3SetDefaultProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation.php │ │ ├── GoogleCloudDocumentaiV1beta3TrainProcessorVersionResponse.php │ │ ├── GoogleCloudDocumentaiV1beta3UndeployProcessorVersionMetadata.php │ │ ├── GoogleCloudDocumentaiV1beta3UndeployProcessorVersionResponse.php │ │ ├── GoogleCloudLocationListLocationsResponse.php │ │ ├── GoogleCloudLocationLocation.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeColor.php │ │ ├── GoogleTypeDate.php │ │ ├── GoogleTypeDateTime.php │ │ ├── GoogleTypeMoney.php │ │ ├── GoogleTypePostalAddress.php │ │ ├── GoogleTypeTimeZone.php │ │ └── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsProcessorTypes.php │ │ │ ├── ProjectsLocationsProcessors.php │ │ │ ├── ProjectsLocationsProcessorsHumanReviewConfig.php │ │ │ ├── ProjectsLocationsProcessorsProcessorVersions.php │ │ │ ├── ProjectsLocationsProcessorsProcessorVersionsEvaluations.php │ │ │ ├── ProjectsOperations.php │ │ │ ├── Uiv1beta3.php │ │ │ ├── Uiv1beta3Projects.php │ │ │ ├── Uiv1beta3ProjectsLocations.php │ │ │ └── Uiv1beta3ProjectsLocationsOperations.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 │ │ ├── DataRange.php │ │ ├── Date.php │ │ ├── DisjunctiveMatchStatement.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 │ │ │ ├── Queries.php │ │ │ ├── QueriesReports.php │ │ │ └── Reports.php │ │ ├── Rule.php │ │ └── RunQueryRequest.php │ │ ├── Doubleclicksearch.php │ │ ├── Doubleclicksearch │ │ ├── Availability.php │ │ ├── Conversion.php │ │ ├── ConversionList.php │ │ ├── CustomDimension.php │ │ ├── CustomMetric.php │ │ ├── IdMappingFile.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 │ │ ├── DriveFileLabelInfo.php │ │ ├── DriveFileLinkShareMetadata.php │ │ ├── DriveFileShortcutDetails.php │ │ ├── DriveFileVideoMediaMetadata.php │ │ ├── DriveList.php │ │ ├── DriveRestrictions.php │ │ ├── FileList.php │ │ ├── GeneratedIds.php │ │ ├── Label.php │ │ ├── LabelField.php │ │ ├── LabelFieldModification.php │ │ ├── LabelList.php │ │ ├── LabelModification.php │ │ ├── ModifyLabelsRequest.php │ │ ├── ModifyLabelsResponse.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 │ │ ├── AppliedLabelChange.php │ │ ├── AppliedLabelChangeDetail.php │ │ ├── Assignment.php │ │ ├── Comment.php │ │ ├── ConsolidationStrategy.php │ │ ├── Copy.php │ │ ├── Create.php │ │ ├── DataLeakPreventionChange.php │ │ ├── Date.php │ │ ├── Delete.php │ │ ├── DeletedUser.php │ │ ├── Domain.php │ │ ├── Drive.php │ │ ├── DriveActivity.php │ │ ├── DriveFile.php │ │ ├── DriveFolder.php │ │ ├── DriveItem.php │ │ ├── DriveItemReference.php │ │ ├── DriveReference.php │ │ ├── DriveactivityFile.php │ │ ├── DriveactivityInteger.php │ │ ├── DriveactivityNew.php │ │ ├── Edit.php │ │ ├── FieldValue.php │ │ ├── FieldValueChange.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 │ │ ├── Selection.php │ │ ├── SelectionList.php │ │ ├── SettingsChange.php │ │ ├── SingleUser.php │ │ ├── Suggestion.php │ │ ├── SystemEvent.php │ │ ├── Target.php │ │ ├── TargetReference.php │ │ ├── TeamDrive.php │ │ ├── TeamDriveReference.php │ │ ├── Text.php │ │ ├── TextList.php │ │ ├── TimeRange.php │ │ ├── UnknownUser.php │ │ ├── Upload.php │ │ ├── User.php │ │ └── UserList.php │ │ ├── DriveLabels.php │ │ ├── DriveLabels │ │ ├── GoogleAppsDriveLabelsV2BadgeColors.php │ │ ├── GoogleAppsDriveLabelsV2BadgeConfig.php │ │ ├── GoogleAppsDriveLabelsV2Field.php │ │ ├── GoogleAppsDriveLabelsV2FieldAppliedCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2FieldDateOptions.php │ │ ├── GoogleAppsDriveLabelsV2FieldDisplayHints.php │ │ ├── GoogleAppsDriveLabelsV2FieldIntegerOptions.php │ │ ├── GoogleAppsDriveLabelsV2FieldListOptions.php │ │ ├── GoogleAppsDriveLabelsV2FieldProperties.php │ │ ├── GoogleAppsDriveLabelsV2FieldSchemaCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptions.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptionsChoice.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceAppliedCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceDisplayHints.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceProperties.php │ │ ├── GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceSchemaCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2FieldTextOptions.php │ │ ├── GoogleAppsDriveLabelsV2FieldUserOptions.php │ │ ├── GoogleAppsDriveLabelsV2Label.php │ │ ├── GoogleAppsDriveLabelsV2LabelAppliedCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2LabelAppliedLabelPolicy.php │ │ ├── GoogleAppsDriveLabelsV2LabelDisplayHints.php │ │ ├── GoogleAppsDriveLabelsV2LabelProperties.php │ │ ├── GoogleAppsDriveLabelsV2LabelSchemaCapabilities.php │ │ ├── GoogleAppsDriveLabelsV2Lifecycle.php │ │ ├── GoogleAppsDriveLabelsV2LifecycleDisabledPolicy.php │ │ ├── GoogleAppsDriveLabelsV2ListLabelsResponse.php │ │ ├── GoogleAppsDriveLabelsV2LockStatus.php │ │ ├── GoogleAppsDriveLabelsV2UserInfo.php │ │ ├── GoogleTypeColor.php │ │ ├── GoogleTypeDate.php │ │ └── Resource │ │ │ └── Labels.php │ │ ├── Essentialcontacts.php │ │ ├── Essentialcontacts │ │ ├── GoogleCloudEssentialcontactsV1ComputeContactsResponse.php │ │ ├── GoogleCloudEssentialcontactsV1Contact.php │ │ ├── GoogleCloudEssentialcontactsV1ListContactsResponse.php │ │ ├── GoogleCloudEssentialcontactsV1SendTestMessageRequest.php │ │ ├── GoogleProtobufEmpty.php │ │ └── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersContacts.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsContacts.php │ │ │ ├── Projects.php │ │ │ └── ProjectsContacts.php │ │ ├── Eventarc.php │ │ ├── Eventarc │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── Channel.php │ │ ├── ChannelConnection.php │ │ ├── CloudRun.php │ │ ├── Destination.php │ │ ├── EventFilter.php │ │ ├── EventType.php │ │ ├── EventarcEmpty.php │ │ ├── Expr.php │ │ ├── FilteringAttribute.php │ │ ├── GKE.php │ │ ├── GoogleChannelConfig.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── ListChannelConnectionsResponse.php │ │ ├── ListChannelsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListProvidersResponse.php │ │ ├── ListTriggersResponse.php │ │ ├── Location.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Provider.php │ │ ├── Pubsub.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsChannelConnections.php │ │ │ ├── ProjectsLocationsChannels.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsProviders.php │ │ │ └── ProjectsLocationsTriggers.php │ │ ├── SetIamPolicyRequest.php │ │ ├── StateCondition.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 │ │ ├── Fcmdata.php │ │ ├── Fcmdata │ │ ├── GoogleFirebaseFcmDataV1beta1AndroidDeliveryData.php │ │ ├── GoogleFirebaseFcmDataV1beta1Data.php │ │ ├── GoogleFirebaseFcmDataV1beta1DeliveryPerformancePercents.php │ │ ├── GoogleFirebaseFcmDataV1beta1ListAndroidDeliveryDataResponse.php │ │ ├── GoogleFirebaseFcmDataV1beta1MessageInsightPercents.php │ │ ├── GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.php │ │ ├── GoogleTypeDate.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsAndroidApps.php │ │ │ └── ProjectsAndroidAppsDeliveryData.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 │ │ ├── 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 │ │ ├── ProductMetadata.php │ │ ├── ProjectInfo.php │ │ ├── RemoveAnalyticsRequest.php │ │ ├── RemoveAndroidAppRequest.php │ │ ├── RemoveIosAppRequest.php │ │ ├── RemoveWebAppRequest.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 │ │ ├── UndeleteAndroidAppRequest.php │ │ ├── UndeleteIosAppRequest.php │ │ ├── UndeleteWebAppRequest.php │ │ ├── WebApp.php │ │ └── WebAppConfig.php │ │ ├── FirebaseRealtimeDatabase.php │ │ ├── FirebaseRealtimeDatabase │ │ ├── DatabaseInstance.php │ │ ├── DisableDatabaseInstanceRequest.php │ │ ├── ListDatabaseInstancesResponse.php │ │ ├── ReenableDatabaseInstanceRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ └── ProjectsLocationsInstances.php │ │ └── UndeleteDatabaseInstanceRequest.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 │ │ ├── Firebaseappcheck.php │ │ ├── Firebaseappcheck │ │ ├── GoogleFirebaseAppcheckV1AppAttestConfig.php │ │ ├── GoogleFirebaseAppcheckV1AppCheckToken.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetAppAttestConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetDeviceCheckConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetPlayIntegrityConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetRecaptchaEnterpriseConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetRecaptchaV3ConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchGetSafetyNetConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1BatchUpdateServicesRequest.php │ │ ├── GoogleFirebaseAppcheckV1BatchUpdateServicesResponse.php │ │ ├── GoogleFirebaseAppcheckV1DebugToken.php │ │ ├── GoogleFirebaseAppcheckV1DeviceCheckConfig.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeAppAttestAssertionRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeAppAttestAttestationRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeAppAttestAttestationResponse.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeCustomTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeDeviceCheckTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangePlayIntegrityTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeRecaptchaEnterpriseTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeRecaptchaV3TokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1ExchangeSafetyNetTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1GenerateAppAttestChallengeRequest.php │ │ ├── GoogleFirebaseAppcheckV1GenerateAppAttestChallengeResponse.php │ │ ├── GoogleFirebaseAppcheckV1GeneratePlayIntegrityChallengeRequest.php │ │ ├── GoogleFirebaseAppcheckV1GeneratePlayIntegrityChallengeResponse.php │ │ ├── GoogleFirebaseAppcheckV1ListDebugTokensResponse.php │ │ ├── GoogleFirebaseAppcheckV1ListServicesResponse.php │ │ ├── GoogleFirebaseAppcheckV1PlayIntegrityConfig.php │ │ ├── GoogleFirebaseAppcheckV1PublicJwk.php │ │ ├── GoogleFirebaseAppcheckV1PublicJwkSet.php │ │ ├── GoogleFirebaseAppcheckV1RecaptchaEnterpriseConfig.php │ │ ├── GoogleFirebaseAppcheckV1RecaptchaV3Config.php │ │ ├── GoogleFirebaseAppcheckV1SafetyNetConfig.php │ │ ├── GoogleFirebaseAppcheckV1Service.php │ │ ├── GoogleFirebaseAppcheckV1UpdateServiceRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaAppAttestChallengeResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaAppAttestConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaAppCheckToken.php │ │ ├── GoogleFirebaseAppcheckV1betaAttestationTokenResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetAppAttestConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetDeviceCheckConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetPlayIntegrityConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetRecaptchaConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetRecaptchaV3ConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchGetSafetyNetConfigsResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchUpdateServicesRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaBatchUpdateServicesResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaDebugToken.php │ │ ├── GoogleFirebaseAppcheckV1betaDeviceCheckConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeCustomTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeDebugTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeDeviceCheckTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangePlayIntegrityTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeRecaptchaEnterpriseTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeRecaptchaTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeRecaptchaV3TokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaExchangeSafetyNetTokenRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaGenerateAppAttestChallengeRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaGenerateAppAttestChallengeResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaGeneratePlayIntegrityChallengeRequest.php │ │ ├── GoogleFirebaseAppcheckV1betaGeneratePlayIntegrityChallengeResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaListDebugTokensResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaListServicesResponse.php │ │ ├── GoogleFirebaseAppcheckV1betaPlayIntegrityConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaPublicJwk.php │ │ ├── GoogleFirebaseAppcheckV1betaPublicJwkSet.php │ │ ├── GoogleFirebaseAppcheckV1betaRecaptchaConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaRecaptchaV3Config.php │ │ ├── GoogleFirebaseAppcheckV1betaSafetyNetConfig.php │ │ ├── GoogleFirebaseAppcheckV1betaService.php │ │ ├── GoogleFirebaseAppcheckV1betaUpdateServiceRequest.php │ │ ├── GoogleProtobufEmpty.php │ │ └── Resource │ │ │ ├── Jwks.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsApps.php │ │ │ ├── ProjectsAppsAppAttestConfig.php │ │ │ ├── ProjectsAppsDebugTokens.php │ │ │ ├── ProjectsAppsDeviceCheckConfig.php │ │ │ ├── ProjectsAppsPlayIntegrityConfig.php │ │ │ ├── ProjectsAppsRecaptchaConfig.php │ │ │ ├── ProjectsAppsRecaptchaEnterpriseConfig.php │ │ │ ├── ProjectsAppsRecaptchaV3Config.php │ │ │ ├── ProjectsAppsSafetyNetConfig.php │ │ │ └── ProjectsServices.php │ │ ├── Firebasestorage.php │ │ ├── Firebasestorage │ │ ├── AddFirebaseRequest.php │ │ ├── Bucket.php │ │ ├── FirebasestorageEmpty.php │ │ ├── GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata.php │ │ ├── GoogleFirebaseStorageControlplaneV1betaMigrateLocationDestructivelyMetadata.php │ │ ├── ListBucketsResponse.php │ │ ├── RemoveFirebaseRequest.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ └── ProjectsBuckets.php │ │ ├── Firestore.php │ │ ├── Firestore │ │ ├── Aggregation.php │ │ ├── AggregationResult.php │ │ ├── ArrayValue.php │ │ ├── BatchGetDocumentsRequest.php │ │ ├── BatchGetDocumentsResponse.php │ │ ├── BatchWriteRequest.php │ │ ├── BatchWriteResponse.php │ │ ├── BeginTransactionRequest.php │ │ ├── BeginTransactionResponse.php │ │ ├── CollectionSelector.php │ │ ├── CommitRequest.php │ │ ├── CommitResponse.php │ │ ├── CompositeFilter.php │ │ ├── Count.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 │ │ ├── FirestoreReadOnly.php │ │ ├── GoogleFirestoreAdminV1Database.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 │ │ ├── GoogleFirestoreAdminV1ListDatabasesResponse.php │ │ ├── GoogleFirestoreAdminV1ListFieldsResponse.php │ │ ├── GoogleFirestoreAdminV1ListIndexesResponse.php │ │ ├── GoogleFirestoreAdminV1LocationMetadata.php │ │ ├── GoogleFirestoreAdminV1Progress.php │ │ ├── GoogleFirestoreAdminV1TtlConfig.php │ │ ├── GoogleFirestoreAdminV1TtlConfigDelta.php │ │ ├── GoogleFirestoreAdminV1UpdateDatabaseMetadata.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 │ │ ├── ReadWrite.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsDatabases.php │ │ │ ├── ProjectsDatabasesCollectionGroups.php │ │ │ ├── ProjectsDatabasesCollectionGroupsFields.php │ │ │ ├── ProjectsDatabasesCollectionGroupsIndexes.php │ │ │ ├── ProjectsDatabasesDocuments.php │ │ │ ├── ProjectsDatabasesOperations.php │ │ │ └── ProjectsLocations.php │ │ ├── RollbackRequest.php │ │ ├── RunAggregationQueryRequest.php │ │ ├── RunAggregationQueryResponse.php │ │ ├── RunQueryRequest.php │ │ ├── RunQueryResponse.php │ │ ├── Status.php │ │ ├── StructuredAggregationQuery.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 │ │ ├── Forms.php │ │ ├── Forms │ │ ├── Answer.php │ │ ├── BatchUpdateFormRequest.php │ │ ├── BatchUpdateFormResponse.php │ │ ├── ChoiceQuestion.php │ │ ├── CloudPubsubTopic.php │ │ ├── CorrectAnswer.php │ │ ├── CorrectAnswers.php │ │ ├── CreateItemRequest.php │ │ ├── CreateItemResponse.php │ │ ├── CreateWatchRequest.php │ │ ├── DateQuestion.php │ │ ├── DeleteItemRequest.php │ │ ├── ExtraMaterial.php │ │ ├── Feedback.php │ │ ├── FileUploadAnswer.php │ │ ├── FileUploadAnswers.php │ │ ├── FileUploadQuestion.php │ │ ├── Form.php │ │ ├── FormResponse.php │ │ ├── FormSettings.php │ │ ├── FormsEmpty.php │ │ ├── Grade.php │ │ ├── Grading.php │ │ ├── Grid.php │ │ ├── Image.php │ │ ├── ImageItem.php │ │ ├── Info.php │ │ ├── Item.php │ │ ├── ListFormResponsesResponse.php │ │ ├── ListWatchesResponse.php │ │ ├── Location.php │ │ ├── MediaProperties.php │ │ ├── MoveItemRequest.php │ │ ├── Option.php │ │ ├── PageBreakItem.php │ │ ├── Question.php │ │ ├── QuestionGroupItem.php │ │ ├── QuestionItem.php │ │ ├── QuizSettings.php │ │ ├── RenewWatchRequest.php │ │ ├── Request.php │ │ ├── Resource │ │ │ ├── Forms.php │ │ │ ├── FormsResponses.php │ │ │ └── FormsWatches.php │ │ ├── Response.php │ │ ├── RowQuestion.php │ │ ├── ScaleQuestion.php │ │ ├── TextAnswer.php │ │ ├── TextAnswers.php │ │ ├── TextItem.php │ │ ├── TextLink.php │ │ ├── TextQuestion.php │ │ ├── TimeQuestion.php │ │ ├── UpdateFormInfoRequest.php │ │ ├── UpdateItemRequest.php │ │ ├── UpdateSettingsRequest.php │ │ ├── Video.php │ │ ├── VideoItem.php │ │ ├── VideoLink.php │ │ ├── Watch.php │ │ ├── WatchTarget.php │ │ └── WriteControl.php │ │ ├── GKEHub.php │ │ ├── GKEHub │ │ ├── AnthosVMMembershipSpec.php │ │ ├── AnthosVMMembershipState.php │ │ ├── AnthosVMSubFeatureSpec.php │ │ ├── AnthosVMSubFeatureState.php │ │ ├── AppDevExperienceFeatureSpec.php │ │ ├── AppDevExperienceFeatureState.php │ │ ├── ApplianceCluster.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Authority.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CommonFeatureSpec.php │ │ ├── CommonFeatureState.php │ │ ├── CommonFleetDefaultMemberConfigSpec.php │ │ ├── ConfigManagementConfigSync.php │ │ ├── ConfigManagementConfigSyncDeploymentState.php │ │ ├── ConfigManagementConfigSyncState.php │ │ ├── ConfigManagementConfigSyncVersion.php │ │ ├── ConfigManagementContainerResourceRequirements.php │ │ ├── ConfigManagementErrorResource.php │ │ ├── ConfigManagementGatekeeperDeploymentState.php │ │ ├── ConfigManagementGitConfig.php │ │ ├── ConfigManagementGroupVersionKind.php │ │ ├── ConfigManagementHierarchyControllerConfig.php │ │ ├── ConfigManagementHierarchyControllerDeploymentState.php │ │ ├── ConfigManagementHierarchyControllerState.php │ │ ├── ConfigManagementHierarchyControllerVersion.php │ │ ├── ConfigManagementInstallError.php │ │ ├── ConfigManagementMembershipSpec.php │ │ ├── ConfigManagementMembershipState.php │ │ ├── ConfigManagementOciConfig.php │ │ ├── ConfigManagementOperatorState.php │ │ ├── ConfigManagementPolicyController.php │ │ ├── ConfigManagementPolicyControllerMigration.php │ │ ├── ConfigManagementPolicyControllerMonitoring.php │ │ ├── ConfigManagementPolicyControllerState.php │ │ ├── ConfigManagementPolicyControllerVersion.php │ │ ├── ConfigManagementQuantity.php │ │ ├── ConfigManagementSyncError.php │ │ ├── ConfigManagementSyncState.php │ │ ├── ConnectAgentResource.php │ │ ├── EdgeCluster.php │ │ ├── Expr.php │ │ ├── Feature.php │ │ ├── FeatureResourceState.php │ │ ├── FeatureState.php │ │ ├── FleetObservabilityFeatureSpec.php │ │ ├── FleetObservabilityFeatureState.php │ │ ├── FleetObservabilityMembershipSpec.php │ │ ├── FleetObservabilityMembershipState.php │ │ ├── GenerateConnectManifestResponse.php │ │ ├── GkeCluster.php │ │ ├── GkehubEmpty.php │ │ ├── GoogleRpcStatus.php │ │ ├── IdentityServiceAuthMethod.php │ │ ├── IdentityServiceAzureADConfig.php │ │ ├── IdentityServiceGoogleConfig.php │ │ ├── IdentityServiceMembershipSpec.php │ │ ├── IdentityServiceMembershipState.php │ │ ├── IdentityServiceOidcConfig.php │ │ ├── KubernetesMetadata.php │ │ ├── KubernetesResource.php │ │ ├── ListFeaturesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMembershipBindingsResponse.php │ │ ├── ListMembershipsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListScopesResponse.php │ │ ├── LocalControllerState.php │ │ ├── Location.php │ │ ├── Membership.php │ │ ├── MembershipBinding.php │ │ ├── MembershipBindingLifecycleState.php │ │ ├── MembershipEndpoint.php │ │ ├── MembershipFeatureSpec.php │ │ ├── MembershipFeatureState.php │ │ ├── MembershipState.php │ │ ├── MigrateSpec.php │ │ ├── MigrateState.php │ │ ├── MultiCloudCluster.php │ │ ├── MultiClusterIngressFeatureSpec.php │ │ ├── OnPremCluster.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── PolicyControllerMembershipSpec.php │ │ ├── PolicyControllerMembershipState.php │ │ ├── PolicyControllerPolicyControllerHubConfig.php │ │ ├── PolicyControllerPolicyControllerHubState.php │ │ ├── PolicyControllerPolicyControllerHubVersion.php │ │ ├── PolicyControllerTemplateLibraryConfig.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsFeatures.php │ │ │ ├── ProjectsLocationsMemberships.php │ │ │ ├── ProjectsLocationsMembershipsBindings.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsScopes.php │ │ ├── ResourceManifest.php │ │ ├── ResourceOptions.php │ │ ├── Scope.php │ │ ├── ScopeFeatureSpec.php │ │ ├── ScopeFeatureState.php │ │ ├── ScopeLifecycleState.php │ │ ├── ServiceMeshControlPlaneManagement.php │ │ ├── ServiceMeshDataPlaneManagement.php │ │ ├── ServiceMeshMembershipSpec.php │ │ ├── ServiceMeshMembershipState.php │ │ ├── ServiceMeshSpec.php │ │ ├── ServiceMeshState.php │ │ ├── ServiceMeshStatusDetails.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ └── TypeMeta.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 │ │ ├── KubernetesClusterState.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 │ │ ├── EndPoint.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 │ │ ├── Resource │ │ │ ├── AchievementDefinitions.php │ │ │ ├── Achievements.php │ │ │ ├── Applications.php │ │ │ ├── Events.php │ │ │ ├── Leaderboards.php │ │ │ ├── Metagame.php │ │ │ ├── Players.php │ │ │ ├── Revisions.php │ │ │ ├── Scores.php │ │ │ ├── Snapshots.php │ │ │ └── Stats.php │ │ ├── RevisionCheckResponse.php │ │ ├── ScopedPlayerIds.php │ │ ├── ScoreSubmission.php │ │ ├── Snapshot.php │ │ ├── SnapshotImage.php │ │ ├── SnapshotListResponse.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 │ │ ├── Accelerator.php │ │ ├── Action.php │ │ ├── CancelOperationRequest.php │ │ ├── CheckInRequest.php │ │ ├── CheckInResponse.php │ │ ├── ContainerKilledEvent.php │ │ ├── ContainerStartedEvent.php │ │ ├── ContainerStoppedEvent.php │ │ ├── DelayedEvent.php │ │ ├── Disk.php │ │ ├── DiskStatus.php │ │ ├── Event.php │ │ ├── ExistingDisk.php │ │ ├── FailedEvent.php │ │ ├── GenomicsEmpty.php │ │ ├── ListOperationsResponse.php │ │ ├── Metadata.php │ │ ├── Mount.php │ │ ├── NFSMount.php │ │ ├── Network.php │ │ ├── Operation.php │ │ ├── PersistentDisk.php │ │ ├── Pipeline.php │ │ ├── PullStartedEvent.php │ │ ├── PullStoppedEvent.php │ │ ├── Resource │ │ │ ├── Pipelines.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsOperations.php │ │ │ ├── ProjectsWorkers.php │ │ │ └── Workers.php │ │ ├── Resources.php │ │ ├── RunPipelineRequest.php │ │ ├── RunPipelineResponse.php │ │ ├── Secret.php │ │ ├── ServiceAccount.php │ │ ├── Status.php │ │ ├── TimestampedEvent.php │ │ ├── UnexpectedExitStatusEvent.php │ │ ├── VirtualMachine.php │ │ ├── Volume.php │ │ ├── WorkerAssignedEvent.php │ │ ├── WorkerReleasedEvent.php │ │ └── WorkerStatus.php │ │ ├── Gmail.php │ │ ├── Gmail │ │ ├── AutoForwarding.php │ │ ├── BatchDeleteMessagesRequest.php │ │ ├── BatchModifyMessagesRequest.php │ │ ├── CseIdentity.php │ │ ├── CseKeyPair.php │ │ ├── CsePrivateKeyMetadata.php │ │ ├── Delegate.php │ │ ├── DisableCseKeyPairRequest.php │ │ ├── Draft.php │ │ ├── EnableCseKeyPairRequest.php │ │ ├── Filter.php │ │ ├── FilterAction.php │ │ ├── FilterCriteria.php │ │ ├── ForwardingAddress.php │ │ ├── History.php │ │ ├── HistoryLabelAdded.php │ │ ├── HistoryLabelRemoved.php │ │ ├── HistoryMessageAdded.php │ │ ├── HistoryMessageDeleted.php │ │ ├── ImapSettings.php │ │ ├── KaclsKeyMetadata.php │ │ ├── Label.php │ │ ├── LabelColor.php │ │ ├── LanguageSettings.php │ │ ├── ListCseIdentitiesResponse.php │ │ ├── ListCseKeyPairsResponse.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 │ │ ├── ObliterateCseKeyPairRequest.php │ │ ├── PopSettings.php │ │ ├── Profile.php │ │ ├── Resource │ │ │ ├── Users.php │ │ │ ├── UsersDrafts.php │ │ │ ├── UsersHistory.php │ │ │ ├── UsersLabels.php │ │ │ ├── UsersMessages.php │ │ │ ├── UsersMessagesAttachments.php │ │ │ ├── UsersSettings.php │ │ │ ├── UsersSettingsCse.php │ │ │ ├── UsersSettingsCseIdentities.php │ │ │ ├── UsersSettingsCseKeypairs.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 │ │ ├── GoogleAnalyticsAdminV1alphaAccessBetweenFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessDateRange.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessDimension.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessDimensionHeader.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessDimensionValue.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessFilterExpression.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessFilterExpressionList.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessInListFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessMetric.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessMetricHeader.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessMetricValue.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessNumericFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessOrderBy.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessOrderByDimensionOrderBy.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessOrderByMetricOrderBy.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessQuota.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessQuotaStatus.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessRow.php │ │ ├── GoogleAnalyticsAdminV1alphaAccessStringFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAccount.php │ │ ├── GoogleAnalyticsAdminV1alphaAccountSummary.php │ │ ├── GoogleAnalyticsAdminV1alphaAcknowledgeUserDataCollectionRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaAcknowledgeUserDataCollectionResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaAndroidAppDataStream.php │ │ ├── GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaArchiveAudienceRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaArchiveCustomDimensionRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaArchiveCustomMetricRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaAttributionSettings.php │ │ ├── GoogleAnalyticsAdminV1alphaAudience.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterBetweenFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterInListFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterNumericFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterNumericValue.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterStringFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceEventFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceEventTrigger.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceFilterClause.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceFilterExpression.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceFilterExpressionList.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceSequenceFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceSequenceFilterAudienceSequenceStep.php │ │ ├── GoogleAnalyticsAdminV1alphaAudienceSimpleFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLink.php │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLinksRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaAuditUserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchCreateUserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchGetUserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaChangeHistoryChange.php │ │ ├── GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource.php │ │ ├── GoogleAnalyticsAdminV1alphaChangeHistoryEvent.php │ │ ├── GoogleAnalyticsAdminV1alphaConversionEvent.php │ │ ├── GoogleAnalyticsAdminV1alphaCreateUserLinkRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaCustomDimension.php │ │ ├── GoogleAnalyticsAdminV1alphaCustomMetric.php │ │ ├── GoogleAnalyticsAdminV1alphaDataRetentionSettings.php │ │ ├── GoogleAnalyticsAdminV1alphaDataSharingSettings.php │ │ ├── GoogleAnalyticsAdminV1alphaDataStream.php │ │ ├── GoogleAnalyticsAdminV1alphaDataStreamAndroidAppStreamData.php │ │ ├── GoogleAnalyticsAdminV1alphaDataStreamIosAppStreamData.php │ │ ├── GoogleAnalyticsAdminV1alphaDataStreamWebStreamData.php │ │ ├── GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink.php │ │ ├── GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal.php │ │ ├── GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSet.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSetFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter.php │ │ ├── GoogleAnalyticsAdminV1alphaFirebaseLink.php │ │ ├── GoogleAnalyticsAdminV1alphaGlobalSiteTag.php │ │ ├── GoogleAnalyticsAdminV1alphaGoogleAdsLink.php │ │ ├── GoogleAnalyticsAdminV1alphaGoogleSignalsSettings.php │ │ ├── GoogleAnalyticsAdminV1alphaIosAppDataStream.php │ │ ├── GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails.php │ │ ├── GoogleAnalyticsAdminV1alphaListAccountSummariesResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListAccountsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListAndroidAppDataStreamsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListAudiencesResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListConversionEventsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListCustomDimensionsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListCustomMetricsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListDataStreamsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListGoogleAdsLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListIosAppDataStreamsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListMeasurementProtocolSecretsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListPropertiesResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListUserLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaListWebDataStreamsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret.php │ │ ├── GoogleAnalyticsAdminV1alphaNumericValue.php │ │ ├── GoogleAnalyticsAdminV1alphaProperty.php │ │ ├── GoogleAnalyticsAdminV1alphaPropertySummary.php │ │ ├── GoogleAnalyticsAdminV1alphaProvisionAccountTicketRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaProvisionAccountTicketResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaRunAccessReportRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaRunAccessReportResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaSearchAds360Link.php │ │ ├── GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse.php │ │ ├── GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest.php │ │ ├── GoogleAnalyticsAdminV1alphaUserLink.php │ │ ├── GoogleAnalyticsAdminV1alphaWebDataStream.php │ │ ├── GoogleAnalyticsAdminV1betaAccount.php │ │ ├── GoogleAnalyticsAdminV1betaAccountSummary.php │ │ ├── GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest.php │ │ ├── GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse.php │ │ ├── GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest.php │ │ ├── GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest.php │ │ ├── GoogleAnalyticsAdminV1betaChangeHistoryChange.php │ │ ├── GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource.php │ │ ├── GoogleAnalyticsAdminV1betaChangeHistoryEvent.php │ │ ├── GoogleAnalyticsAdminV1betaConversionEvent.php │ │ ├── GoogleAnalyticsAdminV1betaCustomDimension.php │ │ ├── GoogleAnalyticsAdminV1betaCustomMetric.php │ │ ├── GoogleAnalyticsAdminV1betaDataRetentionSettings.php │ │ ├── GoogleAnalyticsAdminV1betaDataSharingSettings.php │ │ ├── GoogleAnalyticsAdminV1betaDataStream.php │ │ ├── GoogleAnalyticsAdminV1betaDataStreamAndroidAppStreamData.php │ │ ├── GoogleAnalyticsAdminV1betaDataStreamIosAppStreamData.php │ │ ├── GoogleAnalyticsAdminV1betaDataStreamWebStreamData.php │ │ ├── GoogleAnalyticsAdminV1betaFirebaseLink.php │ │ ├── GoogleAnalyticsAdminV1betaGoogleAdsLink.php │ │ ├── GoogleAnalyticsAdminV1betaListAccountSummariesResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListAccountsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListConversionEventsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListCustomDimensionsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListCustomMetricsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListDataStreamsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListFirebaseLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListGoogleAdsLinksResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListMeasurementProtocolSecretsResponse.php │ │ ├── GoogleAnalyticsAdminV1betaListPropertiesResponse.php │ │ ├── GoogleAnalyticsAdminV1betaMeasurementProtocolSecret.php │ │ ├── GoogleAnalyticsAdminV1betaProperty.php │ │ ├── GoogleAnalyticsAdminV1betaPropertySummary.php │ │ ├── GoogleAnalyticsAdminV1betaProvisionAccountTicketRequest.php │ │ ├── GoogleAnalyticsAdminV1betaProvisionAccountTicketResponse.php │ │ ├── GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest.php │ │ ├── GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsResponse.php │ │ ├── GoogleProtobufEmpty.php │ │ └── Resource │ │ │ ├── AccountSummaries.php │ │ │ ├── Accounts.php │ │ │ ├── AccountsUserLinks.php │ │ │ ├── Properties.php │ │ │ ├── PropertiesAndroidAppDataStreams.php │ │ │ ├── PropertiesAndroidAppDataStreamsMeasurementProtocolSecrets.php │ │ │ ├── PropertiesAudiences.php │ │ │ ├── PropertiesConversionEvents.php │ │ │ ├── PropertiesCustomDimensions.php │ │ │ ├── PropertiesCustomMetrics.php │ │ │ ├── PropertiesDataStreams.php │ │ │ ├── PropertiesDataStreamsMeasurementProtocolSecrets.php │ │ │ ├── PropertiesDisplayVideo360AdvertiserLinkProposals.php │ │ │ ├── PropertiesDisplayVideo360AdvertiserLinks.php │ │ │ ├── PropertiesFirebaseLinks.php │ │ │ ├── PropertiesGoogleAdsLinks.php │ │ │ ├── PropertiesIosAppDataStreams.php │ │ │ ├── PropertiesIosAppDataStreamsMeasurementProtocolSecrets.php │ │ │ ├── PropertiesSearchAds360Links.php │ │ │ ├── PropertiesUserLinks.php │ │ │ ├── PropertiesWebDataStreams.php │ │ │ └── PropertiesWebDataStreamsMeasurementProtocolSecrets.php │ │ ├── GroupsMigration.php │ │ ├── GroupsMigration │ │ ├── Groups.php │ │ └── Resource │ │ │ └── Archive.php │ │ ├── Groupssettings.php │ │ ├── Groupssettings │ │ ├── Groups.php │ │ └── Resource │ │ │ └── Groups.php │ │ ├── HangoutsChat.php │ │ ├── HangoutsChat │ │ ├── ActionParameter.php │ │ ├── ActionResponse.php │ │ ├── ActionStatus.php │ │ ├── Annotation.php │ │ ├── Attachment.php │ │ ├── AttachmentDataRef.php │ │ ├── Button.php │ │ ├── Card.php │ │ ├── CardAction.php │ │ ├── CardHeader.php │ │ ├── CardWithId.php │ │ ├── ChatAppLogEntry.php │ │ ├── ChatEmpty.php │ │ ├── Color.php │ │ ├── CommonEventObject.php │ │ ├── DateInput.php │ │ ├── DateTimeInput.php │ │ ├── DeprecatedEvent.php │ │ ├── Dialog.php │ │ ├── DialogAction.php │ │ ├── DriveDataRef.php │ │ ├── DynamiteIntegrationLogEntry.php │ │ ├── FormAction.php │ │ ├── GoogleAppsCardV1Action.php │ │ ├── GoogleAppsCardV1ActionParameter.php │ │ ├── GoogleAppsCardV1AppUri.php │ │ ├── GoogleAppsCardV1BorderStyle.php │ │ ├── GoogleAppsCardV1Button.php │ │ ├── GoogleAppsCardV1ButtonList.php │ │ ├── GoogleAppsCardV1Card.php │ │ ├── GoogleAppsCardV1CardAction.php │ │ ├── GoogleAppsCardV1CardFixedFooter.php │ │ ├── GoogleAppsCardV1CardHeader.php │ │ ├── GoogleAppsCardV1DateTimePicker.php │ │ ├── GoogleAppsCardV1DecoratedText.php │ │ ├── GoogleAppsCardV1Divider.php │ │ ├── GoogleAppsCardV1ExtraData.php │ │ ├── GoogleAppsCardV1Grid.php │ │ ├── GoogleAppsCardV1GridItem.php │ │ ├── GoogleAppsCardV1Icon.php │ │ ├── GoogleAppsCardV1Image.php │ │ ├── GoogleAppsCardV1ImageComponent.php │ │ ├── GoogleAppsCardV1ImageCropStyle.php │ │ ├── GoogleAppsCardV1Intent.php │ │ ├── GoogleAppsCardV1OnClick.php │ │ ├── GoogleAppsCardV1OpenLink.php │ │ ├── GoogleAppsCardV1Section.php │ │ ├── GoogleAppsCardV1SelectionInput.php │ │ ├── GoogleAppsCardV1SelectionItem.php │ │ ├── GoogleAppsCardV1SuggestionItem.php │ │ ├── GoogleAppsCardV1Suggestions.php │ │ ├── GoogleAppsCardV1SwitchControl.php │ │ ├── GoogleAppsCardV1TextInput.php │ │ ├── GoogleAppsCardV1TextParagraph.php │ │ ├── GoogleAppsCardV1Widget.php │ │ ├── Image.php │ │ ├── ImageButton.php │ │ ├── Inputs.php │ │ ├── KeyValue.php │ │ ├── ListMembershipsResponse.php │ │ ├── ListSpacesResponse.php │ │ ├── MatchedUrl.php │ │ ├── Media.php │ │ ├── Membership.php │ │ ├── Message.php │ │ ├── OnClick.php │ │ ├── OpenLink.php │ │ ├── Resource │ │ │ ├── Dms.php │ │ │ ├── DmsConversations.php │ │ │ ├── Media.php │ │ │ ├── Rooms.php │ │ │ ├── RoomsConversations.php │ │ │ ├── Spaces.php │ │ │ ├── SpacesMembers.php │ │ │ ├── SpacesMessages.php │ │ │ └── SpacesMessagesAttachments.php │ │ ├── Section.php │ │ ├── SlashCommand.php │ │ ├── SlashCommandMetadata.php │ │ ├── Space.php │ │ ├── SpaceDetails.php │ │ ├── Status.php │ │ ├── StringInputs.php │ │ ├── TextButton.php │ │ ├── TextParagraph.php │ │ ├── Thread.php │ │ ├── TimeInput.php │ │ ├── TimeZone.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 │ │ ├── IDS.php │ │ ├── IDS │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── Endpoint.php │ │ ├── Expr.php │ │ ├── IdsEmpty.php │ │ ├── ListEndpointsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEndpoints.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ └── TestIamPermissionsResponse.php │ │ ├── Iam.php │ │ ├── Iam │ │ ├── AdminAuditData.php │ │ ├── AuditConfig.php │ │ ├── AuditData.php │ │ ├── AuditLogConfig.php │ │ ├── AuditableService.php │ │ ├── Aws.php │ │ ├── Binding.php │ │ ├── BindingDelta.php │ │ ├── CreateRoleRequest.php │ │ ├── CreateServiceAccountKeyRequest.php │ │ ├── CreateServiceAccountRequest.php │ │ ├── DisableServiceAccountKeyRequest.php │ │ ├── DisableServiceAccountRequest.php │ │ ├── EnableServiceAccountKeyRequest.php │ │ ├── EnableServiceAccountRequest.php │ │ ├── Expr.php │ │ ├── GoogleIamAdminV1AuditData.php │ │ ├── GoogleIamAdminV1AuditDataPermissionDelta.php │ │ ├── GoogleIamV1BindingDelta.php │ │ ├── GoogleIamV1LoggingAuditData.php │ │ ├── GoogleIamV1PolicyDelta.php │ │ ├── GoogleIamV1betaWorkloadIdentityPoolOperationMetadata.php │ │ ├── GoogleIamV2DenyRule.php │ │ ├── GoogleIamV2ListPoliciesResponse.php │ │ ├── GoogleIamV2Policy.php │ │ ├── GoogleIamV2PolicyOperationMetadata.php │ │ ├── GoogleIamV2PolicyRule.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeExpr.php │ │ ├── IamEmpty.php │ │ ├── LintPolicyRequest.php │ │ ├── LintPolicyResponse.php │ │ ├── LintResult.php │ │ ├── ListRolesResponse.php │ │ ├── ListServiceAccountKeysResponse.php │ │ ├── ListServiceAccountsResponse.php │ │ ├── ListWorkloadIdentityPoolProvidersResponse.php │ │ ├── ListWorkloadIdentityPoolsResponse.php │ │ ├── Oidc.php │ │ ├── Operation.php │ │ ├── PatchServiceAccountRequest.php │ │ ├── Permission.php │ │ ├── PermissionDelta.php │ │ ├── Policy.php │ │ ├── PolicyDelta.php │ │ ├── PolicyOperationMetadata.php │ │ ├── QueryAuditableServicesRequest.php │ │ ├── QueryAuditableServicesResponse.php │ │ ├── QueryGrantableRolesRequest.php │ │ ├── QueryGrantableRolesResponse.php │ │ ├── QueryTestablePermissionsRequest.php │ │ ├── QueryTestablePermissionsResponse.php │ │ ├── Resource │ │ │ ├── IamPolicies.php │ │ │ ├── Locations.php │ │ │ ├── LocationsWorkforcePools.php │ │ │ ├── LocationsWorkforcePoolsOperations.php │ │ │ ├── LocationsWorkforcePoolsProviders.php │ │ │ ├── LocationsWorkforcePoolsProvidersKeys.php │ │ │ ├── LocationsWorkforcePoolsProvidersKeysOperations.php │ │ │ ├── LocationsWorkforcePoolsProvidersOperations.php │ │ │ ├── LocationsWorkforcePoolsSubjects.php │ │ │ ├── LocationsWorkforcePoolsSubjectsOperations.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsRoles.php │ │ │ ├── Permissions.php │ │ │ ├── Policies.php │ │ │ ├── PoliciesOperations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPools.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsOperations.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProviders.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProvidersKeys.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProvidersKeysOperations.php │ │ │ ├── ProjectsLocationsWorkloadIdentityPoolsProvidersOperations.php │ │ │ ├── ProjectsRoles.php │ │ │ ├── ProjectsServiceAccounts.php │ │ │ ├── ProjectsServiceAccountsKeys.php │ │ │ └── Roles.php │ │ ├── Role.php │ │ ├── Saml.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 │ │ ├── UndeleteWorkloadIdentityPoolProviderRequest.php │ │ ├── UndeleteWorkloadIdentityPoolRequest.php │ │ ├── UploadServiceAccountKeyRequest.php │ │ ├── WorkloadIdentityPool.php │ │ ├── WorkloadIdentityPoolOperationMetadata.php │ │ └── WorkloadIdentityPoolProvider.php │ │ ├── Ideahub.php │ │ ├── Ideahub │ │ ├── GoogleSearchIdeahubV1alphaAvailableLocale.php │ │ ├── GoogleSearchIdeahubV1alphaIdea.php │ │ ├── GoogleSearchIdeahubV1alphaIdeaActivity.php │ │ ├── GoogleSearchIdeahubV1alphaIdeaState.php │ │ ├── GoogleSearchIdeahubV1alphaListAvailableLocalesResponse.php │ │ ├── GoogleSearchIdeahubV1alphaListIdeasResponse.php │ │ ├── GoogleSearchIdeahubV1alphaTopic.php │ │ ├── GoogleSearchIdeahubV1alphaTopicState.php │ │ ├── GoogleSearchIdeahubV1betaAvailableLocale.php │ │ ├── GoogleSearchIdeahubV1betaIdea.php │ │ ├── GoogleSearchIdeahubV1betaIdeaActivity.php │ │ ├── GoogleSearchIdeahubV1betaIdeaState.php │ │ ├── GoogleSearchIdeahubV1betaListAvailableLocalesResponse.php │ │ ├── GoogleSearchIdeahubV1betaListIdeasResponse.php │ │ ├── GoogleSearchIdeahubV1betaTopic.php │ │ ├── GoogleSearchIdeahubV1betaTopicState.php │ │ └── Resource │ │ │ ├── Ideas.php │ │ │ ├── Platforms.php │ │ │ ├── PlatformsProperties.php │ │ │ ├── PlatformsPropertiesIdeaActivities.php │ │ │ ├── PlatformsPropertiesIdeaStates.php │ │ │ ├── PlatformsPropertiesIdeas.php │ │ │ ├── PlatformsPropertiesLocales.php │ │ │ └── PlatformsPropertiesTopicStates.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 │ │ ├── Integrations.php │ │ ├── Integrations │ │ ├── CrmlogErrorCode.php │ │ ├── EnterpriseCrmCardsCellValue.php │ │ ├── EnterpriseCrmCardsRow.php │ │ ├── EnterpriseCrmCardsTabularData.php │ │ ├── EnterpriseCrmCardsTemplatesAplosSeriesData.php │ │ ├── EnterpriseCrmCardsTemplatesAplosSeriesDataRow.php │ │ ├── EnterpriseCrmCardsTemplatesAplosSeriesListData.php │ │ ├── EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries.php │ │ ├── EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam.php │ │ ├── EnterpriseCrmEventbusProtoAddress.php │ │ ├── EnterpriseCrmEventbusProtoAttributes.php │ │ ├── EnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumList.php │ │ ├── EnterpriseCrmEventbusProtoBaseAlertConfigThresholdValue.php │ │ ├── EnterpriseCrmEventbusProtoBaseFunction.php │ │ ├── EnterpriseCrmEventbusProtoBaseValue.php │ │ ├── EnterpriseCrmEventbusProtoBooleanArrayFunction.php │ │ ├── EnterpriseCrmEventbusProtoBooleanFunction.php │ │ ├── EnterpriseCrmEventbusProtoBooleanParameterArray.php │ │ ├── EnterpriseCrmEventbusProtoBuganizerNotification.php │ │ ├── EnterpriseCrmEventbusProtoCloudSchedulerConfig.php │ │ ├── EnterpriseCrmEventbusProtoCombinedCondition.php │ │ ├── EnterpriseCrmEventbusProtoCondition.php │ │ ├── EnterpriseCrmEventbusProtoConditionResult.php │ │ ├── EnterpriseCrmEventbusProtoConnectorsConnection.php │ │ ├── EnterpriseCrmEventbusProtoConnectorsGenericConnectorTaskConfig.php │ │ ├── EnterpriseCrmEventbusProtoCoordinate.php │ │ ├── EnterpriseCrmEventbusProtoCustomSuspensionRequest.php │ │ ├── EnterpriseCrmEventbusProtoDoubleArray.php │ │ ├── EnterpriseCrmEventbusProtoDoubleArrayFunction.php │ │ ├── EnterpriseCrmEventbusProtoDoubleFunction.php │ │ ├── EnterpriseCrmEventbusProtoDoubleParameterArray.php │ │ ├── EnterpriseCrmEventbusProtoErrorDetail.php │ │ ├── EnterpriseCrmEventbusProtoEventBusProperties.php │ │ ├── EnterpriseCrmEventbusProtoEventExecutionDetails.php │ │ ├── EnterpriseCrmEventbusProtoEventExecutionDetailsEventAttemptStats.php │ │ ├── EnterpriseCrmEventbusProtoEventExecutionSnapshot.php │ │ ├── EnterpriseCrmEventbusProtoEventExecutionSnapshotEventExecutionSnapshotMetadata.php │ │ ├── EnterpriseCrmEventbusProtoEventParameters.php │ │ ├── EnterpriseCrmEventbusProtoExecutionTraceInfo.php │ │ ├── EnterpriseCrmEventbusProtoExternalTraffic.php │ │ ├── EnterpriseCrmEventbusProtoFailurePolicy.php │ │ ├── EnterpriseCrmEventbusProtoField.php │ │ ├── EnterpriseCrmEventbusProtoFieldMappingConfig.php │ │ ├── EnterpriseCrmEventbusProtoFunction.php │ │ ├── EnterpriseCrmEventbusProtoFunctionType.php │ │ ├── EnterpriseCrmEventbusProtoIntArray.php │ │ ├── EnterpriseCrmEventbusProtoIntArrayFunction.php │ │ ├── EnterpriseCrmEventbusProtoIntFunction.php │ │ ├── EnterpriseCrmEventbusProtoIntParameterArray.php │ │ ├── EnterpriseCrmEventbusProtoJsonFunction.php │ │ ├── EnterpriseCrmEventbusProtoLogSettings.php │ │ ├── EnterpriseCrmEventbusProtoLoopMetadata.php │ │ ├── EnterpriseCrmEventbusProtoMappedField.php │ │ ├── EnterpriseCrmEventbusProtoNextTask.php │ │ ├── EnterpriseCrmEventbusProtoNextTeardownTask.php │ │ ├── EnterpriseCrmEventbusProtoNodeIdentifier.php │ │ ├── EnterpriseCrmEventbusProtoNotification.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryConfig.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryProtoDefinition.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryValidationRule.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleDoubleRange.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleIntRange.php │ │ ├── EnterpriseCrmEventbusProtoParamSpecEntryValidationRuleStringRegex.php │ │ ├── EnterpriseCrmEventbusProtoParameterEntry.php │ │ ├── EnterpriseCrmEventbusProtoParameterMap.php │ │ ├── EnterpriseCrmEventbusProtoParameterMapEntry.php │ │ ├── EnterpriseCrmEventbusProtoParameterMapField.php │ │ ├── EnterpriseCrmEventbusProtoParameterValueType.php │ │ ├── EnterpriseCrmEventbusProtoPropertyEntry.php │ │ ├── EnterpriseCrmEventbusProtoProtoArrayFunction.php │ │ ├── EnterpriseCrmEventbusProtoProtoFunction.php │ │ ├── EnterpriseCrmEventbusProtoProtoParameterArray.php │ │ ├── EnterpriseCrmEventbusProtoScatterResponse.php │ │ ├── EnterpriseCrmEventbusProtoSerializedObjectParameter.php │ │ ├── EnterpriseCrmEventbusProtoStringArray.php │ │ ├── EnterpriseCrmEventbusProtoStringArrayFunction.php │ │ ├── EnterpriseCrmEventbusProtoStringFunction.php │ │ ├── EnterpriseCrmEventbusProtoStringParameterArray.php │ │ ├── EnterpriseCrmEventbusProtoSuccessPolicy.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionAuthPermissions.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionConfig.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionExpiration.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionResolutionInfo.php │ │ ├── EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit.php │ │ ├── EnterpriseCrmEventbusProtoTaskAlertConfig.php │ │ ├── EnterpriseCrmEventbusProtoTaskExecutionDetails.php │ │ ├── EnterpriseCrmEventbusProtoTaskExecutionDetailsTaskAttemptStats.php │ │ ├── EnterpriseCrmEventbusProtoTaskMetadata.php │ │ ├── EnterpriseCrmEventbusProtoTaskMetadataAdmin.php │ │ ├── EnterpriseCrmEventbusProtoTaskUiConfig.php │ │ ├── EnterpriseCrmEventbusProtoTaskUiModuleConfig.php │ │ ├── EnterpriseCrmEventbusProtoTeardown.php │ │ ├── EnterpriseCrmEventbusProtoTeardownTaskConfig.php │ │ ├── EnterpriseCrmEventbusProtoToken.php │ │ ├── EnterpriseCrmEventbusProtoTransformExpression.php │ │ ├── EnterpriseCrmEventbusProtoTriggerCriteria.php │ │ ├── EnterpriseCrmEventbusProtoValueType.php │ │ ├── EnterpriseCrmEventbusProtoWorkflowAlertConfig.php │ │ ├── EnterpriseCrmEventbusStats.php │ │ ├── EnterpriseCrmEventbusStatsDimensions.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoBooleanParameterArray.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoDoubleParameterArray.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoEventExecutionSnapshot.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoEventParameters.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoIntParameterArray.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParamSpecEntry.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParamSpecsMessage.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParameterEntry.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParameterMap.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParameterMapEntry.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParameterMapField.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoParameterValueType.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoProtoParameterArray.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoRollbackStrategy.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoSerializedObjectParameter.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoStringParameterArray.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoTaskConfig.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoTaskEntity.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoTriggerConfig.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntry.php │ │ ├── EnterpriseCrmFrontendsEventbusProtoWorkflowParameters.php │ │ ├── EnterpriseCrmLoggingGwsFieldLimits.php │ │ ├── EnterpriseCrmLoggingGwsSanitizeOptions.php │ │ ├── GoogleCloudConnectorsV1AuthConfig.php │ │ ├── GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials.php │ │ ├── GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.php │ │ ├── GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims.php │ │ ├── GoogleCloudConnectorsV1AuthConfigSshPublicKey.php │ │ ├── GoogleCloudConnectorsV1AuthConfigUserPassword.php │ │ ├── GoogleCloudConnectorsV1ConfigVariable.php │ │ ├── GoogleCloudConnectorsV1Connection.php │ │ ├── GoogleCloudConnectorsV1ConnectionStatus.php │ │ ├── GoogleCloudConnectorsV1Destination.php │ │ ├── GoogleCloudConnectorsV1DestinationConfig.php │ │ ├── GoogleCloudConnectorsV1LockConfig.php │ │ ├── GoogleCloudConnectorsV1NodeConfig.php │ │ ├── GoogleCloudConnectorsV1Secret.php │ │ ├── GoogleCloudConnectorsV1SslConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaAccessToken.php │ │ ├── GoogleCloudIntegrationsV1alphaArchiveBundleRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaArchiveBundleResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaAttemptStats.php │ │ ├── GoogleCloudIntegrationsV1alphaAuthConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaAuthToken.php │ │ ├── GoogleCloudIntegrationsV1alphaBooleanParameterArray.php │ │ ├── GoogleCloudIntegrationsV1alphaCancelExecutionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaCancelExecutionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaCertificate.php │ │ ├── GoogleCloudIntegrationsV1alphaClientCertificate.php │ │ ├── GoogleCloudIntegrationsV1alphaClientConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaCloudKmsConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaCloudLoggingConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaCloudSchedulerConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateBundleRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateBundleResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaCreateCloudFunctionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaCredential.php │ │ ├── GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaDeprovisionClientRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaDoubleParameterArray.php │ │ ├── GoogleCloudIntegrationsV1alphaDownloadExecutionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaDownloadIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaEnumerateConnectorPlatformRegionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaErrorCatcherConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaEventParameter.php │ │ ├── GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaExecution.php │ │ ├── GoogleCloudIntegrationsV1alphaExecutionDetails.php │ │ ├── GoogleCloudIntegrationsV1alphaExecutionSnapshot.php │ │ ├── GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata.php │ │ ├── GoogleCloudIntegrationsV1alphaFailurePolicy.php │ │ ├── GoogleCloudIntegrationsV1alphaGenerateTokenResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaGetBundleResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaGetClientMetadataResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaGetClientResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaIntParameterArray.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegration.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationAlertConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdValue.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationBundleConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationParameter.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationTemplateVersion.php │ │ ├── GoogleCloudIntegrationsV1alphaIntegrationVersion.php │ │ ├── GoogleCloudIntegrationsV1alphaJwt.php │ │ ├── GoogleCloudIntegrationsV1alphaLiftSuspensionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaLiftSuspensionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaLinkAppsScriptProjectRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaLinkAppsScriptProjectResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListAuthConfigsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListCertificatesResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListConnectionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListExecutionSnapshotsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListExecutionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListIntegrationTemplateVersionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListIntegrationsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListSfdcChannelsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListSfdcInstancesResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListSuspensionsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaListTaskEntitiesResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaNextTask.php │ │ ├── GoogleCloudIntegrationsV1alphaOAuth2AuthorizationCode.php │ │ ├── GoogleCloudIntegrationsV1alphaOAuth2ClientCredentials.php │ │ ├── GoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentials.php │ │ ├── GoogleCloudIntegrationsV1alphaOidcToken.php │ │ ├── GoogleCloudIntegrationsV1alphaParameterMap.php │ │ ├── GoogleCloudIntegrationsV1alphaParameterMapEntry.php │ │ ├── GoogleCloudIntegrationsV1alphaParameterMapField.php │ │ ├── GoogleCloudIntegrationsV1alphaProjectProperties.php │ │ ├── GoogleCloudIntegrationsV1alphaProvisionClientRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaPublishIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaResolveSuspensionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaResolveSuspensionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaRuntimeActionSchema.php │ │ ├── GoogleCloudIntegrationsV1alphaRuntimeEntitySchema.php │ │ ├── GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaScheduleIntegrationsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaServiceAccountCredentials.php │ │ ├── GoogleCloudIntegrationsV1alphaSfdcChannel.php │ │ ├── GoogleCloudIntegrationsV1alphaSfdcInstance.php │ │ ├── GoogleCloudIntegrationsV1alphaStringParameterArray.php │ │ ├── GoogleCloudIntegrationsV1alphaSuccessPolicy.php │ │ ├── GoogleCloudIntegrationsV1alphaSuspension.php │ │ ├── GoogleCloudIntegrationsV1alphaSuspensionApprovalConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaSuspensionApprovalExpiration.php │ │ ├── GoogleCloudIntegrationsV1alphaSuspensionAudit.php │ │ ├── GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaTakeoverEditLockResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaTaskConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaTaskExecutionDetails.php │ │ ├── GoogleCloudIntegrationsV1alphaTestIntegrationsRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaTestIntegrationsResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaTriggerConfig.php │ │ ├── GoogleCloudIntegrationsV1alphaUnpublishIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaUpdateBundleRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaUpdateBundleResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaUploadIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaUploadIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaUsernameAndPassword.php │ │ ├── GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest.php │ │ ├── GoogleCloudIntegrationsV1alphaValidateIntegrationVersionResponse.php │ │ ├── GoogleCloudIntegrationsV1alphaValueType.php │ │ ├── GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest.php │ │ ├── GoogleProtobufEmpty.php │ │ └── Resource │ │ │ ├── Callback.php │ │ │ ├── ConnectorPlatformRegions.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAppsScriptProjects.php │ │ │ ├── ProjectsLocationsAuthConfigs.php │ │ │ ├── ProjectsLocationsCertificates.php │ │ │ ├── ProjectsLocationsClients.php │ │ │ ├── ProjectsLocationsCloudFunctions.php │ │ │ ├── ProjectsLocationsConnections.php │ │ │ ├── ProjectsLocationsConnectionsRuntimeActionSchemas.php │ │ │ ├── ProjectsLocationsConnectionsRuntimeEntitySchemas.php │ │ │ ├── ProjectsLocationsIntegrations.php │ │ │ ├── ProjectsLocationsIntegrationsExecutions.php │ │ │ ├── ProjectsLocationsIntegrationsExecutionsSuspensions.php │ │ │ ├── ProjectsLocationsIntegrationsExecutionsnapshots.php │ │ │ ├── ProjectsLocationsIntegrationsVersions.php │ │ │ ├── ProjectsLocationsProducts.php │ │ │ ├── ProjectsLocationsProductsAuthConfigs.php │ │ │ ├── ProjectsLocationsProductsCertificates.php │ │ │ ├── ProjectsLocationsProductsCloudFunctions.php │ │ │ ├── ProjectsLocationsProductsIntegrations.php │ │ │ ├── ProjectsLocationsProductsIntegrationsExecutions.php │ │ │ ├── ProjectsLocationsProductsIntegrationsExecutionsSuspensions.php │ │ │ ├── ProjectsLocationsProductsIntegrationsExecutionsnapshots.php │ │ │ ├── ProjectsLocationsProductsIntegrationsVersions.php │ │ │ ├── ProjectsLocationsProductsIntegrationtemplates.php │ │ │ ├── ProjectsLocationsProductsIntegrationtemplatesVersions.php │ │ │ ├── ProjectsLocationsProductsSfdcInstances.php │ │ │ ├── ProjectsLocationsProductsSfdcInstancesSfdcChannels.php │ │ │ ├── ProjectsLocationsSfdcInstances.php │ │ │ └── ProjectsLocationsSfdcInstancesSfdcChannels.php │ │ ├── Keep.php │ │ ├── Keep │ │ ├── Attachment.php │ │ ├── BatchCreatePermissionsRequest.php │ │ ├── BatchCreatePermissionsResponse.php │ │ ├── BatchDeletePermissionsRequest.php │ │ ├── CreatePermissionRequest.php │ │ ├── Family.php │ │ ├── Group.php │ │ ├── KeepEmpty.php │ │ ├── ListContent.php │ │ ├── ListItem.php │ │ ├── ListNotesResponse.php │ │ ├── Note.php │ │ ├── Permission.php │ │ ├── Resource │ │ │ ├── Media.php │ │ │ ├── Notes.php │ │ │ └── NotesPermissions.php │ │ ├── Section.php │ │ ├── TextContent.php │ │ └── User.php │ │ ├── Kgsearch.php │ │ ├── Kgsearch │ │ ├── Resource │ │ │ └── Entities.php │ │ └── SearchResponse.php │ │ ├── Kmsinventory.php │ │ ├── Kmsinventory │ │ ├── GoogleCloudKmsInventoryV1ListCryptoKeysResponse.php │ │ ├── GoogleCloudKmsInventoryV1ProtectedResource.php │ │ ├── GoogleCloudKmsInventoryV1ProtectedResourcesSummary.php │ │ ├── GoogleCloudKmsInventoryV1SearchProtectedResourcesResponse.php │ │ ├── GoogleCloudKmsV1CryptoKey.php │ │ ├── GoogleCloudKmsV1CryptoKeyVersion.php │ │ ├── GoogleCloudKmsV1CryptoKeyVersionTemplate.php │ │ ├── GoogleCloudKmsV1ExternalProtectionLevelOptions.php │ │ ├── GoogleCloudKmsV1KeyOperationAttestation.php │ │ ├── GoogleCloudKmsV1KeyOperationAttestationCertificateChains.php │ │ └── Resource │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsProtectedResources.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsCryptoKeys.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsKeyRings.php │ │ │ └── ProjectsLocationsKeyRingsCryptoKeys.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 │ │ ├── GoogleAdsHomeservicesLocalservicesV1BookingLead.php │ │ ├── GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.php │ │ ├── GoogleAdsHomeservicesLocalservicesV1MessageLead.php │ │ ├── GoogleAdsHomeservicesLocalservicesV1PhoneLead.php │ │ ├── GoogleAdsHomeservicesLocalservicesV1SearchAccountReportsResponse.php │ │ ├── GoogleAdsHomeservicesLocalservicesV1SearchDetailedLeadReportsResponse.php │ │ ├── GoogleTypeTimeZone.php │ │ └── Resource │ │ │ ├── AccountReports.php │ │ │ └── DetailedLeadReports.php │ │ ├── Logging.php │ │ ├── Logging │ │ ├── BigQueryDataset.php │ │ ├── BigQueryOptions.php │ │ ├── BucketMetadata.php │ │ ├── BucketOptions.php │ │ ├── CancelOperationRequest.php │ │ ├── CmekSettings.php │ │ ├── CopyLogEntriesMetadata.php │ │ ├── CopyLogEntriesRequest.php │ │ ├── CopyLogEntriesResponse.php │ │ ├── CreateBucketRequest.php │ │ ├── CreateLinkRequest.php │ │ ├── DeleteLinkRequest.php │ │ ├── Explicit.php │ │ ├── Exponential.php │ │ ├── HttpRequest.php │ │ ├── IndexConfig.php │ │ ├── LabelDescriptor.php │ │ ├── Linear.php │ │ ├── Link.php │ │ ├── LinkMetadata.php │ │ ├── ListBucketsResponse.php │ │ ├── ListExclusionsResponse.php │ │ ├── ListLinksResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListLogEntriesRequest.php │ │ ├── ListLogEntriesResponse.php │ │ ├── ListLogMetricsResponse.php │ │ ├── ListLogsResponse.php │ │ ├── ListMonitoredResourceDescriptorsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListSinksResponse.php │ │ ├── ListViewsResponse.php │ │ ├── Location.php │ │ ├── LocationMetadata.php │ │ ├── LogBucket.php │ │ ├── LogEntry.php │ │ ├── LogEntryOperation.php │ │ ├── LogEntrySourceLocation.php │ │ ├── LogExclusion.php │ │ ├── LogLine.php │ │ ├── LogMetric.php │ │ ├── LogSink.php │ │ ├── LogSplit.php │ │ ├── LogView.php │ │ ├── LoggingEmpty.php │ │ ├── MetricDescriptor.php │ │ ├── MetricDescriptorMetadata.php │ │ ├── MonitoredResource.php │ │ ├── MonitoredResourceDescriptor.php │ │ ├── MonitoredResourceMetadata.php │ │ ├── Operation.php │ │ ├── RequestLog.php │ │ ├── Resource │ │ │ ├── BillingAccounts.php │ │ │ ├── BillingAccountsBuckets.php │ │ │ ├── BillingAccountsBucketsViews.php │ │ │ ├── BillingAccountsExclusions.php │ │ │ ├── BillingAccountsLocations.php │ │ │ ├── BillingAccountsLocationsBuckets.php │ │ │ ├── BillingAccountsLocationsBucketsLinks.php │ │ │ ├── BillingAccountsLocationsBucketsViews.php │ │ │ ├── BillingAccountsLocationsBucketsViewsLogs.php │ │ │ ├── BillingAccountsLocationsOperations.php │ │ │ ├── BillingAccountsLogs.php │ │ │ ├── BillingAccountsOperations.php │ │ │ ├── BillingAccountsSinks.php │ │ │ ├── Entries.php │ │ │ ├── Exclusions.php │ │ │ ├── Folders.php │ │ │ ├── FoldersExclusions.php │ │ │ ├── FoldersLocations.php │ │ │ ├── FoldersLocationsBuckets.php │ │ │ ├── FoldersLocationsBucketsLinks.php │ │ │ ├── FoldersLocationsBucketsViews.php │ │ │ ├── FoldersLocationsBucketsViewsLogs.php │ │ │ ├── FoldersLocationsOperations.php │ │ │ ├── FoldersLogs.php │ │ │ ├── FoldersSinks.php │ │ │ ├── Locations.php │ │ │ ├── LocationsBuckets.php │ │ │ ├── LocationsBucketsLinks.php │ │ │ ├── LocationsBucketsViews.php │ │ │ ├── LocationsOperations.php │ │ │ ├── Logs.php │ │ │ ├── MonitoredResourceDescriptors.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsExclusions.php │ │ │ ├── OrganizationsLocations.php │ │ │ ├── OrganizationsLocationsBuckets.php │ │ │ ├── OrganizationsLocationsBucketsLinks.php │ │ │ ├── OrganizationsLocationsBucketsViews.php │ │ │ ├── OrganizationsLocationsBucketsViewsLogs.php │ │ │ ├── OrganizationsLocationsOperations.php │ │ │ ├── OrganizationsLogs.php │ │ │ ├── OrganizationsSinks.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsExclusions.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsBuckets.php │ │ │ ├── ProjectsLocationsBucketsLinks.php │ │ │ ├── ProjectsLocationsBucketsViews.php │ │ │ ├── ProjectsLocationsBucketsViewsLogs.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLogs.php │ │ │ ├── ProjectsMetrics.php │ │ │ ├── ProjectsSinks.php │ │ │ ├── Sinks.php │ │ │ └── V2.php │ │ ├── Settings.php │ │ ├── SourceLocation.php │ │ ├── SourceReference.php │ │ ├── Status.php │ │ ├── SuppressionInfo.php │ │ ├── TableFieldSchema.php │ │ ├── TableSchema.php │ │ ├── TailLogEntriesRequest.php │ │ ├── TailLogEntriesResponse.php │ │ ├── UndeleteBucketRequest.php │ │ ├── UpdateBucketRequest.php │ │ ├── WriteLogEntriesRequest.php │ │ └── WriteLogEntriesResponse.php │ │ ├── ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.php │ │ ├── ManagedServiceforMicrosoftActiveDirectoryConsumerAPI │ │ ├── AttachTrustRequest.php │ │ ├── Backup.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── Certificate.php │ │ ├── DailyCycle.php │ │ ├── Date.php │ │ ├── DenyMaintenancePeriod.php │ │ ├── DetachTrustRequest.php │ │ ├── Domain.php │ │ ├── Expr.php │ │ ├── ExtendSchemaRequest.php │ │ ├── GoogleCloudManagedidentitiesV1OpMetadata.php │ │ ├── GoogleCloudManagedidentitiesV1alpha1OpMetadata.php │ │ ├── GoogleCloudManagedidentitiesV1beta1OpMetadata.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1Instance.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1NotificationParameter.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion.php │ │ ├── GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata.php │ │ ├── LDAPSSettings.php │ │ ├── ListBackupsResponse.php │ │ ├── ListDomainsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPeeringsResponse.php │ │ ├── ListSqlIntegrationsResponse.php │ │ ├── Location.php │ │ ├── MaintenancePolicy.php │ │ ├── MaintenanceWindow.php │ │ ├── ManagedidentitiesEmpty.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Peering.php │ │ ├── Policy.php │ │ ├── ReconfigureTrustRequest.php │ │ ├── ResetAdminPasswordRequest.php │ │ ├── ResetAdminPasswordResponse.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsManagedidentitiesGlobal.php │ │ │ ├── ProjectsLocationsManagedidentitiesGlobalDomains.php │ │ │ ├── ProjectsLocationsManagedidentitiesGlobalDomainsBackups.php │ │ │ ├── ProjectsLocationsManagedidentitiesGlobalDomainsSqlIntegrations.php │ │ │ ├── ProjectsLocationsManagedidentitiesGlobalOperations.php │ │ │ └── ProjectsLocationsManagedidentitiesGlobalPeerings.php │ │ ├── RestoreDomainRequest.php │ │ ├── Schedule.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SqlIntegration.php │ │ ├── Status.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TimeOfDay.php │ │ ├── Trust.php │ │ ├── UpdatePolicy.php │ │ ├── ValidateTrustRequest.php │ │ └── WeeklyCycle.php │ │ ├── ManufacturerCenter.php │ │ ├── ManufacturerCenter │ │ ├── Attributes.php │ │ ├── Capacity.php │ │ ├── Certification.php │ │ ├── Count.php │ │ ├── DestinationStatus.php │ │ ├── FeatureDescription.php │ │ ├── FloatUnit.php │ │ ├── Grocery.php │ │ ├── Image.php │ │ ├── Issue.php │ │ ├── ListProductCertificationsResponse.php │ │ ├── ListProductsResponse.php │ │ ├── ManufacturersEmpty.php │ │ ├── Nutrition.php │ │ ├── Price.php │ │ ├── Product.php │ │ ├── ProductCertification.php │ │ ├── ProductDetail.php │ │ ├── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsLanguages.php │ │ │ ├── AccountsLanguagesProductCertifications.php │ │ │ └── AccountsProducts.php │ │ └── VoluntaryNutritionFact.php │ │ ├── Monitoring.php │ │ ├── Monitoring │ │ ├── Aggregation.php │ │ ├── AlertPolicy.php │ │ ├── AlertStrategy.php │ │ ├── AppEngine.php │ │ ├── AvailabilityCriteria.php │ │ ├── BasicAuthentication.php │ │ ├── BasicService.php │ │ ├── BasicSli.php │ │ ├── BucketOptions.php │ │ ├── CloudEndpoints.php │ │ ├── CloudRun.php │ │ ├── ClusterIstio.php │ │ ├── CollectdPayload.php │ │ ├── CollectdPayloadError.php │ │ ├── CollectdValue.php │ │ ├── CollectdValueError.php │ │ ├── Condition.php │ │ ├── ContentMatcher.php │ │ ├── CreateCollectdTimeSeriesRequest.php │ │ ├── CreateCollectdTimeSeriesResponse.php │ │ ├── CreateTimeSeriesRequest.php │ │ ├── CreateTimeSeriesSummary.php │ │ ├── Criteria.php │ │ ├── Custom.php │ │ ├── Distribution.php │ │ ├── DistributionCut.php │ │ ├── Documentation.php │ │ ├── DroppedLabels.php │ │ ├── Error.php │ │ ├── Exemplar.php │ │ ├── Explicit.php │ │ ├── Exponential.php │ │ ├── Field.php │ │ ├── ForecastOptions.php │ │ ├── GetNotificationChannelVerificationCodeRequest.php │ │ ├── GetNotificationChannelVerificationCodeResponse.php │ │ ├── GkeNamespace.php │ │ ├── GkeService.php │ │ ├── GkeWorkload.php │ │ ├── GoogleMonitoringV3Range.php │ │ ├── Group.php │ │ ├── HttpCheck.php │ │ ├── InternalChecker.php │ │ ├── IstioCanonicalService.php │ │ ├── JsonPathMatcher.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 │ │ ├── ListSnoozesResponse.php │ │ ├── ListTimeSeriesResponse.php │ │ ├── ListUptimeCheckConfigsResponse.php │ │ ├── ListUptimeCheckIpsResponse.php │ │ ├── LogMatch.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 │ │ ├── NotificationRateLimit.php │ │ ├── OperationMetadata.php │ │ ├── Option.php │ │ ├── PerformanceThreshold.php │ │ ├── PingConfig.php │ │ ├── Point.php │ │ ├── PointData.php │ │ ├── QueryTimeSeriesRequest.php │ │ ├── QueryTimeSeriesResponse.php │ │ ├── Range.php │ │ ├── RequestBasedSli.php │ │ ├── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersTimeSeries.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsTimeSeries.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsAlertPolicies.php │ │ │ ├── ProjectsCollectdTimeSeries.php │ │ │ ├── ProjectsGroups.php │ │ │ ├── ProjectsGroupsMembers.php │ │ │ ├── ProjectsMetricDescriptors.php │ │ │ ├── ProjectsMonitoredResourceDescriptors.php │ │ │ ├── ProjectsNotificationChannelDescriptors.php │ │ │ ├── ProjectsNotificationChannels.php │ │ │ ├── ProjectsSnoozes.php │ │ │ ├── ProjectsTimeSeries.php │ │ │ ├── ProjectsUptimeCheckConfigs.php │ │ │ ├── Services.php │ │ │ ├── ServicesServiceLevelObjectives.php │ │ │ └── UptimeCheckIps.php │ │ ├── ResourceGroup.php │ │ ├── ResponseStatusCode.php │ │ ├── SendNotificationChannelVerificationCodeRequest.php │ │ ├── Service.php │ │ ├── ServiceLevelIndicator.php │ │ ├── ServiceLevelObjective.php │ │ ├── Snooze.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 │ │ ├── MyBusinessAccountManagement.php │ │ ├── MyBusinessAccountManagement │ │ ├── AcceptInvitationRequest.php │ │ ├── Account.php │ │ ├── Admin.php │ │ ├── DeclineInvitationRequest.php │ │ ├── Invitation.php │ │ ├── ListAccountAdminsResponse.php │ │ ├── ListAccountsResponse.php │ │ ├── ListInvitationsResponse.php │ │ ├── ListLocationAdminsResponse.php │ │ ├── MybusinessaccountmanagementEmpty.php │ │ ├── OrganizationInfo.php │ │ ├── PostalAddress.php │ │ ├── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsAdmins.php │ │ │ ├── AccountsInvitations.php │ │ │ ├── Locations.php │ │ │ └── LocationsAdmins.php │ │ ├── TargetLocation.php │ │ └── TransferLocationRequest.php │ │ ├── MyBusinessBusinessCalls.php │ │ ├── MyBusinessBusinessCalls │ │ ├── AggregateMetrics.php │ │ ├── BusinessCallsInsights.php │ │ ├── BusinessCallsSettings.php │ │ ├── Date.php │ │ ├── HourlyMetrics.php │ │ ├── ListBusinessCallsInsightsResponse.php │ │ ├── Resource │ │ │ ├── Locations.php │ │ │ └── LocationsBusinesscallsinsights.php │ │ └── WeekDayMetrics.php │ │ ├── MyBusinessBusinessInformation.php │ │ ├── MyBusinessBusinessInformation │ │ ├── AdWordsLocationExtensions.php │ │ ├── AssociateLocationRequest.php │ │ ├── Attribute.php │ │ ├── AttributeMetadata.php │ │ ├── AttributeValueMetadata.php │ │ ├── Attributes.php │ │ ├── BatchGetCategoriesResponse.php │ │ ├── BusinessHours.php │ │ ├── Categories.php │ │ ├── Category.php │ │ ├── Chain.php │ │ ├── ChainName.php │ │ ├── ChainUri.php │ │ ├── ClearLocationAssociationRequest.php │ │ ├── Date.php │ │ ├── FreeFormServiceItem.php │ │ ├── GoogleLocation.php │ │ ├── GoogleUpdatedLocation.php │ │ ├── Label.php │ │ ├── LatLng.php │ │ ├── ListAttributeMetadataResponse.php │ │ ├── ListCategoriesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── Location.php │ │ ├── Metadata.php │ │ ├── Money.php │ │ ├── MoreHours.php │ │ ├── MoreHoursType.php │ │ ├── MybusinessbusinessinformationEmpty.php │ │ ├── OpenInfo.php │ │ ├── PhoneNumbers.php │ │ ├── PlaceInfo.php │ │ ├── Places.php │ │ ├── PostalAddress.php │ │ ├── Profile.php │ │ ├── RelationshipData.php │ │ ├── RelevantLocation.php │ │ ├── RepeatedEnumAttributeValue.php │ │ ├── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsLocations.php │ │ │ ├── Attributes.php │ │ │ ├── Categories.php │ │ │ ├── Chains.php │ │ │ ├── GoogleLocations.php │ │ │ ├── Locations.php │ │ │ └── LocationsAttributes.php │ │ ├── SearchChainsResponse.php │ │ ├── SearchGoogleLocationsRequest.php │ │ ├── SearchGoogleLocationsResponse.php │ │ ├── ServiceAreaBusiness.php │ │ ├── ServiceItem.php │ │ ├── ServiceType.php │ │ ├── SpecialHourPeriod.php │ │ ├── SpecialHours.php │ │ ├── StructuredServiceItem.php │ │ ├── TimeOfDay.php │ │ ├── TimePeriod.php │ │ └── UriAttributeValue.php │ │ ├── MyBusinessLodging.php │ │ ├── MyBusinessLodging │ │ ├── Accessibility.php │ │ ├── Activities.php │ │ ├── Business.php │ │ ├── Connectivity.php │ │ ├── EcoCertification.php │ │ ├── EnergyEfficiency.php │ │ ├── EnhancedCleaning.php │ │ ├── Families.php │ │ ├── FoodAndDrink.php │ │ ├── GetGoogleUpdatedLodgingResponse.php │ │ ├── GuestUnitFeatures.php │ │ ├── GuestUnitType.php │ │ ├── HealthAndSafety.php │ │ ├── Housekeeping.php │ │ ├── IncreasedFoodSafety.php │ │ ├── LanguageSpoken.php │ │ ├── LivingArea.php │ │ ├── LivingAreaAccessibility.php │ │ ├── LivingAreaEating.php │ │ ├── LivingAreaFeatures.php │ │ ├── LivingAreaLayout.php │ │ ├── LivingAreaSleeping.php │ │ ├── Lodging.php │ │ ├── LodgingMetadata.php │ │ ├── MinimizedContact.php │ │ ├── Parking.php │ │ ├── PaymentOptions.php │ │ ├── PersonalProtection.php │ │ ├── Pets.php │ │ ├── PhysicalDistancing.php │ │ ├── Policies.php │ │ ├── Pools.php │ │ ├── Property.php │ │ ├── Resource │ │ │ ├── Locations.php │ │ │ └── LocationsLodging.php │ │ ├── Services.php │ │ ├── Sustainability.php │ │ ├── SustainabilityCertifications.php │ │ ├── SustainableSourcing.php │ │ ├── TimeOfDay.php │ │ ├── Transportation.php │ │ ├── ViewsFromUnit.php │ │ ├── WasteReduction.php │ │ ├── WaterConservation.php │ │ └── Wellness.php │ │ ├── MyBusinessNotificationSettings.php │ │ ├── MyBusinessNotificationSettings │ │ ├── NotificationSetting.php │ │ └── Resource │ │ │ └── Accounts.php │ │ ├── MyBusinessPlaceActions.php │ │ ├── MyBusinessPlaceActions │ │ ├── AvailableDay.php │ │ ├── Date.php │ │ ├── FeeDetails.php │ │ ├── FixedFee.php │ │ ├── FulfillmentOption.php │ │ ├── ListPlaceActionLinksResponse.php │ │ ├── ListPlaceActionTypeMetadataResponse.php │ │ ├── MinimumFee.php │ │ ├── Money.php │ │ ├── MybusinessplaceactionsEmpty.php │ │ ├── NoFee.php │ │ ├── OrderOnlineMetadata.php │ │ ├── PlaceActionLink.php │ │ ├── PlaceActionTypeMetadata.php │ │ └── Resource │ │ │ ├── Locations.php │ │ │ ├── LocationsPlaceActionLinks.php │ │ │ └── PlaceActionTypeMetadata.php │ │ ├── MyBusinessQA.php │ │ ├── MyBusinessQA │ │ ├── Answer.php │ │ ├── Author.php │ │ ├── ListAnswersResponse.php │ │ ├── ListQuestionsResponse.php │ │ ├── MybusinessqandaEmpty.php │ │ ├── Question.php │ │ ├── Resource │ │ │ ├── Locations.php │ │ │ ├── LocationsQuestions.php │ │ │ └── LocationsQuestionsAnswers.php │ │ └── UpsertAnswerRequest.php │ │ ├── MyBusinessVerifications.php │ │ ├── MyBusinessVerifications │ │ ├── AddressVerificationData.php │ │ ├── CompleteVerificationRequest.php │ │ ├── CompleteVerificationResponse.php │ │ ├── ComplyWithGuidelines.php │ │ ├── EmailVerificationData.php │ │ ├── FetchVerificationOptionsRequest.php │ │ ├── FetchVerificationOptionsResponse.php │ │ ├── GenerateVerificationTokenRequest.php │ │ ├── GenerateVerificationTokenResponse.php │ │ ├── ListVerificationsResponse.php │ │ ├── Location.php │ │ ├── PostalAddress.php │ │ ├── ResolveOwnershipConflict.php │ │ ├── Resource │ │ │ ├── Locations.php │ │ │ ├── LocationsVerifications.php │ │ │ └── VerificationTokens.php │ │ ├── ServiceBusinessContext.php │ │ ├── Verification.php │ │ ├── VerificationOption.php │ │ ├── VerificationToken.php │ │ ├── Verify.php │ │ ├── VerifyLocationRequest.php │ │ ├── VerifyLocationResponse.php │ │ ├── VoiceOfMerchantState.php │ │ └── WaitForVoiceOfMerchant.php │ │ ├── NetworkManagement.php │ │ ├── NetworkManagement │ │ ├── AbortInfo.php │ │ ├── AppEngineVersionEndpoint.php │ │ ├── AppEngineVersionInfo.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── CloudFunctionEndpoint.php │ │ ├── CloudFunctionInfo.php │ │ ├── CloudRunRevisionEndpoint.php │ │ ├── CloudRunRevisionInfo.php │ │ ├── CloudSQLInstanceInfo.php │ │ ├── ConnectivityTest.php │ │ ├── DeliverInfo.php │ │ ├── DropInfo.php │ │ ├── Endpoint.php │ │ ├── EndpointInfo.php │ │ ├── Expr.php │ │ ├── FirewallInfo.php │ │ ├── ForwardInfo.php │ │ ├── ForwardingRuleInfo.php │ │ ├── GKEMasterInfo.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 │ │ ├── VpcConnectorInfo.php │ │ ├── VpnGatewayInfo.php │ │ └── VpnTunnelInfo.php │ │ ├── NetworkSecurity.php │ │ ├── NetworkSecurity │ │ ├── AuthorizationPolicy.php │ │ ├── CancelOperationRequest.php │ │ ├── CertificateProviderInstance.php │ │ ├── ClientTlsPolicy.php │ │ ├── Destination.php │ │ ├── Expr.php │ │ ├── GoogleCloudNetworksecurityV1CertificateProvider.php │ │ ├── GoogleCloudNetworksecurityV1GrpcEndpoint.php │ │ ├── GoogleCloudNetworksecurityV1beta1CertificateProvider.php │ │ ├── GoogleCloudNetworksecurityV1beta1GrpcEndpoint.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleIamV1SetIamPolicyRequest.php │ │ ├── GoogleIamV1TestIamPermissionsRequest.php │ │ ├── GoogleIamV1TestIamPermissionsResponse.php │ │ ├── HttpHeaderMatch.php │ │ ├── ListAuthorizationPoliciesResponse.php │ │ ├── ListClientTlsPoliciesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServerTlsPoliciesResponse.php │ │ ├── Location.php │ │ ├── MTLSPolicy.php │ │ ├── NetworksecurityEmpty.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAuthorizationPolicies.php │ │ │ ├── ProjectsLocationsClientTlsPolicies.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ └── ProjectsLocationsServerTlsPolicies.php │ │ ├── Rule.php │ │ ├── ServerTlsPolicy.php │ │ ├── Source.php │ │ ├── Status.php │ │ └── ValidationCA.php │ │ ├── NetworkServices.php │ │ ├── NetworkServices │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── CancelOperationRequest.php │ │ ├── EndpointMatcher.php │ │ ├── EndpointMatcherMetadataLabelMatcher.php │ │ ├── EndpointMatcherMetadataLabelMatcherMetadataLabels.php │ │ ├── EndpointPolicy.php │ │ ├── Expr.php │ │ ├── Gateway.php │ │ ├── GrpcRoute.php │ │ ├── GrpcRouteDestination.php │ │ ├── GrpcRouteFaultInjectionPolicy.php │ │ ├── GrpcRouteFaultInjectionPolicyAbort.php │ │ ├── GrpcRouteFaultInjectionPolicyDelay.php │ │ ├── GrpcRouteHeaderMatch.php │ │ ├── GrpcRouteMethodMatch.php │ │ ├── GrpcRouteRetryPolicy.php │ │ ├── GrpcRouteRouteAction.php │ │ ├── GrpcRouteRouteMatch.php │ │ ├── GrpcRouteRouteRule.php │ │ ├── HttpRoute.php │ │ ├── HttpRouteCorsPolicy.php │ │ ├── HttpRouteDestination.php │ │ ├── HttpRouteFaultInjectionPolicy.php │ │ ├── HttpRouteFaultInjectionPolicyAbort.php │ │ ├── HttpRouteFaultInjectionPolicyDelay.php │ │ ├── HttpRouteHeaderMatch.php │ │ ├── HttpRouteHeaderMatchIntegerRange.php │ │ ├── HttpRouteHeaderModifier.php │ │ ├── HttpRouteQueryParameterMatch.php │ │ ├── HttpRouteRedirect.php │ │ ├── HttpRouteRequestMirrorPolicy.php │ │ ├── HttpRouteRetryPolicy.php │ │ ├── HttpRouteRouteAction.php │ │ ├── HttpRouteRouteMatch.php │ │ ├── HttpRouteRouteRule.php │ │ ├── HttpRouteURLRewrite.php │ │ ├── ListEndpointPoliciesResponse.php │ │ ├── ListGatewaysResponse.php │ │ ├── ListGrpcRoutesResponse.php │ │ ├── ListHttpRoutesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMeshesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServiceBindingsResponse.php │ │ ├── ListTcpRoutesResponse.php │ │ ├── ListTlsRoutesResponse.php │ │ ├── Location.php │ │ ├── Mesh.php │ │ ├── NetworkservicesEmpty.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEdgeCacheKeysets.php │ │ │ ├── ProjectsLocationsEdgeCacheOrigins.php │ │ │ ├── ProjectsLocationsEdgeCacheServices.php │ │ │ ├── ProjectsLocationsEndpointPolicies.php │ │ │ ├── ProjectsLocationsGateways.php │ │ │ ├── ProjectsLocationsGrpcRoutes.php │ │ │ ├── ProjectsLocationsHttpRoutes.php │ │ │ ├── ProjectsLocationsMeshes.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsServiceBindings.php │ │ │ ├── ProjectsLocationsTcpRoutes.php │ │ │ └── ProjectsLocationsTlsRoutes.php │ │ ├── ServiceBinding.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Status.php │ │ ├── TcpRoute.php │ │ ├── TcpRouteRouteAction.php │ │ ├── TcpRouteRouteDestination.php │ │ ├── TcpRouteRouteMatch.php │ │ ├── TcpRouteRouteRule.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TlsRoute.php │ │ ├── TlsRouteRouteAction.php │ │ ├── TlsRouteRouteDestination.php │ │ ├── TlsRouteRouteMatch.php │ │ ├── TlsRouteRouteRule.php │ │ └── TrafficPortSelector.php │ │ ├── Networkconnectivity.php │ │ ├── Networkconnectivity │ │ ├── AttributeValue.php │ │ ├── Attributes.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── BillingView.php │ │ ├── Binding.php │ │ ├── Distribution.php │ │ ├── Exemplar.php │ │ ├── ExplicitBuckets.php │ │ ├── ExponentialBuckets.php │ │ ├── Expr.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── HttpRequest.php │ │ ├── Hub.php │ │ ├── InternalRange.php │ │ ├── LinearBuckets.php │ │ ├── LinkedInterconnectAttachments.php │ │ ├── LinkedRouterApplianceInstances.php │ │ ├── LinkedVpnTunnels.php │ │ ├── ListHubsResponse.php │ │ ├── ListInternalRangesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListSpokesResponse.php │ │ ├── Location.php │ │ ├── LocationMetadata.php │ │ ├── LogEntry.php │ │ ├── LogEntryOperation.php │ │ ├── LogEntrySourceLocation.php │ │ ├── MetricValue.php │ │ ├── MetricValueSet.php │ │ ├── Money.php │ │ ├── NetworkconnectivityEmpty.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Policy.php │ │ ├── QuotaProperties.php │ │ ├── ReportRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInternalRanges.php │ │ │ ├── ProjectsLocationsNetworkconnectivityGlobal.php │ │ │ ├── ProjectsLocationsNetworkconnectivityGlobalHubs.php │ │ │ ├── ProjectsLocationsNetworkconnectivityGlobalPolicyBasedRoutes.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsServiceClasses.php │ │ │ ├── ProjectsLocationsServiceConnectionMaps.php │ │ │ ├── ProjectsLocationsServiceConnectionPolicies.php │ │ │ └── ProjectsLocationsSpokes.php │ │ ├── ResourceInfo.php │ │ ├── RouterApplianceInstance.php │ │ ├── RoutingVPC.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Spoke.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── TraceSpan.php │ │ └── TruncatableString.php │ │ ├── OSConfig.php │ │ ├── OSConfig │ │ ├── AptSettings.php │ │ ├── CVSSv3.php │ │ ├── CancelOperationRequest.php │ │ ├── CancelPatchJobRequest.php │ │ ├── Date.php │ │ ├── ExecStep.php │ │ ├── ExecStepConfig.php │ │ ├── ExecutePatchJobRequest.php │ │ ├── FixedOrPercent.php │ │ ├── GcsObject.php │ │ ├── GooSettings.php │ │ ├── GoogleCloudOsconfigV1OSPolicyAssignmentOperationMetadata.php │ │ ├── Inventory.php │ │ ├── InventoryItem.php │ │ ├── InventoryOsInfo.php │ │ ├── InventorySoftwarePackage.php │ │ ├── InventoryVersionedPackage.php │ │ ├── InventoryWindowsApplication.php │ │ ├── InventoryWindowsQuickFixEngineeringPackage.php │ │ ├── InventoryWindowsUpdatePackage.php │ │ ├── InventoryWindowsUpdatePackageWindowsUpdateCategory.php │ │ ├── InventoryZypperPatch.php │ │ ├── ListInventoriesResponse.php │ │ ├── ListOSPolicyAssignmentReportsResponse.php │ │ ├── ListOSPolicyAssignmentRevisionsResponse.php │ │ ├── ListOSPolicyAssignmentsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPatchDeploymentsResponse.php │ │ ├── ListPatchJobInstanceDetailsResponse.php │ │ ├── ListPatchJobsResponse.php │ │ ├── ListVulnerabilityReportsResponse.php │ │ ├── MonthlySchedule.php │ │ ├── OSPolicy.php │ │ ├── OSPolicyAssignment.php │ │ ├── OSPolicyAssignmentInstanceFilter.php │ │ ├── OSPolicyAssignmentInstanceFilterInventory.php │ │ ├── OSPolicyAssignmentLabelSet.php │ │ ├── OSPolicyAssignmentOperationMetadata.php │ │ ├── OSPolicyAssignmentReport.php │ │ ├── OSPolicyAssignmentReportOSPolicyCompliance.php │ │ ├── OSPolicyAssignmentReportOSPolicyComplianceOSPolicyResourceCompliance.php │ │ ├── OSPolicyAssignmentReportOSPolicyComplianceOSPolicyResourceComplianceExecResourceOutput.php │ │ ├── OSPolicyAssignmentReportOSPolicyComplianceOSPolicyResourceComplianceOSPolicyResourceConfigStep.php │ │ ├── OSPolicyAssignmentRollout.php │ │ ├── OSPolicyInventoryFilter.php │ │ ├── OSPolicyResource.php │ │ ├── OSPolicyResourceExecResource.php │ │ ├── OSPolicyResourceExecResourceExec.php │ │ ├── OSPolicyResourceFile.php │ │ ├── OSPolicyResourceFileGcs.php │ │ ├── OSPolicyResourceFileRemote.php │ │ ├── OSPolicyResourceFileResource.php │ │ ├── OSPolicyResourceGroup.php │ │ ├── OSPolicyResourcePackageResource.php │ │ ├── OSPolicyResourcePackageResourceAPT.php │ │ ├── OSPolicyResourcePackageResourceDeb.php │ │ ├── OSPolicyResourcePackageResourceGooGet.php │ │ ├── OSPolicyResourcePackageResourceMSI.php │ │ ├── OSPolicyResourcePackageResourceRPM.php │ │ ├── OSPolicyResourcePackageResourceYUM.php │ │ ├── OSPolicyResourcePackageResourceZypper.php │ │ ├── OSPolicyResourceRepositoryResource.php │ │ ├── OSPolicyResourceRepositoryResourceAptRepository.php │ │ ├── OSPolicyResourceRepositoryResourceGooRepository.php │ │ ├── OSPolicyResourceRepositoryResourceYumRepository.php │ │ ├── OSPolicyResourceRepositoryResourceZypperRepository.php │ │ ├── OneTimeSchedule.php │ │ ├── Operation.php │ │ ├── OsconfigEmpty.php │ │ ├── PatchConfig.php │ │ ├── PatchDeployment.php │ │ ├── PatchInstanceFilter.php │ │ ├── PatchInstanceFilterGroupLabel.php │ │ ├── PatchJob.php │ │ ├── PatchJobInstanceDetails.php │ │ ├── PatchJobInstanceDetailsSummary.php │ │ ├── PatchRollout.php │ │ ├── PausePatchDeploymentRequest.php │ │ ├── RecurringSchedule.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsInstances.php │ │ │ ├── ProjectsLocationsInstancesInventories.php │ │ │ ├── ProjectsLocationsInstancesOsPolicyAssignments.php │ │ │ ├── ProjectsLocationsInstancesOsPolicyAssignmentsReports.php │ │ │ ├── ProjectsLocationsInstancesVulnerabilityReports.php │ │ │ ├── ProjectsLocationsOsPolicyAssignments.php │ │ │ ├── ProjectsLocationsOsPolicyAssignmentsOperations.php │ │ │ ├── ProjectsPatchDeployments.php │ │ │ ├── ProjectsPatchJobs.php │ │ │ └── ProjectsPatchJobsInstanceDetails.php │ │ ├── ResumePatchDeploymentRequest.php │ │ ├── Status.php │ │ ├── TimeOfDay.php │ │ ├── TimeZone.php │ │ ├── VulnerabilityReport.php │ │ ├── VulnerabilityReportVulnerability.php │ │ ├── VulnerabilityReportVulnerabilityDetails.php │ │ ├── VulnerabilityReportVulnerabilityDetailsReference.php │ │ ├── VulnerabilityReportVulnerabilityItem.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 │ │ ├── OnDemandScanning.php │ │ ├── OnDemandScanning │ │ ├── AliasContext.php │ │ ├── AnalysisCompleted.php │ │ ├── AnalyzePackagesMetadata.php │ │ ├── AnalyzePackagesMetadataV1.php │ │ ├── AnalyzePackagesRequestV1.php │ │ ├── AnalyzePackagesResponse.php │ │ ├── AnalyzePackagesResponseV1.php │ │ ├── Artifact.php │ │ ├── AttestationOccurrence.php │ │ ├── BuildOccurrence.php │ │ ├── BuildProvenance.php │ │ ├── BuilderConfig.php │ │ ├── CVSS.php │ │ ├── Category.php │ │ ├── CloudRepoSourceContext.php │ │ ├── Command.php │ │ ├── Completeness.php │ │ ├── ComplianceOccurrence.php │ │ ├── DSSEAttestationOccurrence.php │ │ ├── DeploymentOccurrence.php │ │ ├── DiscoveryOccurrence.php │ │ ├── Envelope.php │ │ ├── EnvelopeSignature.php │ │ ├── FileHashes.php │ │ ├── FileLocation.php │ │ ├── Fingerprint.php │ │ ├── GerritSourceContext.php │ │ ├── GitSourceContext.php │ │ ├── GrafeasV1FileLocation.php │ │ ├── GrafeasV1SlsaProvenance02SlsaBuilder.php │ │ ├── GrafeasV1SlsaProvenance02SlsaCompleteness.php │ │ ├── GrafeasV1SlsaProvenance02SlsaConfigSource.php │ │ ├── GrafeasV1SlsaProvenance02SlsaInvocation.php │ │ ├── GrafeasV1SlsaProvenance02SlsaMaterial.php │ │ ├── GrafeasV1SlsaProvenance02SlsaMetadata.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaBuilder.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaCompleteness.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaConfigSource.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaInvocation.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaMaterial.php │ │ ├── GrafeasV1SlsaProvenanceZeroTwoSlsaMetadata.php │ │ ├── Hash.php │ │ ├── Identity.php │ │ ├── ImageOccurrence.php │ │ ├── InTotoProvenance.php │ │ ├── InTotoStatement.php │ │ ├── Jwt.php │ │ ├── LanguagePackageDependency.php │ │ ├── Layer.php │ │ ├── License.php │ │ ├── ListOperationsResponse.php │ │ ├── ListVulnerabilitiesResponseV1.php │ │ ├── Location.php │ │ ├── Material.php │ │ ├── Metadata.php │ │ ├── NonCompliantFile.php │ │ ├── Occurrence.php │ │ ├── OndemandscanningEmpty.php │ │ ├── Operation.php │ │ ├── PackageData.php │ │ ├── PackageIssue.php │ │ ├── PackageOccurrence.php │ │ ├── ProjectRepoId.php │ │ ├── Recipe.php │ │ ├── RelatedUrl.php │ │ ├── RepoId.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsScans.php │ │ │ └── ProjectsLocationsScansVulnerabilities.php │ │ ├── Signature.php │ │ ├── SlsaBuilder.php │ │ ├── SlsaCompleteness.php │ │ ├── SlsaMetadata.php │ │ ├── SlsaProvenance.php │ │ ├── SlsaProvenance02.php │ │ ├── SlsaProvenanceZeroTwo.php │ │ ├── SlsaRecipe.php │ │ ├── Source.php │ │ ├── SourceContext.php │ │ ├── Status.php │ │ ├── Subject.php │ │ ├── UpgradeDistribution.php │ │ ├── UpgradeOccurrence.php │ │ ├── Version.php │ │ ├── VulnerabilityOccurrence.php │ │ └── WindowsUpdate.php │ │ ├── OrgPolicyAPI.php │ │ ├── OrgPolicyAPI │ │ ├── GoogleCloudOrgpolicyV2AlternatePolicySpec.php │ │ ├── GoogleCloudOrgpolicyV2Constraint.php │ │ ├── GoogleCloudOrgpolicyV2ConstraintBooleanConstraint.php │ │ ├── GoogleCloudOrgpolicyV2ConstraintListConstraint.php │ │ ├── GoogleCloudOrgpolicyV2CustomConstraint.php │ │ ├── GoogleCloudOrgpolicyV2ListConstraintsResponse.php │ │ ├── GoogleCloudOrgpolicyV2ListCustomConstraintsResponse.php │ │ ├── GoogleCloudOrgpolicyV2ListPoliciesResponse.php │ │ ├── GoogleCloudOrgpolicyV2Policy.php │ │ ├── GoogleCloudOrgpolicyV2PolicySpec.php │ │ ├── GoogleCloudOrgpolicyV2PolicySpecPolicyRule.php │ │ ├── GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleTypeExpr.php │ │ └── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersConstraints.php │ │ │ ├── FoldersPolicies.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsConstraints.php │ │ │ ├── OrganizationsCustomConstraints.php │ │ │ ├── OrganizationsPolicies.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsConstraints.php │ │ │ └── ProjectsPolicies.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 │ │ ├── PaymentsResellerSubscription.php │ │ ├── PaymentsResellerSubscription │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Amount.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1CancelSubscriptionRequest.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1CancelSubscriptionResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Duration.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequest.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ExtendSubscriptionRequest.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ExtendSubscriptionResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Extension.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsRequest.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ListProductsResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ListPromotionsResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Location.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Product.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ProductPayload.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Promotion.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1PromotionIntroductoryPricingDetails.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1PromotionIntroductoryPricingDetailsIntroductoryPricingSpec.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1ServicePeriod.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1Subscription.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1SubscriptionCancellationDetails.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItem.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemOneTimeRecurrenceDetails.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1SubscriptionPromotionSpec.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1SubscriptionUpgradeDowngradeDetails.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1UndoCancelSubscriptionRequest.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1UndoCancelSubscriptionResponse.php │ │ ├── GoogleCloudPaymentsResellerSubscriptionV1YoutubePayload.php │ │ ├── GoogleTypeLocalizedText.php │ │ └── Resource │ │ │ ├── Partners.php │ │ │ ├── PartnersProducts.php │ │ │ ├── PartnersPromotions.php │ │ │ └── PartnersSubscriptions.php │ │ ├── PeopleService.php │ │ ├── PeopleService │ │ ├── Address.php │ │ ├── AgeRangeType.php │ │ ├── BatchCreateContactsRequest.php │ │ ├── BatchCreateContactsResponse.php │ │ ├── BatchDeleteContactsRequest.php │ │ ├── BatchGetContactGroupsResponse.php │ │ ├── BatchUpdateContactsRequest.php │ │ ├── BatchUpdateContactsResponse.php │ │ ├── Biography.php │ │ ├── Birthday.php │ │ ├── BraggingRights.php │ │ ├── CalendarUrl.php │ │ ├── ClientData.php │ │ ├── ContactGroup.php │ │ ├── ContactGroupMembership.php │ │ ├── ContactGroupMetadata.php │ │ ├── ContactGroupResponse.php │ │ ├── ContactToCreate.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 │ │ ├── GroupClientData.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 │ │ ├── SearchResponse.php │ │ ├── SearchResult.php │ │ ├── SipAddress.php │ │ ├── Skill.php │ │ ├── Source.php │ │ ├── Status.php │ │ ├── Tagline.php │ │ ├── UpdateContactGroupRequest.php │ │ ├── UpdateContactPhotoRequest.php │ │ ├── UpdateContactPhotoResponse.php │ │ ├── Url.php │ │ └── UserDefined.php │ │ ├── PlayIntegrity.php │ │ ├── PlayIntegrity │ │ ├── AccountActivity.php │ │ ├── AccountDetails.php │ │ ├── AccountRiskVerdict.php │ │ ├── AppIntegrity.php │ │ ├── DecodeIntegrityTokenRequest.php │ │ ├── DecodeIntegrityTokenResponse.php │ │ ├── DeviceIntegrity.php │ │ ├── RequestDetails.php │ │ ├── Resource │ │ │ └── V1.php │ │ ├── TestingDetails.php │ │ └── TokenPayloadExternal.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 │ │ ├── Organization.php │ │ └── Resource │ │ │ ├── Accounts.php │ │ │ └── AccountsCustomApps.php │ │ ├── Playdeveloperreporting.php │ │ ├── Playdeveloperreporting │ │ ├── GooglePlayDeveloperReportingV1beta1Anomaly.php │ │ ├── GooglePlayDeveloperReportingV1beta1AnrRateMetricSet.php │ │ ├── GooglePlayDeveloperReportingV1beta1CrashRateMetricSet.php │ │ ├── GooglePlayDeveloperReportingV1beta1DimensionValue.php │ │ ├── GooglePlayDeveloperReportingV1beta1ExcessiveWakeupRateMetricSet.php │ │ ├── GooglePlayDeveloperReportingV1beta1FreshnessInfo.php │ │ ├── GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness.php │ │ ├── GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse.php │ │ ├── GooglePlayDeveloperReportingV1beta1MetricValue.php │ │ ├── GooglePlayDeveloperReportingV1beta1MetricsRow.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetRequest.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetResponse.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetRequest.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetResponse.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetRequest.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetResponse.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetRequest.php │ │ ├── GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetResponse.php │ │ ├── GooglePlayDeveloperReportingV1beta1StuckBackgroundWakelockRateMetricSet.php │ │ ├── GooglePlayDeveloperReportingV1beta1TimelineSpec.php │ │ ├── GoogleTypeDateTime.php │ │ ├── GoogleTypeDecimal.php │ │ ├── GoogleTypeTimeZone.php │ │ └── Resource │ │ │ ├── Anomalies.php │ │ │ ├── Vitals.php │ │ │ ├── VitalsAnrrate.php │ │ │ ├── VitalsCrashrate.php │ │ │ ├── VitalsExcessivewakeuprate.php │ │ │ └── VitalsStuckbackgroundwakelockrate.php │ │ ├── PolicyAnalyzer.php │ │ ├── PolicyAnalyzer │ │ ├── GoogleCloudPolicyanalyzerV1Activity.php │ │ ├── GoogleCloudPolicyanalyzerV1ObservationPeriod.php │ │ ├── GoogleCloudPolicyanalyzerV1QueryActivityResponse.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsActivityTypes.php │ │ │ └── ProjectsLocationsActivityTypesActivities.php │ │ ├── PolicySimulator.php │ │ ├── PolicySimulator │ │ ├── GoogleCloudPolicysimulatorV1AccessStateDiff.php │ │ ├── GoogleCloudPolicysimulatorV1AccessTuple.php │ │ ├── GoogleCloudPolicysimulatorV1BindingExplanation.php │ │ ├── GoogleCloudPolicysimulatorV1BindingExplanationAnnotatedMembership.php │ │ ├── GoogleCloudPolicysimulatorV1ExplainedAccess.php │ │ ├── GoogleCloudPolicysimulatorV1ExplainedPolicy.php │ │ ├── GoogleCloudPolicysimulatorV1ListReplayResultsResponse.php │ │ ├── GoogleCloudPolicysimulatorV1Replay.php │ │ ├── GoogleCloudPolicysimulatorV1ReplayConfig.php │ │ ├── GoogleCloudPolicysimulatorV1ReplayDiff.php │ │ ├── GoogleCloudPolicysimulatorV1ReplayOperationMetadata.php │ │ ├── GoogleCloudPolicysimulatorV1ReplayResult.php │ │ ├── GoogleCloudPolicysimulatorV1ReplayResultsSummary.php │ │ ├── GoogleCloudPolicysimulatorV1beta1Replay.php │ │ ├── GoogleCloudPolicysimulatorV1beta1ReplayConfig.php │ │ ├── GoogleCloudPolicysimulatorV1beta1ReplayOperationMetadata.php │ │ ├── GoogleCloudPolicysimulatorV1beta1ReplayResultsSummary.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleRpcStatus.php │ │ ├── GoogleTypeDate.php │ │ ├── GoogleTypeExpr.php │ │ └── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersLocations.php │ │ │ ├── FoldersLocationsOrgPolicyViolationsPreviews.php │ │ │ ├── FoldersLocationsOrgPolicyViolationsPreviewsOperations.php │ │ │ ├── FoldersLocationsReplays.php │ │ │ ├── FoldersLocationsReplaysOperations.php │ │ │ ├── FoldersLocationsReplaysResults.php │ │ │ ├── Operations.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsLocations.php │ │ │ ├── OrganizationsLocationsOrgPolicyViolationsPreviews.php │ │ │ ├── OrganizationsLocationsOrgPolicyViolationsPreviewsOperations.php │ │ │ ├── OrganizationsLocationsReplays.php │ │ │ ├── OrganizationsLocationsReplaysOperations.php │ │ │ ├── OrganizationsLocationsReplaysResults.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsOrgPolicyViolationsPreviews.php │ │ │ ├── ProjectsLocationsOrgPolicyViolationsPreviewsOperations.php │ │ │ ├── ProjectsLocationsReplays.php │ │ │ ├── ProjectsLocationsReplaysOperations.php │ │ │ └── ProjectsLocationsReplaysResults.php │ │ ├── PolicyTroubleshooter.php │ │ ├── PolicyTroubleshooter │ │ ├── GoogleCloudPolicytroubleshooterV1AccessTuple.php │ │ ├── GoogleCloudPolicytroubleshooterV1BindingExplanation.php │ │ ├── GoogleCloudPolicytroubleshooterV1BindingExplanationAnnotatedMembership.php │ │ ├── GoogleCloudPolicytroubleshooterV1ExplainedPolicy.php │ │ ├── GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyRequest.php │ │ ├── GoogleCloudPolicytroubleshooterV1TroubleshootIamPolicyResponse.php │ │ ├── GoogleIamV1AuditConfig.php │ │ ├── GoogleIamV1AuditLogConfig.php │ │ ├── GoogleIamV1Binding.php │ │ ├── GoogleIamV1Policy.php │ │ ├── GoogleRpcStatus.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 │ │ ├── Pubsub.php │ │ ├── Pubsub │ │ ├── AcknowledgeRequest.php │ │ ├── BigQueryConfig.php │ │ ├── Binding.php │ │ ├── CommitSchemaRequest.php │ │ ├── CreateSnapshotRequest.php │ │ ├── DeadLetterPolicy.php │ │ ├── DetachSubscriptionResponse.php │ │ ├── ExpirationPolicy.php │ │ ├── Expr.php │ │ ├── ListSchemaRevisionsResponse.php │ │ ├── ListSchemasResponse.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 │ │ │ ├── ProjectsSchemas.php │ │ │ ├── ProjectsSnapshots.php │ │ │ ├── ProjectsSubscriptions.php │ │ │ ├── ProjectsTopics.php │ │ │ ├── ProjectsTopicsSnapshots.php │ │ │ └── ProjectsTopicsSubscriptions.php │ │ ├── RetryPolicy.php │ │ ├── RollbackSchemaRequest.php │ │ ├── Schema.php │ │ ├── SchemaSettings.php │ │ ├── SeekRequest.php │ │ ├── SeekResponse.php │ │ ├── SetIamPolicyRequest.php │ │ ├── Snapshot.php │ │ ├── Subscription.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── Topic.php │ │ ├── UpdateSnapshotRequest.php │ │ ├── UpdateSubscriptionRequest.php │ │ ├── UpdateTopicRequest.php │ │ ├── ValidateMessageRequest.php │ │ ├── ValidateMessageResponse.php │ │ ├── ValidateSchemaRequest.php │ │ └── ValidateSchemaResponse.php │ │ ├── PubsubLite.php │ │ ├── PubsubLite │ │ ├── CancelOperationRequest.php │ │ ├── Capacity.php │ │ ├── CommitCursorRequest.php │ │ ├── CommitCursorResponse.php │ │ ├── ComputeHeadCursorRequest.php │ │ ├── ComputeHeadCursorResponse.php │ │ ├── ComputeMessageStatsRequest.php │ │ ├── ComputeMessageStatsResponse.php │ │ ├── ComputeTimeCursorRequest.php │ │ ├── ComputeTimeCursorResponse.php │ │ ├── Cursor.php │ │ ├── DeliveryConfig.php │ │ ├── ExportConfig.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPartitionCursorsResponse.php │ │ ├── ListReservationTopicsResponse.php │ │ ├── ListReservationsResponse.php │ │ ├── ListSubscriptionsResponse.php │ │ ├── ListTopicSubscriptionsResponse.php │ │ ├── ListTopicsResponse.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── PartitionConfig.php │ │ ├── PartitionCursor.php │ │ ├── PubSubConfig.php │ │ ├── PubsubliteEmpty.php │ │ ├── Reservation.php │ │ ├── ReservationConfig.php │ │ ├── Resource │ │ │ ├── Admin.php │ │ │ ├── AdminProjects.php │ │ │ ├── AdminProjectsLocations.php │ │ │ ├── AdminProjectsLocationsOperations.php │ │ │ ├── AdminProjectsLocationsReservations.php │ │ │ ├── AdminProjectsLocationsReservationsTopics.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 │ │ ├── SeekSubscriptionRequest.php │ │ ├── SeekSubscriptionResponse.php │ │ ├── Status.php │ │ ├── Subscription.php │ │ ├── TimeTarget.php │ │ ├── Topic.php │ │ └── TopicPartitions.php │ │ ├── RealTimeBidding.php │ │ ├── RealTimeBidding │ │ ├── ActivatePretargetingConfigRequest.php │ │ ├── AdTechnologyProviders.php │ │ ├── AddTargetedAppsRequest.php │ │ ├── AddTargetedPublishersRequest.php │ │ ├── AddTargetedSitesRequest.php │ │ ├── AdvertiserAndBrand.php │ │ ├── AppTargeting.php │ │ ├── BatchApprovePublisherConnectionsRequest.php │ │ ├── BatchApprovePublisherConnectionsResponse.php │ │ ├── BatchRejectPublisherConnectionsRequest.php │ │ ├── BatchRejectPublisherConnectionsResponse.php │ │ ├── Bidder.php │ │ ├── Buyer.php │ │ ├── CloseUserListRequest.php │ │ ├── Creative.php │ │ ├── CreativeDimensions.php │ │ ├── CreativeServingDecision.php │ │ ├── Date.php │ │ ├── DestinationNotCrawlableEvidence.php │ │ ├── DestinationNotWorkingEvidence.php │ │ ├── DestinationUrlEvidence.php │ │ ├── DomainCallEvidence.php │ │ ├── DomainCalls.php │ │ ├── DownloadSizeEvidence.php │ │ ├── Endpoint.php │ │ ├── GetRemarketingTagResponse.php │ │ ├── HtmlContent.php │ │ ├── HttpCallEvidence.php │ │ ├── HttpCookieEvidence.php │ │ ├── Image.php │ │ ├── ListBiddersResponse.php │ │ ├── ListBuyersResponse.php │ │ ├── ListCreativesResponse.php │ │ ├── ListEndpointsResponse.php │ │ ├── ListPretargetingConfigsResponse.php │ │ ├── ListPublisherConnectionsResponse.php │ │ ├── ListUserListsResponse.php │ │ ├── MediaFile.php │ │ ├── NativeContent.php │ │ ├── NumericTargetingDimension.php │ │ ├── OpenUserListRequest.php │ │ ├── PolicyCompliance.php │ │ ├── PolicyTopicEntry.php │ │ ├── PolicyTopicEvidence.php │ │ ├── PretargetingConfig.php │ │ ├── PublisherConnection.php │ │ ├── RealtimebiddingEmpty.php │ │ ├── RemoveTargetedAppsRequest.php │ │ ├── RemoveTargetedPublishersRequest.php │ │ ├── RemoveTargetedSitesRequest.php │ │ ├── Resource │ │ │ ├── Bidders.php │ │ │ ├── BiddersCreatives.php │ │ │ ├── BiddersEndpoints.php │ │ │ ├── BiddersPretargetingConfigs.php │ │ │ ├── BiddersPublisherConnections.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 │ │ ├── RecaptchaEnterprise.php │ │ ├── RecaptchaEnterprise │ │ ├── GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment.php │ │ ├── GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo.php │ │ ├── GoogleCloudRecaptchaenterpriseV1AndroidKeySettings.php │ │ ├── GoogleCloudRecaptchaenterpriseV1AnnotateAssessmentRequest.php │ │ ├── GoogleCloudRecaptchaenterpriseV1AnnotateAssessmentResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1Assessment.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ChallengeMetrics.php │ │ ├── GoogleCloudRecaptchaenterpriseV1EndpointVerificationInfo.php │ │ ├── GoogleCloudRecaptchaenterpriseV1Event.php │ │ ├── GoogleCloudRecaptchaenterpriseV1FraudPreventionAssessment.php │ │ ├── GoogleCloudRecaptchaenterpriseV1FraudPreventionAssessmentCardTestingVerdict.php │ │ ├── GoogleCloudRecaptchaenterpriseV1FraudPreventionAssessmentStolenInstrumentVerdict.php │ │ ├── GoogleCloudRecaptchaenterpriseV1IOSKeySettings.php │ │ ├── GoogleCloudRecaptchaenterpriseV1Key.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ListKeysResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ListRelatedAccountGroupMembershipsResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ListRelatedAccountGroupsResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1Metrics.php │ │ ├── GoogleCloudRecaptchaenterpriseV1MigrateKeyRequest.php │ │ ├── GoogleCloudRecaptchaenterpriseV1PrivatePasswordLeakVerification.php │ │ ├── GoogleCloudRecaptchaenterpriseV1RelatedAccountGroup.php │ │ ├── GoogleCloudRecaptchaenterpriseV1RelatedAccountGroupMembership.php │ │ ├── GoogleCloudRecaptchaenterpriseV1RetrieveLegacySecretKeyResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1RiskAnalysis.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ScoreDistribution.php │ │ ├── GoogleCloudRecaptchaenterpriseV1ScoreMetrics.php │ │ ├── GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest.php │ │ ├── GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsResponse.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TestingOptions.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TokenProperties.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionData.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionDataAddress.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionDataGatewayInfo.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionDataItem.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionDataUser.php │ │ ├── GoogleCloudRecaptchaenterpriseV1TransactionEvent.php │ │ ├── GoogleCloudRecaptchaenterpriseV1WafSettings.php │ │ ├── GoogleCloudRecaptchaenterpriseV1WebKeySettings.php │ │ ├── GoogleProtobufEmpty.php │ │ └── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsAssessments.php │ │ │ ├── ProjectsKeys.php │ │ │ ├── ProjectsRelatedaccountgroupmemberships.php │ │ │ ├── ProjectsRelatedaccountgroups.php │ │ │ └── ProjectsRelatedaccountgroupsMemberships.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 │ │ ├── GoogleCloudRecommenderV1InsightTypeConfig.php │ │ ├── GoogleCloudRecommenderV1InsightTypeGenerationConfig.php │ │ ├── GoogleCloudRecommenderV1ListInsightsResponse.php │ │ ├── GoogleCloudRecommenderV1ListRecommendationsResponse.php │ │ ├── GoogleCloudRecommenderV1MarkInsightAcceptedRequest.php │ │ ├── GoogleCloudRecommenderV1MarkRecommendationClaimedRequest.php │ │ ├── GoogleCloudRecommenderV1MarkRecommendationDismissedRequest.php │ │ ├── GoogleCloudRecommenderV1MarkRecommendationFailedRequest.php │ │ ├── GoogleCloudRecommenderV1MarkRecommendationSucceededRequest.php │ │ ├── GoogleCloudRecommenderV1Operation.php │ │ ├── GoogleCloudRecommenderV1OperationGroup.php │ │ ├── GoogleCloudRecommenderV1Recommendation.php │ │ ├── GoogleCloudRecommenderV1RecommendationContent.php │ │ ├── GoogleCloudRecommenderV1RecommendationInsightReference.php │ │ ├── GoogleCloudRecommenderV1RecommendationStateInfo.php │ │ ├── GoogleCloudRecommenderV1RecommenderConfig.php │ │ ├── GoogleCloudRecommenderV1RecommenderGenerationConfig.php │ │ ├── GoogleCloudRecommenderV1ReliabilityProjection.php │ │ ├── GoogleCloudRecommenderV1SecurityProjection.php │ │ ├── GoogleCloudRecommenderV1SustainabilityProjection.php │ │ ├── GoogleCloudRecommenderV1ValueMatcher.php │ │ ├── GoogleTypeMoney.php │ │ └── Resource │ │ │ ├── BillingAccounts.php │ │ │ ├── BillingAccountsLocations.php │ │ │ ├── BillingAccountsLocationsInsightTypes.php │ │ │ ├── BillingAccountsLocationsInsightTypesInsights.php │ │ │ ├── BillingAccountsLocationsRecommenders.php │ │ │ ├── BillingAccountsLocationsRecommendersRecommendations.php │ │ │ ├── Folders.php │ │ │ ├── FoldersLocations.php │ │ │ ├── FoldersLocationsInsightTypes.php │ │ │ ├── FoldersLocationsInsightTypesInsights.php │ │ │ ├── FoldersLocationsRecommenders.php │ │ │ ├── FoldersLocationsRecommendersRecommendations.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsLocations.php │ │ │ ├── OrganizationsLocationsInsightTypes.php │ │ │ ├── OrganizationsLocationsInsightTypesInsights.php │ │ │ ├── OrganizationsLocationsRecommenders.php │ │ │ ├── OrganizationsLocationsRecommendersRecommendations.php │ │ │ ├── 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 │ │ ├── BuildBazelRemoteExecutionV2NodeProperties.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 │ │ ├── GoogleDevtoolsRemotebuildbotResourceUsageIOStats.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── PrimaryAdmin.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 │ │ ├── ResourceSettings.php │ │ ├── ResourceSettings │ │ ├── GoogleCloudResourcesettingsV1ListSettingsResponse.php │ │ ├── GoogleCloudResourcesettingsV1Setting.php │ │ ├── GoogleCloudResourcesettingsV1SettingMetadata.php │ │ ├── GoogleCloudResourcesettingsV1Value.php │ │ ├── GoogleCloudResourcesettingsV1ValueEnumValue.php │ │ ├── GoogleCloudResourcesettingsV1ValueStringMap.php │ │ ├── GoogleCloudResourcesettingsV1ValueStringSet.php │ │ └── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersSettings.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsSettings.php │ │ │ ├── Projects.php │ │ │ └── ProjectsSettings.php │ │ ├── SA360.php │ │ ├── SA360 │ │ ├── GoogleAdsSearchads360V0CommonAgeRangeInfo.php │ │ ├── GoogleAdsSearchads360V0CommonCustomParameter.php │ │ ├── GoogleAdsSearchads360V0CommonDeviceInfo.php │ │ ├── GoogleAdsSearchads360V0CommonEnhancedCpc.php │ │ ├── GoogleAdsSearchads360V0CommonFrequencyCapEntry.php │ │ ├── GoogleAdsSearchads360V0CommonGenderInfo.php │ │ ├── GoogleAdsSearchads360V0CommonKeywordInfo.php │ │ ├── GoogleAdsSearchads360V0CommonLanguageInfo.php │ │ ├── GoogleAdsSearchads360V0CommonListingGroupInfo.php │ │ ├── GoogleAdsSearchads360V0CommonLocationGroupInfo.php │ │ ├── GoogleAdsSearchads360V0CommonLocationInfo.php │ │ ├── GoogleAdsSearchads360V0CommonManualCpa.php │ │ ├── GoogleAdsSearchads360V0CommonManualCpc.php │ │ ├── GoogleAdsSearchads360V0CommonManualCpm.php │ │ ├── GoogleAdsSearchads360V0CommonMaximizeConversionValue.php │ │ ├── GoogleAdsSearchads360V0CommonMaximizeConversions.php │ │ ├── GoogleAdsSearchads360V0CommonMetrics.php │ │ ├── GoogleAdsSearchads360V0CommonPercentCpc.php │ │ ├── GoogleAdsSearchads360V0CommonRealTimeBiddingSetting.php │ │ ├── GoogleAdsSearchads360V0CommonSegments.php │ │ ├── GoogleAdsSearchads360V0CommonTargetCpa.php │ │ ├── GoogleAdsSearchads360V0CommonTargetCpm.php │ │ ├── GoogleAdsSearchads360V0CommonTargetImpressionShare.php │ │ ├── GoogleAdsSearchads360V0CommonTargetOutrankShare.php │ │ ├── GoogleAdsSearchads360V0CommonTargetRoas.php │ │ ├── GoogleAdsSearchads360V0CommonTargetSpend.php │ │ ├── GoogleAdsSearchads360V0CommonValue.php │ │ ├── GoogleAdsSearchads360V0CommonWebpageConditionInfo.php │ │ ├── GoogleAdsSearchads360V0CommonWebpageInfo.php │ │ ├── GoogleAdsSearchads360V0ErrorsErrorCode.php │ │ ├── GoogleAdsSearchads360V0ErrorsErrorDetails.php │ │ ├── GoogleAdsSearchads360V0ErrorsErrorLocation.php │ │ ├── GoogleAdsSearchads360V0ErrorsErrorLocationFieldPathElement.php │ │ ├── GoogleAdsSearchads360V0ErrorsQuotaErrorDetails.php │ │ ├── GoogleAdsSearchads360V0ErrorsSearchAds360Error.php │ │ ├── GoogleAdsSearchads360V0ErrorsSearchAds360Failure.php │ │ ├── GoogleAdsSearchads360V0ResourcesAdGroup.php │ │ ├── GoogleAdsSearchads360V0ResourcesAdGroupBidModifier.php │ │ ├── GoogleAdsSearchads360V0ResourcesAdGroupCriterion.php │ │ ├── GoogleAdsSearchads360V0ResourcesAdGroupCriterionQualityInfo.php │ │ ├── GoogleAdsSearchads360V0ResourcesBiddingStrategy.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaign.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignBudget.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignCriterion.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignDynamicSearchAdsSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignGeoTargetTypeSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignNetworkSettings.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignOptimizationGoalSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignSelectiveOptimization.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignShoppingSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesCampaignTrackingSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesConversionAction.php │ │ ├── GoogleAdsSearchads360V0ResourcesConversionActionAttributionModelSettings.php │ │ ├── GoogleAdsSearchads360V0ResourcesConversionActionFloodlightSettings.php │ │ ├── GoogleAdsSearchads360V0ResourcesConversionActionValueSettings.php │ │ ├── GoogleAdsSearchads360V0ResourcesConversionTrackingSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesCustomColumn.php │ │ ├── GoogleAdsSearchads360V0ResourcesCustomer.php │ │ ├── GoogleAdsSearchads360V0ResourcesCustomerClient.php │ │ ├── GoogleAdsSearchads360V0ResourcesCustomerManagerLink.php │ │ ├── GoogleAdsSearchads360V0ResourcesDoubleClickCampaignManagerSetting.php │ │ ├── GoogleAdsSearchads360V0ResourcesKeywordView.php │ │ ├── GoogleAdsSearchads360V0ResourcesProductGroupView.php │ │ ├── GoogleAdsSearchads360V0ResourcesSearchAds360Field.php │ │ ├── GoogleAdsSearchads360V0ServicesCustomColumnHeader.php │ │ ├── GoogleAdsSearchads360V0ServicesListCustomColumnsResponse.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchAds360Row.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360FieldsRequest.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360FieldsResponse.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360Request.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360Response.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360StreamRequest.php │ │ ├── GoogleAdsSearchads360V0ServicesSearchSearchAds360StreamResponse.php │ │ └── Resource │ │ │ ├── Customers.php │ │ │ ├── CustomersCustomColumns.php │ │ │ ├── CustomersSearchAds360.php │ │ │ └── SearchAds360Fields.php │ │ ├── SASPortalTesting.php │ │ ├── SASPortalTesting │ │ ├── Resource │ │ │ ├── Customers.php │ │ │ ├── CustomersDeployments.php │ │ │ ├── CustomersDeploymentsDevices.php │ │ │ ├── CustomersDevices.php │ │ │ ├── CustomersNodes.php │ │ │ ├── CustomersNodesDeployments.php │ │ │ ├── CustomersNodesDevices.php │ │ │ ├── CustomersNodesNodes.php │ │ │ ├── Deployments.php │ │ │ ├── DeploymentsDevices.php │ │ │ ├── Installer.php │ │ │ ├── Nodes.php │ │ │ ├── NodesDeployments.php │ │ │ ├── NodesDeploymentsDevices.php │ │ │ ├── NodesDevices.php │ │ │ ├── NodesNodes.php │ │ │ ├── NodesNodesDeployments.php │ │ │ ├── NodesNodesDevices.php │ │ │ ├── NodesNodesNodes.php │ │ │ ├── Policies.php │ │ │ └── Provisioning.php │ │ ├── SasPortalAssignment.php │ │ ├── SasPortalChannelWithScore.php │ │ ├── SasPortalCreateSignedDeviceRequest.php │ │ ├── SasPortalCustomer.php │ │ ├── SasPortalDeployment.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 │ │ ├── SasPortalListDeploymentsResponse.php │ │ ├── SasPortalListDevicesResponse.php │ │ ├── SasPortalListNodesResponse.php │ │ ├── SasPortalMoveDeploymentRequest.php │ │ ├── SasPortalMoveDeviceRequest.php │ │ ├── SasPortalMoveNodeRequest.php │ │ ├── SasPortalNode.php │ │ ├── SasPortalNrqzValidation.php │ │ ├── SasPortalOperation.php │ │ ├── SasPortalPolicy.php │ │ ├── SasPortalProvisionDeploymentRequest.php │ │ ├── SasPortalProvisionDeploymentResponse.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 │ │ ├── BackupContext.php │ │ ├── BackupRetentionSettings.php │ │ ├── BackupRun.php │ │ ├── BackupRunsListResponse.php │ │ ├── BinLogCoordinates.php │ │ ├── CloneContext.php │ │ ├── ConnectSettings.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 │ │ ├── ExportContextBakExportOptions.php │ │ ├── ExportContextCsvExportOptions.php │ │ ├── ExportContextSqlExportOptions.php │ │ ├── ExportContextSqlExportOptionsMysqlExportOptions.php │ │ ├── FailoverContext.php │ │ ├── Flag.php │ │ ├── FlagsListResponse.php │ │ ├── GenerateEphemeralCertRequest.php │ │ ├── GenerateEphemeralCertResponse.php │ │ ├── ImportContext.php │ │ ├── ImportContextBakImportOptions.php │ │ ├── ImportContextBakImportOptionsEncryptionOptions.php │ │ ├── ImportContextCsvImportOptions.php │ │ ├── InsightsConfig.php │ │ ├── InstanceReference.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 │ │ ├── MySqlSyncConfig.php │ │ ├── OnPremisesConfiguration.php │ │ ├── Operation.php │ │ ├── OperationError.php │ │ ├── OperationErrors.php │ │ ├── OperationsListResponse.php │ │ ├── PasswordStatus.php │ │ ├── PasswordValidationPolicy.php │ │ ├── ReplicaConfiguration.php │ │ ├── Reschedule.php │ │ ├── Resource │ │ │ ├── BackupRuns.php │ │ │ ├── Connect.php │ │ │ ├── Databases.php │ │ │ ├── Flags.php │ │ │ ├── Instances.php │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsInstances.php │ │ │ ├── ProjectsInstancesCreateEphemeral.php │ │ │ ├── SslCerts.php │ │ │ ├── Tiers.php │ │ │ └── Users.php │ │ ├── RestoreBackupContext.php │ │ ├── RotateServerCaContext.php │ │ ├── Settings.php │ │ ├── SqlActiveDirectoryConfig.php │ │ ├── SqlExternalSyncSettingError.php │ │ ├── SqlInstancesRescheduleMaintenanceRequestBody.php │ │ ├── SqlInstancesStartExternalSyncRequest.php │ │ ├── SqlInstancesVerifyExternalSyncSettingsRequest.php │ │ ├── SqlInstancesVerifyExternalSyncSettingsResponse.php │ │ ├── SqlOutOfDiskReport.php │ │ ├── SqlScheduledMaintenance.php │ │ ├── SqlServerAuditConfig.php │ │ ├── SqlServerDatabaseDetails.php │ │ ├── SqlServerUserDetails.php │ │ ├── SslCert.php │ │ ├── SslCertDetail.php │ │ ├── SslCertsCreateEphemeralRequest.php │ │ ├── SslCertsInsertRequest.php │ │ ├── SslCertsInsertResponse.php │ │ ├── SslCertsListResponse.php │ │ ├── SyncFlags.php │ │ ├── Tier.php │ │ ├── TiersListResponse.php │ │ ├── TruncateLogContext.php │ │ ├── User.php │ │ ├── UserPasswordValidationPolicy.php │ │ └── UsersListResponse.php │ │ ├── Safebrowsing.php │ │ ├── Safebrowsing │ │ ├── Checksum.php │ │ ├── ClientInfo.php │ │ ├── Constraints.php │ │ ├── FetchThreatListUpdatesRequest.php │ │ ├── FetchThreatListUpdatesResponse.php │ │ ├── FindFullHashesRequest.php │ │ ├── FindFullHashesResponse.php │ │ ├── FindThreatMatchesRequest.php │ │ ├── FindThreatMatchesResponse.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleSecuritySafebrowsingV4Checksum.php │ │ ├── GoogleSecuritySafebrowsingV4ClientInfo.php │ │ ├── GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.php │ │ ├── GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.php │ │ ├── GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.php │ │ ├── GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.php │ │ ├── GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.php │ │ ├── GoogleSecuritySafebrowsingV4FindFullHashesRequest.php │ │ ├── GoogleSecuritySafebrowsingV4FindFullHashesResponse.php │ │ ├── GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.php │ │ ├── GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.php │ │ ├── GoogleSecuritySafebrowsingV4ListThreatListsResponse.php │ │ ├── GoogleSecuritySafebrowsingV4RawHashes.php │ │ ├── GoogleSecuritySafebrowsingV4RawIndices.php │ │ ├── GoogleSecuritySafebrowsingV4RiceDeltaEncoding.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatEntry.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatEntryMetadata.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatEntrySet.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatHit.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatHitThreatSource.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatHitUserInfo.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatInfo.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatListDescriptor.php │ │ ├── GoogleSecuritySafebrowsingV4ThreatMatch.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 │ │ │ ├── CustomersNodesDeployments.php │ │ │ ├── CustomersNodesDevices.php │ │ │ ├── CustomersNodesNodes.php │ │ │ ├── Deployments.php │ │ │ ├── DeploymentsDevices.php │ │ │ ├── Installer.php │ │ │ ├── Nodes.php │ │ │ ├── NodesDeployments.php │ │ │ ├── NodesDeploymentsDevices.php │ │ │ ├── NodesDevices.php │ │ │ ├── NodesNodes.php │ │ │ ├── NodesNodesDeployments.php │ │ │ ├── NodesNodesDevices.php │ │ │ ├── NodesNodesNodes.php │ │ │ └── Policies.php │ │ ├── SasPortalAssignment.php │ │ ├── SasPortalChannelWithScore.php │ │ ├── SasPortalCreateSignedDeviceRequest.php │ │ ├── SasPortalCustomer.php │ │ ├── SasPortalDeployment.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 │ │ ├── SasPortalListDeploymentsResponse.php │ │ ├── SasPortalListDevicesResponse.php │ │ ├── SasPortalListNodesResponse.php │ │ ├── SasPortalMoveDeploymentRequest.php │ │ ├── SasPortalMoveDeviceRequest.php │ │ ├── SasPortalMoveNodeRequest.php │ │ ├── SasPortalNode.php │ │ ├── SasPortalNrqzValidation.php │ │ ├── SasPortalOperation.php │ │ ├── SasPortalPolicy.php │ │ ├── SasPortalProvisionDeploymentRequest.php │ │ ├── SasPortalProvisionDeploymentResponse.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 │ │ ├── AmpInspectionResult.php │ │ ├── AmpIssue.php │ │ ├── ApiDataRow.php │ │ ├── ApiDimensionFilter.php │ │ ├── ApiDimensionFilterGroup.php │ │ ├── BlockedResource.php │ │ ├── DetectedItems.php │ │ ├── Image.php │ │ ├── IndexStatusInspectionResult.php │ │ ├── InspectUrlIndexRequest.php │ │ ├── InspectUrlIndexResponse.php │ │ ├── Item.php │ │ ├── MobileFriendlyIssue.php │ │ ├── MobileUsabilityInspectionResult.php │ │ ├── MobileUsabilityIssue.php │ │ ├── Resource │ │ │ ├── Searchanalytics.php │ │ │ ├── Sitemaps.php │ │ │ ├── Sites.php │ │ │ ├── UrlInspection.php │ │ │ ├── UrlInspectionIndex.php │ │ │ ├── UrlTestingTools.php │ │ │ └── UrlTestingToolsMobileFriendlyTest.php │ │ ├── ResourceIssue.php │ │ ├── RichResultsInspectionResult.php │ │ ├── RichResultsIssue.php │ │ ├── RunMobileFriendlyTestRequest.php │ │ ├── RunMobileFriendlyTestResponse.php │ │ ├── SearchAnalyticsQueryRequest.php │ │ ├── SearchAnalyticsQueryResponse.php │ │ ├── SitemapsListResponse.php │ │ ├── SitesListResponse.php │ │ ├── TestStatus.php │ │ ├── UrlInspectionResult.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 │ │ ├── Rotation.php │ │ ├── Secret.php │ │ ├── SecretPayload.php │ │ ├── SecretVersion.php │ │ ├── SecretmanagerEmpty.php │ │ ├── SetIamPolicyRequest.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── Topic.php │ │ ├── UserManaged.php │ │ └── UserManagedStatus.php │ │ ├── SecurityCommandCenter.php │ │ ├── SecurityCommandCenter │ │ ├── Access.php │ │ ├── AccessReview.php │ │ ├── Asset.php │ │ ├── AssetDiscoveryConfig.php │ │ ├── AssociatedFinding.php │ │ ├── AuditConfig.php │ │ ├── AuditLogConfig.php │ │ ├── Binding.php │ │ ├── BulkMuteFindingsRequest.php │ │ ├── Compliance.php │ │ ├── Connection.php │ │ ├── Contact.php │ │ ├── ContactDetails.php │ │ ├── Container.php │ │ ├── Cve.php │ │ ├── Cvssv3.php │ │ ├── Database.php │ │ ├── Detection.php │ │ ├── Edge.php │ │ ├── EnvironmentVariable.php │ │ ├── ExfilResource.php │ │ ├── Exfiltration.php │ │ ├── Expr.php │ │ ├── Finding.php │ │ ├── Folder.php │ │ ├── Geolocation.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── GoogleCloudSecuritycenterV1BigQueryExport.php │ │ ├── GoogleCloudSecuritycenterV1Binding.php │ │ ├── GoogleCloudSecuritycenterV1BulkMuteFindingsResponse.php │ │ ├── GoogleCloudSecuritycenterV1ExposedResource.php │ │ ├── GoogleCloudSecuritycenterV1ExposurePath.php │ │ ├── GoogleCloudSecuritycenterV1ExternalSystem.php │ │ ├── GoogleCloudSecuritycenterV1MuteConfig.php │ │ ├── GoogleCloudSecuritycenterV1NotificationMessage.php │ │ ├── GoogleCloudSecuritycenterV1Resource.php │ │ ├── GoogleCloudSecuritycenterV1ResourceValueConfig.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 │ │ ├── IamBinding.php │ │ ├── IamPolicy.php │ │ ├── Indicator.php │ │ ├── KernelRootkit.php │ │ ├── Kubernetes.php │ │ ├── Label.php │ │ ├── ListAssetsResponse.php │ │ ├── ListAssetsResult.php │ │ ├── ListBigQueryExportsResponse.php │ │ ├── ListFindingsResponse.php │ │ ├── ListFindingsResult.php │ │ ├── ListMuteConfigsResponse.php │ │ ├── ListNotificationConfigsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListSourcesResponse.php │ │ ├── MemoryHashSignature.php │ │ ├── MitreAttack.php │ │ ├── Node.php │ │ ├── NodePool.php │ │ ├── NotificationConfig.php │ │ ├── Operation.php │ │ ├── OrganizationSettings.php │ │ ├── PathNode.php │ │ ├── Pod.php │ │ ├── Policy.php │ │ ├── Process.php │ │ ├── ProcessSignature.php │ │ ├── Reference.php │ │ ├── Resource │ │ │ ├── Folders.php │ │ │ ├── FoldersAssets.php │ │ │ ├── FoldersBigQueryExports.php │ │ │ ├── FoldersFindings.php │ │ │ ├── FoldersMuteConfigs.php │ │ │ ├── FoldersNotificationConfigs.php │ │ │ ├── FoldersSources.php │ │ │ ├── FoldersSourcesFindings.php │ │ │ ├── FoldersSourcesFindingsExternalSystems.php │ │ │ ├── Organizations.php │ │ │ ├── OrganizationsAssets.php │ │ │ ├── OrganizationsBigQueryExports.php │ │ │ ├── OrganizationsFindings.php │ │ │ ├── OrganizationsMuteConfigs.php │ │ │ ├── OrganizationsNotificationConfigs.php │ │ │ ├── OrganizationsOperations.php │ │ │ ├── OrganizationsSources.php │ │ │ ├── OrganizationsSourcesFindings.php │ │ │ ├── OrganizationsSourcesFindingsExternalSystems.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsAssets.php │ │ │ ├── ProjectsBigQueryExports.php │ │ │ ├── ProjectsFindings.php │ │ │ ├── ProjectsMuteConfigs.php │ │ │ ├── ProjectsNotificationConfigs.php │ │ │ ├── ProjectsSources.php │ │ │ ├── ProjectsSourcesFindings.php │ │ │ └── ProjectsSourcesFindingsExternalSystems.php │ │ ├── Role.php │ │ ├── RunAssetDiscoveryRequest.php │ │ ├── SecurityCenterProperties.php │ │ ├── SecurityMarks.php │ │ ├── SecuritycenterEmpty.php │ │ ├── SecuritycenterFile.php │ │ ├── SecuritycenterResource.php │ │ ├── ServiceAccountDelegationInfo.php │ │ ├── SetFindingStateRequest.php │ │ ├── SetIamPolicyRequest.php │ │ ├── SetMuteRequest.php │ │ ├── Source.php │ │ ├── Status.php │ │ ├── StreamingConfig.php │ │ ├── Subject.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── Vulnerability.php │ │ └── YaraRuleSignature.php │ │ ├── SemanticTile.php │ │ ├── SemanticTile │ │ ├── Area.php │ │ ├── BasemapZOrder.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 │ │ ├── ServerlessVPCAccess.php │ │ ├── ServerlessVPCAccess │ │ ├── Connector.php │ │ ├── ListConnectorsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── OperationMetadataV1Alpha1.php │ │ ├── OperationMetadataV1Beta1.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsConnectors.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── Status.php │ │ └── Subnet.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 │ │ ├── ClientLibrarySettings.php │ │ ├── CommonLanguageSettings.php │ │ ├── Context.php │ │ ├── ContextRule.php │ │ ├── Control.php │ │ ├── CppSettings.php │ │ ├── CreateTenancyUnitRequest.php │ │ ├── CustomError.php │ │ ├── CustomErrorRule.php │ │ ├── CustomHttpPattern.php │ │ ├── DeleteTenantProjectRequest.php │ │ ├── Documentation.php │ │ ├── DocumentationRule.php │ │ ├── DotnetSettings.php │ │ ├── Endpoint.php │ │ ├── Enum.php │ │ ├── EnumValue.php │ │ ├── Field.php │ │ ├── GoSettings.php │ │ ├── Http.php │ │ ├── HttpRule.php │ │ ├── JavaSettings.php │ │ ├── JwtLocation.php │ │ ├── LabelDescriptor.php │ │ ├── ListOperationsResponse.php │ │ ├── ListTenancyUnitsResponse.php │ │ ├── LogDescriptor.php │ │ ├── Logging.php │ │ ├── LoggingDestination.php │ │ ├── LongRunning.php │ │ ├── Method.php │ │ ├── MethodSettings.php │ │ ├── MetricDescriptor.php │ │ ├── MetricDescriptorMetadata.php │ │ ├── MetricRule.php │ │ ├── Mixin.php │ │ ├── MonitoredResourceDescriptor.php │ │ ├── Monitoring.php │ │ ├── MonitoringDestination.php │ │ ├── NodeSettings.php │ │ ├── OAuthRequirements.php │ │ ├── Operation.php │ │ ├── Option.php │ │ ├── Page.php │ │ ├── PhpSettings.php │ │ ├── PolicyBinding.php │ │ ├── Publishing.php │ │ ├── PythonSettings.php │ │ ├── Quota.php │ │ ├── QuotaLimit.php │ │ ├── RemoveTenantProjectRequest.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Services.php │ │ │ └── ServicesTenancyUnits.php │ │ ├── RubySettings.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 │ │ ├── EsfMigrationServerOverride.php │ │ ├── FirstPartyPrincipal.php │ │ ├── OrgPolicyViolationInfo.php │ │ ├── Peer.php │ │ ├── PolicyViolationInfo.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 │ │ ├── V2HttpRequest.php │ │ ├── V2LogEntry.php │ │ ├── V2LogEntryOperation.php │ │ ├── V2LogEntrySourceLocation.php │ │ └── ViolationInfo.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 │ │ ├── ClientLibrarySettings.php │ │ ├── CommonLanguageSettings.php │ │ ├── ConfigChange.php │ │ ├── ConfigFile.php │ │ ├── ConfigRef.php │ │ ├── ConfigSource.php │ │ ├── Context.php │ │ ├── ContextRule.php │ │ ├── Control.php │ │ ├── CppSettings.php │ │ ├── CustomError.php │ │ ├── CustomErrorRule.php │ │ ├── CustomHttpPattern.php │ │ ├── DeleteServiceStrategy.php │ │ ├── Diagnostic.php │ │ ├── Documentation.php │ │ ├── DocumentationRule.php │ │ ├── DotnetSettings.php │ │ ├── EnableServiceResponse.php │ │ ├── Endpoint.php │ │ ├── Enum.php │ │ ├── EnumValue.php │ │ ├── Expr.php │ │ ├── Field.php │ │ ├── FlowErrorDetails.php │ │ ├── GenerateConfigReportRequest.php │ │ ├── GenerateConfigReportResponse.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── GoSettings.php │ │ ├── Http.php │ │ ├── HttpRule.php │ │ ├── JavaSettings.php │ │ ├── JwtLocation.php │ │ ├── LabelDescriptor.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServiceConfigsResponse.php │ │ ├── ListServiceRolloutsResponse.php │ │ ├── ListServicesResponse.php │ │ ├── LogDescriptor.php │ │ ├── Logging.php │ │ ├── LoggingDestination.php │ │ ├── LongRunning.php │ │ ├── ManagedService.php │ │ ├── Method.php │ │ ├── MethodSettings.php │ │ ├── MetricDescriptor.php │ │ ├── MetricDescriptorMetadata.php │ │ ├── MetricRule.php │ │ ├── Mixin.php │ │ ├── MonitoredResourceDescriptor.php │ │ ├── Monitoring.php │ │ ├── MonitoringDestination.php │ │ ├── NodeSettings.php │ │ ├── OAuthRequirements.php │ │ ├── Operation.php │ │ ├── OperationInfo.php │ │ ├── OperationMetadata.php │ │ ├── Option.php │ │ ├── Page.php │ │ ├── PhpSettings.php │ │ ├── Policy.php │ │ ├── Publishing.php │ │ ├── PythonSettings.php │ │ ├── Quota.php │ │ ├── QuotaLimit.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Services.php │ │ │ ├── ServicesConfigs.php │ │ │ ├── ServicesConsumers.php │ │ │ └── ServicesRollouts.php │ │ ├── ResourceReference.php │ │ ├── Rollout.php │ │ ├── RubySettings.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 │ │ ├── ClientLibrarySettings.php │ │ ├── CloudSQLConfig.php │ │ ├── CommonLanguageSettings.php │ │ ├── Connection.php │ │ ├── ConsumerConfig.php │ │ ├── ConsumerConfigMetadata.php │ │ ├── ConsumerProject.php │ │ ├── Context.php │ │ ├── ContextRule.php │ │ ├── Control.php │ │ ├── CppSettings.php │ │ ├── CustomError.php │ │ ├── CustomErrorRule.php │ │ ├── CustomHttpPattern.php │ │ ├── DeleteConnectionMetadata.php │ │ ├── DeleteConnectionRequest.php │ │ ├── DeletePeeredDnsDomainMetadata.php │ │ ├── DisableVpcServiceControlsRequest.php │ │ ├── DnsRecordSet.php │ │ ├── DnsZone.php │ │ ├── Documentation.php │ │ ├── DocumentationRule.php │ │ ├── DotnetSettings.php │ │ ├── EnableVpcServiceControlsRequest.php │ │ ├── Endpoint.php │ │ ├── Enum.php │ │ ├── EnumValue.php │ │ ├── Field.php │ │ ├── GoSettings.php │ │ ├── GoogleCloudServicenetworkingV1ConsumerConfigReservedRange.php │ │ ├── GoogleCloudServicenetworkingV1betaConnection.php │ │ ├── GoogleCloudServicenetworkingV1betaSubnetwork.php │ │ ├── Http.php │ │ ├── HttpRule.php │ │ ├── JavaSettings.php │ │ ├── JwtLocation.php │ │ ├── LabelDescriptor.php │ │ ├── ListConnectionsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPeeredDnsDomainsResponse.php │ │ ├── LogDescriptor.php │ │ ├── Logging.php │ │ ├── LoggingDestination.php │ │ ├── LongRunning.php │ │ ├── Method.php │ │ ├── MethodSettings.php │ │ ├── MetricDescriptor.php │ │ ├── MetricDescriptorMetadata.php │ │ ├── MetricRule.php │ │ ├── Mixin.php │ │ ├── MonitoredResourceDescriptor.php │ │ ├── Monitoring.php │ │ ├── MonitoringDestination.php │ │ ├── NodeSettings.php │ │ ├── OAuthRequirements.php │ │ ├── Operation.php │ │ ├── Option.php │ │ ├── Page.php │ │ ├── PartialDeleteConnectionMetadata.php │ │ ├── PeeredDnsDomain.php │ │ ├── PeeredDnsDomainMetadata.php │ │ ├── PhpSettings.php │ │ ├── PolicyBinding.php │ │ ├── Publishing.php │ │ ├── PythonSettings.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 │ │ ├── RubySettings.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 │ │ ├── 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 │ │ ├── ClientLibrarySettings.php │ │ ├── CommonLanguageSettings.php │ │ ├── Context.php │ │ ├── ContextRule.php │ │ ├── Control.php │ │ ├── CppSettings.php │ │ ├── CreateAdminQuotaPolicyMetadata.php │ │ ├── CustomError.php │ │ ├── CustomErrorRule.php │ │ ├── CustomHttpPattern.php │ │ ├── DeleteAdminQuotaPolicyMetadata.php │ │ ├── DisableServiceRequest.php │ │ ├── DisableServiceResponse.php │ │ ├── Documentation.php │ │ ├── DocumentationRule.php │ │ ├── DotnetSettings.php │ │ ├── EnableFailure.php │ │ ├── EnableServiceRequest.php │ │ ├── EnableServiceResponse.php │ │ ├── Endpoint.php │ │ ├── Enum.php │ │ ├── EnumValue.php │ │ ├── Field.php │ │ ├── GetServiceIdentityMetadata.php │ │ ├── GetServiceIdentityResponse.php │ │ ├── GoSettings.php │ │ ├── GoogleApiService.php │ │ ├── GoogleApiServiceusageV1OperationMetadata.php │ │ ├── GoogleApiServiceusageV1Service.php │ │ ├── GoogleApiServiceusageV1ServiceConfig.php │ │ ├── GoogleApiServiceusageV1beta1GetServiceIdentityResponse.php │ │ ├── GoogleApiServiceusageV1beta1ServiceIdentity.php │ │ ├── Http.php │ │ ├── HttpRule.php │ │ ├── ImportAdminOverridesMetadata.php │ │ ├── ImportAdminOverridesResponse.php │ │ ├── ImportAdminQuotaPoliciesMetadata.php │ │ ├── ImportAdminQuotaPoliciesResponse.php │ │ ├── ImportConsumerOverridesMetadata.php │ │ ├── ImportConsumerOverridesResponse.php │ │ ├── JavaSettings.php │ │ ├── JwtLocation.php │ │ ├── LabelDescriptor.php │ │ ├── ListOperationsResponse.php │ │ ├── ListServicesResponse.php │ │ ├── LogDescriptor.php │ │ ├── Logging.php │ │ ├── LoggingDestination.php │ │ ├── LongRunning.php │ │ ├── Method.php │ │ ├── MethodSettings.php │ │ ├── MetricDescriptor.php │ │ ├── MetricDescriptorMetadata.php │ │ ├── MetricRule.php │ │ ├── Mixin.php │ │ ├── MonitoredResourceDescriptor.php │ │ ├── Monitoring.php │ │ ├── MonitoringDestination.php │ │ ├── NodeSettings.php │ │ ├── OAuthRequirements.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Option.php │ │ ├── Page.php │ │ ├── PhpSettings.php │ │ ├── Publishing.php │ │ ├── PythonSettings.php │ │ ├── Quota.php │ │ ├── QuotaLimit.php │ │ ├── QuotaOverride.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ └── Services.php │ │ ├── RubySettings.php │ │ ├── ServiceIdentity.php │ │ ├── ServiceusageEmpty.php │ │ ├── SourceContext.php │ │ ├── SourceInfo.php │ │ ├── Status.php │ │ ├── SystemParameter.php │ │ ├── SystemParameterRule.php │ │ ├── SystemParameters.php │ │ ├── Type.php │ │ ├── UpdateAdminQuotaPolicyMetadata.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 │ │ ├── BasicSeriesDataPointStyleOverride.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 │ │ ├── DataLabel.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 │ │ ├── EmbeddedObjectBorder.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 │ │ ├── Link.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 │ │ ├── PointStyle.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 │ │ ├── UpdateEmbeddedObjectBorderRequest.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 │ │ ├── AccountAutomaticImprovements.php │ │ ├── AccountBusinessInformation.php │ │ ├── AccountConversionSettings.php │ │ ├── AccountCredentials.php │ │ ├── AccountCustomerService.php │ │ ├── AccountGoogleMyBusinessLink.php │ │ ├── AccountIdentifier.php │ │ ├── AccountImageImprovements.php │ │ ├── AccountImageImprovementsSettings.php │ │ ├── AccountItemUpdates.php │ │ ├── AccountItemUpdatesSettings.php │ │ ├── AccountLabel.php │ │ ├── AccountReturnCarrier.php │ │ ├── AccountShippingImprovements.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 │ │ ├── ActivateBuyOnGoogleProgramRequest.php │ │ ├── Address.php │ │ ├── Amount.php │ │ ├── AttributionSettings.php │ │ ├── AttributionSettingsConversionType.php │ │ ├── BestSellers.php │ │ ├── Brand.php │ │ ├── BusinessDayConfig.php │ │ ├── BuyOnGoogleProgramStatus.php │ │ ├── CaptureOrderRequest.php │ │ ├── CaptureOrderResponse.php │ │ ├── CarrierRate.php │ │ ├── CarriersCarrier.php │ │ ├── Collection.php │ │ ├── CollectionFeaturedProduct.php │ │ ├── CollectionStatus.php │ │ ├── CollectionStatusDestinationStatus.php │ │ ├── CollectionStatusItemLevelIssue.php │ │ ├── ConversionSource.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 │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── DeliveryArea.php │ │ ├── DeliveryAreaPostalCodeRange.php │ │ ├── DeliveryTime.php │ │ ├── ECommercePlatformLinkInfo.php │ │ ├── Error.php │ │ ├── Errors.php │ │ ├── FreeListingsProgramStatus.php │ │ ├── FreeListingsProgramStatusRegionStatus.php │ │ ├── FreeListingsProgramStatusReviewIneligibilityReasonDetails.php │ │ ├── GmbAccounts.php │ │ ├── GmbAccountsGmbAccount.php │ │ ├── GoogleAnalyticsLink.php │ │ ├── Headers.php │ │ ├── HolidayCutoff.php │ │ ├── HolidaysHoliday.php │ │ ├── InapplicabilityDetails.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 │ │ ├── ListAccountReturnCarrierResponse.php │ │ ├── ListCollectionStatusesResponse.php │ │ ├── ListCollectionsResponse.php │ │ ├── ListConversionSourcesResponse.php │ │ ├── ListCssesResponse.php │ │ ├── ListMethodQuotasResponse.php │ │ ├── ListRegionsResponse.php │ │ ├── ListRepricingProductReportsResponse.php │ │ ├── ListRepricingRuleReportsResponse.php │ │ ├── ListRepricingRulesResponse.php │ │ ├── ListReturnPolicyOnlineResponse.php │ │ ├── LocalInventory.php │ │ ├── LocalinventoryCustomBatchRequest.php │ │ ├── LocalinventoryCustomBatchRequestEntry.php │ │ ├── LocalinventoryCustomBatchResponse.php │ │ ├── LocalinventoryCustomBatchResponseEntry.php │ │ ├── LocationIdSet.php │ │ ├── LoyaltyPoints.php │ │ ├── MerchantCenterDestination.php │ │ ├── MerchantOrderReturn.php │ │ ├── MerchantOrderReturnItem.php │ │ ├── MerchantRejectionReason.php │ │ ├── MethodQuota.php │ │ ├── Metrics.php │ │ ├── MinimumOrderValueTable.php │ │ ├── MinimumOrderValueTableStoreCodeSetWithMov.php │ │ ├── MonetaryAmount.php │ │ ├── OnboardBuyOnGoogleProgramRequest.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 │ │ ├── OrdersCustomBatchRequestEntryUpdateShipmentScheduledDeliveryDetails.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 │ │ ├── PauseBuyOnGoogleProgramRequest.php │ │ ├── PaymentServiceProviderLinkInfo.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 │ │ ├── PriceCompetitiveness.php │ │ ├── PriceInsights.php │ │ ├── Product.php │ │ ├── ProductAmount.php │ │ ├── ProductCluster.php │ │ ├── ProductDeliveryTime.php │ │ ├── ProductDeliveryTimeAreaDeliveryTime.php │ │ ├── ProductDeliveryTimeAreaDeliveryTimeDeliveryTime.php │ │ ├── ProductDimension.php │ │ ├── ProductId.php │ │ ├── ProductProductDetail.php │ │ ├── ProductShipping.php │ │ ├── ProductShippingDimension.php │ │ ├── ProductShippingWeight.php │ │ ├── ProductStatus.php │ │ ├── ProductStatusDestinationStatus.php │ │ ├── ProductStatusItemLevelIssue.php │ │ ├── ProductSubscriptionCost.php │ │ ├── ProductTax.php │ │ ├── ProductUnitPricingBaseMeasure.php │ │ ├── ProductUnitPricingMeasure.php │ │ ├── ProductView.php │ │ ├── ProductViewItemIssue.php │ │ ├── ProductViewItemIssueIssueSeverityPerDestination.php │ │ ├── ProductViewItemIssueItemIssueSeverity.php │ │ ├── ProductViewItemIssueItemIssueType.php │ │ ├── ProductWeight.php │ │ ├── ProductsCustomBatchRequest.php │ │ ├── ProductsCustomBatchRequestEntry.php │ │ ├── ProductsCustomBatchResponse.php │ │ ├── ProductsCustomBatchResponseEntry.php │ │ ├── ProductsListResponse.php │ │ ├── ProductstatusesCustomBatchRequest.php │ │ ├── ProductstatusesCustomBatchRequestEntry.php │ │ ├── ProductstatusesCustomBatchResponse.php │ │ ├── ProductstatusesCustomBatchResponseEntry.php │ │ ├── ProductstatusesListResponse.php │ │ ├── Promotion.php │ │ ├── PromotionPromotionStatus.php │ │ ├── PromotionPromotionStatusDestinationStatus.php │ │ ├── PromotionPromotionStatusPromotionIssue.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 │ │ ├── ReportRow.php │ │ ├── RepricingProductReport.php │ │ ├── RepricingProductReportBuyboxWinningProductStats.php │ │ ├── RepricingRule.php │ │ ├── RepricingRuleCostOfGoodsSaleRule.php │ │ ├── RepricingRuleEffectiveTime.php │ │ ├── RepricingRuleEffectiveTimeFixedTimePeriod.php │ │ ├── RepricingRuleEligibleOfferMatcher.php │ │ ├── RepricingRuleEligibleOfferMatcherStringMatcher.php │ │ ├── RepricingRuleReport.php │ │ ├── RepricingRuleReportBuyboxWinningRuleStats.php │ │ ├── RepricingRuleRestriction.php │ │ ├── RepricingRuleRestrictionBoundary.php │ │ ├── RepricingRuleStatsBasedRule.php │ │ ├── RequestPhoneVerificationRequest.php │ │ ├── RequestPhoneVerificationResponse.php │ │ ├── RequestReviewBuyOnGoogleProgramRequest.php │ │ ├── RequestReviewFreeListingsRequest.php │ │ ├── RequestReviewShoppingAdsRequest.php │ │ ├── Resource │ │ │ ├── Accounts.php │ │ │ ├── AccountsCredentials.php │ │ │ ├── AccountsLabels.php │ │ │ ├── AccountsReturncarrier.php │ │ │ ├── Accountsbyexternalsellerid.php │ │ │ ├── Accountstatuses.php │ │ │ ├── Accountstatusesbyexternalsellerid.php │ │ │ ├── Accounttax.php │ │ │ ├── Buyongoogleprograms.php │ │ │ ├── Collections.php │ │ │ ├── Collectionstatuses.php │ │ │ ├── Conversionsources.php │ │ │ ├── Csses.php │ │ │ ├── Datafeeds.php │ │ │ ├── Datafeedstatuses.php │ │ │ ├── Freelistingsprogram.php │ │ │ ├── Liasettings.php │ │ │ ├── Localinventory.php │ │ │ ├── Orderinvoices.php │ │ │ ├── Orderreports.php │ │ │ ├── Orderreturns.php │ │ │ ├── OrderreturnsLabels.php │ │ │ ├── Orders.php │ │ │ ├── Ordertrackingsignals.php │ │ │ ├── Pos.php │ │ │ ├── Productdeliverytime.php │ │ │ ├── Products.php │ │ │ ├── Productstatuses.php │ │ │ ├── ProductstatusesRepricingreports.php │ │ │ ├── Promotions.php │ │ │ ├── Pubsubnotificationsettings.php │ │ │ ├── Quotas.php │ │ │ ├── Regionalinventory.php │ │ │ ├── Regions.php │ │ │ ├── Reports.php │ │ │ ├── Repricingrules.php │ │ │ ├── RepricingrulesRepricingreports.php │ │ │ ├── Returnaddress.php │ │ │ ├── Returnpolicy.php │ │ │ ├── Returnpolicyonline.php │ │ │ ├── Settlementreports.php │ │ │ ├── Settlementtransactions.php │ │ │ ├── Shippingsettings.php │ │ │ └── Shoppingadsprogram.php │ │ ├── ReturnAddress.php │ │ ├── ReturnAddressAddress.php │ │ ├── ReturnPolicy.php │ │ ├── ReturnPolicyOnline.php │ │ ├── ReturnPolicyOnlinePolicy.php │ │ ├── ReturnPolicyOnlineRestockingFee.php │ │ ├── ReturnPolicyOnlineReturnReasonCategoryInfo.php │ │ ├── ReturnPolicyOnlineReturnShippingFee.php │ │ ├── ReturnPolicyPolicy.php │ │ ├── ReturnPolicySeasonalOverride.php │ │ ├── ReturnPricingInfo.php │ │ ├── ReturnShipment.php │ │ ├── ReturnShippingLabel.php │ │ ├── ReturnaddressCustomBatchRequest.php │ │ ├── ReturnaddressCustomBatchRequestEntry.php │ │ ├── ReturnaddressCustomBatchResponse.php │ │ ├── ReturnaddressCustomBatchResponseEntry.php │ │ ├── ReturnaddressListResponse.php │ │ ├── ReturnpolicyCustomBatchRequest.php │ │ ├── ReturnpolicyCustomBatchRequestEntry.php │ │ ├── ReturnpolicyCustomBatchResponse.php │ │ ├── ReturnpolicyCustomBatchResponseEntry.php │ │ ├── ReturnpolicyListResponse.php │ │ ├── Row.php │ │ ├── SearchRequest.php │ │ ├── SearchResponse.php │ │ ├── Segments.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 │ │ ├── ShoppingAdsProgramStatus.php │ │ ├── ShoppingAdsProgramStatusRegionStatus.php │ │ ├── ShoppingAdsProgramStatusReviewIneligibilityReasonDetails.php │ │ ├── Table.php │ │ ├── TestOrder.php │ │ ├── TestOrderAddress.php │ │ ├── TestOrderDeliveryDetails.php │ │ ├── TestOrderLineItem.php │ │ ├── TestOrderLineItemProduct.php │ │ ├── TestOrderPickupDetails.php │ │ ├── TestOrderPickupDetailsPickupPerson.php │ │ ├── TimePeriod.php │ │ ├── TimeZone.php │ │ ├── TransitTable.php │ │ ├── TransitTableTransitTimeRow.php │ │ ├── TransitTableTransitTimeRowTransitTimeValue.php │ │ ├── UndeleteConversionSourceRequest.php │ │ ├── UnitInvoice.php │ │ ├── UnitInvoiceAdditionalCharge.php │ │ ├── UnitInvoiceTaxLine.php │ │ ├── Value.php │ │ ├── VerifyPhoneNumberRequest.php │ │ ├── VerifyPhoneNumberResponse.php │ │ ├── Warehouse.php │ │ ├── WarehouseBasedDeliveryTime.php │ │ ├── WarehouseCutoffTime.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 │ │ ├── Autofit.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 │ │ ├── UpdateSlidePropertiesRequest.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 │ │ ├── CommitStats.php │ │ ├── ContextValue.php │ │ ├── CopyBackupEncryptionConfig.php │ │ ├── CopyBackupMetadata.php │ │ ├── CopyBackupRequest.php │ │ ├── CreateBackupMetadata.php │ │ ├── CreateDatabaseMetadata.php │ │ ├── CreateDatabaseRequest.php │ │ ├── CreateInstanceConfigMetadata.php │ │ ├── CreateInstanceConfigRequest.php │ │ ├── CreateInstanceMetadata.php │ │ ├── CreateInstanceRequest.php │ │ ├── CreateSessionRequest.php │ │ ├── Database.php │ │ ├── DatabaseRole.php │ │ ├── Delete.php │ │ ├── DerivedMetric.php │ │ ├── DiagnosticMessage.php │ │ ├── EncryptionConfig.php │ │ ├── EncryptionInfo.php │ │ ├── ExecuteBatchDmlRequest.php │ │ ├── ExecuteBatchDmlResponse.php │ │ ├── ExecuteSqlRequest.php │ │ ├── Expr.php │ │ ├── Field.php │ │ ├── FreeInstanceMetadata.php │ │ ├── GetDatabaseDdlResponse.php │ │ ├── GetIamPolicyRequest.php │ │ ├── GetPolicyOptions.php │ │ ├── IndexedHotKey.php │ │ ├── IndexedKeyRangeInfos.php │ │ ├── Instance.php │ │ ├── InstanceConfig.php │ │ ├── InstanceOperationProgress.php │ │ ├── KeyRange.php │ │ ├── KeyRangeInfo.php │ │ ├── KeyRangeInfos.php │ │ ├── KeySet.php │ │ ├── ListBackupOperationsResponse.php │ │ ├── ListBackupsResponse.php │ │ ├── ListDatabaseOperationsResponse.php │ │ ├── ListDatabaseRolesResponse.php │ │ ├── ListDatabasesResponse.php │ │ ├── ListInstanceConfigOperationsResponse.php │ │ ├── ListInstanceConfigsResponse.php │ │ ├── ListInstancesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListScansResponse.php │ │ ├── ListSessionsResponse.php │ │ ├── LocalizedString.php │ │ ├── Metric.php │ │ ├── MetricMatrix.php │ │ ├── MetricMatrixRow.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 │ │ ├── PrefixNode.php │ │ ├── QueryOptions.php │ │ ├── QueryPlan.php │ │ ├── ReadRequest.php │ │ ├── ReadWrite.php │ │ ├── ReplicaInfo.php │ │ ├── RequestOptions.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsInstanceConfigOperations.php │ │ │ ├── ProjectsInstanceConfigs.php │ │ │ ├── ProjectsInstanceConfigsOperations.php │ │ │ ├── ProjectsInstances.php │ │ │ ├── ProjectsInstancesBackupOperations.php │ │ │ ├── ProjectsInstancesBackups.php │ │ │ ├── ProjectsInstancesBackupsOperations.php │ │ │ ├── ProjectsInstancesDatabaseOperations.php │ │ │ ├── ProjectsInstancesDatabases.php │ │ │ ├── ProjectsInstancesDatabasesDatabaseRoles.php │ │ │ ├── ProjectsInstancesDatabasesOperations.php │ │ │ ├── ProjectsInstancesDatabasesSessions.php │ │ │ ├── ProjectsInstancesOperations.php │ │ │ └── Scans.php │ │ ├── RestoreDatabaseEncryptionConfig.php │ │ ├── RestoreDatabaseMetadata.php │ │ ├── RestoreDatabaseRequest.php │ │ ├── RestoreInfo.php │ │ ├── ResultSet.php │ │ ├── ResultSetMetadata.php │ │ ├── ResultSetStats.php │ │ ├── RollbackRequest.php │ │ ├── Scan.php │ │ ├── ScanData.php │ │ ├── Session.php │ │ ├── SetIamPolicyRequest.php │ │ ├── ShortRepresentation.php │ │ ├── SpannerEmpty.php │ │ ├── SpannerReadOnly.php │ │ ├── Statement.php │ │ ├── Status.php │ │ ├── StructType.php │ │ ├── TestIamPermissionsRequest.php │ │ ├── TestIamPermissionsResponse.php │ │ ├── Transaction.php │ │ ├── TransactionOptions.php │ │ ├── TransactionSelector.php │ │ ├── Type.php │ │ ├── UpdateDatabaseDdlMetadata.php │ │ ├── UpdateDatabaseDdlRequest.php │ │ ├── UpdateInstanceConfigMetadata.php │ │ ├── UpdateInstanceConfigRequest.php │ │ ├── UpdateInstanceMetadata.php │ │ ├── UpdateInstanceRequest.php │ │ ├── VisualizationData.php │ │ └── Write.php │ │ ├── Speech.php │ │ ├── Speech │ │ ├── ABNFGrammar.php │ │ ├── ClassItem.php │ │ ├── CreateCustomClassRequest.php │ │ ├── CreatePhraseSetRequest.php │ │ ├── CustomClass.php │ │ ├── ListCustomClassesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListPhraseSetResponse.php │ │ ├── LongRunningRecognizeMetadata.php │ │ ├── LongRunningRecognizeRequest.php │ │ ├── LongRunningRecognizeResponse.php │ │ ├── Operation.php │ │ ├── Phrase.php │ │ ├── PhraseSet.php │ │ ├── RecognitionAudio.php │ │ ├── RecognitionConfig.php │ │ ├── RecognitionMetadata.php │ │ ├── RecognizeRequest.php │ │ ├── RecognizeResponse.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsCustomClasses.php │ │ │ ├── ProjectsLocationsPhraseSets.php │ │ │ └── Speech.php │ │ ├── SpeakerDiarizationConfig.php │ │ ├── SpeechAdaptation.php │ │ ├── SpeechAdaptationInfo.php │ │ ├── SpeechContext.php │ │ ├── SpeechEmpty.php │ │ ├── SpeechRecognitionAlternative.php │ │ ├── SpeechRecognitionResult.php │ │ ├── Status.php │ │ ├── TranscriptOutputConfig.php │ │ └── WordInfo.php │ │ ├── Storage.php │ │ ├── Storage │ │ ├── Bucket.php │ │ ├── BucketAccessControl.php │ │ ├── BucketAccessControlProjectTeam.php │ │ ├── BucketAccessControls.php │ │ ├── BucketAutoclass.php │ │ ├── BucketBilling.php │ │ ├── BucketCors.php │ │ ├── BucketCustomPlacementConfig.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 │ │ ├── AgentPool.php │ │ ├── AwsAccessKey.php │ │ ├── AwsS3CompatibleData.php │ │ ├── AwsS3Data.php │ │ ├── AzureBlobStorageData.php │ │ ├── AzureCredentials.php │ │ ├── BandwidthLimit.php │ │ ├── CancelOperationRequest.php │ │ ├── Date.php │ │ ├── ErrorLogEntry.php │ │ ├── ErrorSummary.php │ │ ├── EventStream.php │ │ ├── GcsData.php │ │ ├── GoogleServiceAccount.php │ │ ├── HttpData.php │ │ ├── ListAgentPoolsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListTransferJobsResponse.php │ │ ├── LoggingConfig.php │ │ ├── MetadataOptions.php │ │ ├── NotificationConfig.php │ │ ├── ObjectConditions.php │ │ ├── Operation.php │ │ ├── PauseTransferOperationRequest.php │ │ ├── PosixFilesystem.php │ │ ├── Resource │ │ │ ├── GoogleServiceAccounts.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsAgentPools.php │ │ │ ├── TransferJobs.php │ │ │ └── TransferOperations.php │ │ ├── ResumeTransferOperationRequest.php │ │ ├── RunTransferJobRequest.php │ │ ├── S3CompatibleMetadata.php │ │ ├── Schedule.php │ │ ├── Status.php │ │ ├── StoragetransferEmpty.php │ │ ├── TimeOfDay.php │ │ ├── TransferCounters.php │ │ ├── TransferJob.php │ │ ├── TransferManifest.php │ │ ├── TransferOperation.php │ │ ├── TransferOptions.php │ │ ├── TransferSpec.php │ │ └── UpdateTransferJobRequest.php │ │ ├── StreetViewPublish.php │ │ ├── StreetViewPublish │ │ ├── BatchDeletePhotosRequest.php │ │ ├── BatchDeletePhotosResponse.php │ │ ├── BatchGetPhotosResponse.php │ │ ├── BatchUpdatePhotosRequest.php │ │ ├── BatchUpdatePhotosResponse.php │ │ ├── Connection.php │ │ ├── GpsDataGapFailureDetails.php │ │ ├── Imu.php │ │ ├── ImuDataGapFailureDetails.php │ │ ├── InsufficientGpsFailureDetails.php │ │ ├── LatLng.php │ │ ├── LatLngBounds.php │ │ ├── Level.php │ │ ├── ListPhotoSequencesResponse.php │ │ ├── ListPhotosResponse.php │ │ ├── Measurement3d.php │ │ ├── NoOverlapGpsFailureDetails.php │ │ ├── NotOutdoorsFailureDetails.php │ │ ├── Operation.php │ │ ├── Photo.php │ │ ├── PhotoId.php │ │ ├── PhotoResponse.php │ │ ├── PhotoSequence.php │ │ ├── Place.php │ │ ├── Pose.php │ │ ├── ProcessingFailureDetails.php │ │ ├── Resource │ │ │ ├── Photo.php │ │ │ ├── PhotoSequence.php │ │ │ ├── PhotoSequences.php │ │ │ └── Photos.php │ │ ├── Status.php │ │ ├── StreetviewpublishEmpty.php │ │ ├── UpdatePhotoRequest.php │ │ └── UploadRef.php │ │ ├── SubscriptionLinking.php │ │ ├── SubscriptionLinking │ │ ├── DeleteReaderResponse.php │ │ ├── Entitlement.php │ │ ├── Reader.php │ │ ├── ReaderEntitlements.php │ │ └── Resource │ │ │ ├── Publications.php │ │ │ └── PublicationsReaders.php │ │ ├── TPU.php │ │ ├── TPU │ │ ├── AcceleratorConfig.php │ │ ├── AcceleratorType.php │ │ ├── AccessConfig.php │ │ ├── AttachedDisk.php │ │ ├── GenerateServiceIdentityRequest.php │ │ ├── GenerateServiceIdentityResponse.php │ │ ├── GetGuestAttributesRequest.php │ │ ├── GetGuestAttributesResponse.php │ │ ├── GuestAttributes.php │ │ ├── GuestAttributesEntry.php │ │ ├── GuestAttributesValue.php │ │ ├── ListAcceleratorTypesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListNodesResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListRuntimeVersionsResponse.php │ │ ├── ListTensorFlowVersionsResponse.php │ │ ├── Location.php │ │ ├── NetworkConfig.php │ │ ├── NetworkEndpoint.php │ │ ├── Node.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── ReimageNodeRequest.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsAcceleratorTypes.php │ │ │ ├── ProjectsLocationsNodes.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsRuntimeVersions.php │ │ │ └── ProjectsLocationsTensorflowVersions.php │ │ ├── RuntimeVersion.php │ │ ├── SchedulingConfig.php │ │ ├── ServiceAccount.php │ │ ├── ServiceIdentity.php │ │ ├── ShieldedInstanceConfig.php │ │ ├── StartNodeRequest.php │ │ ├── Status.php │ │ ├── StopNodeRequest.php │ │ ├── Symptom.php │ │ ├── TensorFlowVersion.php │ │ └── TpuEmpty.php │ │ ├── TagManager.php │ │ ├── TagManager │ │ ├── Account.php │ │ ├── AccountAccess.php │ │ ├── AccountFeatures.php │ │ ├── BuiltInVariable.php │ │ ├── Client.php │ │ ├── Condition.php │ │ ├── Container.php │ │ ├── ContainerAccess.php │ │ ├── ContainerFeatures.php │ │ ├── ContainerVersion.php │ │ ├── ContainerVersionHeader.php │ │ ├── CreateBuiltInVariableResponse.php │ │ ├── CreateContainerVersionRequestVersionOptions.php │ │ ├── CreateContainerVersionResponse.php │ │ ├── CustomTemplate.php │ │ ├── Destination.php │ │ ├── Entity.php │ │ ├── Environment.php │ │ ├── Folder.php │ │ ├── FolderEntities.php │ │ ├── GalleryReference.php │ │ ├── GetContainerSnippetResponse.php │ │ ├── GetWorkspaceStatusResponse.php │ │ ├── GtagConfig.php │ │ ├── ListAccountsResponse.php │ │ ├── ListClientsResponse.php │ │ ├── ListContainerVersionsResponse.php │ │ ├── ListContainersResponse.php │ │ ├── ListDestinationsResponse.php │ │ ├── ListEnabledBuiltInVariablesResponse.php │ │ ├── ListEnvironmentsResponse.php │ │ ├── ListFoldersResponse.php │ │ ├── ListGtagConfigResponse.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 │ │ │ ├── AccountsContainersDestinations.php │ │ │ ├── AccountsContainersEnvironments.php │ │ │ ├── AccountsContainersVersionHeaders.php │ │ │ ├── AccountsContainersVersions.php │ │ │ ├── AccountsContainersWorkspaces.php │ │ │ ├── AccountsContainersWorkspacesBuiltInVariables.php │ │ │ ├── AccountsContainersWorkspacesClients.php │ │ │ ├── AccountsContainersWorkspacesFolders.php │ │ │ ├── AccountsContainersWorkspacesGtagConfig.php │ │ │ ├── AccountsContainersWorkspacesTags.php │ │ │ ├── AccountsContainersWorkspacesTemplates.php │ │ │ ├── AccountsContainersWorkspacesTriggers.php │ │ │ ├── AccountsContainersWorkspacesVariables.php │ │ │ ├── AccountsContainersWorkspacesZones.php │ │ │ └── AccountsUserPermissions.php │ │ ├── RevertBuiltInVariableResponse.php │ │ ├── RevertClientResponse.php │ │ ├── RevertFolderResponse.php │ │ ├── RevertTagResponse.php │ │ ├── RevertTemplateResponse.php │ │ ├── RevertTriggerResponse.php │ │ ├── RevertVariableResponse.php │ │ ├── RevertZoneResponse.php │ │ ├── SetupTag.php │ │ ├── SyncStatus.php │ │ ├── SyncWorkspaceResponse.php │ │ ├── Tag.php │ │ ├── TagConsentSetting.php │ │ ├── TeardownTag.php │ │ ├── Trigger.php │ │ ├── UserPermission.php │ │ ├── Variable.php │ │ ├── VariableFormatValue.php │ │ ├── Workspace.php │ │ ├── Zone.php │ │ ├── ZoneBoundary.php │ │ ├── ZoneChildContainer.php │ │ └── ZoneTypeRestriction.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 │ │ ├── Metadata.php │ │ ├── NetworkConfiguration.php │ │ ├── NetworkConfigurationCatalog.php │ │ ├── ObbFile.php │ │ ├── Orientation.php │ │ ├── PerAndroidVersionInfo.php │ │ ├── PerIosVersionInfo.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 │ │ ├── UsesFeature.php │ │ └── XcodeVersion.php │ │ ├── Texttospeech.php │ │ ├── Texttospeech │ │ ├── AudioConfig.php │ │ ├── CancelOperationRequest.php │ │ ├── CustomVoiceParams.php │ │ ├── GoogleCloudTexttospeechV1SynthesizeLongAudioMetadata.php │ │ ├── ImportDataRequest.php │ │ ├── ListOperationsResponse.php │ │ ├── ListVoicesResponse.php │ │ ├── Operation.php │ │ ├── Resource │ │ │ ├── Operations.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDatasets.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsVoices.php │ │ │ ├── Text.php │ │ │ └── Voices.php │ │ ├── Status.php │ │ ├── SynthesisInput.php │ │ ├── SynthesizeLongAudioMetadata.php │ │ ├── SynthesizeLongAudioRequest.php │ │ ├── SynthesizeSpeechRequest.php │ │ ├── SynthesizeSpeechResponse.php │ │ ├── TexttospeechEmpty.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 │ │ ├── DetectedAppSplashScreen.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 │ │ ├── LogcatCollectionError.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 │ │ ├── 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 │ │ ├── AudioMapping.php │ │ ├── AudioStream.php │ │ ├── BwdifConfig.php │ │ ├── Color.php │ │ ├── Crop.php │ │ ├── Deblock.php │ │ ├── Deinterlace.php │ │ ├── Denoise.php │ │ ├── EditAtom.php │ │ ├── ElementaryStream.php │ │ ├── Encryption.php │ │ ├── FailureDetail.php │ │ ├── H264CodecSettings.php │ │ ├── H265CodecSettings.php │ │ ├── Image.php │ │ ├── Input.php │ │ ├── Job.php │ │ ├── JobConfig.php │ │ ├── JobTemplate.php │ │ ├── ListJobTemplatesResponse.php │ │ ├── ListJobsResponse.php │ │ ├── Manifest.php │ │ ├── MpegCommonEncryption.php │ │ ├── MuxStream.php │ │ ├── NormalizedCoordinate.php │ │ ├── OperationMetadata.php │ │ ├── OriginUri.php │ │ ├── Output.php │ │ ├── Overlay.php │ │ ├── Pad.php │ │ ├── PreprocessingConfig.php │ │ ├── Progress.php │ │ ├── PubsubDestination.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsJobTemplates.php │ │ │ └── ProjectsLocationsJobs.php │ │ ├── SampleAesEncryption.php │ │ ├── SegmentSettings.php │ │ ├── SpriteSheet.php │ │ ├── Status.php │ │ ├── TextAtom.php │ │ ├── TextInput.php │ │ ├── TextMapping.php │ │ ├── TextStream.php │ │ ├── TranscoderEmpty.php │ │ ├── VideoStream.php │ │ ├── Vp9CodecSettings.php │ │ └── YadifConfig.php │ │ ├── Translate.php │ │ ├── Translate │ │ ├── BatchDocumentInputConfig.php │ │ ├── BatchDocumentOutputConfig.php │ │ ├── BatchTranslateDocumentRequest.php │ │ ├── BatchTranslateTextRequest.php │ │ ├── CancelOperationRequest.php │ │ ├── Dataset.php │ │ ├── DatasetInputConfig.php │ │ ├── DatasetOutputConfig.php │ │ ├── DetectLanguageRequest.php │ │ ├── DetectLanguageResponse.php │ │ ├── DetectedLanguage.php │ │ ├── DocumentInputConfig.php │ │ ├── DocumentOutputConfig.php │ │ ├── DocumentTranslation.php │ │ ├── Example.php │ │ ├── ExportDataRequest.php │ │ ├── GcsDestination.php │ │ ├── GcsInputSource.php │ │ ├── GcsOutputDestination.php │ │ ├── GcsSource.php │ │ ├── Glossary.php │ │ ├── GlossaryEntry.php │ │ ├── GlossaryInputConfig.php │ │ ├── GlossaryTerm.php │ │ ├── GlossaryTermsPair.php │ │ ├── GlossaryTermsSet.php │ │ ├── ImportDataRequest.php │ │ ├── InputConfig.php │ │ ├── InputFile.php │ │ ├── LanguageCodePair.php │ │ ├── LanguageCodesSet.php │ │ ├── ListDatasetsResponse.php │ │ ├── ListExamplesResponse.php │ │ ├── ListGlossariesResponse.php │ │ ├── ListGlossaryEntriesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListModelsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Model.php │ │ ├── Operation.php │ │ ├── OutputConfig.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsDatasets.php │ │ │ ├── ProjectsLocationsDatasetsExamples.php │ │ │ ├── ProjectsLocationsGlossaries.php │ │ │ ├── ProjectsLocationsGlossariesGlossaryEntries.php │ │ │ ├── ProjectsLocationsModels.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── Status.php │ │ ├── SupportedLanguage.php │ │ ├── SupportedLanguages.php │ │ ├── TranslateDocumentRequest.php │ │ ├── TranslateDocumentResponse.php │ │ ├── TranslateEmpty.php │ │ ├── TranslateTextGlossaryConfig.php │ │ ├── TranslateTextRequest.php │ │ ├── TranslateTextResponse.php │ │ ├── Translation.php │ │ └── WaitOperationRequest.php │ │ ├── TravelImpactModel.php │ │ ├── TravelImpactModel │ │ ├── ComputeFlightEmissionsRequest.php │ │ ├── ComputeFlightEmissionsResponse.php │ │ ├── Date.php │ │ ├── EmissionsGramsPerPax.php │ │ ├── Flight.php │ │ ├── FlightWithEmissions.php │ │ ├── ModelVersion.php │ │ └── Resource │ │ │ └── Flights.php │ │ ├── VMMigrationService.php │ │ ├── VMMigrationService │ │ ├── AccessKeyCredentials.php │ │ ├── AdaptingOSStep.php │ │ ├── AddGroupMigrationRequest.php │ │ ├── AddGroupMigrationResponse.php │ │ ├── ApplianceVersion.php │ │ ├── AppliedLicense.php │ │ ├── AvailableUpdates.php │ │ ├── AwsSecurityGroup.php │ │ ├── AwsSourceDetails.php │ │ ├── AwsSourceVmDetails.php │ │ ├── AwsVmDetails.php │ │ ├── AwsVmsDetails.php │ │ ├── CancelCloneJobRequest.php │ │ ├── CancelCloneJobResponse.php │ │ ├── CancelCutoverJobRequest.php │ │ ├── CancelCutoverJobResponse.php │ │ ├── CancelOperationRequest.php │ │ ├── CloneJob.php │ │ ├── CloneStep.php │ │ ├── ComputeEngineTargetDefaults.php │ │ ├── ComputeEngineTargetDetails.php │ │ ├── ComputeScheduling.php │ │ ├── CutoverJob.php │ │ ├── CutoverStep.php │ │ ├── CycleStep.php │ │ ├── DatacenterConnector.php │ │ ├── FetchInventoryResponse.php │ │ ├── FinalizeMigrationRequest.php │ │ ├── FinalizeMigrationResponse.php │ │ ├── Group.php │ │ ├── InitializingReplicationStep.php │ │ ├── InstantiatingMigratedVMStep.php │ │ ├── Link.php │ │ ├── ListCloneJobsResponse.php │ │ ├── ListCutoverJobsResponse.php │ │ ├── ListDatacenterConnectorsResponse.php │ │ ├── ListGroupsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListMigratingVmsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── ListReplicationCyclesResponse.php │ │ ├── ListSourcesResponse.php │ │ ├── ListTargetProjectsResponse.php │ │ ├── ListUtilizationReportsResponse.php │ │ ├── LocalizedMessage.php │ │ ├── Location.php │ │ ├── MigratingVm.php │ │ ├── MigrationError.php │ │ ├── MigrationWarning.php │ │ ├── NetworkInterface.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── PauseMigrationRequest.php │ │ ├── PauseMigrationResponse.php │ │ ├── PostProcessingStep.php │ │ ├── PreparingVMDisksStep.php │ │ ├── RemoveGroupMigrationRequest.php │ │ ├── RemoveGroupMigrationResponse.php │ │ ├── ReplicatingStep.php │ │ ├── ReplicationCycle.php │ │ ├── ReplicationSync.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsGroups.php │ │ │ ├── ProjectsLocationsOperations.php │ │ │ ├── ProjectsLocationsSources.php │ │ │ ├── ProjectsLocationsSourcesDatacenterConnectors.php │ │ │ ├── ProjectsLocationsSourcesMigratingVms.php │ │ │ ├── ProjectsLocationsSourcesMigratingVmsCloneJobs.php │ │ │ ├── ProjectsLocationsSourcesMigratingVmsCutoverJobs.php │ │ │ ├── ProjectsLocationsSourcesMigratingVmsReplicationCycles.php │ │ │ ├── ProjectsLocationsSourcesUtilizationReports.php │ │ │ └── ProjectsLocationsTargetProjects.php │ │ ├── ResumeMigrationRequest.php │ │ ├── ResumeMigrationResponse.php │ │ ├── SchedulePolicy.php │ │ ├── SchedulingNodeAffinity.php │ │ ├── ShuttingDownSourceVMStep.php │ │ ├── Source.php │ │ ├── StartMigrationRequest.php │ │ ├── StartMigrationResponse.php │ │ ├── Status.php │ │ ├── Tag.php │ │ ├── TargetProject.php │ │ ├── UpgradeApplianceRequest.php │ │ ├── UpgradeStatus.php │ │ ├── UtilizationReport.php │ │ ├── VmUtilizationInfo.php │ │ ├── VmUtilizationMetrics.php │ │ ├── VmmigrationEmpty.php │ │ ├── VmwareSourceDetails.php │ │ ├── VmwareVmDetails.php │ │ └── VmwareVmsDetails.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 │ │ ├── SitesUrlInfo.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 │ │ ├── VersionHistory.php │ │ ├── VersionHistory │ │ ├── Channel.php │ │ ├── Interval.php │ │ ├── ListChannelsResponse.php │ │ ├── ListPlatformsResponse.php │ │ ├── ListReleasesResponse.php │ │ ├── ListVersionsResponse.php │ │ ├── Platform.php │ │ ├── Release.php │ │ ├── Resource │ │ │ ├── Platforms.php │ │ │ ├── PlatformsChannels.php │ │ │ ├── PlatformsChannelsVersions.php │ │ │ └── PlatformsChannelsVersionsReleases.php │ │ └── Version.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 │ │ ├── TextDetectionParams.php │ │ ├── TextProperty.php │ │ ├── Vertex.php │ │ ├── VisionEmpty.php │ │ ├── WebDetection.php │ │ ├── WebDetectionParams.php │ │ ├── WebEntity.php │ │ ├── WebImage.php │ │ ├── WebLabel.php │ │ ├── WebPage.php │ │ └── Word.php │ │ ├── WebRisk.php │ │ ├── WebRisk │ │ ├── GoogleCloudWebriskV1ComputeThreatListDiffResponse.php │ │ ├── GoogleCloudWebriskV1ComputeThreatListDiffResponseChecksum.php │ │ ├── GoogleCloudWebriskV1RawHashes.php │ │ ├── GoogleCloudWebriskV1RawIndices.php │ │ ├── GoogleCloudWebriskV1RiceDeltaEncoding.php │ │ ├── GoogleCloudWebriskV1SearchHashesResponse.php │ │ ├── GoogleCloudWebriskV1SearchHashesResponseThreatHash.php │ │ ├── GoogleCloudWebriskV1SearchUrisResponse.php │ │ ├── GoogleCloudWebriskV1SearchUrisResponseThreatUri.php │ │ ├── GoogleCloudWebriskV1Submission.php │ │ ├── GoogleCloudWebriskV1SubmitUriMetadata.php │ │ ├── GoogleCloudWebriskV1SubmitUriRequest.php │ │ ├── GoogleCloudWebriskV1ThreatEntryAdditions.php │ │ ├── GoogleCloudWebriskV1ThreatEntryRemovals.php │ │ ├── GoogleLongrunningCancelOperationRequest.php │ │ ├── GoogleLongrunningListOperationsResponse.php │ │ ├── GoogleLongrunningOperation.php │ │ ├── GoogleProtobufEmpty.php │ │ ├── GoogleRpcStatus.php │ │ └── Resource │ │ │ ├── Hashes.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsOperations.php │ │ │ ├── ProjectsSubmissions.php │ │ │ ├── ProjectsUris.php │ │ │ ├── ThreatLists.php │ │ │ └── Uris.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 │ │ ├── Position.php │ │ ├── PubsubMessage.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsWorkflows.php │ │ │ └── ProjectsLocationsWorkflowsExecutions.php │ │ ├── StackTrace.php │ │ ├── StackTraceElement.php │ │ ├── Status.php │ │ ├── Step.php │ │ └── TriggerPubsubExecutionRequest.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 │ │ ├── WorkloadManager.php │ │ ├── WorkloadManager │ │ ├── CancelOperationRequest.php │ │ ├── Evaluation.php │ │ ├── GceInstanceFilter.php │ │ ├── Insight.php │ │ ├── ListEvaluationsResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListOperationsResponse.php │ │ ├── Location.php │ │ ├── Operation.php │ │ ├── OperationMetadata.php │ │ ├── Resource │ │ │ ├── Projects.php │ │ │ ├── ProjectsLocations.php │ │ │ ├── ProjectsLocationsEvaluations.php │ │ │ ├── ProjectsLocationsInsights.php │ │ │ └── ProjectsLocationsOperations.php │ │ ├── ResourceFilter.php │ │ ├── ResourceStatus.php │ │ ├── SapDiscovery.php │ │ ├── SapDiscoveryComponent.php │ │ ├── SapDiscoveryMetadata.php │ │ ├── SapDiscoveryResource.php │ │ ├── SapValidation.php │ │ ├── SapValidationValidationDetail.php │ │ ├── Status.php │ │ ├── WorkloadmanagerEmpty.php │ │ ├── WriteInsightRequest.php │ │ └── WriteInsightResponse.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 │ │ ├── Cuepoint.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 │ │ ├── LiveChatGiftMembershipReceivedDetails.php │ │ ├── LiveChatMemberMilestoneChatDetails.php │ │ ├── LiveChatMembershipGiftingDetails.php │ │ ├── LiveChatMessage.php │ │ ├── LiveChatMessageAuthorDetails.php │ │ ├── LiveChatMessageDeletedDetails.php │ │ ├── LiveChatMessageListResponse.php │ │ ├── LiveChatMessageRetractedDetails.php │ │ ├── LiveChatMessageSnippet.php │ │ ├── LiveChatModerator.php │ │ ├── LiveChatModeratorListResponse.php │ │ ├── LiveChatModeratorSnippet.php │ │ ├── LiveChatNewSponsorDetails.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 │ │ │ ├── Subscriptions.php │ │ │ ├── SuperChatEvents.php │ │ │ ├── Tests.php │ │ │ ├── ThirdPartyLinks.php │ │ │ ├── Thumbnails.php │ │ │ ├── VideoAbuseReportReasons.php │ │ │ ├── VideoCategories.php │ │ │ ├── Videos.php │ │ │ ├── Watermarks.php │ │ │ ├── Youtube.php │ │ │ ├── YoutubeV3.php │ │ │ ├── YoutubeV3LiveBroadcasts.php │ │ │ └── YoutubeV3LiveBroadcastsCuepoint.php │ │ ├── ResourceId.php │ │ ├── SearchListResponse.php │ │ ├── SearchResult.php │ │ ├── SearchResultSnippet.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 │ │ ├── ThirdPartyLinkListResponse.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 │ │ ├── VideoGetRatingResponse.php │ │ ├── VideoListResponse.php │ │ ├── VideoLiveStreamingDetails.php │ │ ├── VideoLocalization.php │ │ ├── VideoMonetizationDetails.php │ │ ├── VideoPlayer.php │ │ ├── VideoProcessingDetails.php │ │ ├── VideoProcessingDetailsProcessingProgress.php │ │ ├── VideoProjectDetails.php │ │ ├── VideoRating.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 ├── apiclient │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── 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 └── auth │ ├── COPYING │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── autoload.php │ ├── composer.json │ └── src │ ├── AccessToken.php │ ├── ApplicationDefaultCredentials.php │ ├── Cache │ ├── InvalidArgumentException.php │ ├── Item.php │ ├── MemoryCacheItemPool.php │ ├── SysVCacheItemPool.php │ └── TypedItem.php │ ├── CacheTrait.php │ ├── Credentials │ ├── AppIdentityCredentials.php │ ├── GCECredentials.php │ ├── IAMCredentials.php │ ├── ImpersonatedServiceAccountCredentials.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 │ ├── IamSignerTrait.php │ ├── Middleware │ ├── AuthTokenMiddleware.php │ ├── ProxyAuthTokenMiddleware.php │ ├── ScopedAccessTokenMiddleware.php │ └── SimpleMiddleware.php │ ├── OAuth2.php │ ├── ProjectIdProviderInterface.php │ ├── ServiceAccountSignerTrait.php │ ├── SignBlobInterface.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 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── 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 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── Exception │ └── MalformedUriException.php │ ├── FnStream.php │ ├── Header.php │ ├── HttpFactory.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 ├── laminas └── laminas-escaper │ ├── COPYRIGHT.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── Escaper.php │ └── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php ├── masterminds └── html5 │ ├── CREDITS │ ├── LICENSE.txt │ ├── README.md │ ├── RELEASE.md │ ├── UPGRADING.md │ ├── bin │ └── entities.php │ ├── composer.json │ └── src │ ├── HTML5.php │ └── HTML5 │ ├── Elements.php │ ├── Entities.php │ ├── Exception.php │ ├── InstructionProcessor.php │ ├── Parser │ ├── CharacterReference.php │ ├── DOMTreeBuilder.php │ ├── EventHandler.php │ ├── FileInputStream.php │ ├── InputStream.php │ ├── ParseError.php │ ├── README.md │ ├── Scanner.php │ ├── StringInputStream.php │ ├── Tokenizer.php │ ├── TreeBuildingRules.php │ └── UTF8Utils.php │ └── Serializer │ ├── HTML5Entities.php │ ├── OutputRules.php │ ├── README.md │ ├── RulesInterface.php │ └── Traverser.php ├── monolog └── monolog │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ └── src │ └── Monolog │ ├── Attribute │ └── AsMonologProcessor.php │ ├── DateTimeImmutable.php │ ├── ErrorHandler.php │ ├── Formatter │ ├── ChromePHPFormatter.php │ ├── ElasticaFormatter.php │ ├── ElasticsearchFormatter.php │ ├── FlowdockFormatter.php │ ├── FluentdFormatter.php │ ├── FormatterInterface.php │ ├── GelfMessageFormatter.php │ ├── GoogleCloudLoggingFormatter.php │ ├── HtmlFormatter.php │ ├── JsonFormatter.php │ ├── LineFormatter.php │ ├── LogglyFormatter.php │ ├── LogmaticFormatter.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 │ ├── ElasticaHandler.php │ ├── ElasticsearchHandler.php │ ├── ErrorLogHandler.php │ ├── FallbackGroupHandler.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 │ ├── Handler.php │ ├── HandlerInterface.php │ ├── HandlerWrapper.php │ ├── IFTTTHandler.php │ ├── InsightOpsHandler.php │ ├── LogEntriesHandler.php │ ├── LogglyHandler.php │ ├── LogmaticHandler.php │ ├── MailHandler.php │ ├── MandrillHandler.php │ ├── MissingExtensionException.php │ ├── MongoDBHandler.php │ ├── NativeMailerHandler.php │ ├── NewRelicHandler.php │ ├── NoopHandler.php │ ├── NullHandler.php │ ├── OverflowHandler.php │ ├── PHPConsoleHandler.php │ ├── ProcessHandler.php │ ├── ProcessableHandlerInterface.php │ ├── ProcessableHandlerTrait.php │ ├── PsrHandler.php │ ├── PushoverHandler.php │ ├── RedisHandler.php │ ├── RedisPubSubHandler.php │ ├── RollbarHandler.php │ ├── RotatingFileHandler.php │ ├── SamplingHandler.php │ ├── SendGridHandler.php │ ├── Slack │ │ └── SlackRecord.php │ ├── SlackHandler.php │ ├── SlackWebhookHandler.php │ ├── SocketHandler.php │ ├── SqsHandler.php │ ├── StreamHandler.php │ ├── SwiftMailerHandler.php │ ├── SymfonyMailerHandler.php │ ├── SyslogHandler.php │ ├── SyslogUdp │ │ └── UdpSocket.php │ ├── SyslogUdpHandler.php │ ├── TelegramBotHandler.php │ ├── TestHandler.php │ ├── WebRequestRecognizerTrait.php │ ├── WhatFailureGroupHandler.php │ └── ZendMonitorHandler.php │ ├── LogRecord.php │ ├── Logger.php │ ├── Processor │ ├── GitProcessor.php │ ├── HostnameProcessor.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 │ ├── Test │ └── TestCase.php │ └── Utils.php ├── myclabs └── deep-copy │ ├── .github │ ├── FUNDING.yml │ └── workflows │ │ └── ci.yaml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── ChainableFilter.php │ ├── 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 │ │ ├── ArrayObjectFilter.php │ │ ├── SplDoublyLinkedList.php │ │ └── SplDoublyLinkedListFilter.php │ └── TypeFilter.php │ ├── TypeMatcher │ └── TypeMatcher.php │ └── deep_copy.php ├── nikic └── php-parser │ ├── LICENSE │ ├── README.md │ ├── bin │ └── php-parse │ ├── composer.json │ ├── grammar │ ├── README.md │ ├── parser.template │ ├── php5.y │ ├── php7.y │ ├── phpyLang.php │ ├── rebuildParsers.php │ ├── tokens.template │ └── tokens.y │ └── lib │ └── PhpParser │ ├── Builder.php │ ├── Builder │ ├── ClassConst.php │ ├── Class_.php │ ├── Declaration.php │ ├── EnumCase.php │ ├── Enum_.php │ ├── FunctionLike.php │ ├── Function_.php │ ├── Interface_.php │ ├── Method.php │ ├── Namespace_.php │ ├── Param.php │ ├── Property.php │ ├── TraitUse.php │ ├── TraitUseAdaptation.php │ ├── Trait_.php │ └── Use_.php │ ├── BuilderFactory.php │ ├── BuilderHelpers.php │ ├── Comment.php │ ├── Comment │ └── Doc.php │ ├── ConstExprEvaluationException.php │ ├── ConstExprEvaluator.php │ ├── Error.php │ ├── ErrorHandler.php │ ├── ErrorHandler │ ├── Collecting.php │ └── Throwing.php │ ├── Internal │ ├── DiffElem.php │ ├── Differ.php │ ├── PrintableNewAnonClassNode.php │ └── TokenStream.php │ ├── JsonDecoder.php │ ├── Lexer.php │ ├── Lexer │ ├── Emulative.php │ └── TokenEmulator │ │ ├── AttributeEmulator.php │ │ ├── CoaleseEqualTokenEmulator.php │ │ ├── EnumTokenEmulator.php │ │ ├── ExplicitOctalEmulator.php │ │ ├── FlexibleDocStringEmulator.php │ │ ├── FnTokenEmulator.php │ │ ├── KeywordEmulator.php │ │ ├── MatchTokenEmulator.php │ │ ├── NullsafeTokenEmulator.php │ │ ├── NumericLiteralSeparatorEmulator.php │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ ├── ReadonlyTokenEmulator.php │ │ ├── ReverseEmulator.php │ │ └── TokenEmulator.php │ ├── NameContext.php │ ├── Node.php │ ├── Node │ ├── Arg.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── ComplexType.php │ ├── Const_.php │ ├── Expr.php │ ├── Expr │ │ ├── ArrayDimFetch.php │ │ ├── ArrayItem.php │ │ ├── Array_.php │ │ ├── ArrowFunction.php │ │ ├── Assign.php │ │ ├── AssignOp.php │ │ ├── AssignOp │ │ │ ├── BitwiseAnd.php │ │ │ ├── BitwiseOr.php │ │ │ ├── BitwiseXor.php │ │ │ ├── Coalesce.php │ │ │ ├── Concat.php │ │ │ ├── Div.php │ │ │ ├── Minus.php │ │ │ ├── Mod.php │ │ │ ├── Mul.php │ │ │ ├── Plus.php │ │ │ ├── Pow.php │ │ │ ├── ShiftLeft.php │ │ │ └── ShiftRight.php │ │ ├── AssignRef.php │ │ ├── BinaryOp.php │ │ ├── BinaryOp │ │ │ ├── BitwiseAnd.php │ │ │ ├── BitwiseOr.php │ │ │ ├── BitwiseXor.php │ │ │ ├── BooleanAnd.php │ │ │ ├── BooleanOr.php │ │ │ ├── Coalesce.php │ │ │ ├── Concat.php │ │ │ ├── Div.php │ │ │ ├── Equal.php │ │ │ ├── Greater.php │ │ │ ├── GreaterOrEqual.php │ │ │ ├── Identical.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── Minus.php │ │ │ ├── Mod.php │ │ │ ├── Mul.php │ │ │ ├── NotEqual.php │ │ │ ├── NotIdentical.php │ │ │ ├── Plus.php │ │ │ ├── Pow.php │ │ │ ├── ShiftLeft.php │ │ │ ├── ShiftRight.php │ │ │ ├── Smaller.php │ │ │ ├── SmallerOrEqual.php │ │ │ └── Spaceship.php │ │ ├── BitwiseNot.php │ │ ├── BooleanNot.php │ │ ├── CallLike.php │ │ ├── Cast.php │ │ ├── Cast │ │ │ ├── Array_.php │ │ │ ├── Bool_.php │ │ │ ├── Double.php │ │ │ ├── Int_.php │ │ │ ├── Object_.php │ │ │ ├── String_.php │ │ │ └── Unset_.php │ │ ├── ClassConstFetch.php │ │ ├── Clone_.php │ │ ├── Closure.php │ │ ├── ClosureUse.php │ │ ├── ConstFetch.php │ │ ├── Empty_.php │ │ ├── Error.php │ │ ├── ErrorSuppress.php │ │ ├── Eval_.php │ │ ├── Exit_.php │ │ ├── FuncCall.php │ │ ├── Include_.php │ │ ├── Instanceof_.php │ │ ├── Isset_.php │ │ ├── List_.php │ │ ├── Match_.php │ │ ├── MethodCall.php │ │ ├── New_.php │ │ ├── NullsafeMethodCall.php │ │ ├── NullsafePropertyFetch.php │ │ ├── PostDec.php │ │ ├── PostInc.php │ │ ├── PreDec.php │ │ ├── PreInc.php │ │ ├── Print_.php │ │ ├── PropertyFetch.php │ │ ├── ShellExec.php │ │ ├── StaticCall.php │ │ ├── StaticPropertyFetch.php │ │ ├── Ternary.php │ │ ├── Throw_.php │ │ ├── UnaryMinus.php │ │ ├── UnaryPlus.php │ │ ├── Variable.php │ │ ├── YieldFrom.php │ │ └── Yield_.php │ ├── FunctionLike.php │ ├── Identifier.php │ ├── IntersectionType.php │ ├── MatchArm.php │ ├── Name.php │ ├── Name │ │ ├── FullyQualified.php │ │ └── Relative.php │ ├── NullableType.php │ ├── Param.php │ ├── Scalar.php │ ├── Scalar │ │ ├── DNumber.php │ │ ├── Encapsed.php │ │ ├── EncapsedStringPart.php │ │ ├── LNumber.php │ │ ├── MagicConst.php │ │ ├── MagicConst │ │ │ ├── Class_.php │ │ │ ├── Dir.php │ │ │ ├── File.php │ │ │ ├── Function_.php │ │ │ ├── Line.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ └── Trait_.php │ │ └── String_.php │ ├── Stmt.php │ ├── Stmt │ │ ├── Break_.php │ │ ├── Case_.php │ │ ├── Catch_.php │ │ ├── ClassConst.php │ │ ├── ClassLike.php │ │ ├── ClassMethod.php │ │ ├── Class_.php │ │ ├── Const_.php │ │ ├── Continue_.php │ │ ├── DeclareDeclare.php │ │ ├── Declare_.php │ │ ├── Do_.php │ │ ├── Echo_.php │ │ ├── ElseIf_.php │ │ ├── Else_.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── Expression.php │ │ ├── Finally_.php │ │ ├── For_.php │ │ ├── Foreach_.php │ │ ├── Function_.php │ │ ├── Global_.php │ │ ├── Goto_.php │ │ ├── GroupUse.php │ │ ├── HaltCompiler.php │ │ ├── If_.php │ │ ├── InlineHTML.php │ │ ├── Interface_.php │ │ ├── Label.php │ │ ├── Namespace_.php │ │ ├── Nop.php │ │ ├── Property.php │ │ ├── PropertyProperty.php │ │ ├── Return_.php │ │ ├── StaticVar.php │ │ ├── Static_.php │ │ ├── Switch_.php │ │ ├── Throw_.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── TraitUseAdaptation │ │ │ ├── Alias.php │ │ │ └── Precedence.php │ │ ├── Trait_.php │ │ ├── TryCatch.php │ │ ├── Unset_.php │ │ ├── UseUse.php │ │ ├── Use_.php │ │ └── While_.php │ ├── UnionType.php │ ├── VarLikeIdentifier.php │ └── VariadicPlaceholder.php │ ├── NodeAbstract.php │ ├── NodeDumper.php │ ├── NodeFinder.php │ ├── NodeTraverser.php │ ├── NodeTraverserInterface.php │ ├── NodeVisitor.php │ ├── NodeVisitor │ ├── CloningVisitor.php │ ├── FindingVisitor.php │ ├── FirstFindingVisitor.php │ ├── NameResolver.php │ ├── NodeConnectingVisitor.php │ └── ParentConnectingVisitor.php │ ├── NodeVisitorAbstract.php │ ├── Parser.php │ ├── Parser │ ├── Multiple.php │ ├── Php5.php │ ├── Php7.php │ └── Tokens.php │ ├── ParserAbstract.php │ ├── ParserFactory.php │ ├── PrettyPrinter │ └── Standard.php │ └── PrettyPrinterAbstract.php ├── paragonie ├── constant_time_encoding │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Base32.php │ │ ├── Base32Hex.php │ │ ├── Base64.php │ │ ├── Base64DotSlash.php │ │ ├── Base64DotSlashOrdered.php │ │ ├── Base64UrlSafe.php │ │ ├── Binary.php │ │ ├── EncoderInterface.php │ │ ├── Encoding.php │ │ ├── Hex.php │ │ └── RFC4648.php └── random_compat │ ├── LICENSE │ ├── build-phar.sh │ ├── composer.json │ ├── dist │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc │ ├── lib │ └── random.php │ ├── other │ └── build_phar.php │ ├── psalm-autoload.php │ └── psalm.xml ├── phar-io ├── manifest │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── src │ │ ├── ManifestDocumentMapper.php │ │ ├── ManifestLoader.php │ │ ├── ManifestSerializer.php │ │ ├── exceptions │ │ ├── ElementCollectionException.php │ │ ├── Exception.php │ │ ├── InvalidApplicationNameException.php │ │ ├── InvalidEmailException.php │ │ ├── InvalidUrlException.php │ │ ├── ManifestDocumentException.php │ │ ├── ManifestDocumentLoadingException.php │ │ ├── ManifestDocumentMapperException.php │ │ ├── ManifestElementException.php │ │ └── ManifestLoaderException.php │ │ ├── values │ │ ├── Application.php │ │ ├── ApplicationName.php │ │ ├── Author.php │ │ ├── AuthorCollection.php │ │ ├── AuthorCollectionIterator.php │ │ ├── BundledComponent.php │ │ ├── BundledComponentCollection.php │ │ ├── BundledComponentCollectionIterator.php │ │ ├── CopyrightInformation.php │ │ ├── Email.php │ │ ├── Extension.php │ │ ├── Library.php │ │ ├── License.php │ │ ├── Manifest.php │ │ ├── PhpExtensionRequirement.php │ │ ├── PhpVersionRequirement.php │ │ ├── Requirement.php │ │ ├── RequirementCollection.php │ │ ├── RequirementCollectionIterator.php │ │ ├── Type.php │ │ └── Url.php │ │ └── xml │ │ ├── AuthorElement.php │ │ ├── AuthorElementCollection.php │ │ ├── BundlesElement.php │ │ ├── ComponentElement.php │ │ ├── ComponentElementCollection.php │ │ ├── ContainsElement.php │ │ ├── CopyrightElement.php │ │ ├── ElementCollection.php │ │ ├── ExtElement.php │ │ ├── ExtElementCollection.php │ │ ├── ExtensionElement.php │ │ ├── LicenseElement.php │ │ ├── ManifestDocument.php │ │ ├── ManifestElement.php │ │ ├── PhpElement.php │ │ └── RequiresElement.php └── version │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── BuildMetaData.php │ ├── PreReleaseSuffix.php │ ├── Version.php │ ├── VersionConstraintParser.php │ ├── VersionConstraintValue.php │ ├── VersionNumber.php │ ├── constraints │ ├── AbstractVersionConstraint.php │ ├── AndVersionConstraintGroup.php │ ├── AnyVersionConstraint.php │ ├── ExactVersionConstraint.php │ ├── GreaterThanOrEqualToVersionConstraint.php │ ├── OrVersionConstraintGroup.php │ ├── SpecificMajorAndMinorVersionConstraint.php │ ├── SpecificMajorVersionConstraint.php │ └── VersionConstraint.php │ └── exceptions │ ├── Exception.php │ ├── InvalidPreReleaseSuffixException.php │ ├── InvalidVersionException.php │ ├── NoBuildMetaDataException.php │ ├── NoPreReleaseSuffixException.php │ └── UnsupportedVersionConstraintException.php ├── phenx ├── php-font-lib │ ├── .github │ │ └── workflows │ │ │ └── phpunit.yml │ ├── .htaccess │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── index.php │ ├── maps │ │ ├── adobe-standard-encoding.map │ │ ├── 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 │ └── src │ │ └── FontLib │ │ ├── AdobeFontMetrics.php │ │ ├── Autoloader.php │ │ ├── BinaryStream.php │ │ ├── EOT │ │ ├── File.php │ │ └── Header.php │ │ ├── EncodingMap.php │ │ ├── Exception │ │ └── FontNotFoundException.php │ │ ├── Font.php │ │ ├── Glyph │ │ ├── Outline.php │ │ ├── OutlineComponent.php │ │ ├── OutlineComposite.php │ │ └── OutlineSimple.php │ │ ├── Header.php │ │ ├── OpenType │ │ ├── File.php │ │ └── TableDirectoryEntry.php │ │ ├── Table │ │ ├── DirectoryEntry.php │ │ ├── Table.php │ │ └── Type │ │ │ ├── cmap.php │ │ │ ├── glyf.php │ │ │ ├── head.php │ │ │ ├── hhea.php │ │ │ ├── hmtx.php │ │ │ ├── kern.php │ │ │ ├── loca.php │ │ │ ├── maxp.php │ │ │ ├── name.php │ │ │ ├── nameRecord.php │ │ │ ├── os2.php │ │ │ └── post.php │ │ ├── TrueType │ │ ├── Collection.php │ │ ├── File.php │ │ ├── Header.php │ │ └── TableDirectoryEntry.php │ │ └── WOFF │ │ ├── File.php │ │ ├── Header.php │ │ └── TableDirectoryEntry.php └── php-svg-lib │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Svg │ ├── CssLength.php │ ├── DefaultStyle.php │ ├── Document.php │ ├── Gradient │ └── Stop.php │ ├── Style.php │ ├── Surface │ ├── CPdf.php │ ├── SurfaceCpdf.php │ ├── SurfaceInterface.php │ └── SurfacePDFLib.php │ └── Tag │ ├── AbstractTag.php │ ├── Anchor.php │ ├── Circle.php │ ├── ClipPath.php │ ├── Ellipse.php │ ├── Group.php │ ├── Image.php │ ├── Line.php │ ├── LinearGradient.php │ ├── Path.php │ ├── Polygon.php │ ├── Polyline.php │ ├── RadialGradient.php │ ├── Rect.php │ ├── Shape.php │ ├── Stop.php │ ├── StyleTag.php │ ├── Text.php │ └── UseTag.php ├── phpmailer └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-mn.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── phpoffice ├── phpexcel │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Classes │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ └── HTML.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── Examples │ │ ├── .gitignore │ │ ├── 01pharSimple.php │ │ ├── 01simple-download-ods.php │ │ ├── 01simple-download-pdf.php │ │ ├── 01simple-download-xls.php │ │ ├── 01simple-download-xlsx.php │ │ ├── 01simple.php │ │ ├── 01simplePCLZip.php │ │ ├── 02types-xls.php │ │ ├── 02types.php │ │ ├── 03formulas.php │ │ ├── 04printing.php │ │ ├── 05featuredemo.inc.php │ │ ├── 05featuredemo.php │ │ ├── 06largescale-with-cellcaching-sqlite.php │ │ ├── 06largescale-with-cellcaching-sqlite3.php │ │ ├── 06largescale-with-cellcaching.php │ │ ├── 06largescale-xls.php │ │ ├── 06largescale.php │ │ ├── 07reader.php │ │ ├── 07readerPCLZip.php │ │ ├── 08conditionalformatting.php │ │ ├── 08conditionalformatting2.php │ │ ├── 09pagebreaks.php │ │ ├── 10autofilter-selection-1.php │ │ ├── 10autofilter-selection-2.php │ │ ├── 10autofilter-selection-display.php │ │ ├── 10autofilter.php │ │ ├── 11documentsecurity-xls.php │ │ ├── 11documentsecurity.php │ │ ├── 12cellProtection.php │ │ ├── 13calculation.php │ │ ├── 14excel5.php │ │ ├── 15datavalidation-xls.php │ │ ├── 15datavalidation.php │ │ ├── 16csv.php │ │ ├── 17html.php │ │ ├── 18extendedcalculation.php │ │ ├── 19namedrange.php │ │ ├── 20readexcel5.php │ │ ├── 21pdf.php │ │ ├── 22heavilyformatted.php │ │ ├── 23sharedstyles.php │ │ ├── 24readfilter.php │ │ ├── 25inmemoryimage.php │ │ ├── 26utf8.php │ │ ├── 27imagesexcel5.php │ │ ├── 28iterator.php │ │ ├── 29advancedvaluebinder.php │ │ ├── 30template.php │ │ ├── 31docproperties_write-xls.php │ │ ├── 31docproperties_write.php │ │ ├── 32chartreadwrite.php │ │ ├── 33chartcreate-area.php │ │ ├── 33chartcreate-bar-stacked.php │ │ ├── 33chartcreate-bar.php │ │ ├── 33chartcreate-column-2.php │ │ ├── 33chartcreate-column.php │ │ ├── 33chartcreate-composite.php │ │ ├── 33chartcreate-line.php │ │ ├── 33chartcreate-multiple-charts.php │ │ ├── 33chartcreate-pie.php │ │ ├── 33chartcreate-radar.php │ │ ├── 33chartcreate-scatter.php │ │ ├── 33chartcreate-stock.php │ │ ├── 34chartupdate.php │ │ ├── 35chartrender.php │ │ ├── 36chartreadwriteHTML.php │ │ ├── 36chartreadwritePDF.php │ │ ├── 37page_layout_view.php │ │ ├── 38cloneWorksheet.php │ │ ├── 39dropdown.php │ │ ├── 40duplicateStyle.php │ │ ├── 41password.php │ │ ├── 42richText.php │ │ ├── Excel2003XMLReader.php │ │ ├── Excel2003XMLTest.xml │ │ ├── GnumericReader.php │ │ ├── GnumericTest.gnumeric │ │ ├── OOCalcReader.php │ │ ├── OOCalcReaderPCLZip.php │ │ ├── OOCalcTest.ods │ │ ├── Quadratic.php │ │ ├── Quadratic2.php │ │ ├── SylkReader.php │ │ ├── SylkTest.slk │ │ ├── XMLReader.php │ │ ├── XMLTest.xml │ │ ├── data │ │ │ └── continents │ │ │ │ ├── Africa.txt │ │ │ │ ├── Asia.txt │ │ │ │ ├── Europe.txt │ │ │ │ ├── North America.txt │ │ │ │ ├── Oceania.txt │ │ │ │ └── South America.txt │ │ ├── images │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ ├── phpexcel_logo.gif │ │ │ └── termsconditions.jpg │ │ └── runall.php │ ├── changelog.txt │ ├── composer.json │ ├── install.txt │ ├── license.md │ └── unitTests │ │ ├── Classes │ │ └── PHPExcel │ │ │ ├── AutoloaderTest.php │ │ │ ├── Calculation │ │ │ ├── DateTimeTest.php │ │ │ ├── EngineeringTest.php │ │ │ ├── FinancialTest.php │ │ │ ├── FunctionsTest.php │ │ │ ├── LogicalTest.php │ │ │ ├── LookupRefTest.php │ │ │ ├── MathTrigTest.php │ │ │ └── TextDataTest.php │ │ │ ├── CalculationTest.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinderTest.php │ │ │ ├── DataTypeTest.php │ │ │ ├── DefaultValueBinderTest.php │ │ │ └── HyperlinkTest.php │ │ │ ├── CellTest.php │ │ │ ├── Chart │ │ │ ├── DataSeriesValuesTest.php │ │ │ ├── LayoutTest.php │ │ │ └── LegendTest.php │ │ │ ├── Reader │ │ │ └── XEEValidatorTest.php │ │ │ ├── ReferenceHelperTest.php │ │ │ ├── Shared │ │ │ ├── CodePageTest.php │ │ │ ├── DateTest.php │ │ │ ├── FileTest.php │ │ │ ├── FontTest.php │ │ │ ├── PasswordHasherTest.php │ │ │ ├── StringTest.php │ │ │ └── TimeZoneTest.php │ │ │ ├── Style │ │ │ ├── ColorTest.php │ │ │ └── NumberFormatTest.php │ │ │ └── Worksheet │ │ │ ├── AutoFilter │ │ │ ├── Column │ │ │ │ └── RuleTest.php │ │ │ └── ColumnTest.php │ │ │ ├── AutoFilterTest.php │ │ │ ├── CellCollectionTest.php │ │ │ ├── ColumnCellIteratorTest.php │ │ │ ├── ColumnIteratorTest.php │ │ │ ├── RowCellIteratorTest.php │ │ │ ├── RowIteratorTest.php │ │ │ ├── WorksheetColumnTest.php │ │ │ └── WorksheetRowTest.php │ │ ├── bootstrap.php │ │ ├── custom │ │ ├── Complex.php │ │ └── complexAssert.php │ │ ├── phpunit-cc.xml │ │ ├── phpunit.xml │ │ ├── rawTestData │ │ ├── Calculation │ │ │ ├── DateTime │ │ │ │ ├── DATE.data │ │ │ │ ├── DATEDIF.data │ │ │ │ ├── DATEVALUE.data │ │ │ │ ├── DAY.data │ │ │ │ ├── DAYS360.data │ │ │ │ ├── EDATE.data │ │ │ │ ├── EOMONTH.data │ │ │ │ ├── HOUR.data │ │ │ │ ├── MINUTE.data │ │ │ │ ├── MONTH.data │ │ │ │ ├── NETWORKDAYS.data │ │ │ │ ├── SECOND.data │ │ │ │ ├── TIME.data │ │ │ │ ├── TIMEVALUE.data │ │ │ │ ├── WEEKDAY.data │ │ │ │ ├── WEEKNUM.data │ │ │ │ ├── WORKDAY.data │ │ │ │ ├── YEAR.data │ │ │ │ └── YEARFRAC.data │ │ │ ├── Engineering │ │ │ │ ├── BESSELI.data │ │ │ │ ├── BESSELJ.data │ │ │ │ ├── BESSELK.data │ │ │ │ ├── BESSELY.data │ │ │ │ ├── BIN2DEC.data │ │ │ │ ├── BIN2HEX.data │ │ │ │ ├── BIN2OCT.data │ │ │ │ ├── COMPLEX.data │ │ │ │ ├── CONVERTUOM.data │ │ │ │ ├── DEC2BIN.data │ │ │ │ ├── DEC2HEX.data │ │ │ │ ├── DEC2OCT.data │ │ │ │ ├── DELTA.data │ │ │ │ ├── ERF.data │ │ │ │ ├── ERFC.data │ │ │ │ ├── GESTEP.data │ │ │ │ ├── HEX2BIN.data │ │ │ │ ├── HEX2DEC.data │ │ │ │ ├── HEX2OCT.data │ │ │ │ ├── IMABS.data │ │ │ │ ├── IMAGINARY.data │ │ │ │ ├── IMARGUMENT.data │ │ │ │ ├── IMCONJUGATE.data │ │ │ │ ├── IMCOS.data │ │ │ │ ├── IMDIV.data │ │ │ │ ├── IMEXP.data │ │ │ │ ├── IMLN.data │ │ │ │ ├── IMLOG10.data │ │ │ │ ├── IMLOG2.data │ │ │ │ ├── IMPOWER.data │ │ │ │ ├── IMPRODUCT.data │ │ │ │ ├── IMREAL.data │ │ │ │ ├── IMSIN.data │ │ │ │ ├── IMSQRT.data │ │ │ │ ├── IMSUB.data │ │ │ │ ├── IMSUM.data │ │ │ │ ├── OCT2BIN.data │ │ │ │ ├── OCT2DEC.data │ │ │ │ └── OCT2HEX.data │ │ │ ├── Financial │ │ │ │ ├── ACCRINT.data │ │ │ │ ├── ACCRINTM.data │ │ │ │ ├── AMORDEGRC.data │ │ │ │ ├── AMORLINC.data │ │ │ │ ├── COUPDAYBS.data │ │ │ │ ├── COUPDAYS.data │ │ │ │ ├── COUPDAYSNC.data │ │ │ │ ├── COUPNCD.data │ │ │ │ ├── COUPNUM.data │ │ │ │ ├── COUPPCD.data │ │ │ │ ├── CUMIPMT.data │ │ │ │ ├── CUMPRINC.data │ │ │ │ ├── DB.data │ │ │ │ ├── DDB.data │ │ │ │ ├── DISC.data │ │ │ │ ├── DOLLARDE.data │ │ │ │ ├── DOLLARFR.data │ │ │ │ ├── EFFECT.data │ │ │ │ ├── FV.data │ │ │ │ ├── FVSCHEDULE.data │ │ │ │ ├── INTRATE.data │ │ │ │ ├── IPMT.data │ │ │ │ ├── IRR.data │ │ │ │ ├── ISPMT.data │ │ │ │ ├── MIRR.data │ │ │ │ ├── NOMINAL.data │ │ │ │ ├── NPER.data │ │ │ │ ├── NPV.data │ │ │ │ ├── PRICE.data │ │ │ │ ├── RATE.data │ │ │ │ └── XIRR.data │ │ │ ├── Functions │ │ │ │ ├── ERROR_TYPE.data │ │ │ │ ├── IS_BLANK.data │ │ │ │ ├── IS_ERR.data │ │ │ │ ├── IS_ERROR.data │ │ │ │ ├── IS_EVEN.data │ │ │ │ ├── IS_LOGICAL.data │ │ │ │ ├── IS_NA.data │ │ │ │ ├── IS_NONTEXT.data │ │ │ │ ├── IS_NUMBER.data │ │ │ │ ├── IS_ODD.data │ │ │ │ ├── IS_TEXT.data │ │ │ │ ├── N.data │ │ │ │ └── TYPE.data │ │ │ ├── Logical │ │ │ │ ├── AND.data │ │ │ │ ├── IF.data │ │ │ │ ├── IFERROR.data │ │ │ │ ├── NOT.data │ │ │ │ └── OR.data │ │ │ ├── LookupRef │ │ │ │ ├── HLOOKUP.data │ │ │ │ └── VLOOKUP.data │ │ │ ├── MathTrig │ │ │ │ ├── ATAN2.data │ │ │ │ ├── CEILING.data │ │ │ │ ├── COMBIN.data │ │ │ │ ├── EVEN.data │ │ │ │ ├── FACT.data │ │ │ │ ├── FACTDOUBLE.data │ │ │ │ ├── FLOOR.data │ │ │ │ ├── GCD.data │ │ │ │ ├── INT.data │ │ │ │ ├── LCM.data │ │ │ │ ├── LOG.data │ │ │ │ ├── MDETERM.data │ │ │ │ ├── MINVERSE.data │ │ │ │ ├── MMULT.data │ │ │ │ ├── MOD.data │ │ │ │ ├── MROUND.data │ │ │ │ ├── MULTINOMIAL.data │ │ │ │ ├── ODD.data │ │ │ │ ├── POWER.data │ │ │ │ ├── PRODUCT.data │ │ │ │ ├── QUOTIENT.data │ │ │ │ ├── ROMAN.data │ │ │ │ ├── ROUNDDOWN.data │ │ │ │ ├── ROUNDUP.data │ │ │ │ ├── SERIESSUM.data │ │ │ │ ├── SIGN.data │ │ │ │ ├── SQRTPI.data │ │ │ │ ├── SUMSQ.data │ │ │ │ └── TRUNC.data │ │ │ └── TextData │ │ │ │ ├── CHAR.data │ │ │ │ ├── CLEAN.data │ │ │ │ ├── CODE.data │ │ │ │ ├── CONCATENATE.data │ │ │ │ ├── DOLLAR.data │ │ │ │ ├── FIND.data │ │ │ │ ├── FIXED.data │ │ │ │ ├── LEFT.data │ │ │ │ ├── LEN.data │ │ │ │ ├── LOWER.data │ │ │ │ ├── MID.data │ │ │ │ ├── PROPER.data │ │ │ │ ├── REPLACE.data │ │ │ │ ├── RIGHT.data │ │ │ │ ├── SEARCH.data │ │ │ │ ├── SUBSTITUTE.data │ │ │ │ ├── T.data │ │ │ │ ├── TEXT.data │ │ │ │ ├── TRIM.data │ │ │ │ ├── UPPER.data │ │ │ │ └── VALUE.data │ │ ├── CalculationBinaryComparisonOperation.data │ │ ├── Cell │ │ │ └── DefaultValueBinder.data │ │ ├── CellAbsoluteCoordinate.data │ │ ├── CellAbsoluteReference.data │ │ ├── CellBuildRange.data │ │ ├── CellCoordinates.data │ │ ├── CellExtractAllCellReferencesInRange.data │ │ ├── CellGetRangeBoundaries.data │ │ ├── CellRangeBoundaries.data │ │ ├── CellRangeDimension.data │ │ ├── CellSplitRange.data │ │ ├── ColumnIndex.data │ │ ├── ColumnString.data │ │ ├── Reader │ │ │ ├── XEETestInvalidUTF-16.xml │ │ │ ├── XEETestInvalidUTF-16BE.xml │ │ │ ├── XEETestInvalidUTF-16LE.xml │ │ │ ├── XEETestInvalidUTF-8.xml │ │ │ ├── XEETestValidUTF-16.xml │ │ │ ├── XEETestValidUTF-16BE.xml │ │ │ ├── XEETestValidUTF-16LE.xml │ │ │ └── XEETestValidUTF-8.xml │ │ ├── Shared │ │ │ ├── CentimeterSizeToPixels.data │ │ │ ├── CodePage.data │ │ │ ├── DateTimeExcelToPHP1900.data │ │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ │ ├── DateTimeExcelToPHP1904.data │ │ │ ├── DateTimeFormatCodes.data │ │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1904.data │ │ │ ├── FontSizeToPixels.data │ │ │ ├── InchSizeToPixels.data │ │ │ └── PasswordHashes.data │ │ └── Style │ │ │ ├── ColorChangeBrightness.data │ │ │ ├── ColorGetBlue.data │ │ │ ├── ColorGetGreen.data │ │ │ ├── ColorGetRed.data │ │ │ └── NumberFormat.data │ │ └── testDataFileIterator.php └── phpword │ ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── how-to-use.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ ├── support.yml │ └── workflows │ │ ├── ci.yml │ │ ├── github-pages.yml │ │ └── stale.yml │ ├── .github_changelog_generator │ ├── .php-cs-fixer.dist.php │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── COPYING.LESSER │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── composer.json │ ├── phpword.ini.dist │ ├── sonar-project.properties │ └── src │ └── PhpWord │ ├── Collection │ ├── AbstractCollection.php │ ├── Bookmarks.php │ ├── Charts.php │ ├── Comments.php │ ├── Endnotes.php │ ├── Footnotes.php │ └── Titles.php │ ├── ComplexType │ ├── FootnoteProperties.php │ ├── ProofState.php │ ├── TblWidth.php │ └── TrackChangesView.php │ ├── Element │ ├── AbstractContainer.php │ ├── AbstractElement.php │ ├── Bookmark.php │ ├── Cell.php │ ├── Chart.php │ ├── CheckBox.php │ ├── Comment.php │ ├── Endnote.php │ ├── Field.php │ ├── Footer.php │ ├── Footnote.php │ ├── FormField.php │ ├── Header.php │ ├── Image.php │ ├── Line.php │ ├── Link.php │ ├── ListItem.php │ ├── ListItemRun.php │ ├── OLEObject.php │ ├── PageBreak.php │ ├── PreserveText.php │ ├── Row.php │ ├── SDT.php │ ├── Section.php │ ├── Shape.php │ ├── TOC.php │ ├── Table.php │ ├── Text.php │ ├── TextBox.php │ ├── TextBreak.php │ ├── TextRun.php │ ├── Title.php │ └── TrackChange.php │ ├── Escaper │ ├── AbstractEscaper.php │ ├── EscaperInterface.php │ ├── RegExp.php │ ├── Rtf.php │ └── Xml.php │ ├── Exception │ ├── CopyFileException.php │ ├── CreateTemporaryFileException.php │ ├── Exception.php │ ├── InvalidImageException.php │ ├── InvalidObjectException.php │ ├── InvalidStyleException.php │ └── UnsupportedImageTypeException.php │ ├── IOFactory.php │ ├── Media.php │ ├── Metadata │ ├── Compatibility.php │ ├── DocInfo.php │ ├── Protection.php │ └── Settings.php │ ├── PhpWord.php │ ├── Reader │ ├── AbstractReader.php │ ├── HTML.php │ ├── MsDoc.php │ ├── ODText.php │ ├── ODText │ │ ├── AbstractPart.php │ │ ├── Content.php │ │ └── Meta.php │ ├── RTF.php │ ├── RTF │ │ └── Document.php │ ├── ReaderInterface.php │ ├── Word2007.php │ └── Word2007 │ │ ├── AbstractPart.php │ │ ├── DocPropsApp.php │ │ ├── DocPropsCore.php │ │ ├── DocPropsCustom.php │ │ ├── Document.php │ │ ├── Endnotes.php │ │ ├── Footnotes.php │ │ ├── Numbering.php │ │ ├── Settings.php │ │ └── Styles.php │ ├── Settings.php │ ├── Shared │ ├── AbstractEnum.php │ ├── Converter.php │ ├── Drawing.php │ ├── Html.php │ ├── Microsoft │ │ └── PasswordEncoder.php │ ├── OLERead.php │ ├── PCLZip │ │ └── pclzip.lib.php │ ├── Text.php │ ├── XMLReader.php │ ├── XMLWriter.php │ └── ZipArchive.php │ ├── SimpleType │ ├── Border.php │ ├── DocProtect.php │ ├── Jc.php │ ├── JcTable.php │ ├── LineSpacingRule.php │ ├── NumberFormat.php │ ├── TblWidth.php │ ├── TextAlignment.php │ ├── VerticalJc.php │ └── Zoom.php │ ├── Style.php │ ├── Style │ ├── AbstractStyle.php │ ├── Border.php │ ├── Cell.php │ ├── Chart.php │ ├── Extrusion.php │ ├── Fill.php │ ├── Font.php │ ├── Frame.php │ ├── Image.php │ ├── Indentation.php │ ├── Language.php │ ├── Line.php │ ├── LineNumbering.php │ ├── ListItem.php │ ├── Numbering.php │ ├── NumberingLevel.php │ ├── Outline.php │ ├── Paper.php │ ├── Paragraph.php │ ├── Row.php │ ├── Section.php │ ├── Shading.php │ ├── Shadow.php │ ├── Shape.php │ ├── Spacing.php │ ├── TOC.php │ ├── Tab.php │ ├── Table.php │ ├── TablePosition.php │ └── TextBox.php │ ├── TemplateProcessor.php │ ├── Writer │ ├── AbstractWriter.php │ ├── HTML.php │ ├── HTML │ │ ├── Element │ │ │ ├── AbstractElement.php │ │ │ ├── Bookmark.php │ │ │ ├── Container.php │ │ │ ├── Endnote.php │ │ │ ├── Footnote.php │ │ │ ├── Image.php │ │ │ ├── Link.php │ │ │ ├── ListItem.php │ │ │ ├── ListItemRun.php │ │ │ ├── PageBreak.php │ │ │ ├── Table.php │ │ │ ├── Text.php │ │ │ ├── TextBreak.php │ │ │ ├── TextRun.php │ │ │ └── Title.php │ │ ├── Part │ │ │ ├── AbstractPart.php │ │ │ ├── Body.php │ │ │ └── Head.php │ │ └── Style │ │ │ ├── AbstractStyle.php │ │ │ ├── Font.php │ │ │ ├── Generic.php │ │ │ ├── Image.php │ │ │ └── Paragraph.php │ ├── ODText.php │ ├── ODText │ │ ├── Element │ │ │ ├── AbstractElement.php │ │ │ ├── Container.php │ │ │ ├── Field.php │ │ │ ├── Image.php │ │ │ ├── Link.php │ │ │ ├── PageBreak.php │ │ │ ├── Table.php │ │ │ ├── Text.php │ │ │ ├── TextBreak.php │ │ │ ├── TextRun.php │ │ │ └── Title.php │ │ ├── Part │ │ │ ├── AbstractPart.php │ │ │ ├── Content.php │ │ │ ├── Manifest.php │ │ │ ├── Meta.php │ │ │ ├── Mimetype.php │ │ │ └── Styles.php │ │ └── Style │ │ │ ├── AbstractStyle.php │ │ │ ├── Font.php │ │ │ ├── Image.php │ │ │ ├── Paragraph.php │ │ │ ├── Section.php │ │ │ └── Table.php │ ├── PDF.php │ ├── PDF │ │ ├── AbstractRenderer.php │ │ ├── DomPDF.php │ │ ├── MPDF.php │ │ └── TCPDF.php │ ├── RTF.php │ ├── RTF │ │ ├── Element │ │ │ ├── AbstractElement.php │ │ │ ├── Container.php │ │ │ ├── Field.php │ │ │ ├── Image.php │ │ │ ├── Link.php │ │ │ ├── ListItem.php │ │ │ ├── PageBreak.php │ │ │ ├── Table.php │ │ │ ├── Text.php │ │ │ ├── TextBreak.php │ │ │ ├── TextRun.php │ │ │ └── Title.php │ │ ├── Part │ │ │ ├── AbstractPart.php │ │ │ ├── Document.php │ │ │ └── Header.php │ │ └── Style │ │ │ ├── AbstractStyle.php │ │ │ ├── Border.php │ │ │ ├── Font.php │ │ │ ├── Indentation.php │ │ │ ├── Paragraph.php │ │ │ ├── Section.php │ │ │ └── Tab.php │ ├── Word2007.php │ ├── Word2007 │ │ ├── Element │ │ │ ├── AbstractElement.php │ │ │ ├── Bookmark.php │ │ │ ├── Chart.php │ │ │ ├── CheckBox.php │ │ │ ├── Container.php │ │ │ ├── Endnote.php │ │ │ ├── Field.php │ │ │ ├── Footnote.php │ │ │ ├── FormField.php │ │ │ ├── Image.php │ │ │ ├── Line.php │ │ │ ├── Link.php │ │ │ ├── ListItem.php │ │ │ ├── ListItemRun.php │ │ │ ├── OLEObject.php │ │ │ ├── PageBreak.php │ │ │ ├── ParagraphAlignment.php │ │ │ ├── PreserveText.php │ │ │ ├── SDT.php │ │ │ ├── Shape.php │ │ │ ├── TOC.php │ │ │ ├── Table.php │ │ │ ├── TableAlignment.php │ │ │ ├── Text.php │ │ │ ├── TextBox.php │ │ │ ├── TextBreak.php │ │ │ ├── TextRun.php │ │ │ └── Title.php │ │ ├── Part │ │ │ ├── AbstractPart.php │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DocPropsApp.php │ │ │ ├── DocPropsCore.php │ │ │ ├── DocPropsCustom.php │ │ │ ├── Document.php │ │ │ ├── Endnotes.php │ │ │ ├── FontTable.php │ │ │ ├── Footer.php │ │ │ ├── Footnotes.php │ │ │ ├── Header.php │ │ │ ├── Numbering.php │ │ │ ├── Rels.php │ │ │ ├── RelsDocument.php │ │ │ ├── RelsPart.php │ │ │ ├── Settings.php │ │ │ ├── Styles.php │ │ │ ├── Theme.php │ │ │ └── WebSettings.php │ │ └── Style │ │ │ ├── AbstractStyle.php │ │ │ ├── Cell.php │ │ │ ├── Extrusion.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── Frame.php │ │ │ ├── Image.php │ │ │ ├── Indentation.php │ │ │ ├── Line.php │ │ │ ├── LineNumbering.php │ │ │ ├── MarginBorder.php │ │ │ ├── Outline.php │ │ │ ├── Paragraph.php │ │ │ ├── Row.php │ │ │ ├── Section.php │ │ │ ├── Shading.php │ │ │ ├── Shadow.php │ │ │ ├── Shape.php │ │ │ ├── Spacing.php │ │ │ ├── Tab.php │ │ │ ├── Table.php │ │ │ ├── TablePosition.php │ │ │ └── TextBox.php │ └── WriterInterface.php │ └── resources │ ├── doc.png │ ├── ppt.png │ └── xls.png ├── phpseclib └── phpseclib │ ├── AUTHORS │ ├── BACKERS.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── phpseclib │ ├── Common │ └── Functions │ │ └── Strings.php │ ├── Crypt │ ├── AES.php │ ├── Blowfish.php │ ├── ChaCha20.php │ ├── Common │ │ ├── AsymmetricKey.php │ │ ├── BlockCipher.php │ │ ├── Formats │ │ │ ├── Keys │ │ │ │ ├── JWK.php │ │ │ │ ├── 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 │ │ │ │ ├── JWK.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 │ │ │ │ ├── JWK.php │ │ │ │ ├── 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 ├── phpunit ├── php-code-coverage │ ├── ChangeLog-10.1.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── CodeCoverage.php │ │ ├── Data │ │ ├── ProcessedCodeCoverageData.php │ │ └── RawCodeCoverageData.php │ │ ├── Driver │ │ ├── Driver.php │ │ ├── PcovDriver.php │ │ ├── Selector.php │ │ └── XdebugDriver.php │ │ ├── Exception │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ ├── Exception.php │ │ ├── FileCouldNotBeWrittenException.php │ │ ├── InvalidArgumentException.php │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ ├── ParserException.php │ │ ├── PathExistsButIsNotDirectoryException.php │ │ ├── PcovNotAvailableException.php │ │ ├── ReflectionException.php │ │ ├── ReportAlreadyFinalizedException.php │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ ├── TestIdMissingException.php │ │ ├── UnintentionallyCoveredCodeException.php │ │ ├── WriteOperationFailedException.php │ │ ├── XdebugNotAvailableException.php │ │ ├── XdebugNotEnabledException.php │ │ └── XmlException.php │ │ ├── Filter.php │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── Builder.php │ │ ├── CrapIndex.php │ │ ├── Directory.php │ │ ├── File.php │ │ └── Iterator.php │ │ ├── Report │ │ ├── Clover.php │ │ ├── Cobertura.php │ │ ├── Crap4j.php │ │ ├── Html │ │ │ ├── Colors.php │ │ │ ├── CustomCssFile.php │ │ │ ├── Facade.php │ │ │ ├── Renderer.php │ │ │ └── Renderer │ │ │ │ ├── Dashboard.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Template │ │ │ │ ├── branches.html.dist │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── custom.css │ │ │ │ ├── nv.d3.min.css │ │ │ │ ├── octicons.css │ │ │ │ └── style.css │ │ │ │ ├── dashboard.html.dist │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ ├── directory.html.dist │ │ │ │ ├── directory_branch.html.dist │ │ │ │ ├── directory_item.html.dist │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ ├── file.html.dist │ │ │ │ ├── file_branch.html.dist │ │ │ │ ├── file_item.html.dist │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ ├── icons │ │ │ │ ├── file-code.svg │ │ │ │ └── file-directory.svg │ │ │ │ ├── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── d3.min.js │ │ │ │ ├── file.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── nv.d3.min.js │ │ │ │ └── popper.min.js │ │ │ │ ├── line.html.dist │ │ │ │ ├── lines.html.dist │ │ │ │ ├── method_item.html.dist │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ └── paths.html.dist │ │ ├── PHP.php │ │ ├── Text.php │ │ ├── Thresholds.php │ │ └── Xml │ │ │ ├── BuildInformation.php │ │ │ ├── Coverage.php │ │ │ ├── Directory.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ ├── Project.php │ │ │ ├── Report.php │ │ │ ├── Source.php │ │ │ ├── Tests.php │ │ │ ├── Totals.php │ │ │ └── Unit.php │ │ ├── StaticAnalysis │ │ ├── CacheWarmer.php │ │ ├── CachingFileAnalyser.php │ │ ├── CodeUnitFindingVisitor.php │ │ ├── ExecutableLinesFindingVisitor.php │ │ ├── FileAnalyser.php │ │ ├── IgnoredLinesFindingVisitor.php │ │ └── ParsingFileAnalyser.php │ │ ├── TestSize │ │ ├── Known.php │ │ ├── Large.php │ │ ├── Medium.php │ │ ├── Small.php │ │ ├── TestSize.php │ │ └── Unknown.php │ │ ├── TestStatus │ │ ├── Failure.php │ │ ├── Known.php │ │ ├── Success.php │ │ ├── TestStatus.php │ │ └── Unknown.php │ │ ├── Util │ │ ├── Filesystem.php │ │ └── Percentage.php │ │ └── Version.php ├── php-file-iterator │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── ExcludeIterator.php │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-invoker │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Invoker.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ └── TimeoutException.php ├── php-text-template │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Template.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php ├── php-timer │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Duration.php │ │ ├── ResourceUsageFormatter.php │ │ ├── Timer.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── NoActiveTimerException.php │ │ └── TimeSinceStartOfRequestNotAvailableException.php └── phpunit │ ├── .phpstorm.meta.php │ ├── ChangeLog-10.4.md │ ├── DEPRECATIONS.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── phpunit │ ├── phpunit.xsd │ ├── schema │ ├── 10.0.xsd │ ├── 8.5.xsd │ ├── 9.2.xsd │ └── 9.5.xsd │ └── src │ ├── Event │ ├── Dispatcher │ │ ├── CollectingDispatcher.php │ │ ├── DeferringDispatcher.php │ │ ├── DirectDispatcher.php │ │ ├── Dispatcher.php │ │ └── SubscribableDispatcher.php │ ├── Emitter │ │ ├── DispatchingEmitter.php │ │ └── Emitter.php │ ├── Events │ │ ├── Application │ │ │ ├── Finished.php │ │ │ ├── FinishedSubscriber.php │ │ │ ├── Started.php │ │ │ └── StartedSubscriber.php │ │ ├── Event.php │ │ ├── EventCollection.php │ │ ├── EventCollectionIterator.php │ │ ├── Test │ │ │ ├── Assertion │ │ │ │ ├── AssertionFailed.php │ │ │ │ ├── AssertionFailedSubscriber.php │ │ │ │ ├── AssertionSucceeded.php │ │ │ │ └── AssertionSucceededSubscriber.php │ │ │ ├── ComparatorRegistered.php │ │ │ ├── ComparatorRegisteredSubscriber.php │ │ │ ├── HookMethod │ │ │ │ ├── AfterLastTestMethodCalled.php │ │ │ │ ├── AfterLastTestMethodCalledSubscriber.php │ │ │ │ ├── AfterLastTestMethodFinished.php │ │ │ │ ├── AfterLastTestMethodFinishedSubscriber.php │ │ │ │ ├── AfterTestMethodCalled.php │ │ │ │ ├── AfterTestMethodCalledSubscriber.php │ │ │ │ ├── AfterTestMethodFinished.php │ │ │ │ ├── AfterTestMethodFinishedSubscriber.php │ │ │ │ ├── BeforeFirstTestMethodCalled.php │ │ │ │ ├── BeforeFirstTestMethodCalledSubscriber.php │ │ │ │ ├── BeforeFirstTestMethodErrored.php │ │ │ │ ├── BeforeFirstTestMethodErroredSubscriber.php │ │ │ │ ├── BeforeFirstTestMethodFinished.php │ │ │ │ ├── BeforeFirstTestMethodFinishedSubscriber.php │ │ │ │ ├── BeforeTestMethodCalled.php │ │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ │ ├── BeforeTestMethodFinished.php │ │ │ │ ├── BeforeTestMethodFinishedSubscriber.php │ │ │ │ ├── PostConditionCalled.php │ │ │ │ ├── PostConditionCalledSubscriber.php │ │ │ │ ├── PostConditionFinished.php │ │ │ │ ├── PostConditionFinishedSubscriber.php │ │ │ │ ├── PreConditionCalled.php │ │ │ │ ├── PreConditionCalledSubscriber.php │ │ │ │ ├── PreConditionFinished.php │ │ │ │ └── PreConditionFinishedSubscriber.php │ │ │ ├── Issue │ │ │ │ ├── ConsideredRisky.php │ │ │ │ ├── ConsideredRiskySubscriber.php │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ ├── ErrorTriggered.php │ │ │ │ ├── ErrorTriggeredSubscriber.php │ │ │ │ ├── NoticeTriggered.php │ │ │ │ ├── NoticeTriggeredSubscriber.php │ │ │ │ ├── PhpDeprecationTriggered.php │ │ │ │ ├── PhpDeprecationTriggeredSubscriber.php │ │ │ │ ├── PhpNoticeTriggered.php │ │ │ │ ├── PhpNoticeTriggeredSubscriber.php │ │ │ │ ├── PhpWarningTriggered.php │ │ │ │ ├── PhpWarningTriggeredSubscriber.php │ │ │ │ ├── PhpunitDeprecationTriggered.php │ │ │ │ ├── PhpunitDeprecationTriggeredSubscriber.php │ │ │ │ ├── PhpunitErrorTriggered.php │ │ │ │ ├── PhpunitErrorTriggeredSubscriber.php │ │ │ │ ├── PhpunitWarningTriggered.php │ │ │ │ ├── PhpunitWarningTriggeredSubscriber.php │ │ │ │ ├── WarningTriggered.php │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ ├── Lifecycle │ │ │ │ ├── DataProviderMethodCalled.php │ │ │ │ ├── DataProviderMethodCalledSubscriber.php │ │ │ │ ├── DataProviderMethodFinished.php │ │ │ │ ├── DataProviderMethodFinishedSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── PreparationFailed.php │ │ │ │ ├── PreparationFailedSubscriber.php │ │ │ │ ├── PreparationStarted.php │ │ │ │ ├── PreparationStartedSubscriber.php │ │ │ │ ├── Prepared.php │ │ │ │ └── PreparedSubscriber.php │ │ │ ├── Outcome │ │ │ │ ├── Errored.php │ │ │ │ ├── ErroredSubscriber.php │ │ │ │ ├── Failed.php │ │ │ │ ├── FailedSubscriber.php │ │ │ │ ├── MarkedIncomplete.php │ │ │ │ ├── MarkedIncompleteSubscriber.php │ │ │ │ ├── Passed.php │ │ │ │ ├── PassedSubscriber.php │ │ │ │ ├── Skipped.php │ │ │ │ └── SkippedSubscriber.php │ │ │ ├── PrintedUnexpectedOutput.php │ │ │ ├── PrintedUnexpectedOutputSubscriber.php │ │ │ └── TestDouble │ │ │ │ ├── MockObjectCreated.php │ │ │ │ ├── MockObjectCreatedSubscriber.php │ │ │ │ ├── MockObjectForAbstractClassCreated.php │ │ │ │ ├── MockObjectForAbstractClassCreatedSubscriber.php │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreated.php │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ ├── MockObjectForTraitCreated.php │ │ │ │ ├── MockObjectForTraitCreatedSubscriber.php │ │ │ │ ├── MockObjectFromWsdlCreated.php │ │ │ │ ├── MockObjectFromWsdlCreatedSubscriber.php │ │ │ │ ├── PartialMockObjectCreated.php │ │ │ │ ├── PartialMockObjectCreatedSubscriber.php │ │ │ │ ├── TestProxyCreated.php │ │ │ │ ├── TestProxyCreatedSubscriber.php │ │ │ │ ├── TestStubCreated.php │ │ │ │ ├── TestStubCreatedSubscriber.php │ │ │ │ ├── TestStubForIntersectionOfInterfacesCreated.php │ │ │ │ └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │ │ ├── TestRunner │ │ │ ├── BootstrapFinished.php │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ ├── Configured.php │ │ │ ├── ConfiguredSubscriber.php │ │ │ ├── DeprecationTriggered.php │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ ├── EventFacadeSealed.php │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ ├── ExecutionAborted.php │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ ├── ExecutionFinished.php │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ ├── ExecutionStarted.php │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ ├── ExtensionBootstrapped.php │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ ├── Finished.php │ │ │ ├── FinishedSubscriber.php │ │ │ ├── GarbageCollectionDisabled.php │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ ├── GarbageCollectionEnabled.php │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ ├── GarbageCollectionTriggered.php │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ ├── Started.php │ │ │ ├── StartedSubscriber.php │ │ │ ├── WarningTriggered.php │ │ │ └── WarningTriggeredSubscriber.php │ │ └── TestSuite │ │ │ ├── Filtered.php │ │ │ ├── FilteredSubscriber.php │ │ │ ├── Finished.php │ │ │ ├── FinishedSubscriber.php │ │ │ ├── Loaded.php │ │ │ ├── LoadedSubscriber.php │ │ │ ├── Skipped.php │ │ │ ├── SkippedSubscriber.php │ │ │ ├── Sorted.php │ │ │ ├── SortedSubscriber.php │ │ │ ├── Started.php │ │ │ └── StartedSubscriber.php │ ├── Exception │ │ ├── EventAlreadyAssignedException.php │ │ ├── EventFacadeIsSealedException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidEventException.php │ │ ├── InvalidSubscriberException.php │ │ ├── MapError.php │ │ ├── MoreThanOneDataSetFromDataProviderException.php │ │ ├── NoComparisonFailureException.php │ │ ├── NoDataSetFromDataProviderException.php │ │ ├── NoPreviousThrowableException.php │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ ├── RuntimeException.php │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ ├── UnknownEventException.php │ │ ├── UnknownEventTypeException.php │ │ ├── UnknownSubscriberException.php │ │ └── UnknownSubscriberTypeException.php │ ├── Facade.php │ ├── Subscriber.php │ ├── Tracer.php │ ├── TypeMap.php │ └── Value │ │ ├── ClassMethod.php │ │ ├── ComparisonFailure.php │ │ ├── ComparisonFailureBuilder.php │ │ ├── Runtime │ │ ├── OperatingSystem.php │ │ ├── PHP.php │ │ ├── PHPUnit.php │ │ └── Runtime.php │ │ ├── Telemetry │ │ ├── Duration.php │ │ ├── GarbageCollectorStatus.php │ │ ├── GarbageCollectorStatusProvider.php │ │ ├── HRTime.php │ │ ├── Info.php │ │ ├── MemoryMeter.php │ │ ├── MemoryUsage.php │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ ├── Snapshot.php │ │ ├── StopWatch.php │ │ ├── System.php │ │ ├── SystemMemoryMeter.php │ │ ├── SystemStopWatch.php │ │ └── SystemStopWatchWithOffset.php │ │ ├── Test │ │ ├── Phpt.php │ │ ├── Test.php │ │ ├── TestCollection.php │ │ ├── TestCollectionIterator.php │ │ ├── TestData │ │ │ ├── DataFromDataProvider.php │ │ │ ├── DataFromTestDependency.php │ │ │ ├── TestData.php │ │ │ ├── TestDataCollection.php │ │ │ └── TestDataCollectionIterator.php │ │ ├── TestDox.php │ │ ├── TestDoxBuilder.php │ │ ├── TestMethod.php │ │ └── TestMethodBuilder.php │ │ ├── TestSuite │ │ ├── TestSuite.php │ │ ├── TestSuiteBuilder.php │ │ ├── TestSuiteForTestClass.php │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ └── TestSuiteWithName.php │ │ ├── Throwable.php │ │ └── ThrowableBuilder.php │ ├── Exception.php │ ├── Framework │ ├── Assert.php │ ├── Assert │ │ └── Functions.php │ ├── Attributes │ │ ├── After.php │ │ ├── AfterClass.php │ │ ├── BackupGlobals.php │ │ ├── BackupStaticProperties.php │ │ ├── Before.php │ │ ├── BeforeClass.php │ │ ├── CodeCoverageIgnore.php │ │ ├── CoversClass.php │ │ ├── CoversFunction.php │ │ ├── CoversNothing.php │ │ ├── DataProvider.php │ │ ├── DataProviderExternal.php │ │ ├── Depends.php │ │ ├── DependsExternal.php │ │ ├── DependsExternalUsingDeepClone.php │ │ ├── DependsExternalUsingShallowClone.php │ │ ├── DependsOnClass.php │ │ ├── DependsOnClassUsingDeepClone.php │ │ ├── DependsOnClassUsingShallowClone.php │ │ ├── DependsUsingDeepClone.php │ │ ├── DependsUsingShallowClone.php │ │ ├── DoesNotPerformAssertions.php │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ ├── Group.php │ │ ├── IgnoreClassForCodeCoverage.php │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ ├── IgnoreMethodForCodeCoverage.php │ │ ├── Large.php │ │ ├── Medium.php │ │ ├── PostCondition.php │ │ ├── PreCondition.php │ │ ├── PreserveGlobalState.php │ │ ├── RequiresFunction.php │ │ ├── RequiresMethod.php │ │ ├── RequiresOperatingSystem.php │ │ ├── RequiresOperatingSystemFamily.php │ │ ├── RequiresPhp.php │ │ ├── RequiresPhpExtension.php │ │ ├── RequiresPhpunit.php │ │ ├── RequiresSetting.php │ │ ├── RunClassInSeparateProcess.php │ │ ├── RunInSeparateProcess.php │ │ ├── RunTestsInSeparateProcesses.php │ │ ├── Small.php │ │ ├── Test.php │ │ ├── TestDox.php │ │ ├── TestWith.php │ │ ├── TestWithJson.php │ │ ├── Ticket.php │ │ ├── UsesClass.php │ │ ├── UsesFunction.php │ │ └── WithoutErrorHandler.php │ ├── Constraint │ │ ├── Boolean │ │ │ ├── IsFalse.php │ │ │ └── IsTrue.php │ │ ├── Callback.php │ │ ├── Cardinality │ │ │ ├── Count.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsEmpty.php │ │ │ ├── LessThan.php │ │ │ └── SameSize.php │ │ ├── Constraint.php │ │ ├── Equality │ │ │ ├── IsEqual.php │ │ │ ├── IsEqualCanonicalizing.php │ │ │ ├── IsEqualIgnoringCase.php │ │ │ └── IsEqualWithDelta.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ ├── Filesystem │ │ │ ├── DirectoryExists.php │ │ │ ├── FileExists.php │ │ │ ├── IsReadable.php │ │ │ └── IsWritable.php │ │ ├── IsAnything.php │ │ ├── IsIdentical.php │ │ ├── JsonMatches.php │ │ ├── Math │ │ │ ├── IsFinite.php │ │ │ ├── IsInfinite.php │ │ │ └── IsNan.php │ │ ├── Object │ │ │ ├── ObjectEquals.php │ │ │ └── ObjectHasProperty.php │ │ ├── Operator │ │ │ ├── BinaryOperator.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalNot.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── Operator.php │ │ │ └── UnaryOperator.php │ │ ├── String │ │ │ ├── IsJson.php │ │ │ ├── RegularExpression.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ ├── StringMatchesFormatDescription.php │ │ │ └── StringStartsWith.php │ │ ├── Traversable │ │ │ ├── ArrayHasKey.php │ │ │ ├── IsList.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsEqual.php │ │ │ ├── TraversableContainsIdentical.php │ │ │ └── TraversableContainsOnly.php │ │ └── Type │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsNull.php │ │ │ └── IsType.php │ ├── DataProviderTestSuite.php │ ├── Exception │ │ ├── AssertionFailedError.php │ │ ├── CodeCoverageException.php │ │ ├── EmptyStringException.php │ │ ├── Exception.php │ │ ├── ExpectationFailedException.php │ │ ├── GeneratorNotSupportedException.php │ │ ├── Incomplete │ │ │ ├── IncompleteTest.php │ │ │ └── IncompleteTestError.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCoversTargetException.php │ │ ├── InvalidDataProviderException.php │ │ ├── InvalidDependencyException.php │ │ ├── NoChildTestSuiteException.php │ │ ├── ObjectEquals │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ ├── PhptAssertionFailedError.php │ │ ├── ProcessIsolationException.php │ │ ├── Skipped │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ └── SkippedWithMessageException.php │ │ ├── UnknownClassOrInterfaceException.php │ │ └── UnknownTypeException.php │ ├── ExecutionOrderDependency.php │ ├── MockObject │ │ ├── ConfigurableMethod.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── CannotUseAddMethodsException.php │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ ├── Exception.php │ │ │ ├── IncompatibleReturnValueException.php │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ ├── NeverReturningMethodException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ └── RuntimeException.php │ │ ├── Generator │ │ │ ├── Exception │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ ├── UnknownClassException.php │ │ │ │ ├── UnknownTraitException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── Generator.php │ │ │ ├── MockClass.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockTrait.php │ │ │ ├── MockType.php │ │ │ ├── TemplateLoader.php │ │ │ └── templates │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── doubled_method.tpl │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── test_double_class.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── wsdl_method.tpl │ │ ├── MockBuilder.php │ │ └── Runtime │ │ │ ├── Api │ │ │ ├── DoubledCloneMethod.php │ │ │ ├── Method.php │ │ │ ├── MockObjectApi.php │ │ │ ├── ProxiedCloneMethod.php │ │ │ └── StubApi.php │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── InvocationStubber.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Interface │ │ │ ├── MockObject.php │ │ │ ├── MockObjectInternal.php │ │ │ ├── Stub.php │ │ │ └── StubInternal.php │ │ │ ├── Invocation.php │ │ │ ├── InvocationHandler.php │ │ │ ├── Matcher.php │ │ │ ├── MethodNameConstraint.php │ │ │ ├── ReturnValueGenerator.php │ │ │ ├── Rule │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── InvocationOrder.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── ParametersRule.php │ │ │ └── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnReference.php │ │ │ ├── ReturnSelf.php │ │ │ ├── ReturnStub.php │ │ │ ├── ReturnValueMap.php │ │ │ └── Stub.php │ ├── Reorderable.php │ ├── SelfDescribing.php │ ├── Test.php │ ├── TestBuilder.php │ ├── TestCase.php │ ├── TestRunner.php │ ├── TestSize │ │ ├── Known.php │ │ ├── Large.php │ │ ├── Medium.php │ │ ├── Small.php │ │ ├── TestSize.php │ │ └── Unknown.php │ ├── TestStatus │ │ ├── Deprecation.php │ │ ├── Error.php │ │ ├── Failure.php │ │ ├── Incomplete.php │ │ ├── Known.php │ │ ├── Notice.php │ │ ├── Risky.php │ │ ├── Skipped.php │ │ ├── Success.php │ │ ├── TestStatus.php │ │ ├── Unknown.php │ │ └── Warning.php │ ├── TestSuite.php │ └── TestSuiteIterator.php │ ├── Logging │ ├── EventLogger.php │ ├── Exception.php │ ├── JUnit │ │ ├── JunitXmlLogger.php │ │ └── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ ├── TestSkippedSubscriber.php │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ └── TestSuiteStartedSubscriber.php │ ├── TeamCity │ │ ├── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ ├── TestSkippedSubscriber.php │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ └── TestSuiteStartedSubscriber.php │ │ └── TeamCityLogger.php │ └── TestDox │ │ ├── HtmlRenderer.php │ │ ├── NamePrettifier.php │ │ ├── PlainTextRenderer.php │ │ └── TestMethod │ │ ├── Subscriber │ │ ├── Subscriber.php │ │ ├── TestConsideredRiskySubscriber.php │ │ ├── TestCreatedMockObjectForAbstractClassSubscriber.php │ │ ├── TestCreatedMockObjectForTraitSubscriber.php │ │ ├── TestCreatedMockObjectFromWsdlSubscriber.php │ │ ├── TestCreatedMockObjectSubscriber.php │ │ ├── TestCreatedPartialMockObjectSubscriber.php │ │ ├── TestCreatedTestProxySubscriber.php │ │ ├── TestCreatedTestStubSubscriber.php │ │ ├── TestErroredSubscriber.php │ │ ├── TestFailedSubscriber.php │ │ ├── TestFinishedSubscriber.php │ │ ├── TestMarkedIncompleteSubscriber.php │ │ ├── TestPassedSubscriber.php │ │ ├── TestPreparedSubscriber.php │ │ └── TestSkippedSubscriber.php │ │ ├── TestResult.php │ │ ├── TestResultCollection.php │ │ ├── TestResultCollectionIterator.php │ │ └── TestResultCollector.php │ ├── Metadata │ ├── After.php │ ├── AfterClass.php │ ├── Api │ │ ├── CodeCoverage.php │ │ ├── DataProvider.php │ │ ├── Dependencies.php │ │ ├── Groups.php │ │ ├── HookMethods.php │ │ └── Requirements.php │ ├── BackupGlobals.php │ ├── BackupStaticProperties.php │ ├── Before.php │ ├── BeforeClass.php │ ├── Covers.php │ ├── CoversClass.php │ ├── CoversDefaultClass.php │ ├── CoversFunction.php │ ├── CoversNothing.php │ ├── DataProvider.php │ ├── DependsOnClass.php │ ├── DependsOnMethod.php │ ├── DoesNotPerformAssertions.php │ ├── Exception │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ ├── Exception.php │ │ ├── InvalidVersionRequirementException.php │ │ ├── NoVersionRequirementException.php │ │ └── ReflectionException.php │ ├── ExcludeGlobalVariableFromBackup.php │ ├── ExcludeStaticPropertyFromBackup.php │ ├── Group.php │ ├── IgnoreClassForCodeCoverage.php │ ├── IgnoreFunctionForCodeCoverage.php │ ├── IgnoreMethodForCodeCoverage.php │ ├── Metadata.php │ ├── MetadataCollection.php │ ├── MetadataCollectionIterator.php │ ├── Parser │ │ ├── Annotation │ │ │ ├── DocBlock.php │ │ │ └── Registry.php │ │ ├── AnnotationParser.php │ │ ├── AttributeParser.php │ │ ├── CachingParser.php │ │ ├── Parser.php │ │ ├── ParserChain.php │ │ └── Registry.php │ ├── PostCondition.php │ ├── PreCondition.php │ ├── PreserveGlobalState.php │ ├── RequiresFunction.php │ ├── RequiresMethod.php │ ├── RequiresOperatingSystem.php │ ├── RequiresOperatingSystemFamily.php │ ├── RequiresPhp.php │ ├── RequiresPhpExtension.php │ ├── RequiresPhpunit.php │ ├── RequiresSetting.php │ ├── RunClassInSeparateProcess.php │ ├── RunInSeparateProcess.php │ ├── RunTestsInSeparateProcesses.php │ ├── Test.php │ ├── TestDox.php │ ├── TestWith.php │ ├── Uses.php │ ├── UsesClass.php │ ├── UsesDefaultClass.php │ ├── UsesFunction.php │ ├── Version │ │ ├── ComparisonRequirement.php │ │ ├── ConstraintRequirement.php │ │ └── Requirement.php │ └── WithoutErrorHandler.php │ ├── Runner │ ├── Baseline │ │ ├── Baseline.php │ │ ├── Exception │ │ │ ├── CannotLoadBaselineException.php │ │ │ └── FileDoesNotHaveLineException.php │ │ ├── Generator.php │ │ ├── Issue.php │ │ ├── Reader.php │ │ ├── RelativePathCalculator.php │ │ ├── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ └── TestTriggeredWarningSubscriber.php │ │ └── Writer.php │ ├── CodeCoverage.php │ ├── ErrorHandler.php │ ├── Exception │ │ ├── ClassCannotBeFoundException.php │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ ├── ClassIsAbstractException.php │ │ ├── DirectoryCannotBeCreatedException.php │ │ ├── Exception.php │ │ ├── FileDoesNotExistException.php │ │ ├── InvalidOrderException.php │ │ ├── InvalidPhptFileException.php │ │ ├── NoIgnoredEventException.php │ │ ├── ParameterDoesNotExistException.php │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ ├── ReflectionException.php │ │ └── UnsupportedPhptSectionException.php │ ├── Extension │ │ ├── Extension.php │ │ ├── ExtensionBootstrapper.php │ │ ├── Facade.php │ │ ├── ParameterCollection.php │ │ └── PharLoader.php │ ├── Filter │ │ ├── ExcludeGroupFilterIterator.php │ │ ├── Factory.php │ │ ├── GroupFilterIterator.php │ │ ├── IncludeGroupFilterIterator.php │ │ ├── NameFilterIterator.php │ │ └── TestIdFilterIterator.php │ ├── GarbageCollection │ │ ├── GarbageCollectionHandler.php │ │ └── Subscriber │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ ├── Subscriber.php │ │ │ └── TestFinishedSubscriber.php │ ├── PhptTestCase.php │ ├── ResultCache │ │ ├── DefaultResultCache.php │ │ ├── NullResultCache.php │ │ ├── ResultCache.php │ │ ├── ResultCacheHandler.php │ │ └── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ ├── TestSkippedSubscriber.php │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ └── TestSuiteStartedSubscriber.php │ ├── TestResult │ │ ├── Collector.php │ │ ├── Facade.php │ │ ├── Issue.php │ │ ├── PassedTests.php │ │ ├── Subscriber │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ ├── TestSkippedSubscriber.php │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ └── TestTriggeredWarningSubscriber.php │ │ └── TestResult.php │ ├── TestSuiteLoader.php │ ├── TestSuiteSorter.php │ └── Version.php │ ├── TextUI │ ├── Application.php │ ├── Command │ │ ├── Command.php │ │ ├── Commands │ │ │ ├── AtLeastVersionCommand.php │ │ │ ├── GenerateConfigurationCommand.php │ │ │ ├── ListGroupsCommand.php │ │ │ ├── ListTestSuitesCommand.php │ │ │ ├── ListTestsAsTextCommand.php │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ ├── MigrateConfigurationCommand.php │ │ │ ├── ShowHelpCommand.php │ │ │ ├── ShowVersionCommand.php │ │ │ ├── VersionCheckCommand.php │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ └── Result.php │ ├── Configuration │ │ ├── Builder.php │ │ ├── Cli │ │ │ ├── Builder.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ └── XmlConfigurationFileFinder.php │ │ ├── CodeCoverageFilterRegistry.php │ │ ├── Configuration.php │ │ ├── Exception │ │ │ ├── CannotFindSchemaException.php │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ ├── Exception.php │ │ │ ├── FilterNotConfiguredException.php │ │ │ ├── IncludePathNotConfiguredException.php │ │ │ ├── LoggingNotConfiguredException.php │ │ │ ├── NoBaselineException.php │ │ │ ├── NoBootstrapException.php │ │ │ ├── NoCacheDirectoryException.php │ │ │ ├── NoCliArgumentException.php │ │ │ ├── NoConfigurationFileException.php │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ ├── NoCustomCssFileException.php │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ └── NoPharExtensionDirectoryException.php │ │ ├── Merger.php │ │ ├── PhpHandler.php │ │ ├── Registry.php │ │ ├── SourceFilter.php │ │ ├── SourceMapper.php │ │ ├── TestSuiteBuilder.php │ │ ├── Value │ │ │ ├── Constant.php │ │ │ ├── ConstantCollection.php │ │ │ ├── ConstantCollectionIterator.php │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ ├── DirectoryCollectionIterator.php │ │ │ ├── ExtensionBootstrap.php │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ ├── File.php │ │ │ ├── FileCollection.php │ │ │ ├── FileCollectionIterator.php │ │ │ ├── FilterDirectory.php │ │ │ ├── FilterDirectoryCollection.php │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ ├── Group.php │ │ │ ├── GroupCollection.php │ │ │ ├── GroupCollectionIterator.php │ │ │ ├── IniSetting.php │ │ │ ├── IniSettingCollection.php │ │ │ ├── IniSettingCollectionIterator.php │ │ │ ├── Php.php │ │ │ ├── Source.php │ │ │ ├── TestDirectory.php │ │ │ ├── TestDirectoryCollection.php │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ ├── TestFile.php │ │ │ ├── TestFileCollection.php │ │ │ ├── TestFileCollectionIterator.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteCollection.php │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ ├── Variable.php │ │ │ ├── VariableCollection.php │ │ │ └── VariableCollectionIterator.php │ │ └── Xml │ │ │ ├── CodeCoverage │ │ │ ├── CodeCoverage.php │ │ │ └── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html.php │ │ │ │ ├── Php.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ ├── Configuration.php │ │ │ ├── DefaultConfiguration.php │ │ │ ├── Exception.php │ │ │ ├── Generator.php │ │ │ ├── Groups.php │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ ├── Loader.php │ │ │ ├── Logging │ │ │ ├── Junit.php │ │ │ ├── Logging.php │ │ │ ├── TeamCity.php │ │ │ └── TestDox │ │ │ │ ├── Html.php │ │ │ │ └── Text.php │ │ │ ├── Migration │ │ │ ├── MigrationBuilder.php │ │ │ ├── MigrationBuilderException.php │ │ │ ├── MigrationException.php │ │ │ ├── Migrations │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ ├── LogToReportMigration.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ ├── RemoveListeners.php │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ └── UpdateSchemaLocation.php │ │ │ ├── Migrator.php │ │ │ └── SnapshotNodeList.php │ │ │ ├── PHPUnit.php │ │ │ ├── SchemaDetector │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ ├── SchemaDetectionResult.php │ │ │ ├── SchemaDetector.php │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ ├── SchemaFinder.php │ │ │ ├── TestSuiteMapper.php │ │ │ └── Validator │ │ │ ├── ValidationResult.php │ │ │ └── Validator.php │ ├── Exception │ │ ├── DirectoryDoesNotExistException.php │ │ ├── Exception.php │ │ ├── ExtensionsNotConfiguredException.php │ │ ├── InvalidSocketException.php │ │ ├── ReflectionException.php │ │ ├── RuntimeException.php │ │ ├── TestDirectoryNotFoundException.php │ │ └── TestFileNotFoundException.php │ ├── Help.php │ ├── Output │ │ ├── Default │ │ │ ├── ProgressPrinter │ │ │ │ ├── ProgressPrinter.php │ │ │ │ └── Subscriber │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ ├── ResultPrinter.php │ │ │ └── UnexpectedOutputPrinter.php │ │ ├── Facade.php │ │ ├── Printer │ │ │ ├── DefaultPrinter.php │ │ │ ├── NullPrinter.php │ │ │ └── Printer.php │ │ ├── SummaryPrinter.php │ │ └── TestDox │ │ │ └── ResultPrinter.php │ ├── ShellExitCodeCalculator.php │ ├── TestRunner.php │ └── TestSuiteFilterProcessor.php │ └── Util │ ├── Cloner.php │ ├── Color.php │ ├── Exception │ ├── Exception.php │ ├── InvalidDirectoryException.php │ ├── InvalidJsonException.php │ ├── InvalidVersionOperatorException.php │ ├── PhpProcessException.php │ └── XmlException.php │ ├── ExcludeList.php │ ├── Exporter.php │ ├── Filesystem.php │ ├── Filter.php │ ├── GlobalState.php │ ├── Json.php │ ├── PHP │ ├── AbstractPhpProcess.php │ ├── DefaultPhpProcess.php │ ├── Template │ │ ├── PhptTestCase.tpl │ │ ├── TestCaseClass.tpl │ │ └── TestCaseMethod.tpl │ └── WindowsPhpProcess.php │ ├── Reflection.php │ ├── Test.php │ ├── ThrowableToStringMapper.php │ ├── VersionComparisonOperator.php │ └── Xml │ ├── Loader.php │ └── Xml.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-factory │ ├── .gitignore │ ├── .pullapprove.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.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 │ ├── README.md │ ├── composer.json │ └── src │ ├── AbstractLogger.php │ ├── InvalidArgumentException.php │ ├── LogLevel.php │ ├── LoggerAwareInterface.php │ ├── LoggerAwareTrait.php │ ├── LoggerInterface.php │ ├── LoggerTrait.php │ └── NullLogger.php ├── ralouphie └── getallheaders │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── getallheaders.php ├── sabberworm └── php-css-parser │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── CSSList │ ├── AtRuleBlockList.php │ ├── CSSBlockList.php │ ├── CSSList.php │ ├── Document.php │ └── KeyFrame.php │ ├── Comment │ ├── Comment.php │ └── Commentable.php │ ├── OutputFormat.php │ ├── OutputFormatter.php │ ├── Parser.php │ ├── Parsing │ ├── OutputException.php │ ├── ParserState.php │ ├── SourceException.php │ ├── UnexpectedEOFException.php │ └── UnexpectedTokenException.php │ ├── Property │ ├── AtRule.php │ ├── CSSNamespace.php │ ├── Charset.php │ ├── Import.php │ ├── KeyframeSelector.php │ └── Selector.php │ ├── Renderable.php │ ├── Rule │ └── Rule.php │ ├── RuleSet │ ├── AtRuleSet.php │ ├── DeclarationBlock.php │ └── RuleSet.php │ ├── Settings.php │ └── Value │ ├── CSSFunction.php │ ├── CSSString.php │ ├── CalcFunction.php │ ├── CalcRuleValueList.php │ ├── Color.php │ ├── LineName.php │ ├── PrimitiveValue.php │ ├── RuleValueList.php │ ├── Size.php │ ├── URL.php │ ├── Value.php │ └── ValueList.php ├── sebastian ├── cli-parser │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Parser.php │ │ └── exceptions │ │ ├── AmbiguousOptionException.php │ │ ├── Exception.php │ │ ├── OptionDoesNotAllowArgumentException.php │ │ ├── RequiredOptionArgumentMissingException.php │ │ └── UnknownOptionException.php ├── code-unit-reverse-lookup │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ └── Wizard.php ├── code-unit │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── ClassMethodUnit.php │ │ ├── ClassUnit.php │ │ ├── CodeUnit.php │ │ ├── CodeUnitCollection.php │ │ ├── CodeUnitCollectionIterator.php │ │ ├── FileUnit.php │ │ ├── FunctionUnit.php │ │ ├── InterfaceMethodUnit.php │ │ ├── InterfaceUnit.php │ │ ├── Mapper.php │ │ ├── TraitMethodUnit.php │ │ ├── TraitUnit.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidCodeUnitException.php │ │ ├── NoTraitException.php │ │ └── ReflectionException.php ├── comparator │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ ├── TypeComparator.php │ │ └── exceptions │ │ ├── Exception.php │ │ └── RuntimeException.php ├── complexity │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Calculator.php │ │ ├── Complexity │ │ ├── Complexity.php │ │ ├── ComplexityCollection.php │ │ └── ComplexityCollectionIterator.php │ │ ├── Exception │ │ ├── Exception.php │ │ └── RuntimeException.php │ │ └── Visitor │ │ ├── ComplexityCalculatingVisitor.php │ │ └── CyclomaticComplexityCalculatingVisitor.php ├── diff │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── Exception │ │ ├── ConfigurationException.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ │ ├── Line.php │ │ ├── LongestCommonSubsequenceCalculator.php │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ ├── Output │ │ ├── AbstractChunkOutputBuilder.php │ │ ├── DiffOnlyOutputBuilder.php │ │ ├── DiffOutputBuilderInterface.php │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ └── UnifiedDiffOutputBuilder.php │ │ ├── Parser.php │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php ├── environment │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Console.php │ │ └── Runtime.php ├── exporter │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ └── Exporter.php ├── global-state │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── CodeExporter.php │ │ ├── ExcludeList.php │ │ ├── Restorer.php │ │ ├── Snapshot.php │ │ └── exceptions │ │ ├── Exception.php │ │ └── RuntimeException.php ├── lines-of-code │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ ├── Counter.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── IllogicalValuesException.php │ │ ├── NegativeValueException.php │ │ └── RuntimeException.php │ │ ├── LineCountingVisitor.php │ │ └── LinesOfCode.php ├── object-enumerator │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── phpunit.xml │ └── src │ │ └── Enumerator.php ├── object-reflector │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ └── ObjectReflector.php ├── recursion-context │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ │ └── Context.php ├── type │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── infection.json │ └── src │ │ ├── Parameter.php │ │ ├── ReflectionMapper.php │ │ ├── TypeName.php │ │ ├── exception │ │ ├── Exception.php │ │ └── RuntimeException.php │ │ └── type │ │ ├── CallableType.php │ │ ├── FalseType.php │ │ ├── GenericObjectType.php │ │ ├── IntersectionType.php │ │ ├── IterableType.php │ │ ├── MixedType.php │ │ ├── NeverType.php │ │ ├── NullType.php │ │ ├── ObjectType.php │ │ ├── SimpleType.php │ │ ├── StaticType.php │ │ ├── TrueType.php │ │ ├── Type.php │ │ ├── UnionType.php │ │ ├── UnknownType.php │ │ └── VoidType.php └── version │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ └── Version.php ├── symfony └── deprecation-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php └── theseer └── tokenizer ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock └── src ├── Exception.php ├── NamespaceUri.php ├── NamespaceUriException.php ├── Token.php ├── TokenCollection.php ├── TokenCollectionException.php ├── Tokenizer.php └── XMLSerializer.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/.htaccess -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /841464_Nhom4_N13/Thông tin nhóm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/841464_Nhom4_N13/Thông tin nhóm.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/config.php -------------------------------------------------------------------------------- /container/CauHoiModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/container/CauHoiModelTest.php -------------------------------------------------------------------------------- /container/DeThiModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/container/DeThiModelTest.php -------------------------------------------------------------------------------- /container/NguoiDungModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/container/NguoiDungModelTest.php -------------------------------------------------------------------------------- /database/erd.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/database/erd.mdj -------------------------------------------------------------------------------- /database/tracnghiemonline.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/database/tracnghiemonline.sql -------------------------------------------------------------------------------- /file/BienBanDanhGia_DCT.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/BienBanDanhGia_DCT.doc -------------------------------------------------------------------------------- /file/CauHoi/chuong 9.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong 9.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_10.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_1_web.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_1_web.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_2_next_web.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_2_next_web.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_2_web.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_2_web.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_3_web.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_3_web.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_4.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_5.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_6.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_6.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_7.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_7.docx -------------------------------------------------------------------------------- /file/CauHoi/chuong_8.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/CauHoi/chuong_8.docx -------------------------------------------------------------------------------- /file/filecauhoi.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/filecauhoi.docx -------------------------------------------------------------------------------- /file/nhomweb.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/nhomweb.xlsx -------------------------------------------------------------------------------- /file/sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/sql.txt -------------------------------------------------------------------------------- /file/yeucau.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/file/yeucau.docx -------------------------------------------------------------------------------- /img/cauhoi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/cauhoi.jpeg -------------------------------------------------------------------------------- /img/chitietnhomhocphan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/chitietnhomhocphan.jpeg -------------------------------------------------------------------------------- /img/dekiemtra.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/dekiemtra.jpeg -------------------------------------------------------------------------------- /img/diemthi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/diemthi.jpeg -------------------------------------------------------------------------------- /img/landingpage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/landingpage.jpeg -------------------------------------------------------------------------------- /img/login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/login.jpeg -------------------------------------------------------------------------------- /img/monhoc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/monhoc.jpeg -------------------------------------------------------------------------------- /img/nguoidung.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/nguoidung.jpeg -------------------------------------------------------------------------------- /img/nhomhocphan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/nhomhocphan.jpeg -------------------------------------------------------------------------------- /img/nhomquyen.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/nhomquyen.jpeg -------------------------------------------------------------------------------- /img/phancong.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/phancong.jpeg -------------------------------------------------------------------------------- /img/themcauhoi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themcauhoi.jpeg -------------------------------------------------------------------------------- /img/themcauhoitufile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themcauhoitufile.jpeg -------------------------------------------------------------------------------- /img/themdekiemtra.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themdekiemtra.jpeg -------------------------------------------------------------------------------- /img/themnguoidungthucong.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themnguoidungthucong.jpeg -------------------------------------------------------------------------------- /img/themnguoidungtufile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themnguoidungtufile.jpeg -------------------------------------------------------------------------------- /img/themnhomquyen.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themnhomquyen.jpeg -------------------------------------------------------------------------------- /img/themphancong.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/themphancong.jpeg -------------------------------------------------------------------------------- /img/thi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/thi.jpeg -------------------------------------------------------------------------------- /img/thongbao.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/thongbao.jpeg -------------------------------------------------------------------------------- /img/tongquan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/img/tongquan.jpeg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/index.php -------------------------------------------------------------------------------- /mvc/Bridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/Bridge.php -------------------------------------------------------------------------------- /mvc/controllers/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/account.php -------------------------------------------------------------------------------- /mvc/controllers/assignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/assignment.php -------------------------------------------------------------------------------- /mvc/controllers/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/auth.php -------------------------------------------------------------------------------- /mvc/controllers/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/client.php -------------------------------------------------------------------------------- /mvc/controllers/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/dashboard.php -------------------------------------------------------------------------------- /mvc/controllers/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/home.php -------------------------------------------------------------------------------- /mvc/controllers/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/module.php -------------------------------------------------------------------------------- /mvc/controllers/myerror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/myerror.php -------------------------------------------------------------------------------- /mvc/controllers/question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/question.php -------------------------------------------------------------------------------- /mvc/controllers/roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/roles.php -------------------------------------------------------------------------------- /mvc/controllers/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/setting.php -------------------------------------------------------------------------------- /mvc/controllers/subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/subject.php -------------------------------------------------------------------------------- /mvc/controllers/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/test.php -------------------------------------------------------------------------------- /mvc/controllers/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/user.php -------------------------------------------------------------------------------- /mvc/controllers/user_online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/controllers/user_online.php -------------------------------------------------------------------------------- /mvc/core/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/core/App.php -------------------------------------------------------------------------------- /mvc/core/AuthCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/core/AuthCore.php -------------------------------------------------------------------------------- /mvc/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/core/Controller.php -------------------------------------------------------------------------------- /mvc/core/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/core/DB.php -------------------------------------------------------------------------------- /mvc/core/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/core/Pagination.php -------------------------------------------------------------------------------- /mvc/models/AnnouncementModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/AnnouncementModel.php -------------------------------------------------------------------------------- /mvc/models/CauHoiModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/CauHoiModel.php -------------------------------------------------------------------------------- /mvc/models/CauTraLoiModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/CauTraLoiModel.php -------------------------------------------------------------------------------- /mvc/models/ChiTietDeThiModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/ChiTietDeThiModel.php -------------------------------------------------------------------------------- /mvc/models/ChuongModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/ChuongModel.php -------------------------------------------------------------------------------- /mvc/models/DeThiModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/DeThiModel.php -------------------------------------------------------------------------------- /mvc/models/GoogleAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/GoogleAuth.php -------------------------------------------------------------------------------- /mvc/models/KetQuaModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/KetQuaModel.php -------------------------------------------------------------------------------- /mvc/models/MailAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/MailAuth.php -------------------------------------------------------------------------------- /mvc/models/MonHocModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/MonHocModel.php -------------------------------------------------------------------------------- /mvc/models/NguoiDungModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/NguoiDungModel.php -------------------------------------------------------------------------------- /mvc/models/NhomModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/NhomModel.php -------------------------------------------------------------------------------- /mvc/models/NhomQuyenModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/NhomQuyenModel.php -------------------------------------------------------------------------------- /mvc/models/PaginationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/PaginationModel.php -------------------------------------------------------------------------------- /mvc/models/PhanCongModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/models/PhanCongModel.php -------------------------------------------------------------------------------- /mvc/views/inc/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/config.php -------------------------------------------------------------------------------- /mvc/views/inc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/footer.php -------------------------------------------------------------------------------- /mvc/views/inc/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/head.php -------------------------------------------------------------------------------- /mvc/views/inc/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/header.php -------------------------------------------------------------------------------- /mvc/views/inc/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/navbar.php -------------------------------------------------------------------------------- /mvc/views/inc/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/notifications.php -------------------------------------------------------------------------------- /mvc/views/inc/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/pagination.php -------------------------------------------------------------------------------- /mvc/views/inc/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/inc/script.php -------------------------------------------------------------------------------- /mvc/views/landing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/landing.php -------------------------------------------------------------------------------- /mvc/views/main_layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/main_layout.php -------------------------------------------------------------------------------- /mvc/views/pages/account_setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/account_setting.php -------------------------------------------------------------------------------- /mvc/views/pages/add_announce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/add_announce.php -------------------------------------------------------------------------------- /mvc/views/pages/add_update_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/add_update_test.php -------------------------------------------------------------------------------- /mvc/views/pages/assignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/assignment.php -------------------------------------------------------------------------------- /mvc/views/pages/auth/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/auth/changepass.php -------------------------------------------------------------------------------- /mvc/views/pages/auth/otp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/auth/otp.php -------------------------------------------------------------------------------- /mvc/views/pages/auth/recover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/auth/recover.php -------------------------------------------------------------------------------- /mvc/views/pages/auth/signin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/auth/signin.php -------------------------------------------------------------------------------- /mvc/views/pages/auth/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/auth/signup.php -------------------------------------------------------------------------------- /mvc/views/pages/class_detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/class_detail.php -------------------------------------------------------------------------------- /mvc/views/pages/client_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/client_group.php -------------------------------------------------------------------------------- /mvc/views/pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/dashboard.php -------------------------------------------------------------------------------- /mvc/views/pages/de_thi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/de_thi.php -------------------------------------------------------------------------------- /mvc/views/pages/error/page_403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/error/page_403.php -------------------------------------------------------------------------------- /mvc/views/pages/error/page_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/error/page_404.php -------------------------------------------------------------------------------- /mvc/views/pages/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/module.php -------------------------------------------------------------------------------- /mvc/views/pages/question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/question.php -------------------------------------------------------------------------------- /mvc/views/pages/roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/roles.php -------------------------------------------------------------------------------- /mvc/views/pages/select_question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/select_question.php -------------------------------------------------------------------------------- /mvc/views/pages/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/setting.php -------------------------------------------------------------------------------- /mvc/views/pages/subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/subject.php -------------------------------------------------------------------------------- /mvc/views/pages/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/test.php -------------------------------------------------------------------------------- /mvc/views/pages/test_detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/test_detail.php -------------------------------------------------------------------------------- /mvc/views/pages/test_schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/test_schedule.php -------------------------------------------------------------------------------- /mvc/views/pages/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/user.php -------------------------------------------------------------------------------- /mvc/views/pages/vao_thi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/pages/vao_thi.php -------------------------------------------------------------------------------- /mvc/views/single_layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/mvc/views/single_layout.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/dashmix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/dashmix.css -------------------------------------------------------------------------------- /public/css/dashmix.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/dashmix.min.css -------------------------------------------------------------------------------- /public/css/themes/xdream.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xdream.css -------------------------------------------------------------------------------- /public/css/themes/xdream.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xdream.min.css -------------------------------------------------------------------------------- /public/css/themes/xeco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xeco.css -------------------------------------------------------------------------------- /public/css/themes/xeco.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xeco.min.css -------------------------------------------------------------------------------- /public/css/themes/xinspire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xinspire.css -------------------------------------------------------------------------------- /public/css/themes/xinspire.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xinspire.min.css -------------------------------------------------------------------------------- /public/css/themes/xmodern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xmodern.css -------------------------------------------------------------------------------- /public/css/themes/xmodern.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xmodern.min.css -------------------------------------------------------------------------------- /public/css/themes/xplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xplay.css -------------------------------------------------------------------------------- /public/css/themes/xplay.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xplay.min.css -------------------------------------------------------------------------------- /public/css/themes/xpro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xpro.css -------------------------------------------------------------------------------- /public/css/themes/xpro.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xpro.min.css -------------------------------------------------------------------------------- /public/css/themes/xsmooth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xsmooth.css -------------------------------------------------------------------------------- /public/css/themes/xsmooth.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xsmooth.min.css -------------------------------------------------------------------------------- /public/css/themes/xwork.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xwork.css -------------------------------------------------------------------------------- /public/css/themes/xwork.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/css/themes/xwork.min.css -------------------------------------------------------------------------------- /public/filemau/danhsachsv.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/filemau/danhsachsv.xls -------------------------------------------------------------------------------- /public/filemau/mau_import_cau_hoi.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/filemau/mau_import_cau_hoi.docx -------------------------------------------------------------------------------- /public/fonts/times/times.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/fonts/times/times.ttf -------------------------------------------------------------------------------- /public/fonts/times/timesbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/fonts/times/timesbd.ttf -------------------------------------------------------------------------------- /public/fonts/times/timesbi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/fonts/times/timesbi.ttf -------------------------------------------------------------------------------- /public/fonts/times/timesi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/fonts/times/timesi.ttf -------------------------------------------------------------------------------- /public/js/dashmix.app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/dashmix.app.min.js -------------------------------------------------------------------------------- /public/js/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/lib/jquery.min.js -------------------------------------------------------------------------------- /public/js/pages/account_setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/account_setting.js -------------------------------------------------------------------------------- /public/js/pages/action_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/action_test.js -------------------------------------------------------------------------------- /public/js/pages/announcement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/announcement.js -------------------------------------------------------------------------------- /public/js/pages/assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/assignment.js -------------------------------------------------------------------------------- /public/js/pages/class_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/class_detail.js -------------------------------------------------------------------------------- /public/js/pages/client_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/client_group.js -------------------------------------------------------------------------------- /public/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/dashboard.js -------------------------------------------------------------------------------- /public/js/pages/de_thi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/de_thi.js -------------------------------------------------------------------------------- /public/js/pages/header.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/pages/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/landing.js -------------------------------------------------------------------------------- /public/js/pages/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/module.js -------------------------------------------------------------------------------- /public/js/pages/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/question.js -------------------------------------------------------------------------------- /public/js/pages/recover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/recover.js -------------------------------------------------------------------------------- /public/js/pages/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/roles.js -------------------------------------------------------------------------------- /public/js/pages/select_question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/select_question.js -------------------------------------------------------------------------------- /public/js/pages/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/signin.js -------------------------------------------------------------------------------- /public/js/pages/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/signup.js -------------------------------------------------------------------------------- /public/js/pages/subject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/subject.js -------------------------------------------------------------------------------- /public/js/pages/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/test.js -------------------------------------------------------------------------------- /public/js/pages/test_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/test_detail.js -------------------------------------------------------------------------------- /public/js/pages/test_schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/test_schedule.js -------------------------------------------------------------------------------- /public/js/pages/update_announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/update_announce.js -------------------------------------------------------------------------------- /public/js/pages/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/user.js -------------------------------------------------------------------------------- /public/js/pages/vaothi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pages/vaothi.js -------------------------------------------------------------------------------- /public/js/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/pagination.js -------------------------------------------------------------------------------- /public/js/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/permission.js -------------------------------------------------------------------------------- /public/js/plugins/chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/chart.js/chart.js -------------------------------------------------------------------------------- /public/js/plugins/chart.js/chart.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/chart.js/chart.mjs -------------------------------------------------------------------------------- /public/js/plugins/chart.js/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/chart.js/helpers.mjs -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/SECURITY.md -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/bower.json -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/az.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/exportpdf/plugindefinition.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","af",{toolbar:"Nuwe bladsy"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ar",{toolbar:"صفحة جديدة"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","az",{toolbar:"Yeni səhifə"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bg",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bn",{toolbar:"নতুন পৃষ্ঠা"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","bs",{toolbar:"Novi dokument"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ca",{toolbar:"Nova pàgina"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cs",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","cy",{toolbar:"Tudalen Newydd"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","da",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de-ch",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","de",{toolbar:"Neue Seite"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","el",{toolbar:"Νέα Σελίδα"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-au",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-ca",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en-gb",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","en",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","eo",{toolbar:"Nova Paĝo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es-mx",{toolbar:"Página nueva"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","es",{toolbar:"Nueva Página"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","et",{toolbar:"Uus leht"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fa",{toolbar:"برگهٴ تازه"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fi",{toolbar:"Tyhjennä"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","fo",{toolbar:"Nýggj síða"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gl",{toolbar:"Páxina nova"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","gu",{toolbar:"નવુ પાનું"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","he",{toolbar:"דף חדש"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hi",{toolbar:"नया पेज"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hr",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","hu",{toolbar:"Új oldal"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","id",{toolbar:"Halaman Baru"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","is",{toolbar:"Ný síða"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","it",{toolbar:"Nuova pagina"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ja",{toolbar:"新しいページ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","km",{toolbar:"ទំព័រ​ថ្មី"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ko",{toolbar:"새 페이지"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ku",{toolbar:"پەڕەیەکی نوێ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lt",{toolbar:"Naujas puslapis"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","lv",{toolbar:"Jauna lapa"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mk",{toolbar:"New Page"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","mn",{toolbar:"Шинэ хуудас"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ms",{toolbar:"Helaian Baru"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nb",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","nl",{toolbar:"Nieuwe pagina"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","no",{toolbar:"Ny side"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","oc",{toolbar:"Pagina novèla"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pl",{toolbar:"Nowa strona"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt-br",{toolbar:"Novo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","pt",{toolbar:"Nova página"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ro",{toolbar:"Pagină nouă"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ru",{toolbar:"Новая страница"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","si",{toolbar:"නව පිටුවක්"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sk",{toolbar:"Nová stránka"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sl",{toolbar:"Nova stran"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sq",{toolbar:"Faqe e Re"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr-latn",{toolbar:"Nova stranica"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sr",{toolbar:"Нова страница"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","sv",{toolbar:"Ny sida"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tr",{toolbar:"Yeni Sayfa"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","tt",{toolbar:"Яңа бит"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","ug",{toolbar:"يېڭى بەت"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","uk",{toolbar:"Нова сторінка"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","vi",{toolbar:"Trang mới"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh-cn",{toolbar:"新建"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/newpage/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("newpage","zh",{toolbar:"新增網頁"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","af",{toolbar:"Druk"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ar",{toolbar:"طباعة"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","az",{toolbar:"Çap et"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bg",{toolbar:"Печат"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","bs",{toolbar:"Štampaj"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ca",{toolbar:"Imprimeix"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cs",{toolbar:"Tisk"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","cy",{toolbar:"Argraffu"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","da",{toolbar:"Udskriv"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de-ch",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","de",{toolbar:"Drucken"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","el",{toolbar:"Εκτύπωση"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eo",{toolbar:"Presi"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es-mx",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","es",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","eu",{toolbar:"Inprimatu"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fa",{toolbar:"چاپ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fi",{toolbar:"Tulosta"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fo",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr-ca",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","fr",{toolbar:"Imprimer"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gl",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","gu",{toolbar:"પ્રિન્ટ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","he",{toolbar:"הדפסה"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hi",{toolbar:"प्रिन्ट"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hr",{toolbar:"Ispiši"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","hu",{toolbar:"Nyomtatás"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","id",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","is",{toolbar:"Prenta"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","it",{toolbar:"Stampa"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ja",{toolbar:"印刷"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ka",{toolbar:"ბეჭდვა"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","km",{toolbar:"បោះពុម្ព"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ko",{toolbar:"인쇄"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ku",{toolbar:"چاپکردن"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","lv",{toolbar:"Drukāt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","mn",{toolbar:"Хэвлэх"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ms",{toolbar:"Cetak"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nb",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","nl",{toolbar:"Afdrukken"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","no",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","oc",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pl",{toolbar:"Drukuj"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","pt-br",{toolbar:"Imprimir"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ro",{toolbar:"Printează"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ru",{toolbar:"Печать"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sk",{toolbar:"Tlač"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sl",{toolbar:"Natisni"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sq",{toolbar:"Shtype"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr-latn",{toolbar:"Štampa"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sr",{toolbar:"Штампа"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","sv",{toolbar:"Skriv ut"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","th",{toolbar:"สั่งพิมพ์"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tr",{toolbar:"Yazdır"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","tt",{toolbar:"Бастыру"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","ug",{toolbar:"باس "}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","uk",{toolbar:"Друк"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","vi",{toolbar:"In"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh-cn",{toolbar:"打印"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/print/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("print","zh",{toolbar:"列印"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","af",{toolbar:"Bewaar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ar",{toolbar:"حفظ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","az",{toolbar:"Yadda saxla"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bg",{toolbar:"Запис"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bn",{toolbar:"সংরক্ষন করি"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","bs",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ca",{toolbar:"Desa"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cs",{toolbar:"Uložit"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","cy",{toolbar:"Cadw"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","da",{toolbar:"Gem"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de-ch",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","de",{toolbar:"Speichern"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","el",{toolbar:"Αποθήκευση"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-au",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-ca",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en-gb",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","en",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eo",{toolbar:"Konservi"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es-mx",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","es",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","et",{toolbar:"Salvestamine"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","eu",{toolbar:"Gorde"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fa",{toolbar:"ذخیره"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fi",{toolbar:"Tallenna"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fo",{toolbar:"Goym"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr-ca",{toolbar:"Sauvegarder"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","fr",{toolbar:"Enregistrer"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gl",{toolbar:"Gardar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","gu",{toolbar:"સેવ"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","he",{toolbar:"שמירה"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hi",{toolbar:"सेव"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hr",{toolbar:"Snimi"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","hu",{toolbar:"Mentés"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","id",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","is",{toolbar:"Vista"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","it",{toolbar:"Salva"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ja",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ka",{toolbar:"ჩაწერა"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","km",{toolbar:"រក្សាទុក"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ko",{toolbar:"저장"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ku",{toolbar:"پاشکەوتکردن"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lt",{toolbar:"Išsaugoti"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","lv",{toolbar:"Saglabāt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/mk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mk",{toolbar:"Save"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","mn",{toolbar:"Хадгалах"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ms",{toolbar:"Simpan"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nb",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","nl",{toolbar:"Opslaan"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","no",{toolbar:"Lagre"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","oc",{toolbar:"Enregistrar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pl",{toolbar:"Zapisz"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt-br",{toolbar:"Salvar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","pt",{toolbar:"Guardar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ro",{toolbar:"Salvează"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ru",{toolbar:"Сохранить"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sk",{toolbar:"Uložiť"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sl",{toolbar:"Shrani"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sq",{toolbar:"Ruaje"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr-latn",{toolbar:"Sačuvaj"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sr",{toolbar:"Сачувај"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","sv",{toolbar:"Spara"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","th",{toolbar:"บันทึก"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tr",{toolbar:"Kaydet"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","tt",{toolbar:"Саклау"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","ug",{toolbar:"ساقلا"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","uk",{toolbar:"Зберегти"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","vi",{toolbar:"Lưu"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh-cn",{toolbar:"保存"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/save/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("save","zh",{toolbar:"儲存"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ar",{toolbar:"تحديد الكل"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","az",{toolbar:"Hamısını seç"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bg",{toolbar:"Избери всичко"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","bs",{toolbar:"Selektuj sve"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ca",{toolbar:"Selecciona-ho tot"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cs",{toolbar:"Vybrat vše"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","cy",{toolbar:"Dewis Popeth"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","da",{toolbar:"Vælg alt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de-ch",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","de",{toolbar:"Alles auswählen"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","el",{toolbar:"Επιλογή όλων"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eo",{toolbar:"Elekti ĉion"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es-mx",{toolbar:"Seleccionar todo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","es",{toolbar:"Seleccionar Todo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","et",{toolbar:"Kõige valimine"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","eu",{toolbar:"Hautatu dena"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fa",{toolbar:"گزینش همه"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fi",{toolbar:"Valitse kaikki"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fo",{toolbar:"Markera alt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr-ca",{toolbar:"Sélectionner tout"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","fr",{toolbar:"Tout sélectionner"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","he",{toolbar:"בחירת הכל"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hr",{toolbar:"Odaberi sve"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","hu",{toolbar:"Mindent kijelöl"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","id",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","is",{toolbar:"Velja allt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","it",{toolbar:"Seleziona tutto"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ja",{toolbar:"すべて選択"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","km",{toolbar:"រើស​ទាំង​អស់"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ko",{toolbar:"모두 선택"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ku",{toolbar:"هەموویی دیاریبکە"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lt",{toolbar:"Pažymėti viską"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","lv",{toolbar:"Iezīmēt visu"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","mn",{toolbar:"Бүгдийг нь сонгох"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ms",{toolbar:"Pilih Semua"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","nb",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","no",{toolbar:"Merk alt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","oc",{toolbar:"Seleccionar tot"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pl",{toolbar:"Zaznacz wszystko"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt-br",{toolbar:"Selecionar Tudo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","pt",{toolbar:"Selecionar tudo"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ru",{toolbar:"Выделить все"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","si",{toolbar:"සියල්ලම "}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sk",{toolbar:"Vybrať všetko"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sl",{toolbar:"Izberi vse"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sq",{toolbar:"Përzgjidh të Gjitha"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr-latn",{toolbar:"Označi sve"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sr",{toolbar:"Означи све"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","sv",{toolbar:"Markera allt"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","th",{toolbar:"เลือกทั้งหมด"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tr",{toolbar:"Tümünü Seç"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","tt",{toolbar:"Барысын сайлау"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","ug",{toolbar:"ھەممىنى تاللا"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","uk",{toolbar:"Виділити все"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","vi",{toolbar:"Chọn tất cả"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh-cn",{toolbar:"全选"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/selectall/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("selectall","zh",{toolbar:"全選"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","af",{toolbar:"Toon blokke"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ar",{toolbar:"مخطط تفصيلي"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/az.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","az",{toolbar:"Blokları göstər"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","bg",{toolbar:"Показва блокове"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ca",{toolbar:"Mostra els blocs"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","cy",{toolbar:"Dangos Blociau"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","da",{toolbar:"Vis afsnitsmærker"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de-ch",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","de",{toolbar:"Blöcke anzeigen"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","el",{toolbar:"Προβολή Τμημάτων"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eo",{toolbar:"Montri la blokojn"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","es-mx",{toolbar:"Mostrar bloques"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","et",{toolbar:"Blokkide näitamine"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","eu",{toolbar:"Erakutsi blokeak"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fa",{toolbar:"نمایش بلوک‌ها"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fi",{toolbar:"Näytä elementit"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fo",{toolbar:"Vís blokkar"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr-ca",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","fr",{toolbar:"Afficher les blocs"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gl",{toolbar:"Amosar os bloques"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","gu",{toolbar:"બ્લૉક બતાવવું"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","he",{toolbar:"הצגת בלוקים"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hi",{toolbar:"ब्लॉक दिखायें"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hr",{toolbar:"Prikaži blokove"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","hu",{toolbar:"Blokkok megjelenítése"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","id",{toolbar:"Perlihatkan Blok"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","it",{toolbar:"Visualizza Blocchi"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ja",{toolbar:"ブロック表示"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","km",{toolbar:"បង្ហាញ​ប្លក់"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ko",{toolbar:"블록 보기"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lt",{toolbar:"Rodyti blokus"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","lv",{toolbar:"Parādīt blokus"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nb",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","nl",{toolbar:"Toon blokken"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","no",{toolbar:"Vis blokker"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/oc.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","oc",{toolbar:"Afichar los blòts"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pl",{toolbar:"Pokaż bloki"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt-br",{toolbar:"Mostrar blocos de código"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","pt",{toolbar:"Exibir blocos"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ro",{toolbar:"Arată blocurile"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ru",{toolbar:"Отображать блоки"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sk",{toolbar:"Ukázať bloky"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sl",{toolbar:"Prikaži ograde"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sq",{toolbar:"Shfaq Blloqet"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sr-latn",{toolbar:"Prikaži blokove"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","sr",{toolbar:"Прикажи блокове"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","th",{toolbar:"แสดงบล็อคข้อมูล"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tr",{toolbar:"Blokları Göster"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","tt",{toolbar:"Блокларны күрсәтү"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","ug",{toolbar:"بۆلەكنى كۆرسەت"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","uk",{toolbar:"Показувати блоки"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","vi",{toolbar:"Hiển thị các khối"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh-cn",{toolbar:"显示区块"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/plugins/showblocks/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("showblocks","zh",{toolbar:"顯示區塊"}); -------------------------------------------------------------------------------- /public/js/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/esm/types/globals.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/esm/types/instance.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/esm/types/locale.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/ie.css -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ar.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/at.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/az.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/be.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/bg.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/bn.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/bs.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/cs.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/cy.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/da.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/de.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/eo.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/es.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/et.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/fa.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/fi.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/fo.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/fr.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ga.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/gr.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/he.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/hi.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/hr.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/hu.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/hy.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/id.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/is.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/it.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ja.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ka.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/km.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ko.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/kz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/kz.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/lt.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/lv.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/mk.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/mn.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ms.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/my.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/nl.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/nn.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/no.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/pa.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/pl.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/pt.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ro.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/ru.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/si.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/sk.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/sl.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/sq.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/sr.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/sv.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/th.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/tr.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/uk.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/uz.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/vn.js -------------------------------------------------------------------------------- /public/js/plugins/flatpickr/l10n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/js/plugins/flatpickr/l10n/zh.js -------------------------------------------------------------------------------- /public/media/avatars/avatar0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/avatars/avatar0.jpg -------------------------------------------------------------------------------- /public/media/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/avatars/avatar1.jpg -------------------------------------------------------------------------------- /public/media/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/avatars/avatar2.jpg -------------------------------------------------------------------------------- /public/media/avatars/avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/avatars/avtar.png -------------------------------------------------------------------------------- /public/media/avatars/thanhsang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/avatars/thanhsang.jpg -------------------------------------------------------------------------------- /public/media/favicons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/favicons/favicon.png -------------------------------------------------------------------------------- /public/media/photos/bg_minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/bg_minecraft.png -------------------------------------------------------------------------------- /public/media/photos/dhsg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/dhsg_1.jpg -------------------------------------------------------------------------------- /public/media/photos/dhsg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/dhsg_2.jpg -------------------------------------------------------------------------------- /public/media/photos/dhsg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/dhsg_3.jpg -------------------------------------------------------------------------------- /public/media/photos/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo1.jpg -------------------------------------------------------------------------------- /public/media/photos/photo10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo10.jpg -------------------------------------------------------------------------------- /public/media/photos/photo10@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo10@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo11.jpg -------------------------------------------------------------------------------- /public/media/photos/photo11@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo11@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo12.jpg -------------------------------------------------------------------------------- /public/media/photos/photo12@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo12@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo13.jpg -------------------------------------------------------------------------------- /public/media/photos/photo13@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo13@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo14.jpg -------------------------------------------------------------------------------- /public/media/photos/photo14@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo14@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo15.jpg -------------------------------------------------------------------------------- /public/media/photos/photo15@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo15@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo16.jpg -------------------------------------------------------------------------------- /public/media/photos/photo16@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo16@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo17.jpg -------------------------------------------------------------------------------- /public/media/photos/photo17@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo17@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo18.jpg -------------------------------------------------------------------------------- /public/media/photos/photo18@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo18@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo19.jpg -------------------------------------------------------------------------------- /public/media/photos/photo19@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo19@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo1@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo2.jpg -------------------------------------------------------------------------------- /public/media/photos/photo20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo20.jpg -------------------------------------------------------------------------------- /public/media/photos/photo20@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo20@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo21.jpg -------------------------------------------------------------------------------- /public/media/photos/photo21@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo21@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo22.jpg -------------------------------------------------------------------------------- /public/media/photos/photo22@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo22@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo23.jpg -------------------------------------------------------------------------------- /public/media/photos/photo23@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo23@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo24.jpg -------------------------------------------------------------------------------- /public/media/photos/photo24@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo24@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo25.jpg -------------------------------------------------------------------------------- /public/media/photos/photo25@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo25@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo26.jpg -------------------------------------------------------------------------------- /public/media/photos/photo26@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo26@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo27.jpg -------------------------------------------------------------------------------- /public/media/photos/photo27@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo27@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo28.jpg -------------------------------------------------------------------------------- /public/media/photos/photo28@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo28@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo29.jpg -------------------------------------------------------------------------------- /public/media/photos/photo29@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo29@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo2@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo3.jpg -------------------------------------------------------------------------------- /public/media/photos/photo30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo30.jpg -------------------------------------------------------------------------------- /public/media/photos/photo30@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo30@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo3@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo3@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo4.jpg -------------------------------------------------------------------------------- /public/media/photos/photo4@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo4@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo5.jpg -------------------------------------------------------------------------------- /public/media/photos/photo5@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo5@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo6.jpg -------------------------------------------------------------------------------- /public/media/photos/photo6@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo6@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo7.jpg -------------------------------------------------------------------------------- /public/media/photos/photo7@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo7@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo8.jpg -------------------------------------------------------------------------------- /public/media/photos/photo8@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo8@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/photo9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo9.jpg -------------------------------------------------------------------------------- /public/media/photos/photo9@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/photo9@2x.jpg -------------------------------------------------------------------------------- /public/media/photos/study.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/photos/study.jpg -------------------------------------------------------------------------------- /public/media/svg/empty_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/svg/empty_data.png -------------------------------------------------------------------------------- /public/media/svg/google-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/svg/google-icon.svg -------------------------------------------------------------------------------- /public/media/svg/no-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/svg/no-data.jpg -------------------------------------------------------------------------------- /public/media/various/bg_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/bg_dashboard.jpg -------------------------------------------------------------------------------- /public/media/various/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing.png -------------------------------------------------------------------------------- /public/media/various/landing_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_1.jpg -------------------------------------------------------------------------------- /public/media/various/landing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_1.png -------------------------------------------------------------------------------- /public/media/various/landing_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_2.jpg -------------------------------------------------------------------------------- /public/media/various/landing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_2.png -------------------------------------------------------------------------------- /public/media/various/landing_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_3.jpg -------------------------------------------------------------------------------- /public/media/various/landing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/landing_3.png -------------------------------------------------------------------------------- /public/media/various/promo-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/public/media/various/promo-users.png -------------------------------------------------------------------------------- /tests/MonHocModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/tests/MonHocModelTest.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/AUTHORS.md -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/LICENSE.LGPL -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/README.md -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.3 2 | -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/composer.json -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/lib/Cpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/lib/Cpdf.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/lib/res/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/lib/res/html.css -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Canvas.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Cellmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Cellmap.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Css/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Css/Color.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Css/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Css/Style.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Dompdf.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Exception.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Frame.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/Helpers.php -------------------------------------------------------------------------------- /vendor/dompdf/dompdf/src/LineBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/dompdf/dompdf/src/LineBox.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/firebase/php-jwt/LICENSE -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/firebase/php-jwt/README.md -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/firebase/php-jwt/src/JWK.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/firebase/php-jwt/src/JWT.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/firebase/php-jwt/src/Key.php -------------------------------------------------------------------------------- /vendor/google/apiclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/apiclient/LICENSE -------------------------------------------------------------------------------- /vendor/google/apiclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/apiclient/README.md -------------------------------------------------------------------------------- /vendor/google/apiclient/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/apiclient/SECURITY.md -------------------------------------------------------------------------------- /vendor/google/auth/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/COPYING -------------------------------------------------------------------------------- /vendor/google/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/LICENSE -------------------------------------------------------------------------------- /vendor/google/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/README.md -------------------------------------------------------------------------------- /vendor/google/auth/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/SECURITY.md -------------------------------------------------------------------------------- /vendor/google/auth/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/autoload.php -------------------------------------------------------------------------------- /vendor/google/auth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/composer.json -------------------------------------------------------------------------------- /vendor/google/auth/src/GCECache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/src/GCECache.php -------------------------------------------------------------------------------- /vendor/google/auth/src/Iam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/src/Iam.php -------------------------------------------------------------------------------- /vendor/google/auth/src/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/google/auth/src/OAuth2.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/psr7/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/masterminds/html5/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/masterminds/html5/CREDITS -------------------------------------------------------------------------------- /vendor/masterminds/html5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/masterminds/html5/README.md -------------------------------------------------------------------------------- /vendor/masterminds/html5/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/masterminds/html5/RELEASE.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/monolog/monolog/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/monolog/monolog/UPGRADE.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/phar-io/manifest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phar-io/manifest/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phar-io/manifest/README.md -------------------------------------------------------------------------------- /vendor/phar-io/version/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phar-io/version/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phar-io/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phar-io/version/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phar-io/version/README.md -------------------------------------------------------------------------------- /vendor/phenx/php-font-lib/.htaccess: -------------------------------------------------------------------------------- 1 | #deny from all -------------------------------------------------------------------------------- /vendor/phenx/php-font-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phenx/php-font-lib/LICENSE -------------------------------------------------------------------------------- /vendor/phenx/php-font-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phenx/php-font-lib/README.md -------------------------------------------------------------------------------- /vendor/phenx/php-font-lib/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phenx/php-svg-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phenx/php-svg-lib/LICENSE -------------------------------------------------------------------------------- /vendor/phenx/php-svg-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phenx/php-svg-lib/README.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.7.1 -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpoffice/phpword/COPYING -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpoffice/phpword/LICENSE -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpoffice/phpword/README.md -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpseclib/phpseclib/AUTHORS -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpseclib/phpseclib/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/php-invoker/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/php-timer/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/php-timer/README.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/phpunit/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/phpunit/README.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/phpunit/SECURITY.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /vendor/psr/cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/cache/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/cache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/cache/LICENSE.txt -------------------------------------------------------------------------------- /vendor/psr/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/cache/README.md -------------------------------------------------------------------------------- /vendor/psr/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/cache/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-client/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-client/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-client/README.md -------------------------------------------------------------------------------- /vendor/psr/http-factory/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psr/log/src/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/src/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/src/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/src/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/psr/log/src/NullLogger.php -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/cli-parser/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/code-unit/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/complexity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/complexity/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/SECURITY.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /vendor/sebastian/type/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/type/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/type/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/type/README.md -------------------------------------------------------------------------------- /vendor/sebastian/type/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/type/SECURITY.md -------------------------------------------------------------------------------- /vendor/sebastian/type/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/type/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /vendor/symfony/deprecation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/theseer/tokenizer/LICENSE -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transinh085/QuanLyThiTracNghiem/HEAD/vendor/theseer/tokenizer/README.md --------------------------------------------------------------------------------