GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( 05b43c...94f4d0 )
by
unknown
06:16
created

SearchInventory::withAggregator()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
c 0
b 0
f 0
rs 10
cc 2
nc 2
nop 1
1
<?php
2
3
namespace AlibabaCloud\Oos\V20190601;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method CancelExecution cancelExecution(array $options = [])
9
 * @method CreateParameter createParameter(array $options = [])
10
 * @method CreateSecretParameter createSecretParameter(array $options = [])
11
 * @method CreateTemplate createTemplate(array $options = [])
12
 * @method DeleteExecutions deleteExecutions(array $options = [])
13
 * @method DeleteParameter deleteParameter(array $options = [])
14
 * @method DeleteSecretParameter deleteSecretParameter(array $options = [])
15
 * @method DeleteTemplate deleteTemplate(array $options = [])
16
 * @method DeleteTemplates deleteTemplates(array $options = [])
17
 * @method DescribeRegions describeRegions(array $options = [])
18
 * @method GenerateExecutionPolicy generateExecutionPolicy(array $options = [])
19
 * @method GetExecutionTemplate getExecutionTemplate(array $options = [])
20
 * @method GetInventorySchema getInventorySchema(array $options = [])
21
 * @method GetParameter getParameter(array $options = [])
22
 * @method GetParameters getParameters(array $options = [])
23
 * @method GetParametersByPath getParametersByPath(array $options = [])
24
 * @method GetSecretParameter getSecretParameter(array $options = [])
25
 * @method GetSecretParameters getSecretParameters(array $options = [])
26
 * @method GetSecretParametersByPath getSecretParametersByPath(array $options = [])
27
 * @method GetTemplate getTemplate(array $options = [])
28
 * @method ListActions listActions(array $options = [])
29
 * @method ListExecutionLogs listExecutionLogs(array $options = [])
30
 * @method ListExecutionRiskyTasks listExecutionRiskyTasks(array $options = [])
31
 * @method ListExecutions listExecutions(array $options = [])
32
 * @method ListInventoryEntries listInventoryEntries(array $options = [])
33
 * @method ListParameters listParameters(array $options = [])
34
 * @method ListParameterVersions listParameterVersions(array $options = [])
35
 * @method ListResourceExecutionStatus listResourceExecutionStatus(array $options = [])
36
 * @method ListSecretParameters listSecretParameters(array $options = [])
37
 * @method ListSecretParameterVersions listSecretParameterVersions(array $options = [])
38
 * @method ListTagKeys listTagKeys(array $options = [])
39
 * @method ListTagResources listTagResources(array $options = [])
40
 * @method ListTagValues listTagValues(array $options = [])
41
 * @method ListTaskExecutions listTaskExecutions(array $options = [])
42
 * @method ListTemplates listTemplates(array $options = [])
43
 * @method ListTemplateVersions listTemplateVersions(array $options = [])
44
 * @method NotifyExecution notifyExecution(array $options = [])
45
 * @method SearchInventory searchInventory(array $options = [])
46
 * @method StartExecution startExecution(array $options = [])
47
 * @method TagResources tagResources(array $options = [])
48
 * @method TriggerExecution triggerExecution(array $options = [])
49
 * @method UntagResources untagResources(array $options = [])
50
 * @method UpdateExecution updateExecution(array $options = [])
51
 * @method UpdateInstanceInformation updateInstanceInformation(array $options = [])
52
 * @method UpdateParameter updateParameter(array $options = [])
53
 * @method UpdateSecretParameter updateSecretParameter(array $options = [])
54
 * @method UpdateTemplate updateTemplate(array $options = [])
55
 * @method ValidateTemplateContent validateTemplateContent(array $options = [])
56
 */
