@maxim_mazurok/gapi.client.cloudresourcemanager-v3 0.1.20260218 → 0.2.20260310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +183 -168
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudresourcemanager.googleapis.com/$discovery/rest?version=v3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260310
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -38,7 +38,11 @@ declare namespace gapi.client {
|
|
|
38
38
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
39
39
|
exemptedMembers?: string[];
|
|
40
40
|
/** The log type that this config enables. */
|
|
41
|
-
logType?:
|
|
41
|
+
logType?:
|
|
42
|
+
| 'LOG_TYPE_UNSPECIFIED'
|
|
43
|
+
| 'ADMIN_READ'
|
|
44
|
+
| 'DATA_WRITE'
|
|
45
|
+
| 'DATA_READ';
|
|
42
46
|
}
|
|
43
47
|
interface Binding {
|
|
44
48
|
/** The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
@@ -60,7 +64,7 @@ declare namespace gapi.client {
|
|
|
60
64
|
/** The display name of the folder. */
|
|
61
65
|
displayName?: string;
|
|
62
66
|
/** The type of this operation. */
|
|
63
|
-
operationType?:
|
|
67
|
+
operationType?: 'OPERATION_TYPE_UNSPECIFIED' | 'CREATE' | 'MOVE';
|
|
64
68
|
/** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
|
|
65
69
|
sourceParent?: string;
|
|
66
70
|
}
|
|
@@ -70,7 +74,7 @@ declare namespace gapi.client {
|
|
|
70
74
|
/** The display name of the folder. */
|
|
71
75
|
displayName?: string;
|
|
72
76
|
/** The type of this operation. */
|
|
73
|
-
operationType?:
|
|
77
|
+
operationType?: 'OPERATION_TYPE_UNSPECIFIED' | 'CREATE' | 'MOVE';
|
|
74
78
|
/** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
|
|
75
79
|
sourceParent?: string;
|
|
76
80
|
}
|
|
@@ -148,7 +152,7 @@ declare namespace gapi.client {
|
|
|
148
152
|
/** Required. The folder's parent's resource name. Updates to the folder's parent must be performed using MoveFolder. */
|
|
149
153
|
parent?: string;
|
|
150
154
|
/** Output only. The lifecycle state of the folder. Updates to the state must be performed using DeleteFolder and UndeleteFolder. */
|
|
151
|
-
state?:
|
|
155
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'DELETE_REQUESTED';
|
|
152
156
|
/** Optional. Input only. Immutable. Tag keys/values directly bound to this folder. Each item in the map must be expressed as " : ". For example: "123/environment" : "production", "123/costCenter" : "marketing" Note: Currently this field is in Preview. */
|
|
153
157
|
tags?: {[P in string]: string};
|
|
154
158
|
/** Output only. Timestamp when the folder was last modified. */
|
|
@@ -160,13 +164,24 @@ declare namespace gapi.client {
|
|
|
160
164
|
/** The display name of the folder. */
|
|
161
165
|
displayName?: string;
|
|
162
166
|
/** The type of this operation. */
|
|
163
|
-
operationType?:
|
|
167
|
+
operationType?: 'OPERATION_TYPE_UNSPECIFIED' | 'CREATE' | 'MOVE';
|
|
164
168
|
/** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
|
|
165
169
|
sourceParent?: string;
|
|
166
170
|
}
|
|
167
171
|
interface FolderOperationError {
|
|
168
172
|
/** The type of operation error experienced. */
|
|
169
|
-
errorMessageId?:
|
|
173
|
+
errorMessageId?:
|
|
174
|
+
| 'ERROR_TYPE_UNSPECIFIED'
|
|
175
|
+
| 'ACTIVE_FOLDER_HEIGHT_VIOLATION'
|
|
176
|
+
| 'MAX_CHILD_FOLDERS_VIOLATION'
|
|
177
|
+
| 'FOLDER_NAME_UNIQUENESS_VIOLATION'
|
|
178
|
+
| 'RESOURCE_DELETED_VIOLATION'
|
|
179
|
+
| 'PARENT_DELETED_VIOLATION'
|
|
180
|
+
| 'CYCLE_INTRODUCED_VIOLATION'
|
|
181
|
+
| 'FOLDER_BEING_MOVED_VIOLATION'
|
|
182
|
+
| 'FOLDER_TO_DELETE_NON_EMPTY_VIOLATION'
|
|
183
|
+
| 'DELETED_FOLDER_HEIGHT_VIOLATION'
|
|
184
|
+
| 'FOLDER_TO_DELETE_CONFIGURED_CAPABILITY_VIOLATION';
|
|
170
185
|
}
|
|
171
186
|
interface GetIamPolicyRequest {
|
|
172
187
|
/** OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. */
|
|
@@ -281,7 +296,7 @@ declare namespace gapi.client {
|
|
|
281
296
|
/** Output only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example, "organizations/1234". */
|
|
282
297
|
name?: string;
|
|
283
298
|
/** Output only. The organization's current lifecycle state. */
|
|
284
|
-
state?:
|
|
299
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'DELETE_REQUESTED';
|
|
285
300
|
/** Output only. Timestamp when the Organization was last modified. */
|
|
286
301
|
updateTime?: string;
|
|
287
302
|
}
|
|
@@ -315,7 +330,7 @@ declare namespace gapi.client {
|
|
|
315
330
|
/** Immutable. The unique, user-assigned id of the project. It must be 6 to 30 lowercase ASCII letters, digits, or hyphens. It must start with a letter. Trailing hyphens are prohibited. Example: `tokyo-rain-123` */
|
|
316
331
|
projectId?: string;
|
|
317
332
|
/** Output only. The project lifecycle state. */
|
|
318
|
-
state?:
|
|
333
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'DELETE_REQUESTED';
|
|
319
334
|
/** Optional. Input only. Immutable. Tag keys/values directly bound to this project. Each item in the map must be expressed as " : ". For example: "123/environment" : "production", "123/costCenter" : "marketing" Note: Currently this field is in Preview. */
|
|
320
335
|
tags?: {[P in string]: string};
|
|
321
336
|
/** Output only. The most recent time this resource was modified. */
|
|
@@ -409,7 +424,7 @@ declare namespace gapi.client {
|
|
|
409
424
|
/** Immutable. The resource name of the TagKey's parent. A TagKey can be parented by an Organization or a Project. For a TagKey parented by an Organization, its parent must be in the form `organizations/{org_id}`. For a TagKey parented by a Project, its parent can be in the form `projects/{project_id}` or `projects/{project_number}`. */
|
|
410
425
|
parent?: string;
|
|
411
426
|
/** Optional. A purpose denotes that this Tag is intended for use in policies of a specific policy engine, and will involve that policy engine in management operations involving this Tag. A purpose does not grant a policy engine exclusive rights to the Tag, and it may be referenced by other policy engines. A purpose cannot be changed once set. */
|
|
412
|
-
purpose?:
|
|
427
|
+
purpose?: 'PURPOSE_UNSPECIFIED' | 'GCE_FIREWALL' | 'DATA_GOVERNANCE';
|
|
413
428
|
/** Optional. Purpose data corresponds to the policy system that the tag is intended for. See documentation for `Purpose` for formatting of this field. Purpose data cannot be changed once set. */
|
|
414
429
|
purposeData?: {[P in string]: string};
|
|
415
430
|
/** Required. Immutable. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace. The short name must be 1-256 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between. */
|
|
@@ -456,11 +471,11 @@ declare namespace gapi.client {
|
|
|
456
471
|
/** Return a list of effective tags for the given Google Cloud resource, as specified in `parent`. */
|
|
457
472
|
list(request?: {
|
|
458
473
|
/** V1 error format. */
|
|
459
|
-
'$.xgafv'?:
|
|
474
|
+
'$.xgafv'?: '1' | '2';
|
|
460
475
|
/** OAuth access token. */
|
|
461
476
|
access_token?: string;
|
|
462
477
|
/** Data format for response. */
|
|
463
|
-
alt?:
|
|
478
|
+
alt?: 'json' | 'media' | 'proto';
|
|
464
479
|
/** JSONP */
|
|
465
480
|
callback?: string;
|
|
466
481
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -489,11 +504,11 @@ declare namespace gapi.client {
|
|
|
489
504
|
/** Retrieves the Capability identified by the supplied resource name. */
|
|
490
505
|
get(request?: {
|
|
491
506
|
/** V1 error format. */
|
|
492
|
-
'$.xgafv'?:
|
|
507
|
+
'$.xgafv'?: '1' | '2';
|
|
493
508
|
/** OAuth access token. */
|
|
494
509
|
access_token?: string;
|
|
495
510
|
/** Data format for response. */
|
|
496
|
-
alt?:
|
|
511
|
+
alt?: 'json' | 'media' | 'proto';
|
|
497
512
|
/** JSONP */
|
|
498
513
|
callback?: string;
|
|
499
514
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -516,11 +531,11 @@ declare namespace gapi.client {
|
|
|
516
531
|
/** Updates the Capability. */
|
|
517
532
|
patch(request: {
|
|
518
533
|
/** V1 error format. */
|
|
519
|
-
'$.xgafv'?:
|
|
534
|
+
'$.xgafv'?: '1' | '2';
|
|
520
535
|
/** OAuth access token. */
|
|
521
536
|
access_token?: string;
|
|
522
537
|
/** Data format for response. */
|
|
523
|
-
alt?:
|
|
538
|
+
alt?: 'json' | 'media' | 'proto';
|
|
524
539
|
/** JSONP */
|
|
525
540
|
callback?: string;
|
|
526
541
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -547,11 +562,11 @@ declare namespace gapi.client {
|
|
|
547
562
|
patch(
|
|
548
563
|
request: {
|
|
549
564
|
/** V1 error format. */
|
|
550
|
-
'$.xgafv'?:
|
|
565
|
+
'$.xgafv'?: '1' | '2';
|
|
551
566
|
/** OAuth access token. */
|
|
552
567
|
access_token?: string;
|
|
553
568
|
/** Data format for response. */
|
|
554
|
-
alt?:
|
|
569
|
+
alt?: 'json' | 'media' | 'proto';
|
|
555
570
|
/** JSONP */
|
|
556
571
|
callback?: string;
|
|
557
572
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -580,11 +595,11 @@ declare namespace gapi.client {
|
|
|
580
595
|
/** Creates a folder in the resource hierarchy. Returns an `Operation` which can be used to track the progress of the folder creation workflow. Upon success, the `Operation.response` field will be populated with the created Folder. In order to succeed, the addition of this new folder must not violate the folder naming, height, or fanout constraints. + The folder's `display_name` must be distinct from all other folders that share its parent. + The addition of the folder must not cause the active folder hierarchy to exceed a height of 10. Note, the full active + deleted folder hierarchy is allowed to reach a height of 20; this provides additional headroom when moving folders that contain deleted folders. + The addition of the folder must not cause the total number of folders under its parent to exceed 300. If the operation fails due to a folder constraint violation, some errors may be returned by the `CreateFolder` request, with status code `FAILED_PRECONDITION` and an error description. Other folder constraint violations will be communicated in the `Operation`, with the specific `PreconditionFailure` returned in the details list in the `Operation.error` field. The caller must have `resourcemanager.folders.create` permission on the identified parent. */
|
|
581
596
|
create(request: {
|
|
582
597
|
/** V1 error format. */
|
|
583
|
-
'$.xgafv'?:
|
|
598
|
+
'$.xgafv'?: '1' | '2';
|
|
584
599
|
/** OAuth access token. */
|
|
585
600
|
access_token?: string;
|
|
586
601
|
/** Data format for response. */
|
|
587
|
-
alt?:
|
|
602
|
+
alt?: 'json' | 'media' | 'proto';
|
|
588
603
|
/** JSONP */
|
|
589
604
|
callback?: string;
|
|
590
605
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -607,11 +622,11 @@ declare namespace gapi.client {
|
|
|
607
622
|
create(
|
|
608
623
|
request: {
|
|
609
624
|
/** V1 error format. */
|
|
610
|
-
'$.xgafv'?:
|
|
625
|
+
'$.xgafv'?: '1' | '2';
|
|
611
626
|
/** OAuth access token. */
|
|
612
627
|
access_token?: string;
|
|
613
628
|
/** Data format for response. */
|
|
614
|
-
alt?:
|
|
629
|
+
alt?: 'json' | 'media' | 'proto';
|
|
615
630
|
/** JSONP */
|
|
616
631
|
callback?: string;
|
|
617
632
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -634,11 +649,11 @@ declare namespace gapi.client {
|
|
|
634
649
|
/** Requests deletion of a folder. The folder is moved into the DELETE_REQUESTED state immediately, and is deleted approximately 30 days later. This method may only be called on an empty folder, where a folder is empty if it doesn't contain any folders or projects in the ACTIVE state. If called on a folder in DELETE_REQUESTED state the operation will result in a no-op success. The caller must have `resourcemanager.folders.delete` permission on the identified folder. */
|
|
635
650
|
delete(request?: {
|
|
636
651
|
/** V1 error format. */
|
|
637
|
-
'$.xgafv'?:
|
|
652
|
+
'$.xgafv'?: '1' | '2';
|
|
638
653
|
/** OAuth access token. */
|
|
639
654
|
access_token?: string;
|
|
640
655
|
/** Data format for response. */
|
|
641
|
-
alt?:
|
|
656
|
+
alt?: 'json' | 'media' | 'proto';
|
|
642
657
|
/** JSONP */
|
|
643
658
|
callback?: string;
|
|
644
659
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -661,11 +676,11 @@ declare namespace gapi.client {
|
|
|
661
676
|
/** Retrieves a folder identified by the supplied resource name. Valid folder resource names have the format `folders/{folder_id}` (for example, `folders/1234`). The caller must have `resourcemanager.folders.get` permission on the identified folder. */
|
|
662
677
|
get(request?: {
|
|
663
678
|
/** V1 error format. */
|
|
664
|
-
'$.xgafv'?:
|
|
679
|
+
'$.xgafv'?: '1' | '2';
|
|
665
680
|
/** OAuth access token. */
|
|
666
681
|
access_token?: string;
|
|
667
682
|
/** Data format for response. */
|
|
668
|
-
alt?:
|
|
683
|
+
alt?: 'json' | 'media' | 'proto';
|
|
669
684
|
/** JSONP */
|
|
670
685
|
callback?: string;
|
|
671
686
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -689,11 +704,11 @@ declare namespace gapi.client {
|
|
|
689
704
|
getIamPolicy(
|
|
690
705
|
request: {
|
|
691
706
|
/** V1 error format. */
|
|
692
|
-
'$.xgafv'?:
|
|
707
|
+
'$.xgafv'?: '1' | '2';
|
|
693
708
|
/** OAuth access token. */
|
|
694
709
|
access_token?: string;
|
|
695
710
|
/** Data format for response. */
|
|
696
|
-
alt?:
|
|
711
|
+
alt?: 'json' | 'media' | 'proto';
|
|
697
712
|
/** JSONP */
|
|
698
713
|
callback?: string;
|
|
699
714
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -718,11 +733,11 @@ declare namespace gapi.client {
|
|
|
718
733
|
/** Lists the folders that are direct descendants of supplied parent resource. `list()` provides a strongly consistent view of the folders underneath the specified parent resource. `list()` returns folders sorted based upon the (ascending) lexical ordering of their display_name. The caller must have `resourcemanager.folders.list` permission on the identified parent. */
|
|
719
734
|
list(request?: {
|
|
720
735
|
/** V1 error format. */
|
|
721
|
-
'$.xgafv'?:
|
|
736
|
+
'$.xgafv'?: '1' | '2';
|
|
722
737
|
/** OAuth access token. */
|
|
723
738
|
access_token?: string;
|
|
724
739
|
/** Data format for response. */
|
|
725
|
-
alt?:
|
|
740
|
+
alt?: 'json' | 'media' | 'proto';
|
|
726
741
|
/** JSONP */
|
|
727
742
|
callback?: string;
|
|
728
743
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -751,11 +766,11 @@ declare namespace gapi.client {
|
|
|
751
766
|
/** Moves a folder under a new resource parent. Returns an `Operation` which can be used to track the progress of the folder move workflow. Upon success, the `Operation.response` field will be populated with the moved folder. Upon failure, a `FolderOperationError` categorizing the failure cause will be returned - if the failure occurs synchronously then the `FolderOperationError` will be returned in the `Status.details` field. If it occurs asynchronously, then the FolderOperation will be returned in the `Operation.error` field. In addition, the `Operation.metadata` field will be populated with a `FolderOperation` message as an aid to stateless clients. Folder moves will be rejected if they violate either the naming, height, or fanout constraints described in the CreateFolder documentation. The caller must have `resourcemanager.folders.move` permission on the folder's current and proposed new parent. */
|
|
752
767
|
move(request: {
|
|
753
768
|
/** V1 error format. */
|
|
754
|
-
'$.xgafv'?:
|
|
769
|
+
'$.xgafv'?: '1' | '2';
|
|
755
770
|
/** OAuth access token. */
|
|
756
771
|
access_token?: string;
|
|
757
772
|
/** Data format for response. */
|
|
758
|
-
alt?:
|
|
773
|
+
alt?: 'json' | 'media' | 'proto';
|
|
759
774
|
/** JSONP */
|
|
760
775
|
callback?: string;
|
|
761
776
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -780,11 +795,11 @@ declare namespace gapi.client {
|
|
|
780
795
|
move(
|
|
781
796
|
request: {
|
|
782
797
|
/** V1 error format. */
|
|
783
|
-
'$.xgafv'?:
|
|
798
|
+
'$.xgafv'?: '1' | '2';
|
|
784
799
|
/** OAuth access token. */
|
|
785
800
|
access_token?: string;
|
|
786
801
|
/** Data format for response. */
|
|
787
|
-
alt?:
|
|
802
|
+
alt?: 'json' | 'media' | 'proto';
|
|
788
803
|
/** JSONP */
|
|
789
804
|
callback?: string;
|
|
790
805
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -809,11 +824,11 @@ declare namespace gapi.client {
|
|
|
809
824
|
/** Updates a folder, changing its `display_name`. Changes to the folder `display_name` will be rejected if they violate either the `display_name` formatting rules or the naming constraints described in the CreateFolder documentation. The folder's `display_name` must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be between 3 and 30 characters. This is captured by the regular expression: `\p{L}\p{N}{1,28}[\p{L}\p{N}]`. The caller must have `resourcemanager.folders.update` permission on the identified folder. If the update fails due to the unique name constraint then a `PreconditionFailure` explaining this violation will be returned in the Status.details field. */
|
|
810
825
|
patch(request: {
|
|
811
826
|
/** V1 error format. */
|
|
812
|
-
'$.xgafv'?:
|
|
827
|
+
'$.xgafv'?: '1' | '2';
|
|
813
828
|
/** OAuth access token. */
|
|
814
829
|
access_token?: string;
|
|
815
830
|
/** Data format for response. */
|
|
816
|
-
alt?:
|
|
831
|
+
alt?: 'json' | 'media' | 'proto';
|
|
817
832
|
/** JSONP */
|
|
818
833
|
callback?: string;
|
|
819
834
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -840,11 +855,11 @@ declare namespace gapi.client {
|
|
|
840
855
|
patch(
|
|
841
856
|
request: {
|
|
842
857
|
/** V1 error format. */
|
|
843
|
-
'$.xgafv'?:
|
|
858
|
+
'$.xgafv'?: '1' | '2';
|
|
844
859
|
/** OAuth access token. */
|
|
845
860
|
access_token?: string;
|
|
846
861
|
/** Data format for response. */
|
|
847
|
-
alt?:
|
|
862
|
+
alt?: 'json' | 'media' | 'proto';
|
|
848
863
|
/** JSONP */
|
|
849
864
|
callback?: string;
|
|
850
865
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -871,11 +886,11 @@ declare namespace gapi.client {
|
|
|
871
886
|
/** Search for folders that match specific filter criteria. `search()` provides an eventually consistent view of the folders a user has access to which meet the specified filter criteria. This will only return folders on which the caller has the permission `resourcemanager.folders.get`. */
|
|
872
887
|
search(request?: {
|
|
873
888
|
/** V1 error format. */
|
|
874
|
-
'$.xgafv'?:
|
|
889
|
+
'$.xgafv'?: '1' | '2';
|
|
875
890
|
/** OAuth access token. */
|
|
876
891
|
access_token?: string;
|
|
877
892
|
/** Data format for response. */
|
|
878
|
-
alt?:
|
|
893
|
+
alt?: 'json' | 'media' | 'proto';
|
|
879
894
|
/** JSONP */
|
|
880
895
|
callback?: string;
|
|
881
896
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -903,11 +918,11 @@ declare namespace gapi.client {
|
|
|
903
918
|
setIamPolicy(
|
|
904
919
|
request: {
|
|
905
920
|
/** V1 error format. */
|
|
906
|
-
'$.xgafv'?:
|
|
921
|
+
'$.xgafv'?: '1' | '2';
|
|
907
922
|
/** OAuth access token. */
|
|
908
923
|
access_token?: string;
|
|
909
924
|
/** Data format for response. */
|
|
910
|
-
alt?:
|
|
925
|
+
alt?: 'json' | 'media' | 'proto';
|
|
911
926
|
/** JSONP */
|
|
912
927
|
callback?: string;
|
|
913
928
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -933,11 +948,11 @@ declare namespace gapi.client {
|
|
|
933
948
|
testIamPermissions(
|
|
934
949
|
request: {
|
|
935
950
|
/** V1 error format. */
|
|
936
|
-
'$.xgafv'?:
|
|
951
|
+
'$.xgafv'?: '1' | '2';
|
|
937
952
|
/** OAuth access token. */
|
|
938
953
|
access_token?: string;
|
|
939
954
|
/** Data format for response. */
|
|
940
|
-
alt?:
|
|
955
|
+
alt?: 'json' | 'media' | 'proto';
|
|
941
956
|
/** JSONP */
|
|
942
957
|
callback?: string;
|
|
943
958
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -962,11 +977,11 @@ declare namespace gapi.client {
|
|
|
962
977
|
/** Cancels the deletion request for a folder. This method may be called on a folder in any state. If the folder is in the ACTIVE state the result will be a no-op success. In order to succeed, the folder's parent must be in the ACTIVE state. In addition, reintroducing the folder into the tree must not violate folder naming, height, and fanout constraints described in the CreateFolder documentation. The caller must have `resourcemanager.folders.undelete` permission on the identified folder. */
|
|
963
978
|
undelete(request: {
|
|
964
979
|
/** V1 error format. */
|
|
965
|
-
'$.xgafv'?:
|
|
980
|
+
'$.xgafv'?: '1' | '2';
|
|
966
981
|
/** OAuth access token. */
|
|
967
982
|
access_token?: string;
|
|
968
983
|
/** Data format for response. */
|
|
969
|
-
alt?:
|
|
984
|
+
alt?: 'json' | 'media' | 'proto';
|
|
970
985
|
/** JSONP */
|
|
971
986
|
callback?: string;
|
|
972
987
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -991,11 +1006,11 @@ declare namespace gapi.client {
|
|
|
991
1006
|
undelete(
|
|
992
1007
|
request: {
|
|
993
1008
|
/** V1 error format. */
|
|
994
|
-
'$.xgafv'?:
|
|
1009
|
+
'$.xgafv'?: '1' | '2';
|
|
995
1010
|
/** OAuth access token. */
|
|
996
1011
|
access_token?: string;
|
|
997
1012
|
/** Data format for response. */
|
|
998
|
-
alt?:
|
|
1013
|
+
alt?: 'json' | 'media' | 'proto';
|
|
999
1014
|
/** JSONP */
|
|
1000
1015
|
callback?: string;
|
|
1001
1016
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1023,11 +1038,11 @@ declare namespace gapi.client {
|
|
|
1023
1038
|
/** Create a Lien which applies to the resource denoted by the `parent` field. Callers of this method will require permission on the `parent` resource. For example, applying to `projects/1234` requires permission `resourcemanager.projects.updateLiens`. NOTE: Some resources may limit the number of Liens which may be applied. */
|
|
1024
1039
|
create(request: {
|
|
1025
1040
|
/** V1 error format. */
|
|
1026
|
-
'$.xgafv'?:
|
|
1041
|
+
'$.xgafv'?: '1' | '2';
|
|
1027
1042
|
/** OAuth access token. */
|
|
1028
1043
|
access_token?: string;
|
|
1029
1044
|
/** Data format for response. */
|
|
1030
|
-
alt?:
|
|
1045
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1031
1046
|
/** JSONP */
|
|
1032
1047
|
callback?: string;
|
|
1033
1048
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1050,11 +1065,11 @@ declare namespace gapi.client {
|
|
|
1050
1065
|
create(
|
|
1051
1066
|
request: {
|
|
1052
1067
|
/** V1 error format. */
|
|
1053
|
-
'$.xgafv'?:
|
|
1068
|
+
'$.xgafv'?: '1' | '2';
|
|
1054
1069
|
/** OAuth access token. */
|
|
1055
1070
|
access_token?: string;
|
|
1056
1071
|
/** Data format for response. */
|
|
1057
|
-
alt?:
|
|
1072
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1058
1073
|
/** JSONP */
|
|
1059
1074
|
callback?: string;
|
|
1060
1075
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1077,11 +1092,11 @@ declare namespace gapi.client {
|
|
|
1077
1092
|
/** Delete a Lien by `name`. Callers of this method will require permission on the `parent` resource. For example, a Lien with a `parent` of `projects/1234` requires permission `resourcemanager.projects.updateLiens`. */
|
|
1078
1093
|
delete(request?: {
|
|
1079
1094
|
/** V1 error format. */
|
|
1080
|
-
'$.xgafv'?:
|
|
1095
|
+
'$.xgafv'?: '1' | '2';
|
|
1081
1096
|
/** OAuth access token. */
|
|
1082
1097
|
access_token?: string;
|
|
1083
1098
|
/** Data format for response. */
|
|
1084
|
-
alt?:
|
|
1099
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1085
1100
|
/** JSONP */
|
|
1086
1101
|
callback?: string;
|
|
1087
1102
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1104,11 +1119,11 @@ declare namespace gapi.client {
|
|
|
1104
1119
|
/** Retrieve a Lien by `name`. Callers of this method will require permission on the `parent` resource. For example, a Lien with a `parent` of `projects/1234` requires permission `resourcemanager.projects.get` */
|
|
1105
1120
|
get(request?: {
|
|
1106
1121
|
/** V1 error format. */
|
|
1107
|
-
'$.xgafv'?:
|
|
1122
|
+
'$.xgafv'?: '1' | '2';
|
|
1108
1123
|
/** OAuth access token. */
|
|
1109
1124
|
access_token?: string;
|
|
1110
1125
|
/** Data format for response. */
|
|
1111
|
-
alt?:
|
|
1126
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1112
1127
|
/** JSONP */
|
|
1113
1128
|
callback?: string;
|
|
1114
1129
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1131,11 +1146,11 @@ declare namespace gapi.client {
|
|
|
1131
1146
|
/** List all Liens applied to the `parent` resource. Callers of this method will require permission on the `parent` resource. For example, a Lien with a `parent` of `projects/1234` requires permission `resourcemanager.projects.get`. */
|
|
1132
1147
|
list(request?: {
|
|
1133
1148
|
/** V1 error format. */
|
|
1134
|
-
'$.xgafv'?:
|
|
1149
|
+
'$.xgafv'?: '1' | '2';
|
|
1135
1150
|
/** OAuth access token. */
|
|
1136
1151
|
access_token?: string;
|
|
1137
1152
|
/** Data format for response. */
|
|
1138
|
-
alt?:
|
|
1153
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1139
1154
|
/** JSONP */
|
|
1140
1155
|
callback?: string;
|
|
1141
1156
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1164,11 +1179,11 @@ declare namespace gapi.client {
|
|
|
1164
1179
|
/** Returns effective tag bindings on a GCP resource. */
|
|
1165
1180
|
get(request?: {
|
|
1166
1181
|
/** V1 error format. */
|
|
1167
|
-
'$.xgafv'?:
|
|
1182
|
+
'$.xgafv'?: '1' | '2';
|
|
1168
1183
|
/** OAuth access token. */
|
|
1169
1184
|
access_token?: string;
|
|
1170
1185
|
/** Data format for response. */
|
|
1171
|
-
alt?:
|
|
1186
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1172
1187
|
/** JSONP */
|
|
1173
1188
|
callback?: string;
|
|
1174
1189
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1193,11 +1208,11 @@ declare namespace gapi.client {
|
|
|
1193
1208
|
/** Returns tag bindings directly attached to a GCP resource. */
|
|
1194
1209
|
get(request?: {
|
|
1195
1210
|
/** V1 error format. */
|
|
1196
|
-
'$.xgafv'?:
|
|
1211
|
+
'$.xgafv'?: '1' | '2';
|
|
1197
1212
|
/** OAuth access token. */
|
|
1198
1213
|
access_token?: string;
|
|
1199
1214
|
/** Data format for response. */
|
|
1200
|
-
alt?:
|
|
1215
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1201
1216
|
/** JSONP */
|
|
1202
1217
|
callback?: string;
|
|
1203
1218
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1220,11 +1235,11 @@ declare namespace gapi.client {
|
|
|
1220
1235
|
/** Updates tag bindings directly attached to a GCP resource. Update_mask can be kept empty or "*". */
|
|
1221
1236
|
patch(request: {
|
|
1222
1237
|
/** V1 error format. */
|
|
1223
|
-
'$.xgafv'?:
|
|
1238
|
+
'$.xgafv'?: '1' | '2';
|
|
1224
1239
|
/** OAuth access token. */
|
|
1225
1240
|
access_token?: string;
|
|
1226
1241
|
/** Data format for response. */
|
|
1227
|
-
alt?:
|
|
1242
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1228
1243
|
/** JSONP */
|
|
1229
1244
|
callback?: string;
|
|
1230
1245
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1251,11 +1266,11 @@ declare namespace gapi.client {
|
|
|
1251
1266
|
patch(
|
|
1252
1267
|
request: {
|
|
1253
1268
|
/** V1 error format. */
|
|
1254
|
-
'$.xgafv'?:
|
|
1269
|
+
'$.xgafv'?: '1' | '2';
|
|
1255
1270
|
/** OAuth access token. */
|
|
1256
1271
|
access_token?: string;
|
|
1257
1272
|
/** Data format for response. */
|
|
1258
|
-
alt?:
|
|
1273
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1259
1274
|
/** JSONP */
|
|
1260
1275
|
callback?: string;
|
|
1261
1276
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1288,11 +1303,11 @@ declare namespace gapi.client {
|
|
|
1288
1303
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
1289
1304
|
get(request?: {
|
|
1290
1305
|
/** V1 error format. */
|
|
1291
|
-
'$.xgafv'?:
|
|
1306
|
+
'$.xgafv'?: '1' | '2';
|
|
1292
1307
|
/** OAuth access token. */
|
|
1293
1308
|
access_token?: string;
|
|
1294
1309
|
/** Data format for response. */
|
|
1295
|
-
alt?:
|
|
1310
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1296
1311
|
/** JSONP */
|
|
1297
1312
|
callback?: string;
|
|
1298
1313
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1317,11 +1332,11 @@ declare namespace gapi.client {
|
|
|
1317
1332
|
/** Fetches an organization resource identified by the specified resource name. */
|
|
1318
1333
|
get(request?: {
|
|
1319
1334
|
/** V1 error format. */
|
|
1320
|
-
'$.xgafv'?:
|
|
1335
|
+
'$.xgafv'?: '1' | '2';
|
|
1321
1336
|
/** OAuth access token. */
|
|
1322
1337
|
access_token?: string;
|
|
1323
1338
|
/** Data format for response. */
|
|
1324
|
-
alt?:
|
|
1339
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1325
1340
|
/** JSONP */
|
|
1326
1341
|
callback?: string;
|
|
1327
1342
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1345,11 +1360,11 @@ declare namespace gapi.client {
|
|
|
1345
1360
|
getIamPolicy(
|
|
1346
1361
|
request: {
|
|
1347
1362
|
/** V1 error format. */
|
|
1348
|
-
'$.xgafv'?:
|
|
1363
|
+
'$.xgafv'?: '1' | '2';
|
|
1349
1364
|
/** OAuth access token. */
|
|
1350
1365
|
access_token?: string;
|
|
1351
1366
|
/** Data format for response. */
|
|
1352
|
-
alt?:
|
|
1367
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1353
1368
|
/** JSONP */
|
|
1354
1369
|
callback?: string;
|
|
1355
1370
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1374,11 +1389,11 @@ declare namespace gapi.client {
|
|
|
1374
1389
|
/** Searches organization resources that are visible to the user and satisfy the specified filter. This method returns organizations in an unspecified order. New organizations do not necessarily appear at the end of the results, and may take a small amount of time to appear. Search will only return organizations on which the user has the permission `resourcemanager.organizations.get` or has super admin privileges. */
|
|
1375
1390
|
search(request?: {
|
|
1376
1391
|
/** V1 error format. */
|
|
1377
|
-
'$.xgafv'?:
|
|
1392
|
+
'$.xgafv'?: '1' | '2';
|
|
1378
1393
|
/** OAuth access token. */
|
|
1379
1394
|
access_token?: string;
|
|
1380
1395
|
/** Data format for response. */
|
|
1381
|
-
alt?:
|
|
1396
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1382
1397
|
/** JSONP */
|
|
1383
1398
|
callback?: string;
|
|
1384
1399
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1406,11 +1421,11 @@ declare namespace gapi.client {
|
|
|
1406
1421
|
setIamPolicy(
|
|
1407
1422
|
request: {
|
|
1408
1423
|
/** V1 error format. */
|
|
1409
|
-
'$.xgafv'?:
|
|
1424
|
+
'$.xgafv'?: '1' | '2';
|
|
1410
1425
|
/** OAuth access token. */
|
|
1411
1426
|
access_token?: string;
|
|
1412
1427
|
/** Data format for response. */
|
|
1413
|
-
alt?:
|
|
1428
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1414
1429
|
/** JSONP */
|
|
1415
1430
|
callback?: string;
|
|
1416
1431
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1436,11 +1451,11 @@ declare namespace gapi.client {
|
|
|
1436
1451
|
testIamPermissions(
|
|
1437
1452
|
request: {
|
|
1438
1453
|
/** V1 error format. */
|
|
1439
|
-
'$.xgafv'?:
|
|
1454
|
+
'$.xgafv'?: '1' | '2';
|
|
1440
1455
|
/** OAuth access token. */
|
|
1441
1456
|
access_token?: string;
|
|
1442
1457
|
/** Data format for response. */
|
|
1443
|
-
alt?:
|
|
1458
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1444
1459
|
/** JSONP */
|
|
1445
1460
|
callback?: string;
|
|
1446
1461
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1467,11 +1482,11 @@ declare namespace gapi.client {
|
|
|
1467
1482
|
/** Request that a new project be created. The result is an `Operation` which can be used to track the creation process. This process usually takes a few seconds, but can sometimes take much longer. The tracking `Operation` is automatically deleted after a few hours, so there is no need to call `DeleteOperation`. */
|
|
1468
1483
|
create(request: {
|
|
1469
1484
|
/** V1 error format. */
|
|
1470
|
-
'$.xgafv'?:
|
|
1485
|
+
'$.xgafv'?: '1' | '2';
|
|
1471
1486
|
/** OAuth access token. */
|
|
1472
1487
|
access_token?: string;
|
|
1473
1488
|
/** Data format for response. */
|
|
1474
|
-
alt?:
|
|
1489
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1475
1490
|
/** JSONP */
|
|
1476
1491
|
callback?: string;
|
|
1477
1492
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1494,11 +1509,11 @@ declare namespace gapi.client {
|
|
|
1494
1509
|
create(
|
|
1495
1510
|
request: {
|
|
1496
1511
|
/** V1 error format. */
|
|
1497
|
-
'$.xgafv'?:
|
|
1512
|
+
'$.xgafv'?: '1' | '2';
|
|
1498
1513
|
/** OAuth access token. */
|
|
1499
1514
|
access_token?: string;
|
|
1500
1515
|
/** Data format for response. */
|
|
1501
|
-
alt?:
|
|
1516
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1502
1517
|
/** JSONP */
|
|
1503
1518
|
callback?: string;
|
|
1504
1519
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1521,11 +1536,11 @@ declare namespace gapi.client {
|
|
|
1521
1536
|
/** Marks the project identified by the specified `name` (for example, `projects/415104041262`) for deletion. This method will only affect the project if it has a lifecycle state of ACTIVE. This method changes the Project's lifecycle state from ACTIVE to DELETE_REQUESTED. The deletion starts at an unspecified time, at which point the Project is no longer accessible. Until the deletion completes, you can check the lifecycle state checked by retrieving the project with GetProject, and the project remains visible to ListProjects. However, you cannot update the project. After the deletion completes, the project is not retrievable by the GetProject, ListProjects, and SearchProjects methods. The caller must have `resourcemanager.projects.delete` permissions for this project. */
|
|
1522
1537
|
delete(request?: {
|
|
1523
1538
|
/** V1 error format. */
|
|
1524
|
-
'$.xgafv'?:
|
|
1539
|
+
'$.xgafv'?: '1' | '2';
|
|
1525
1540
|
/** OAuth access token. */
|
|
1526
1541
|
access_token?: string;
|
|
1527
1542
|
/** Data format for response. */
|
|
1528
|
-
alt?:
|
|
1543
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1529
1544
|
/** JSONP */
|
|
1530
1545
|
callback?: string;
|
|
1531
1546
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1548,11 +1563,11 @@ declare namespace gapi.client {
|
|
|
1548
1563
|
/** Retrieves the project identified by the specified `name` (for example, `projects/415104041262`). The caller must have `resourcemanager.projects.get` permission for this project. */
|
|
1549
1564
|
get(request?: {
|
|
1550
1565
|
/** V1 error format. */
|
|
1551
|
-
'$.xgafv'?:
|
|
1566
|
+
'$.xgafv'?: '1' | '2';
|
|
1552
1567
|
/** OAuth access token. */
|
|
1553
1568
|
access_token?: string;
|
|
1554
1569
|
/** Data format for response. */
|
|
1555
|
-
alt?:
|
|
1570
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1556
1571
|
/** JSONP */
|
|
1557
1572
|
callback?: string;
|
|
1558
1573
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1576,11 +1591,11 @@ declare namespace gapi.client {
|
|
|
1576
1591
|
getIamPolicy(
|
|
1577
1592
|
request: {
|
|
1578
1593
|
/** V1 error format. */
|
|
1579
|
-
'$.xgafv'?:
|
|
1594
|
+
'$.xgafv'?: '1' | '2';
|
|
1580
1595
|
/** OAuth access token. */
|
|
1581
1596
|
access_token?: string;
|
|
1582
1597
|
/** Data format for response. */
|
|
1583
|
-
alt?:
|
|
1598
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1584
1599
|
/** JSONP */
|
|
1585
1600
|
callback?: string;
|
|
1586
1601
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1605,11 +1620,11 @@ declare namespace gapi.client {
|
|
|
1605
1620
|
/** Lists projects that are direct children of the specified folder or organization resource. `list()` provides a strongly consistent view of the projects underneath the specified parent resource. `list()` returns projects sorted based upon the (ascending) lexical ordering of their `display_name`. The caller must have `resourcemanager.projects.list` permission on the identified parent. */
|
|
1606
1621
|
list(request?: {
|
|
1607
1622
|
/** V1 error format. */
|
|
1608
|
-
'$.xgafv'?:
|
|
1623
|
+
'$.xgafv'?: '1' | '2';
|
|
1609
1624
|
/** OAuth access token. */
|
|
1610
1625
|
access_token?: string;
|
|
1611
1626
|
/** Data format for response. */
|
|
1612
|
-
alt?:
|
|
1627
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1613
1628
|
/** JSONP */
|
|
1614
1629
|
callback?: string;
|
|
1615
1630
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1638,11 +1653,11 @@ declare namespace gapi.client {
|
|
|
1638
1653
|
/** Move a project to another place in your resource hierarchy, under a new resource parent. Returns an operation which can be used to track the process of the project move workflow. Upon success, the `Operation.response` field will be populated with the moved project. The caller must have `resourcemanager.projects.move` permission on the project, on the project's current and proposed new parent. If project has no current parent, or it currently does not have an associated organization resource, you will also need the `resourcemanager.projects.setIamPolicy` permission in the project. */
|
|
1639
1654
|
move(request: {
|
|
1640
1655
|
/** V1 error format. */
|
|
1641
|
-
'$.xgafv'?:
|
|
1656
|
+
'$.xgafv'?: '1' | '2';
|
|
1642
1657
|
/** OAuth access token. */
|
|
1643
1658
|
access_token?: string;
|
|
1644
1659
|
/** Data format for response. */
|
|
1645
|
-
alt?:
|
|
1660
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1646
1661
|
/** JSONP */
|
|
1647
1662
|
callback?: string;
|
|
1648
1663
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1667,11 +1682,11 @@ declare namespace gapi.client {
|
|
|
1667
1682
|
move(
|
|
1668
1683
|
request: {
|
|
1669
1684
|
/** V1 error format. */
|
|
1670
|
-
'$.xgafv'?:
|
|
1685
|
+
'$.xgafv'?: '1' | '2';
|
|
1671
1686
|
/** OAuth access token. */
|
|
1672
1687
|
access_token?: string;
|
|
1673
1688
|
/** Data format for response. */
|
|
1674
|
-
alt?:
|
|
1689
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1675
1690
|
/** JSONP */
|
|
1676
1691
|
callback?: string;
|
|
1677
1692
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1696,11 +1711,11 @@ declare namespace gapi.client {
|
|
|
1696
1711
|
/** Updates the `display_name` and labels of the project identified by the specified `name` (for example, `projects/415104041262`). Deleting all labels requires an update mask for labels field. The caller must have `resourcemanager.projects.update` permission for this project. */
|
|
1697
1712
|
patch(request: {
|
|
1698
1713
|
/** V1 error format. */
|
|
1699
|
-
'$.xgafv'?:
|
|
1714
|
+
'$.xgafv'?: '1' | '2';
|
|
1700
1715
|
/** OAuth access token. */
|
|
1701
1716
|
access_token?: string;
|
|
1702
1717
|
/** Data format for response. */
|
|
1703
|
-
alt?:
|
|
1718
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1704
1719
|
/** JSONP */
|
|
1705
1720
|
callback?: string;
|
|
1706
1721
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1727,11 +1742,11 @@ declare namespace gapi.client {
|
|
|
1727
1742
|
patch(
|
|
1728
1743
|
request: {
|
|
1729
1744
|
/** V1 error format. */
|
|
1730
|
-
'$.xgafv'?:
|
|
1745
|
+
'$.xgafv'?: '1' | '2';
|
|
1731
1746
|
/** OAuth access token. */
|
|
1732
1747
|
access_token?: string;
|
|
1733
1748
|
/** Data format for response. */
|
|
1734
|
-
alt?:
|
|
1749
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1735
1750
|
/** JSONP */
|
|
1736
1751
|
callback?: string;
|
|
1737
1752
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1758,11 +1773,11 @@ declare namespace gapi.client {
|
|
|
1758
1773
|
/** Search for projects that the caller has the `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order. This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not be reflected in the results. To retrieve the latest state of a project, use the GetProject method. */
|
|
1759
1774
|
search(request?: {
|
|
1760
1775
|
/** V1 error format. */
|
|
1761
|
-
'$.xgafv'?:
|
|
1776
|
+
'$.xgafv'?: '1' | '2';
|
|
1762
1777
|
/** OAuth access token. */
|
|
1763
1778
|
access_token?: string;
|
|
1764
1779
|
/** Data format for response. */
|
|
1765
|
-
alt?:
|
|
1780
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1766
1781
|
/** JSONP */
|
|
1767
1782
|
callback?: string;
|
|
1768
1783
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1790,11 +1805,11 @@ declare namespace gapi.client {
|
|
|
1790
1805
|
setIamPolicy(
|
|
1791
1806
|
request: {
|
|
1792
1807
|
/** V1 error format. */
|
|
1793
|
-
'$.xgafv'?:
|
|
1808
|
+
'$.xgafv'?: '1' | '2';
|
|
1794
1809
|
/** OAuth access token. */
|
|
1795
1810
|
access_token?: string;
|
|
1796
1811
|
/** Data format for response. */
|
|
1797
|
-
alt?:
|
|
1812
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1798
1813
|
/** JSONP */
|
|
1799
1814
|
callback?: string;
|
|
1800
1815
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1820,11 +1835,11 @@ declare namespace gapi.client {
|
|
|
1820
1835
|
testIamPermissions(
|
|
1821
1836
|
request: {
|
|
1822
1837
|
/** V1 error format. */
|
|
1823
|
-
'$.xgafv'?:
|
|
1838
|
+
'$.xgafv'?: '1' | '2';
|
|
1824
1839
|
/** OAuth access token. */
|
|
1825
1840
|
access_token?: string;
|
|
1826
1841
|
/** Data format for response. */
|
|
1827
|
-
alt?:
|
|
1842
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1828
1843
|
/** JSONP */
|
|
1829
1844
|
callback?: string;
|
|
1830
1845
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1849,11 +1864,11 @@ declare namespace gapi.client {
|
|
|
1849
1864
|
/** Restores the project identified by the specified `name` (for example, `projects/415104041262`). You can only use this method for a project that has a lifecycle state of DELETE_REQUESTED. After deletion starts, the project cannot be restored. The caller must have `resourcemanager.projects.undelete` permission for this project. */
|
|
1850
1865
|
undelete(request: {
|
|
1851
1866
|
/** V1 error format. */
|
|
1852
|
-
'$.xgafv'?:
|
|
1867
|
+
'$.xgafv'?: '1' | '2';
|
|
1853
1868
|
/** OAuth access token. */
|
|
1854
1869
|
access_token?: string;
|
|
1855
1870
|
/** Data format for response. */
|
|
1856
|
-
alt?:
|
|
1871
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1857
1872
|
/** JSONP */
|
|
1858
1873
|
callback?: string;
|
|
1859
1874
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1878,11 +1893,11 @@ declare namespace gapi.client {
|
|
|
1878
1893
|
undelete(
|
|
1879
1894
|
request: {
|
|
1880
1895
|
/** V1 error format. */
|
|
1881
|
-
'$.xgafv'?:
|
|
1896
|
+
'$.xgafv'?: '1' | '2';
|
|
1882
1897
|
/** OAuth access token. */
|
|
1883
1898
|
access_token?: string;
|
|
1884
1899
|
/** Data format for response. */
|
|
1885
|
-
alt?:
|
|
1900
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1886
1901
|
/** JSONP */
|
|
1887
1902
|
callback?: string;
|
|
1888
1903
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1909,11 +1924,11 @@ declare namespace gapi.client {
|
|
|
1909
1924
|
/** Creates a TagBinding between a TagValue and a Google Cloud resource. */
|
|
1910
1925
|
create(request: {
|
|
1911
1926
|
/** V1 error format. */
|
|
1912
|
-
'$.xgafv'?:
|
|
1927
|
+
'$.xgafv'?: '1' | '2';
|
|
1913
1928
|
/** OAuth access token. */
|
|
1914
1929
|
access_token?: string;
|
|
1915
1930
|
/** Data format for response. */
|
|
1916
|
-
alt?:
|
|
1931
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1917
1932
|
/** JSONP */
|
|
1918
1933
|
callback?: string;
|
|
1919
1934
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1938,11 +1953,11 @@ declare namespace gapi.client {
|
|
|
1938
1953
|
create(
|
|
1939
1954
|
request: {
|
|
1940
1955
|
/** V1 error format. */
|
|
1941
|
-
'$.xgafv'?:
|
|
1956
|
+
'$.xgafv'?: '1' | '2';
|
|
1942
1957
|
/** OAuth access token. */
|
|
1943
1958
|
access_token?: string;
|
|
1944
1959
|
/** Data format for response. */
|
|
1945
|
-
alt?:
|
|
1960
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1946
1961
|
/** JSONP */
|
|
1947
1962
|
callback?: string;
|
|
1948
1963
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1967,11 +1982,11 @@ declare namespace gapi.client {
|
|
|
1967
1982
|
/** Deletes a TagBinding. */
|
|
1968
1983
|
delete(request?: {
|
|
1969
1984
|
/** V1 error format. */
|
|
1970
|
-
'$.xgafv'?:
|
|
1985
|
+
'$.xgafv'?: '1' | '2';
|
|
1971
1986
|
/** OAuth access token. */
|
|
1972
1987
|
access_token?: string;
|
|
1973
1988
|
/** Data format for response. */
|
|
1974
|
-
alt?:
|
|
1989
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1975
1990
|
/** JSONP */
|
|
1976
1991
|
callback?: string;
|
|
1977
1992
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1994,11 +2009,11 @@ declare namespace gapi.client {
|
|
|
1994
2009
|
/** Lists the TagBindings for the given Google Cloud resource, as specified with `parent`. NOTE: The `parent` field is expected to be a full resource name: https://cloud.google.com/apis/design/resource_names#full_resource_name */
|
|
1995
2010
|
list(request?: {
|
|
1996
2011
|
/** V1 error format. */
|
|
1997
|
-
'$.xgafv'?:
|
|
2012
|
+
'$.xgafv'?: '1' | '2';
|
|
1998
2013
|
/** OAuth access token. */
|
|
1999
2014
|
access_token?: string;
|
|
2000
2015
|
/** Data format for response. */
|
|
2001
|
-
alt?:
|
|
2016
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2002
2017
|
/** JSONP */
|
|
2003
2018
|
callback?: string;
|
|
2004
2019
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2027,11 +2042,11 @@ declare namespace gapi.client {
|
|
|
2027
2042
|
/** Creates a new TagKey. If another request with the same parameters is sent while the original request is in process, the second request will receive an error. A maximum of 1000 TagKeys can exist under a parent at any given time. */
|
|
2028
2043
|
create(request: {
|
|
2029
2044
|
/** V1 error format. */
|
|
2030
|
-
'$.xgafv'?:
|
|
2045
|
+
'$.xgafv'?: '1' | '2';
|
|
2031
2046
|
/** OAuth access token. */
|
|
2032
2047
|
access_token?: string;
|
|
2033
2048
|
/** Data format for response. */
|
|
2034
|
-
alt?:
|
|
2049
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2035
2050
|
/** JSONP */
|
|
2036
2051
|
callback?: string;
|
|
2037
2052
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2056,11 +2071,11 @@ declare namespace gapi.client {
|
|
|
2056
2071
|
create(
|
|
2057
2072
|
request: {
|
|
2058
2073
|
/** V1 error format. */
|
|
2059
|
-
'$.xgafv'?:
|
|
2074
|
+
'$.xgafv'?: '1' | '2';
|
|
2060
2075
|
/** OAuth access token. */
|
|
2061
2076
|
access_token?: string;
|
|
2062
2077
|
/** Data format for response. */
|
|
2063
|
-
alt?:
|
|
2078
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2064
2079
|
/** JSONP */
|
|
2065
2080
|
callback?: string;
|
|
2066
2081
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2085,11 +2100,11 @@ declare namespace gapi.client {
|
|
|
2085
2100
|
/** Deletes a TagKey. The TagKey cannot be deleted if it has any child TagValues. */
|
|
2086
2101
|
delete(request?: {
|
|
2087
2102
|
/** V1 error format. */
|
|
2088
|
-
'$.xgafv'?:
|
|
2103
|
+
'$.xgafv'?: '1' | '2';
|
|
2089
2104
|
/** OAuth access token. */
|
|
2090
2105
|
access_token?: string;
|
|
2091
2106
|
/** Data format for response. */
|
|
2092
|
-
alt?:
|
|
2107
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2093
2108
|
/** JSONP */
|
|
2094
2109
|
callback?: string;
|
|
2095
2110
|
/** Optional. The etag known to the client for the expected state of the TagKey. This is to be used for optimistic concurrency. */
|
|
@@ -2116,11 +2131,11 @@ declare namespace gapi.client {
|
|
|
2116
2131
|
/** Retrieves a TagKey. This method will return `PERMISSION_DENIED` if the key does not exist or the user does not have permission to view it. */
|
|
2117
2132
|
get(request?: {
|
|
2118
2133
|
/** V1 error format. */
|
|
2119
|
-
'$.xgafv'?:
|
|
2134
|
+
'$.xgafv'?: '1' | '2';
|
|
2120
2135
|
/** OAuth access token. */
|
|
2121
2136
|
access_token?: string;
|
|
2122
2137
|
/** Data format for response. */
|
|
2123
|
-
alt?:
|
|
2138
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2124
2139
|
/** JSONP */
|
|
2125
2140
|
callback?: string;
|
|
2126
2141
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2144,11 +2159,11 @@ declare namespace gapi.client {
|
|
|
2144
2159
|
getIamPolicy(
|
|
2145
2160
|
request: {
|
|
2146
2161
|
/** V1 error format. */
|
|
2147
|
-
'$.xgafv'?:
|
|
2162
|
+
'$.xgafv'?: '1' | '2';
|
|
2148
2163
|
/** OAuth access token. */
|
|
2149
2164
|
access_token?: string;
|
|
2150
2165
|
/** Data format for response. */
|
|
2151
|
-
alt?:
|
|
2166
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2152
2167
|
/** JSONP */
|
|
2153
2168
|
callback?: string;
|
|
2154
2169
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2173,11 +2188,11 @@ declare namespace gapi.client {
|
|
|
2173
2188
|
/** Retrieves a TagKey by its namespaced name. This method will return `PERMISSION_DENIED` if the key does not exist or the user does not have permission to view it. */
|
|
2174
2189
|
getNamespaced(request?: {
|
|
2175
2190
|
/** V1 error format. */
|
|
2176
|
-
'$.xgafv'?:
|
|
2191
|
+
'$.xgafv'?: '1' | '2';
|
|
2177
2192
|
/** OAuth access token. */
|
|
2178
2193
|
access_token?: string;
|
|
2179
2194
|
/** Data format for response. */
|
|
2180
|
-
alt?:
|
|
2195
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2181
2196
|
/** JSONP */
|
|
2182
2197
|
callback?: string;
|
|
2183
2198
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2200,11 +2215,11 @@ declare namespace gapi.client {
|
|
|
2200
2215
|
/** Lists all TagKeys for a parent resource. */
|
|
2201
2216
|
list(request?: {
|
|
2202
2217
|
/** V1 error format. */
|
|
2203
|
-
'$.xgafv'?:
|
|
2218
|
+
'$.xgafv'?: '1' | '2';
|
|
2204
2219
|
/** OAuth access token. */
|
|
2205
2220
|
access_token?: string;
|
|
2206
2221
|
/** Data format for response. */
|
|
2207
|
-
alt?:
|
|
2222
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2208
2223
|
/** JSONP */
|
|
2209
2224
|
callback?: string;
|
|
2210
2225
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2231,11 +2246,11 @@ declare namespace gapi.client {
|
|
|
2231
2246
|
/** Updates the attributes of the TagKey resource. */
|
|
2232
2247
|
patch(request: {
|
|
2233
2248
|
/** V1 error format. */
|
|
2234
|
-
'$.xgafv'?:
|
|
2249
|
+
'$.xgafv'?: '1' | '2';
|
|
2235
2250
|
/** OAuth access token. */
|
|
2236
2251
|
access_token?: string;
|
|
2237
2252
|
/** Data format for response. */
|
|
2238
|
-
alt?:
|
|
2253
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2239
2254
|
/** JSONP */
|
|
2240
2255
|
callback?: string;
|
|
2241
2256
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2264,11 +2279,11 @@ declare namespace gapi.client {
|
|
|
2264
2279
|
patch(
|
|
2265
2280
|
request: {
|
|
2266
2281
|
/** V1 error format. */
|
|
2267
|
-
'$.xgafv'?:
|
|
2282
|
+
'$.xgafv'?: '1' | '2';
|
|
2268
2283
|
/** OAuth access token. */
|
|
2269
2284
|
access_token?: string;
|
|
2270
2285
|
/** Data format for response. */
|
|
2271
|
-
alt?:
|
|
2286
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2272
2287
|
/** JSONP */
|
|
2273
2288
|
callback?: string;
|
|
2274
2289
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2298,11 +2313,11 @@ declare namespace gapi.client {
|
|
|
2298
2313
|
setIamPolicy(
|
|
2299
2314
|
request: {
|
|
2300
2315
|
/** V1 error format. */
|
|
2301
|
-
'$.xgafv'?:
|
|
2316
|
+
'$.xgafv'?: '1' | '2';
|
|
2302
2317
|
/** OAuth access token. */
|
|
2303
2318
|
access_token?: string;
|
|
2304
2319
|
/** Data format for response. */
|
|
2305
|
-
alt?:
|
|
2320
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2306
2321
|
/** JSONP */
|
|
2307
2322
|
callback?: string;
|
|
2308
2323
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2328,11 +2343,11 @@ declare namespace gapi.client {
|
|
|
2328
2343
|
testIamPermissions(
|
|
2329
2344
|
request: {
|
|
2330
2345
|
/** V1 error format. */
|
|
2331
|
-
'$.xgafv'?:
|
|
2346
|
+
'$.xgafv'?: '1' | '2';
|
|
2332
2347
|
/** OAuth access token. */
|
|
2333
2348
|
access_token?: string;
|
|
2334
2349
|
/** Data format for response. */
|
|
2335
|
-
alt?:
|
|
2350
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2336
2351
|
/** JSONP */
|
|
2337
2352
|
callback?: string;
|
|
2338
2353
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2359,11 +2374,11 @@ declare namespace gapi.client {
|
|
|
2359
2374
|
/** Creates a TagHold. Returns ALREADY_EXISTS if a TagHold with the same resource and origin exists under the same TagValue. */
|
|
2360
2375
|
create(request: {
|
|
2361
2376
|
/** V1 error format. */
|
|
2362
|
-
'$.xgafv'?:
|
|
2377
|
+
'$.xgafv'?: '1' | '2';
|
|
2363
2378
|
/** OAuth access token. */
|
|
2364
2379
|
access_token?: string;
|
|
2365
2380
|
/** Data format for response. */
|
|
2366
|
-
alt?:
|
|
2381
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2367
2382
|
/** JSONP */
|
|
2368
2383
|
callback?: string;
|
|
2369
2384
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2390,11 +2405,11 @@ declare namespace gapi.client {
|
|
|
2390
2405
|
create(
|
|
2391
2406
|
request: {
|
|
2392
2407
|
/** V1 error format. */
|
|
2393
|
-
'$.xgafv'?:
|
|
2408
|
+
'$.xgafv'?: '1' | '2';
|
|
2394
2409
|
/** OAuth access token. */
|
|
2395
2410
|
access_token?: string;
|
|
2396
2411
|
/** Data format for response. */
|
|
2397
|
-
alt?:
|
|
2412
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2398
2413
|
/** JSONP */
|
|
2399
2414
|
callback?: string;
|
|
2400
2415
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2421,11 +2436,11 @@ declare namespace gapi.client {
|
|
|
2421
2436
|
/** Deletes a TagHold. */
|
|
2422
2437
|
delete(request?: {
|
|
2423
2438
|
/** V1 error format. */
|
|
2424
|
-
'$.xgafv'?:
|
|
2439
|
+
'$.xgafv'?: '1' | '2';
|
|
2425
2440
|
/** OAuth access token. */
|
|
2426
2441
|
access_token?: string;
|
|
2427
2442
|
/** Data format for response. */
|
|
2428
|
-
alt?:
|
|
2443
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2429
2444
|
/** JSONP */
|
|
2430
2445
|
callback?: string;
|
|
2431
2446
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2450,11 +2465,11 @@ declare namespace gapi.client {
|
|
|
2450
2465
|
/** Lists TagHolds under a TagValue. */
|
|
2451
2466
|
list(request?: {
|
|
2452
2467
|
/** V1 error format. */
|
|
2453
|
-
'$.xgafv'?:
|
|
2468
|
+
'$.xgafv'?: '1' | '2';
|
|
2454
2469
|
/** OAuth access token. */
|
|
2455
2470
|
access_token?: string;
|
|
2456
2471
|
/** Data format for response. */
|
|
2457
|
-
alt?:
|
|
2472
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2458
2473
|
/** JSONP */
|
|
2459
2474
|
callback?: string;
|
|
2460
2475
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2485,11 +2500,11 @@ declare namespace gapi.client {
|
|
|
2485
2500
|
/** Creates a TagValue as a child of the specified TagKey. If a another request with the same parameters is sent while the original request is in process the second request will receive an error. A maximum of 1000 TagValues can exist under a TagKey at any given time. */
|
|
2486
2501
|
create(request: {
|
|
2487
2502
|
/** V1 error format. */
|
|
2488
|
-
'$.xgafv'?:
|
|
2503
|
+
'$.xgafv'?: '1' | '2';
|
|
2489
2504
|
/** OAuth access token. */
|
|
2490
2505
|
access_token?: string;
|
|
2491
2506
|
/** Data format for response. */
|
|
2492
|
-
alt?:
|
|
2507
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2493
2508
|
/** JSONP */
|
|
2494
2509
|
callback?: string;
|
|
2495
2510
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2514,11 +2529,11 @@ declare namespace gapi.client {
|
|
|
2514
2529
|
create(
|
|
2515
2530
|
request: {
|
|
2516
2531
|
/** V1 error format. */
|
|
2517
|
-
'$.xgafv'?:
|
|
2532
|
+
'$.xgafv'?: '1' | '2';
|
|
2518
2533
|
/** OAuth access token. */
|
|
2519
2534
|
access_token?: string;
|
|
2520
2535
|
/** Data format for response. */
|
|
2521
|
-
alt?:
|
|
2536
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2522
2537
|
/** JSONP */
|
|
2523
2538
|
callback?: string;
|
|
2524
2539
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2543,11 +2558,11 @@ declare namespace gapi.client {
|
|
|
2543
2558
|
/** Deletes a TagValue. The TagValue cannot have any bindings when it is deleted. */
|
|
2544
2559
|
delete(request?: {
|
|
2545
2560
|
/** V1 error format. */
|
|
2546
|
-
'$.xgafv'?:
|
|
2561
|
+
'$.xgafv'?: '1' | '2';
|
|
2547
2562
|
/** OAuth access token. */
|
|
2548
2563
|
access_token?: string;
|
|
2549
2564
|
/** Data format for response. */
|
|
2550
|
-
alt?:
|
|
2565
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2551
2566
|
/** JSONP */
|
|
2552
2567
|
callback?: string;
|
|
2553
2568
|
/** Optional. The etag known to the client for the expected state of the TagValue. This is to be used for optimistic concurrency. */
|
|
@@ -2574,11 +2589,11 @@ declare namespace gapi.client {
|
|
|
2574
2589
|
/** Retrieves a TagValue. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it. */
|
|
2575
2590
|
get(request?: {
|
|
2576
2591
|
/** V1 error format. */
|
|
2577
|
-
'$.xgafv'?:
|
|
2592
|
+
'$.xgafv'?: '1' | '2';
|
|
2578
2593
|
/** OAuth access token. */
|
|
2579
2594
|
access_token?: string;
|
|
2580
2595
|
/** Data format for response. */
|
|
2581
|
-
alt?:
|
|
2596
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2582
2597
|
/** JSONP */
|
|
2583
2598
|
callback?: string;
|
|
2584
2599
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2602,11 +2617,11 @@ declare namespace gapi.client {
|
|
|
2602
2617
|
getIamPolicy(
|
|
2603
2618
|
request: {
|
|
2604
2619
|
/** V1 error format. */
|
|
2605
|
-
'$.xgafv'?:
|
|
2620
|
+
'$.xgafv'?: '1' | '2';
|
|
2606
2621
|
/** OAuth access token. */
|
|
2607
2622
|
access_token?: string;
|
|
2608
2623
|
/** Data format for response. */
|
|
2609
|
-
alt?:
|
|
2624
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2610
2625
|
/** JSONP */
|
|
2611
2626
|
callback?: string;
|
|
2612
2627
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2631,11 +2646,11 @@ declare namespace gapi.client {
|
|
|
2631
2646
|
/** Retrieves a TagValue by its namespaced name. This method will return `PERMISSION_DENIED` if the value does not exist or the user does not have permission to view it. */
|
|
2632
2647
|
getNamespaced(request?: {
|
|
2633
2648
|
/** V1 error format. */
|
|
2634
|
-
'$.xgafv'?:
|
|
2649
|
+
'$.xgafv'?: '1' | '2';
|
|
2635
2650
|
/** OAuth access token. */
|
|
2636
2651
|
access_token?: string;
|
|
2637
2652
|
/** Data format for response. */
|
|
2638
|
-
alt?:
|
|
2653
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2639
2654
|
/** JSONP */
|
|
2640
2655
|
callback?: string;
|
|
2641
2656
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2658,11 +2673,11 @@ declare namespace gapi.client {
|
|
|
2658
2673
|
/** Lists all TagValues for a specific TagKey. */
|
|
2659
2674
|
list(request?: {
|
|
2660
2675
|
/** V1 error format. */
|
|
2661
|
-
'$.xgafv'?:
|
|
2676
|
+
'$.xgafv'?: '1' | '2';
|
|
2662
2677
|
/** OAuth access token. */
|
|
2663
2678
|
access_token?: string;
|
|
2664
2679
|
/** Data format for response. */
|
|
2665
|
-
alt?:
|
|
2680
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2666
2681
|
/** JSONP */
|
|
2667
2682
|
callback?: string;
|
|
2668
2683
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2689,11 +2704,11 @@ declare namespace gapi.client {
|
|
|
2689
2704
|
/** Updates the attributes of the TagValue resource. */
|
|
2690
2705
|
patch(request: {
|
|
2691
2706
|
/** V1 error format. */
|
|
2692
|
-
'$.xgafv'?:
|
|
2707
|
+
'$.xgafv'?: '1' | '2';
|
|
2693
2708
|
/** OAuth access token. */
|
|
2694
2709
|
access_token?: string;
|
|
2695
2710
|
/** Data format for response. */
|
|
2696
|
-
alt?:
|
|
2711
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2697
2712
|
/** JSONP */
|
|
2698
2713
|
callback?: string;
|
|
2699
2714
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2722,11 +2737,11 @@ declare namespace gapi.client {
|
|
|
2722
2737
|
patch(
|
|
2723
2738
|
request: {
|
|
2724
2739
|
/** V1 error format. */
|
|
2725
|
-
'$.xgafv'?:
|
|
2740
|
+
'$.xgafv'?: '1' | '2';
|
|
2726
2741
|
/** OAuth access token. */
|
|
2727
2742
|
access_token?: string;
|
|
2728
2743
|
/** Data format for response. */
|
|
2729
|
-
alt?:
|
|
2744
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2730
2745
|
/** JSONP */
|
|
2731
2746
|
callback?: string;
|
|
2732
2747
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2756,11 +2771,11 @@ declare namespace gapi.client {
|
|
|
2756
2771
|
setIamPolicy(
|
|
2757
2772
|
request: {
|
|
2758
2773
|
/** V1 error format. */
|
|
2759
|
-
'$.xgafv'?:
|
|
2774
|
+
'$.xgafv'?: '1' | '2';
|
|
2760
2775
|
/** OAuth access token. */
|
|
2761
2776
|
access_token?: string;
|
|
2762
2777
|
/** Data format for response. */
|
|
2763
|
-
alt?:
|
|
2778
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2764
2779
|
/** JSONP */
|
|
2765
2780
|
callback?: string;
|
|
2766
2781
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2786,11 +2801,11 @@ declare namespace gapi.client {
|
|
|
2786
2801
|
testIamPermissions(
|
|
2787
2802
|
request: {
|
|
2788
2803
|
/** V1 error format. */
|
|
2789
|
-
'$.xgafv'?:
|
|
2804
|
+
'$.xgafv'?: '1' | '2';
|
|
2790
2805
|
/** OAuth access token. */
|
|
2791
2806
|
access_token?: string;
|
|
2792
2807
|
/** Data format for response. */
|
|
2793
|
-
alt?:
|
|
2808
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2794
2809
|
/** JSONP */
|
|
2795
2810
|
callback?: string;
|
|
2796
2811
|
/** Selector specifying which fields to include in a partial response. */
|