Skip to content

Commit 129c1a1

Browse files
Regenerate datamanager client
1 parent 65550d5 commit 129c1a1

47 files changed

Lines changed: 5223 additions & 2 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/DataManager.php

Lines changed: 330 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ class DataManager extends \Google\Service
3939
const DATAMANAGER =
4040
"https://www.googleapis.com/auth/datamanager";
4141

42+
public $accountTypes_accounts_insights;
43+
public $accountTypes_accounts_partnerLinks;
44+
public $accountTypes_accounts_userListDirectLicenses;
45+
public $accountTypes_accounts_userListGlobalLicenses;
46+
public $accountTypes_accounts_userListGlobalLicenses_userListGlobalLicenseCustomerInfos;
47+
public $accountTypes_accounts_userLists;
4248
public $audienceMembers;
4349
public $events;
4450
public $requestStatus;
@@ -61,6 +67,330 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
6167
$this->version = 'v1';
6268
$this->serviceName = 'datamanager';
6369

70+
$this->accountTypes_accounts_insights = new DataManager\Resource\AccountTypesAccountsInsights(
71+
$this,
72+
$this->serviceName,
73+
'insights',
74+
[
75+
'methods' => [
76+
'retrieve' => [
77+
'path' => 'v1/{+parent}/insights:retrieve',
78+
'httpMethod' => 'POST',
79+
'parameters' => [
80+
'parent' => [
81+
'location' => 'path',
82+
'type' => 'string',
83+
'required' => true,
84+
],
85+
],
86+
],
87+
]
88+
]
89+
);
90+
$this->accountTypes_accounts_partnerLinks = new DataManager\Resource\AccountTypesAccountsPartnerLinks(
91+
$this,
92+
$this->serviceName,
93+
'partnerLinks',
94+
[
95+
'methods' => [
96+
'create' => [
97+
'path' => 'v1/{+parent}/partnerLinks',
98+
'httpMethod' => 'POST',
99+
'parameters' => [
100+
'parent' => [
101+
'location' => 'path',
102+
'type' => 'string',
103+
'required' => true,
104+
],
105+
],
106+
],'delete' => [
107+
'path' => 'v1/{+name}',
108+
'httpMethod' => 'DELETE',
109+
'parameters' => [
110+
'name' => [
111+
'location' => 'path',
112+
'type' => 'string',
113+
'required' => true,
114+
],
115+
],
116+
],'search' => [
117+
'path' => 'v1/{+parent}/partnerLinks:search',
118+
'httpMethod' => 'GET',
119+
'parameters' => [
120+
'parent' => [
121+
'location' => 'path',
122+
'type' => 'string',
123+
'required' => true,
124+
],
125+
'filter' => [
126+
'location' => 'query',
127+
'type' => 'string',
128+
],
129+
'pageSize' => [
130+
'location' => 'query',
131+
'type' => 'integer',
132+
],
133+
'pageToken' => [
134+
'location' => 'query',
135+
'type' => 'string',
136+
],
137+
],
138+
],
139+
]
140+
]
141+
);
142+
$this->accountTypes_accounts_userListDirectLicenses = new DataManager\Resource\AccountTypesAccountsUserListDirectLicenses(
143+
$this,
144+
$this->serviceName,
145+
'userListDirectLicenses',
146+
[
147+
'methods' => [
148+
'create' => [
149+
'path' => 'v1/{+parent}/userListDirectLicenses',
150+
'httpMethod' => 'POST',
151+
'parameters' => [
152+
'parent' => [
153+
'location' => 'path',
154+
'type' => 'string',
155+
'required' => true,
156+
],
157+
],
158+
],'get' => [
159+
'path' => 'v1/{+name}',
160+
'httpMethod' => 'GET',
161+
'parameters' => [
162+
'name' => [
163+
'location' => 'path',
164+
'type' => 'string',
165+
'required' => true,
166+
],
167+
],
168+
],'list' => [
169+
'path' => 'v1/{+parent}/userListDirectLicenses',
170+
'httpMethod' => 'GET',
171+
'parameters' => [
172+
'parent' => [
173+
'location' => 'path',
174+
'type' => 'string',
175+
'required' => true,
176+
],
177+
'filter' => [
178+
'location' => 'query',
179+
'type' => 'string',
180+
],
181+
'pageSize' => [
182+
'location' => 'query',
183+
'type' => 'integer',
184+
],
185+
'pageToken' => [
186+
'location' => 'query',
187+
'type' => 'string',
188+
],
189+
],
190+
],'patch' => [
191+
'path' => 'v1/{+name}',
192+
'httpMethod' => 'PATCH',
193+
'parameters' => [
194+
'name' => [
195+
'location' => 'path',
196+
'type' => 'string',
197+
'required' => true,
198+
],
199+
'updateMask' => [
200+
'location' => 'query',
201+
'type' => 'string',
202+
],
203+
],
204+
],
205+
]
206+
]
207+
);
208+
$this->accountTypes_accounts_userListGlobalLicenses = new DataManager\Resource\AccountTypesAccountsUserListGlobalLicenses(
209+
$this,
210+
$this->serviceName,
211+
'userListGlobalLicenses',
212+
[
213+
'methods' => [
214+
'create' => [
215+
'path' => 'v1/{+parent}/userListGlobalLicenses',
216+
'httpMethod' => 'POST',
217+
'parameters' => [
218+
'parent' => [
219+
'location' => 'path',
220+
'type' => 'string',
221+
'required' => true,
222+
],
223+
],
224+
],'get' => [
225+
'path' => 'v1/{+name}',
226+
'httpMethod' => 'GET',
227+
'parameters' => [
228+
'name' => [
229+
'location' => 'path',
230+
'type' => 'string',
231+
'required' => true,
232+
],
233+
],
234+
],'list' => [
235+
'path' => 'v1/{+parent}/userListGlobalLicenses',
236+
'httpMethod' => 'GET',
237+
'parameters' => [
238+
'parent' => [
239+
'location' => 'path',
240+
'type' => 'string',
241+
'required' => true,
242+
],
243+
'filter' => [
244+
'location' => 'query',
245+
'type' => 'string',
246+
],
247+
'pageSize' => [
248+
'location' => 'query',
249+
'type' => 'integer',
250+
],
251+
'pageToken' => [
252+
'location' => 'query',
253+
'type' => 'string',
254+
],
255+
],
256+
],'patch' => [
257+
'path' => 'v1/{+name}',
258+
'httpMethod' => 'PATCH',
259+
'parameters' => [
260+
'name' => [
261+
'location' => 'path',
262+
'type' => 'string',
263+
'required' => true,
264+
],
265+
'updateMask' => [
266+
'location' => 'query',
267+
'type' => 'string',
268+
],
269+
],
270+
],
271+
]
272+
]
273+
);
274+
$this->accountTypes_accounts_userListGlobalLicenses_userListGlobalLicenseCustomerInfos = new DataManager\Resource\AccountTypesAccountsUserListGlobalLicensesUserListGlobalLicenseCustomerInfos(
275+
$this,
276+
$this->serviceName,
277+
'userListGlobalLicenseCustomerInfos',
278+
[
279+
'methods' => [
280+
'list' => [
281+
'path' => 'v1/{+parent}/userListGlobalLicenseCustomerInfos',
282+
'httpMethod' => 'GET',
283+
'parameters' => [
284+
'parent' => [
285+
'location' => 'path',
286+
'type' => 'string',
287+
'required' => true,
288+
],
289+
'filter' => [
290+
'location' => 'query',
291+
'type' => 'string',
292+
],
293+
'pageSize' => [
294+
'location' => 'query',
295+
'type' => 'integer',
296+
],
297+
'pageToken' => [
298+
'location' => 'query',
299+
'type' => 'string',
300+
],
301+
],
302+
],
303+
]
304+
]
305+
);
306+
$this->accountTypes_accounts_userLists = new DataManager\Resource\AccountTypesAccountsUserLists(
307+
$this,
308+
$this->serviceName,
309+
'userLists',
310+
[
311+
'methods' => [
312+
'create' => [
313+
'path' => 'v1/{+parent}/userLists',
314+
'httpMethod' => 'POST',
315+
'parameters' => [
316+
'parent' => [
317+
'location' => 'path',
318+
'type' => 'string',
319+
'required' => true,
320+
],
321+
'validateOnly' => [
322+
'location' => 'query',
323+
'type' => 'boolean',
324+
],
325+
],
326+
],'delete' => [
327+
'path' => 'v1/{+name}',
328+
'httpMethod' => 'DELETE',
329+
'parameters' => [
330+
'name' => [
331+
'location' => 'path',
332+
'type' => 'string',
333+
'required' => true,
334+
],
335+
'validateOnly' => [
336+
'location' => 'query',
337+
'type' => 'boolean',
338+
],
339+
],
340+
],'get' => [
341+
'path' => 'v1/{+name}',
342+
'httpMethod' => 'GET',
343+
'parameters' => [
344+
'name' => [
345+
'location' => 'path',
346+
'type' => 'string',
347+
'required' => true,
348+
],
349+
],
350+
],'list' => [
351+
'path' => 'v1/{+parent}/userLists',
352+
'httpMethod' => 'GET',
353+
'parameters' => [
354+
'parent' => [
355+
'location' => 'path',
356+
'type' => 'string',
357+
'required' => true,
358+
],
359+
'filter' => [
360+
'location' => 'query',
361+
'type' => 'string',
362+
],
363+
'pageSize' => [
364+
'location' => 'query',
365+
'type' => 'integer',
366+
],
367+
'pageToken' => [
368+
'location' => 'query',
369+
'type' => 'string',
370+
],
371+
],
372+
],'patch' => [
373+
'path' => 'v1/{+name}',
374+
'httpMethod' => 'PATCH',
375+
'parameters' => [
376+
'name' => [
377+
'location' => 'path',
378+
'type' => 'string',
379+
'required' => true,
380+
],
381+
'updateMask' => [
382+
'location' => 'query',
383+
'type' => 'string',
384+
],
385+
'validateOnly' => [
386+
'location' => 'query',
387+
'type' => 'boolean',
388+
],
389+
],
390+
],
391+
]
392+
]
393+
);
64394
$this->audienceMembers = new DataManager\Resource\AudienceMembers(
65395
$this,
66396
$this->serviceName,

0 commit comments

Comments
 (0)