57
class OosApiResolver extends ApiResolver
58
{
59
}
60
61
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
62
{
63
    /** @var string */
64
    public $product = 'oos';
65
66
    /** @var string */
67
    public $version = '2019-06-01';
68
69
    /** @var string */
70
    public $method = 'POST';
71
72
    /** @var string */
73
    public $serviceCode = 'oos';
74
}
75
76
/**
77
 * @method string getExecutionId()
78
 * @method $this withExecutionId($value)
79
 */
80
class CancelExecution extends Rpc
81
{
82
}
83
84
/**
85
 * @method string getClientToken()
86
 * @method $this withClientToken($value)
87
 * @method string getDescription()
88
 * @method $this withDescription($value)
89
 * @method string getType()
90
 * @method $this withType($value)
91
 * @method string getConstraints()
92
 * @method $this withConstraints($value)
93
 * @method string getName()
94
 * @method $this withName($value)
95
 * @method string getValue()
96
 * @method $this withValue($value)
97
 */
98
class CreateParameter extends Rpc
99
{
100
}
101
102
/**
103
 * @method string getClientToken()
104
 * @method $this withClientToken($value)
105
 * @method string getDescription()
106
 * @method $this withDescription($value)
107
 * @method string getKeyId()
108
 * @method $this withKeyId($value)
109
 * @method string getType()
110
 * @method $this withType($value)
111
 * @method string getConstraints()
112
 * @method $this withConstraints($value)
113
 * @method string getName()
114
 * @method $this withName($value)
115
 * @method string getValue()
116
 * @method $this withValue($value)
117
 */
118
class CreateSecretParameter extends Rpc
119
{
120
}
121
122
/**
123
 * @method string getContent()
124
 * @method $this withContent($value)
125
 * @method string getTags()
126
 * @method $this withTags($value)
127
 * @method string getTemplateName()
128
 * @method $this withTemplateName($value)
129
 * @method string getVersionName()
130
 * @method $this withVersionName($value)
131
 */
132
class CreateTemplate extends Rpc
133
{
134
}
135
136
/**
137
 * @method string getExecutionIds()
138
 * @method $this withExecutionIds($value)
139
 */
140
class DeleteExecutions extends Rpc
141
{
142
}
143
144
/**
145
 * @method string getName()
146
 * @method $this withName($value)
147
 */
148
class DeleteParameter extends Rpc
149
{
150
}
151
152
/**
153
 * @method string getName()
154
 * @method $this withName($value)
155
 */
156
class DeleteSecretParameter extends Rpc
157
{
158
}
159
160
/**
161
 * @method string getAutoDeleteExecutions()
162
 * @method $this withAutoDeleteExecutions($value)
163
 * @method string getTemplateName()
164
 * @method $this withTemplateName($value)
165
 */
166
class DeleteTemplate extends Rpc
167
{
168
}
169
170
/**
171
 * @method string getTemplateNames()
172
 * @method $this withTemplateNames($value)
173
 * @method string getAutoDeleteExecutions()
174
 * @method $this withAutoDeleteExecutions($value)
175
 */
176
class DeleteTemplates extends Rpc
177
{
178
}
179
180
/**
181
 * @method string getAcceptLanguage()
182
 * @method $this withAcceptLanguage($value)
183
 */
184
class DescribeRegions extends Rpc
185
{
186
}
187
188
/**
189
 * @method string getTemplateVersion()
190
 * @method $this withTemplateVersion($value)
191
 * @method string getTemplateName()
192
 * @method $this withTemplateName($value)
193
 */
194
class GenerateExecutionPolicy extends Rpc
195
{
196
}
197
198
/**
199
 * @method string getExecutionId()
200
 * @method $this withExecutionId($value)
201
 */
202
class GetExecutionTemplate extends Rpc
203
{
204
}
205
206
/**
207
 * @method string getAggregator()
208
 * @method $this withAggregator($value)
209
 * @method string getNextToken()
210
 * @method $this withNextToken($value)
211
 * @method string getMaxResults()
212
 * @method $this withMaxResults($value)
213
 * @method string getTypeName()
214
 * @method $this withTypeName($value)
215
 */
216
class GetInventorySchema extends Rpc
217
{
218
}
219
220
/**
221
 * @method string getParameterVersion()
222
 * @method $this withParameterVersion($value)
223
 * @method string getName()
224
 * @method $this withName($value)
225
 */
226
class GetParameter extends Rpc
227
{
228
}
229
230
/**
231
 * @method string getNames()
232
 * @method $this withNames($value)
233
 */
234
class GetParameters extends Rpc
235
{
236
}
237
238
/**
239
 * @method string getRecursive()
240
 * @method $this withRecursive($value)
241
 * @method string getPath()
242
 * @method $this withPath($value)
243
 * @method string getNextToken()
244
 * @method $this withNextToken($value)
245
 * @method string getMaxResults()
246
 * @method $this withMaxResults($value)
247
 */
248
class GetParametersByPath extends Rpc
249
{
250
}
251
252
/**
253
 * @method string getWithDecryption()
254
 * @method $this withWithDecryption($value)
255
 * @method string getParameterVersion()
256
 * @method $this withParameterVersion($value)
257
 * @method string getName()
258
 * @method $this withName($value)
259
 */
260
class GetSecretParameter extends Rpc
261
{
262
}
263
264
/**
265
 * @method string getWithDecryption()
266
 * @method $this withWithDecryption($value)
267
 * @method string getNames()
268
 * @method $this withNames($value)
269
 */
270
class GetSecretParameters extends Rpc
271
{
272
}
273
274
/**
275
 * @method string getWithDecryption()
276
 * @method $this withWithDecryption($value)
277
 * @method string getRecursive()
278
 * @method $this withRecursive($value)
279
 * @method string getPath()
280
 * @method $this withPath($value)
281
 * @method string getNextToken()
282
 * @method $this withNextToken($value)
283
 * @method string getMaxResults()
284
 * @method $this withMaxResults($value)
285
 */
286
class GetSecretParametersByPath extends Rpc
287
{
288
}
289
290
/**
291
 * @method string getTemplateVersion()
292
 * @method $this withTemplateVersion($value)
293
 * @method string getTemplateName()
294
 * @method $this withTemplateName($value)
295
 */
296
class GetTemplate extends Rpc
297
{
298
}
299
300
/**
301
 * @method string getOOSActionName()
302
 * @method $this withOOSActionName($value)
303
 * @method string getNextToken()
304
 * @method $this withNextToken($value)
305
 * @method string getMaxResults()
306
 * @method $this withMaxResults($value)
307
 */
308
class ListActions extends Rpc
309
{
310
}
311
312
/**
313
 * @method string getExecutionId()
314
 * @method $this withExecutionId($value)
315
 * @method string getLogType()
316
 * @method $this withLogType($value)
317
 * @method string getNextToken()
318
 * @method $this withNextToken($value)
319
 * @method string getMaxResults()
320
 * @method $this withMaxResults($value)
321
 * @method string getTaskExecutionId()
322
 * @method $this withTaskExecutionId($value)
323
 */
324
class ListExecutionLogs extends Rpc
325
{
326
}
327
328
/**
329
 * @method string getTemplateName()
330
 * @method $this withTemplateName($value)
331
 */
332
class ListExecutionRiskyTasks extends Rpc
333
{
334
}
335
336
/**
337
 * @method string getExecutedBy()
338
 * @method $this withExecutedBy($value)
339
 * @method string getIncludeChildExecution()
340
 * @method $this withIncludeChildExecution($value)
341
 * @method string getMode()
342
 * @method $this withMode($value)
343
 * @method string getExecutionId()
344
 * @method $this withExecutionId($value)
345
 * @method string getRamRole()
346
 * @method $this withRamRole($value)
347
 * @method string getNextToken()
348
 * @method $this withNextToken($value)
349
 * @method string getTemplateName()
350
 * @method $this withTemplateName($value)
351
 * @method string getEndDateBefore()
352
 * @method $this withEndDateBefore($value)
353
 * @method string getSortOrder()
354
 * @method $this withSortOrder($value)
355
 * @method string getResourceId()
356
 * @method $this withResourceId($value)
357
 * @method string getStartDateAfter()
358
 * @method $this withStartDateAfter($value)
359
 * @method string getStartDateBefore()
360
 * @method $this withStartDateBefore($value)
361
 * @method string getTags()
362
 * @method $this withTags($value)
363
 * @method string getParentExecutionId()
364
 * @method $this withParentExecutionId($value)
365
 * @method string getEndDateAfter()
366
 * @method $this withEndDateAfter($value)
367
 * @method string getMaxResults()
368
 * @method $this withMaxResults($value)
369
 * @method string getSortField()
370
 * @method $this withSortField($value)
371
 * @method string getCategory()
372
 * @method $this withCategory($value)
373
 * @method string getResourceTemplateName()
374
 * @method $this withResourceTemplateName($value)
375
 * @method string getStatus()
376
 * @method $this withStatus($value)
377
 */
378
class ListExecutions extends Rpc
379
{
380
}
381
382
/**
383
 * @method array getFilter()
384
 * @method string getInstanceId()
385
 * @method $this withInstanceId($value)
386
 * @method string getNextToken()
387
 * @method $this withNextToken($value)
388
 * @method string getMaxResults()
389
 * @method $this withMaxResults($value)
390
 * @method string getTypeName()
391
 * @method $this withTypeName($value)
392
 */
393
class ListInventoryEntries extends Rpc
394
{
395
396
    /**
397
     * @param array $filter
398
     *
399
     * @return $this
400
     */
401
	public function withFilter(array $filter)
402
	{
403
	    $this->data['Filter'] = $filter;
404
		foreach ($filter as $depth1 => $depth1Value) {
405
			if(isset($depth1Value['Name'])){
406
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Name'] = $depth1Value['Name'];
407
			}
408
			foreach ($depth1Value['Value'] as $i => $iValue) {
409
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Value.' . ($i + 1)] = $iValue;
410
			}
411
			if(isset($depth1Value['Operator'])){
412
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Operator'] = $depth1Value['Operator'];
413
			}
414
		}
415
416
		return $this;
417
    }
418
}
419
420
/**
421
 * @method string getType()
422
 * @method $this withType($value)
423
 * @method string getRecursive()
424
 * @method $this withRecursive($value)
425
 * @method string getPath()
426
 * @method $this withPath($value)
427
 * @method string getNextToken()
428
 * @method $this withNextToken($value)
429
 * @method string getName()
430
 * @method $this withName($value)
431
 * @method string getMaxResults()
432
 * @method $this withMaxResults($value)
433
 * @method string getSortOrder()
434
 * @method $this withSortOrder($value)
435
 * @method string getSortField()
436
 * @method $this withSortField($value)
437
 */
438
class ListParameters extends Rpc
439
{
440
}
441
442
/**
443
 * @method string getNextToken()
444
 * @method $this withNextToken($value)
445
 * @method string getName()
446
 * @method $this withName($value)
447
 * @method string getMaxResults()
448
 * @method $this withMaxResults($value)
449
 * @method string getShareType()
450
 * @method $this withShareType($value)
451
 */
452
class ListParameterVersions extends Rpc
453
{
454
}
455
456
/**
457
 * @method string getExecutionId()
458
 * @method $this withExecutionId($value)
459
 * @method string getNextToken()
460
 * @method $this withNextToken($value)
461
 * @method string getMaxResults()
462
 * @method $this withMaxResults($value)
463
 */
464
class ListResourceExecutionStatus extends Rpc
465
{
466
}
467
468
/**
469
 * @method string getRecursive()
470
 * @method $this withRecursive($value)
471
 * @method string getPath()
472
 * @method $this withPath($value)
473
 * @method string getNextToken()
474
 * @method $this withNextToken($value)
475
 * @method string getName()
476
 * @method $this withName($value)
477
 * @method string getMaxResults()
478
 * @method $this withMaxResults($value)
479
 * @method string getSortOrder()
480
 * @method $this withSortOrder($value)
481
 * @method string getSortField()
482
 * @method $this withSortField($value)
483
 */
484
class ListSecretParameters extends Rpc
485
{
486
}
487
488
/**
489
 * @method string getWithDecryption()
490
 * @method $this withWithDecryption($value)
491
 * @method string getNextToken()
492
 * @method $this withNextToken($value)
493
 * @method string getName()
494
 * @method $this withName($value)
495
 * @method string getMaxResults()
496
 * @method $this withMaxResults($value)
497
 * @method string getShareType()
498
 * @method $this withShareType($value)
499
 */
500
class ListSecretParameterVersions extends Rpc
501
{
502
}
503
504
/**
505
 * @method string getResourceType()
506
 * @method $this withResourceType($value)
507
 * @method string getNextToken()
508
 * @method $this withNextToken($value)
509
 * @method string getMaxResults()
510
 * @method $this withMaxResults($value)
511
 */
512
class ListTagKeys extends Rpc
513
{
514
}
515
516
/**
517
 * @method string getResourceType()
518
 * @method $this withResourceType($value)
519
 * @method string getTags()
520
 * @method $this withTags($value)
521
 * @method string getNextToken()
522
 * @method $this withNextToken($value)
523
 * @method string getResourceIds()
524
 * @method $this withResourceIds($value)
525
 */
526
class ListTagResources extends Rpc
527
{
528
}
529
530
/**
531
 * @method string getResourceType()
532
 * @method $this withResourceType($value)
533
 * @method string getNextToken()
534
 * @method $this withNextToken($value)
535
 * @method string getMaxResults()
536
 * @method $this withMaxResults($value)
537
 * @method string getKey()
538
 * @method $this withKey($value)
539
 */
540
class ListTagValues extends Rpc
541
{
542
}
543
544
/**
545
 * @method string getTaskName()
546
 * @method $this withTaskName($value)
547
 * @method string getIncludeChildTaskExecution()
548
 * @method $this withIncludeChildTaskExecution($value)
549
 * @method string getExecutionId()
550
 * @method $this withExecutionId($value)
551
 * @method string getParentTaskExecutionId()
552
 * @method $this withParentTaskExecutionId($value)
553
 * @method string getNextToken()
554
 * @method $this withNextToken($value)
555
 * @method string getEndDateBefore()
556
 * @method $this withEndDateBefore($value)
557
 * @method string getSortOrder()
558
 * @method $this withSortOrder($value)
559
 * @method string getStartDateAfter()
560
 * @method $this withStartDateAfter($value)
561
 * @method string getStartDateBefore()
562
 * @method $this withStartDateBefore($value)
563
 * @method string getEndDateAfter()
564
 * @method $this withEndDateAfter($value)
565
 * @method string getMaxResults()
566
 * @method $this withMaxResults($value)
567
 * @method string getTaskExecutionId()
568
 * @method $this withTaskExecutionId($value)
569
 * @method string getSortField()
570
 * @method $this withSortField($value)
571
 * @method string getTaskAction()
572
 * @method $this withTaskAction($value)
573
 * @method string getStatus()
574
 * @method $this withStatus($value)
575
 */
576
class ListTaskExecutions extends Rpc
577
{
578
}
579
580
/**
581
 * @method string getCreatedDateBefore()
582
 * @method $this withCreatedDateBefore($value)
583
 * @method string getCreatedBy()
584
 * @method $this withCreatedBy($value)
585
 * @method string getNextToken()
586
 * @method $this withNextToken($value)
587
 * @method string getTemplateType()
588
 * @method $this withTemplateType($value)
589
 * @method string getTemplateName()
590
 * @method $this withTemplateName($value)
591
 * @method string getSortOrder()
592
 * @method $this withSortOrder($value)
593
 * @method string getShareType()
594
 * @method $this withShareType($value)
595
 * @method string getHasTrigger()
596
 * @method $this withHasTrigger($value)
597
 * @method string getCreatedDateAfter()
598
 * @method $this withCreatedDateAfter($value)
599
 * @method string getTags()
600
 * @method $this withTags($value)
601
 * @method string getMaxResults()
602
 * @method $this withMaxResults($value)
603
 * @method string getTemplateFormat()
604
 * @method $this withTemplateFormat($value)
605
 * @method string getSortField()
606
 * @method $this withSortField($value)
607
 * @method string getCategory()
608
 * @method $this withCategory($value)
609
 */
610
class ListTemplates extends Rpc
611
{
612
}
613
614
/**
615
 * @method string getNextToken()
616
 * @method $this withNextToken($value)
617
 * @method string getMaxResults()
618
 * @method $this withMaxResults($value)
619
 * @method string getTemplateName()
620
 * @method $this withTemplateName($value)
621
 * @method string getShareType()
622
 * @method $this withShareType($value)
623
 */
624
class ListTemplateVersions extends Rpc
625
{
626
}
627
628
/**
629
 * @method string getTaskName()
630
 * @method $this withTaskName($value)
631
 * @method string getExecutionId()
632
 * @method $this withExecutionId($value)
633
 * @method string getNotifyType()
634
 * @method $this withNotifyType($value)
635
 * @method string getExecutionStatus()
636
 * @method $this withExecutionStatus($value)
637
 * @method string getNotifyNote()
638
 * @method $this withNotifyNote($value)
639
 * @method string getLoopItem()
640
 * @method $this withLoopItem($value)
641
 * @method string getTaskExecutionIds()
642
 * @method $this withTaskExecutionIds($value)
643
 * @method string getTaskExecutionId()
644
 * @method $this withTaskExecutionId($value)
645
 * @method string getParameters()
646
 * @method $this withParameters($value)
647
 */
648
class NotifyExecution extends Rpc
649
{
650
}
651
652
/**
653
 * @method array getAggregator()
654
 * @method array getFilter()
655
 * @method string getNextToken()
656
 * @method $this withNextToken($value)
657
 * @method string getMaxResults()
658
 * @method $this withMaxResults($value)
659
 */
660
class SearchInventory extends Rpc
661
{
662
663
    /**
664
     * @param array $aggregator
665
     *
666
     * @return $this
667
     */
668
	public function withAggregator(array $aggregator)
669
	{
670
	    $this->data['Aggregator'] = $aggregator;
671
		foreach ($aggregator as $i => $iValue) {
672
			$this->options['query']['Aggregator.' . ($i + 1)] = $iValue;
673
		}
674
675
		return $this;
676
    }
677
678
    /**
679
     * @param array $filter
680
     *
681
     * @return $this
682
     */
683
	public function withFilter(array $filter)
684
	{
685
	    $this->data['Filter'] = $filter;
686
		foreach ($filter as $depth1 => $depth1Value) {
687
			if(isset($depth1Value['Name'])){
688
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Name'] = $depth1Value['Name'];
689
			}
690
			foreach ($depth1Value['Value'] as $i => $iValue) {
691
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Value.' . ($i + 1)] = $iValue;
692
			}
693
			if(isset($depth1Value['Operator'])){
694
				$this->options['query']['Filter.' . ($depth1 + 1) . '.Operator'] = $depth1Value['Operator'];
695
			}
696
		}
697
698
		return $this;
699
    }
700
}
701
702
/**
703
 * @method string getClientToken()
704
 * @method $this withClientToken($value)
705
 * @method string getDescription()
706
 * @method $this withDescription($value)
707
 * @method string getMode()
708
 * @method $this withMode($value)
709
 * @method string getTemplateVersion()
710
 * @method $this withTemplateVersion($value)
711
 * @method string getTemplateName()
712
 * @method $this withTemplateName($value)
713
 * @method string getLoopMode()
714
 * @method $this withLoopMode($value)
715
 * @method string getSafetyCheck()
716
 * @method $this withSafetyCheck($value)
717
 * @method string getTags()
718
 * @method $this withTags($value)
719
 * @method string getParentExecutionId()
720
 * @method $this withParentExecutionId($value)
721
 * @method string getParameters()
722
 * @method $this withParameters($value)
723
 */
724
class StartExecution extends Rpc
725
{
726
}
727
728
/**
729
 * @method string getResourceType()
730
 * @method $this withResourceType($value)
731
 * @method string getTags()
732
 * @method $this withTags($value)
733
 * @method string getResourceIds()
734
 * @method $this withResourceIds($value)
735
 */
736
class TagResources extends Rpc
737
{
738
}
739
740
/**
741
 * @method string getClientToken()
742
 * @method $this withClientToken($value)
743
 * @method string getType()
744
 * @method $this withType($value)
745
 * @method string getContent()
746
 * @method $this withContent($value)
747
 * @method string getExecutionId()
748
 * @method $this withExecutionId($value)
749
 */
750
class TriggerExecution extends Rpc
751
{
752
}
753
754
/**
755
 * @method string getAll()
756
 * @method $this withAll($value)
757
 * @method string getResourceType()
758
 * @method $this withResourceType($value)
759
 * @method string getTagKeys()
760
 * @method $this withTagKeys($value)
761
 * @method string getResourceIds()
762
 * @method $this withResourceIds($value)
763
 */
764
class UntagResources extends Rpc
765
{
766
}
767
768
/**
769
 * @method string getClientToken()
770
 * @method $this withClientToken($value)
771
 * @method string getExecutionId()
772
 * @method $this withExecutionId($value)
773
 * @method string getParameters()
774
 * @method $this withParameters($value)
775
 */
776
class UpdateExecution extends Rpc
777
{
778
}
779
780
/**
781
 * @method string getAgentVersion()
782
 * @method $this withAgentVersion($value)
783
 * @method string getIpAddress()
784
 * @method $this withIpAddress($value)
785
 * @method string getComputerName()
786
 * @method $this withComputerName($value)
787
 * @method string getPlatformName()
788
 * @method $this withPlatformName($value)
789
 * @method string getInstanceId()
790
 * @method $this withInstanceId($value)
791
 * @method string getAgentName()
792
 * @method $this withAgentName($value)
793
 * @method string getPlatformType()
794
 * @method $this withPlatformType($value)
795
 * @method string getPlatformVersion()
796
 * @method $this withPlatformVersion($value)
797
 */
798
class UpdateInstanceInformation extends Rpc
799
{
800
}
801
802
/**
803
 * @method string getDescription()
804
 * @method $this withDescription($value)
805
 * @method string getName()
806
 * @method $this withName($value)
807
 * @method string getValue()
808
 * @method $this withValue($value)
809
 */
810
class UpdateParameter extends Rpc
811
{
812
}
813
814
/**
815
 * @method string getDescription()
816
 * @method $this withDescription($value)
817
 * @method string getName()
818
 * @method $this withName($value)
819
 * @method string getValue()
820
 * @method $this withValue($value)
821
 */
822
class UpdateSecretParameter extends Rpc
823
{
824
}
825
826
/**
827
 * @method string getContent()
828
 * @method $this withContent($value)
829
 * @method string getTags()
830
 * @method $this withTags($value)
831
 * @method string getTemplateName()
832
 * @method $this withTemplateName($value)
833
 * @method string getVersionName()
834
 * @method $this withVersionName($value)
835
 */
836
class UpdateTemplate extends Rpc
837
{
838
}
839
840
/**
841
 * @method string getContent()
842
 * @method $this withContent($value)
843
 */
844
class ValidateTemplateContent extends Rpc
845
{
846
}
847