@maxim_mazurok/gapi.client.chromepolicy-v1 0.1.20260310 → 0.1.20260317
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 +110 -61
- 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://chromepolicy.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260317
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -164,7 +164,12 @@ declare namespace gapi.client {
|
|
|
164
164
|
/** End supporting date for current policy. Attempting to modify a policy after its end support date will result in a Bad Request (400 error). Could only be set if policy_api_lifecycle_stage is API_DEPRECATED. */
|
|
165
165
|
endSupport?: GoogleTypeDate;
|
|
166
166
|
/** Indicates current life cycle stage of the policy API. */
|
|
167
|
-
policyApiLifecycleStage?:
|
|
167
|
+
policyApiLifecycleStage?:
|
|
168
|
+
| 'API_UNSPECIFIED'
|
|
169
|
+
| 'API_PREVIEW'
|
|
170
|
+
| 'API_DEVELOPMENT'
|
|
171
|
+
| 'API_CURRENT'
|
|
172
|
+
| 'API_DEPRECATED';
|
|
168
173
|
/** Corresponding to deprecated_in_favor_of, the fully qualified namespace(s) of the old policies that will be deprecated because of introduction of this policy. */
|
|
169
174
|
scheduledToDeprecatePolicies?: string[];
|
|
170
175
|
}
|
|
@@ -210,11 +215,19 @@ declare namespace gapi.client {
|
|
|
210
215
|
/** Output only. The fully qualified name of the policy schema. This value is used to fill the field `policy_schema` in PolicyValue when calling BatchInheritOrgUnitPolicies BatchModifyOrgUnitPolicies BatchModifyGroupPolicies or BatchDeleteGroupPolicies. */
|
|
211
216
|
schemaName?: string;
|
|
212
217
|
/** Output only. List indicates that the policy will only apply to devices/users on these platforms. */
|
|
213
|
-
supportedPlatforms?:
|
|
218
|
+
supportedPlatforms?:
|
|
219
|
+
| 'PLATFORM_UNSPECIFIED'
|
|
220
|
+
| 'CHROME_OS'
|
|
221
|
+
| 'CHROME_BROWSER'
|
|
222
|
+
| 'CHROME_BROWSER_FOR_ANDROID'
|
|
223
|
+
| 'CHROME_BROWSER_FOR_IOS'[];
|
|
214
224
|
/** Output only. URI to related support article for this schema. */
|
|
215
225
|
supportUri?: string;
|
|
216
226
|
/** Output only. Information about applicable target resources for the policy. */
|
|
217
|
-
validTargetResources?:
|
|
227
|
+
validTargetResources?:
|
|
228
|
+
| 'TARGET_RESOURCE_UNSPECIFIED'
|
|
229
|
+
| 'ORG_UNIT'
|
|
230
|
+
| 'GROUP'[];
|
|
218
231
|
}
|
|
219
232
|
interface GoogleChromePolicyVersionsV1PolicySchemaFieldDependencies {
|
|
220
233
|
/** The source field which this field depends on. */
|
|
@@ -340,7 +353,19 @@ declare namespace gapi.client {
|
|
|
340
353
|
/** The size limit of uploaded files for a setting, in bytes. */
|
|
341
354
|
sizeLimitBytes?: string;
|
|
342
355
|
/** File types that can be uploaded for a setting. */
|
|
343
|
-
supportedContentTypes?:
|
|
356
|
+
supportedContentTypes?:
|
|
357
|
+
| 'CONTENT_TYPE_UNSPECIFIED'
|
|
358
|
+
| 'CONTENT_TYPE_PLAIN_TEXT'
|
|
359
|
+
| 'CONTENT_TYPE_HTML'
|
|
360
|
+
| 'CONTENT_TYPE_IMAGE_JPEG'
|
|
361
|
+
| 'CONTENT_TYPE_IMAGE_GIF'
|
|
362
|
+
| 'CONTENT_TYPE_IMAGE_PNG'
|
|
363
|
+
| 'CONTENT_TYPE_JSON'
|
|
364
|
+
| 'CONTENT_TYPE_ZIP'
|
|
365
|
+
| 'CONTENT_TYPE_GZIP'
|
|
366
|
+
| 'CONTENT_TYPE_CSV'
|
|
367
|
+
| 'CONTENT_TYPE_YAML'
|
|
368
|
+
| 'CONTENT_TYPE_IMAGE_WEBP'[];
|
|
344
369
|
}
|
|
345
370
|
interface GoogleChromePolicyVersionsV1UploadPolicyFileRequest {
|
|
346
371
|
/** Required. The fully qualified policy schema and field name this file is uploaded for. This information will be used to validate the content type of the file. */
|
|
@@ -366,13 +391,19 @@ declare namespace gapi.client {
|
|
|
366
391
|
nestedType?: Proto2DescriptorProto[];
|
|
367
392
|
oneofDecl?: Proto2OneofDescriptorProto[];
|
|
368
393
|
/** Support for `export` and `local` keywords on enums. */
|
|
369
|
-
visibility?:
|
|
394
|
+
visibility?:
|
|
395
|
+
| 'VISIBILITY_UNSET'
|
|
396
|
+
| 'VISIBILITY_LOCAL'
|
|
397
|
+
| 'VISIBILITY_EXPORT';
|
|
370
398
|
}
|
|
371
399
|
interface Proto2EnumDescriptorProto {
|
|
372
400
|
name?: string;
|
|
373
401
|
value?: Proto2EnumValueDescriptorProto[];
|
|
374
402
|
/** Support for `export` and `local` keywords on enums. */
|
|
375
|
-
visibility?:
|
|
403
|
+
visibility?:
|
|
404
|
+
| 'VISIBILITY_UNSET'
|
|
405
|
+
| 'VISIBILITY_LOCAL'
|
|
406
|
+
| 'VISIBILITY_EXPORT';
|
|
376
407
|
}
|
|
377
408
|
interface Proto2EnumValueDescriptorProto {
|
|
378
409
|
name?: string;
|
|
@@ -383,7 +414,7 @@ declare namespace gapi.client {
|
|
|
383
414
|
defaultValue?: string;
|
|
384
415
|
/** JSON name of this field. The value is set by protocol compiler. If the user has set a "json_name" option on this field, that option's value will be used. Otherwise, it's deduced from the field's name by converting it to camelCase. */
|
|
385
416
|
jsonName?: string;
|
|
386
|
-
label?:
|
|
417
|
+
label?: 'LABEL_OPTIONAL' | 'LABEL_REPEATED' | 'LABEL_REQUIRED';
|
|
387
418
|
name?: string;
|
|
388
419
|
number?: number;
|
|
389
420
|
/** If set, gives the index of a oneof in the containing type's oneof_decl list. This field is a member of that oneof. */
|
|
@@ -391,7 +422,25 @@ declare namespace gapi.client {
|
|
|
391
422
|
/** If true, this is a proto3 "optional". When a proto3 field is optional, it tracks presence regardless of field type. When proto3_optional is true, this field must belong to a oneof to signal to old proto3 clients that presence is tracked for this field. This oneof is known as a "synthetic" oneof, and this field must be its sole member (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs exist in the descriptor only, and do not generate any API. Synthetic oneofs must be ordered after all "real" oneofs. For message fields, proto3_optional doesn't create any semantic change, since non-repeated message fields always track presence. However it still indicates the semantic detail of whether the user wrote "optional" or not. This can be useful for round-tripping the .proto file. For consistency we give message fields a synthetic oneof also, even though it is not required to track presence. This is especially important because the parser can't tell if a field is a message or an enum, so it must always create a synthetic oneof. Proto2 optional fields do not set this flag, because they already indicate optional with `LABEL_OPTIONAL`. */
|
|
392
423
|
proto3Optional?: boolean;
|
|
393
424
|
/** If type_name is set, this need not be set. If both this and type_name are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. */
|
|
394
|
-
type?:
|
|
425
|
+
type?:
|
|
426
|
+
| 'TYPE_DOUBLE'
|
|
427
|
+
| 'TYPE_FLOAT'
|
|
428
|
+
| 'TYPE_INT64'
|
|
429
|
+
| 'TYPE_UINT64'
|
|
430
|
+
| 'TYPE_INT32'
|
|
431
|
+
| 'TYPE_FIXED64'
|
|
432
|
+
| 'TYPE_FIXED32'
|
|
433
|
+
| 'TYPE_BOOL'
|
|
434
|
+
| 'TYPE_STRING'
|
|
435
|
+
| 'TYPE_GROUP'
|
|
436
|
+
| 'TYPE_MESSAGE'
|
|
437
|
+
| 'TYPE_BYTES'
|
|
438
|
+
| 'TYPE_UINT32'
|
|
439
|
+
| 'TYPE_ENUM'
|
|
440
|
+
| 'TYPE_SFIXED32'
|
|
441
|
+
| 'TYPE_SFIXED64'
|
|
442
|
+
| 'TYPE_SINT32'
|
|
443
|
+
| 'TYPE_SINT64';
|
|
395
444
|
/** For message and enum types, this is the name of the type. If the name starts with a '.', it is fully-qualified. Otherwise, C++-like scoping rules are used to find the type (i.e. first the nested types within this message are searched, then within the parent, on up to the root namespace). */
|
|
396
445
|
typeName?: string;
|
|
397
446
|
}
|
|
@@ -417,11 +466,11 @@ declare namespace gapi.client {
|
|
|
417
466
|
/** Delete multiple policy values that are applied to a specific group. All targets must have the same target format. That is to say that they must point to the same target resource and must have the same keys specified in `additionalTargetKeyNames`, though the values for those keys may be different. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
418
467
|
batchDelete(request: {
|
|
419
468
|
/** V1 error format. */
|
|
420
|
-
'$.xgafv'?:
|
|
469
|
+
'$.xgafv'?: '1' | '2';
|
|
421
470
|
/** OAuth access token. */
|
|
422
471
|
access_token?: string;
|
|
423
472
|
/** Data format for response. */
|
|
424
|
-
alt?:
|
|
473
|
+
alt?: 'json' | 'media' | 'proto';
|
|
425
474
|
/** JSONP */
|
|
426
475
|
callback?: string;
|
|
427
476
|
/** ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -446,11 +495,11 @@ declare namespace gapi.client {
|
|
|
446
495
|
batchDelete(
|
|
447
496
|
request: {
|
|
448
497
|
/** V1 error format. */
|
|
449
|
-
'$.xgafv'?:
|
|
498
|
+
'$.xgafv'?: '1' | '2';
|
|
450
499
|
/** OAuth access token. */
|
|
451
500
|
access_token?: string;
|
|
452
501
|
/** Data format for response. */
|
|
453
|
-
alt?:
|
|
502
|
+
alt?: 'json' | 'media' | 'proto';
|
|
454
503
|
/** JSONP */
|
|
455
504
|
callback?: string;
|
|
456
505
|
/** ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -475,11 +524,11 @@ declare namespace gapi.client {
|
|
|
475
524
|
/** Modify multiple policy values that are applied to a specific group. All targets must have the same target format. That is to say that they must point to the same target resource and must have the same keys specified in `additionalTargetKeyNames`, though the values for those keys may be different. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
476
525
|
batchModify(request: {
|
|
477
526
|
/** V1 error format. */
|
|
478
|
-
'$.xgafv'?:
|
|
527
|
+
'$.xgafv'?: '1' | '2';
|
|
479
528
|
/** OAuth access token. */
|
|
480
529
|
access_token?: string;
|
|
481
530
|
/** Data format for response. */
|
|
482
|
-
alt?:
|
|
531
|
+
alt?: 'json' | 'media' | 'proto';
|
|
483
532
|
/** JSONP */
|
|
484
533
|
callback?: string;
|
|
485
534
|
/** ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -504,11 +553,11 @@ declare namespace gapi.client {
|
|
|
504
553
|
batchModify(
|
|
505
554
|
request: {
|
|
506
555
|
/** V1 error format. */
|
|
507
|
-
'$.xgafv'?:
|
|
556
|
+
'$.xgafv'?: '1' | '2';
|
|
508
557
|
/** OAuth access token. */
|
|
509
558
|
access_token?: string;
|
|
510
559
|
/** Data format for response. */
|
|
511
|
-
alt?:
|
|
560
|
+
alt?: 'json' | 'media' | 'proto';
|
|
512
561
|
/** JSONP */
|
|
513
562
|
callback?: string;
|
|
514
563
|
/** ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -533,11 +582,11 @@ declare namespace gapi.client {
|
|
|
533
582
|
/** Retrieve a group priority ordering for an app. The target app must be supplied in `additionalTargetKeyNames` in the PolicyTargetKey. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
534
583
|
listGroupPriorityOrdering(request: {
|
|
535
584
|
/** V1 error format. */
|
|
536
|
-
'$.xgafv'?:
|
|
585
|
+
'$.xgafv'?: '1' | '2';
|
|
537
586
|
/** OAuth access token. */
|
|
538
587
|
access_token?: string;
|
|
539
588
|
/** Data format for response. */
|
|
540
|
-
alt?:
|
|
589
|
+
alt?: 'json' | 'media' | 'proto';
|
|
541
590
|
/** JSONP */
|
|
542
591
|
callback?: string;
|
|
543
592
|
/** Required. ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -562,11 +611,11 @@ declare namespace gapi.client {
|
|
|
562
611
|
listGroupPriorityOrdering(
|
|
563
612
|
request: {
|
|
564
613
|
/** V1 error format. */
|
|
565
|
-
'$.xgafv'?:
|
|
614
|
+
'$.xgafv'?: '1' | '2';
|
|
566
615
|
/** OAuth access token. */
|
|
567
616
|
access_token?: string;
|
|
568
617
|
/** Data format for response. */
|
|
569
|
-
alt?:
|
|
618
|
+
alt?: 'json' | 'media' | 'proto';
|
|
570
619
|
/** JSONP */
|
|
571
620
|
callback?: string;
|
|
572
621
|
/** Required. ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -591,11 +640,11 @@ declare namespace gapi.client {
|
|
|
591
640
|
/** Update a group priority ordering for an app. The target app must be supplied in `additionalTargetKeyNames` in the PolicyTargetKey. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
592
641
|
updateGroupPriorityOrdering(request: {
|
|
593
642
|
/** V1 error format. */
|
|
594
|
-
'$.xgafv'?:
|
|
643
|
+
'$.xgafv'?: '1' | '2';
|
|
595
644
|
/** OAuth access token. */
|
|
596
645
|
access_token?: string;
|
|
597
646
|
/** Data format for response. */
|
|
598
|
-
alt?:
|
|
647
|
+
alt?: 'json' | 'media' | 'proto';
|
|
599
648
|
/** JSONP */
|
|
600
649
|
callback?: string;
|
|
601
650
|
/** Required. ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -620,11 +669,11 @@ declare namespace gapi.client {
|
|
|
620
669
|
updateGroupPriorityOrdering(
|
|
621
670
|
request: {
|
|
622
671
|
/** V1 error format. */
|
|
623
|
-
'$.xgafv'?:
|
|
672
|
+
'$.xgafv'?: '1' | '2';
|
|
624
673
|
/** OAuth access token. */
|
|
625
674
|
access_token?: string;
|
|
626
675
|
/** Data format for response. */
|
|
627
|
-
alt?:
|
|
676
|
+
alt?: 'json' | 'media' | 'proto';
|
|
628
677
|
/** JSONP */
|
|
629
678
|
callback?: string;
|
|
630
679
|
/** Required. ID of the Google Workspace account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -651,11 +700,11 @@ declare namespace gapi.client {
|
|
|
651
700
|
/** Creates a certificate at a specified OU for a customer. */
|
|
652
701
|
defineCertificate(request: {
|
|
653
702
|
/** V1 error format. */
|
|
654
|
-
'$.xgafv'?:
|
|
703
|
+
'$.xgafv'?: '1' | '2';
|
|
655
704
|
/** OAuth access token. */
|
|
656
705
|
access_token?: string;
|
|
657
706
|
/** Data format for response. */
|
|
658
|
-
alt?:
|
|
707
|
+
alt?: 'json' | 'media' | 'proto';
|
|
659
708
|
/** JSONP */
|
|
660
709
|
callback?: string;
|
|
661
710
|
/** Required. The customer for which the certificate will apply. */
|
|
@@ -680,11 +729,11 @@ declare namespace gapi.client {
|
|
|
680
729
|
defineCertificate(
|
|
681
730
|
request: {
|
|
682
731
|
/** V1 error format. */
|
|
683
|
-
'$.xgafv'?:
|
|
732
|
+
'$.xgafv'?: '1' | '2';
|
|
684
733
|
/** OAuth access token. */
|
|
685
734
|
access_token?: string;
|
|
686
735
|
/** Data format for response. */
|
|
687
|
-
alt?:
|
|
736
|
+
alt?: 'json' | 'media' | 'proto';
|
|
688
737
|
/** JSONP */
|
|
689
738
|
callback?: string;
|
|
690
739
|
/** Required. The customer for which the certificate will apply. */
|
|
@@ -709,11 +758,11 @@ declare namespace gapi.client {
|
|
|
709
758
|
/** Define a new network. */
|
|
710
759
|
defineNetwork(request: {
|
|
711
760
|
/** V1 error format. */
|
|
712
|
-
'$.xgafv'?:
|
|
761
|
+
'$.xgafv'?: '1' | '2';
|
|
713
762
|
/** OAuth access token. */
|
|
714
763
|
access_token?: string;
|
|
715
764
|
/** Data format for response. */
|
|
716
|
-
alt?:
|
|
765
|
+
alt?: 'json' | 'media' | 'proto';
|
|
717
766
|
/** JSONP */
|
|
718
767
|
callback?: string;
|
|
719
768
|
/** Required. The customer who will own this new network. */
|
|
@@ -738,11 +787,11 @@ declare namespace gapi.client {
|
|
|
738
787
|
defineNetwork(
|
|
739
788
|
request: {
|
|
740
789
|
/** V1 error format. */
|
|
741
|
-
'$.xgafv'?:
|
|
790
|
+
'$.xgafv'?: '1' | '2';
|
|
742
791
|
/** OAuth access token. */
|
|
743
792
|
access_token?: string;
|
|
744
793
|
/** Data format for response. */
|
|
745
|
-
alt?:
|
|
794
|
+
alt?: 'json' | 'media' | 'proto';
|
|
746
795
|
/** JSONP */
|
|
747
796
|
callback?: string;
|
|
748
797
|
/** Required. The customer who will own this new network. */
|
|
@@ -767,11 +816,11 @@ declare namespace gapi.client {
|
|
|
767
816
|
/** Remove an existing certificate by guid. */
|
|
768
817
|
removeCertificate(request: {
|
|
769
818
|
/** V1 error format. */
|
|
770
|
-
'$.xgafv'?:
|
|
819
|
+
'$.xgafv'?: '1' | '2';
|
|
771
820
|
/** OAuth access token. */
|
|
772
821
|
access_token?: string;
|
|
773
822
|
/** Data format for response. */
|
|
774
|
-
alt?:
|
|
823
|
+
alt?: 'json' | 'media' | 'proto';
|
|
775
824
|
/** JSONP */
|
|
776
825
|
callback?: string;
|
|
777
826
|
/** Required. The customer whose certificate will be removed. */
|
|
@@ -796,11 +845,11 @@ declare namespace gapi.client {
|
|
|
796
845
|
removeCertificate(
|
|
797
846
|
request: {
|
|
798
847
|
/** V1 error format. */
|
|
799
|
-
'$.xgafv'?:
|
|
848
|
+
'$.xgafv'?: '1' | '2';
|
|
800
849
|
/** OAuth access token. */
|
|
801
850
|
access_token?: string;
|
|
802
851
|
/** Data format for response. */
|
|
803
|
-
alt?:
|
|
852
|
+
alt?: 'json' | 'media' | 'proto';
|
|
804
853
|
/** JSONP */
|
|
805
854
|
callback?: string;
|
|
806
855
|
/** Required. The customer whose certificate will be removed. */
|
|
@@ -825,11 +874,11 @@ declare namespace gapi.client {
|
|
|
825
874
|
/** Remove an existing network by guid. */
|
|
826
875
|
removeNetwork(request: {
|
|
827
876
|
/** V1 error format. */
|
|
828
|
-
'$.xgafv'?:
|
|
877
|
+
'$.xgafv'?: '1' | '2';
|
|
829
878
|
/** OAuth access token. */
|
|
830
879
|
access_token?: string;
|
|
831
880
|
/** Data format for response. */
|
|
832
|
-
alt?:
|
|
881
|
+
alt?: 'json' | 'media' | 'proto';
|
|
833
882
|
/** JSONP */
|
|
834
883
|
callback?: string;
|
|
835
884
|
/** Required. The customer whose network will be removed. */
|
|
@@ -854,11 +903,11 @@ declare namespace gapi.client {
|
|
|
854
903
|
removeNetwork(
|
|
855
904
|
request: {
|
|
856
905
|
/** V1 error format. */
|
|
857
|
-
'$.xgafv'?:
|
|
906
|
+
'$.xgafv'?: '1' | '2';
|
|
858
907
|
/** OAuth access token. */
|
|
859
908
|
access_token?: string;
|
|
860
909
|
/** Data format for response. */
|
|
861
|
-
alt?:
|
|
910
|
+
alt?: 'json' | 'media' | 'proto';
|
|
862
911
|
/** JSONP */
|
|
863
912
|
callback?: string;
|
|
864
913
|
/** Required. The customer whose network will be removed. */
|
|
@@ -885,11 +934,11 @@ declare namespace gapi.client {
|
|
|
885
934
|
/** Modify multiple policy values that are applied to a specific org unit so that they now inherit the value from a parent (if applicable). All targets must have the same target format. That is to say that they must point to the same target resource and must have the same keys specified in `additionalTargetKeyNames`, though the values for those keys may be different. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
886
935
|
batchInherit(request: {
|
|
887
936
|
/** V1 error format. */
|
|
888
|
-
'$.xgafv'?:
|
|
937
|
+
'$.xgafv'?: '1' | '2';
|
|
889
938
|
/** OAuth access token. */
|
|
890
939
|
access_token?: string;
|
|
891
940
|
/** Data format for response. */
|
|
892
|
-
alt?:
|
|
941
|
+
alt?: 'json' | 'media' | 'proto';
|
|
893
942
|
/** JSONP */
|
|
894
943
|
callback?: string;
|
|
895
944
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -914,11 +963,11 @@ declare namespace gapi.client {
|
|
|
914
963
|
batchInherit(
|
|
915
964
|
request: {
|
|
916
965
|
/** V1 error format. */
|
|
917
|
-
'$.xgafv'?:
|
|
966
|
+
'$.xgafv'?: '1' | '2';
|
|
918
967
|
/** OAuth access token. */
|
|
919
968
|
access_token?: string;
|
|
920
969
|
/** Data format for response. */
|
|
921
|
-
alt?:
|
|
970
|
+
alt?: 'json' | 'media' | 'proto';
|
|
922
971
|
/** JSONP */
|
|
923
972
|
callback?: string;
|
|
924
973
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -943,11 +992,11 @@ declare namespace gapi.client {
|
|
|
943
992
|
/** Modify multiple policy values that are applied to a specific org unit. All targets must have the same target format. That is to say that they must point to the same target resource and must have the same keys specified in `additionalTargetKeyNames`, though the values for those keys may be different. On failure the request will return the error details as part of the google.rpc.Status. */
|
|
944
993
|
batchModify(request: {
|
|
945
994
|
/** V1 error format. */
|
|
946
|
-
'$.xgafv'?:
|
|
995
|
+
'$.xgafv'?: '1' | '2';
|
|
947
996
|
/** OAuth access token. */
|
|
948
997
|
access_token?: string;
|
|
949
998
|
/** Data format for response. */
|
|
950
|
-
alt?:
|
|
999
|
+
alt?: 'json' | 'media' | 'proto';
|
|
951
1000
|
/** JSONP */
|
|
952
1001
|
callback?: string;
|
|
953
1002
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -972,11 +1021,11 @@ declare namespace gapi.client {
|
|
|
972
1021
|
batchModify(
|
|
973
1022
|
request: {
|
|
974
1023
|
/** V1 error format. */
|
|
975
|
-
'$.xgafv'?:
|
|
1024
|
+
'$.xgafv'?: '1' | '2';
|
|
976
1025
|
/** OAuth access token. */
|
|
977
1026
|
access_token?: string;
|
|
978
1027
|
/** Data format for response. */
|
|
979
|
-
alt?:
|
|
1028
|
+
alt?: 'json' | 'media' | 'proto';
|
|
980
1029
|
/** JSONP */
|
|
981
1030
|
callback?: string;
|
|
982
1031
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -1003,11 +1052,11 @@ declare namespace gapi.client {
|
|
|
1003
1052
|
/** Gets the resolved policy values for a list of policies that match a search query. */
|
|
1004
1053
|
resolve(request: {
|
|
1005
1054
|
/** V1 error format. */
|
|
1006
|
-
'$.xgafv'?:
|
|
1055
|
+
'$.xgafv'?: '1' | '2';
|
|
1007
1056
|
/** OAuth access token. */
|
|
1008
1057
|
access_token?: string;
|
|
1009
1058
|
/** Data format for response. */
|
|
1010
|
-
alt?:
|
|
1059
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1011
1060
|
/** JSONP */
|
|
1012
1061
|
callback?: string;
|
|
1013
1062
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -1032,11 +1081,11 @@ declare namespace gapi.client {
|
|
|
1032
1081
|
resolve(
|
|
1033
1082
|
request: {
|
|
1034
1083
|
/** V1 error format. */
|
|
1035
|
-
'$.xgafv'?:
|
|
1084
|
+
'$.xgafv'?: '1' | '2';
|
|
1036
1085
|
/** OAuth access token. */
|
|
1037
1086
|
access_token?: string;
|
|
1038
1087
|
/** Data format for response. */
|
|
1039
|
-
alt?:
|
|
1088
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1040
1089
|
/** JSONP */
|
|
1041
1090
|
callback?: string;
|
|
1042
1091
|
/** ID of the G Suite account or literal "my_customer" for the customer associated to the request. */
|
|
@@ -1066,11 +1115,11 @@ declare namespace gapi.client {
|
|
|
1066
1115
|
/** Get a specific policy schema for a customer by its resource name. */
|
|
1067
1116
|
get(request?: {
|
|
1068
1117
|
/** V1 error format. */
|
|
1069
|
-
'$.xgafv'?:
|
|
1118
|
+
'$.xgafv'?: '1' | '2';
|
|
1070
1119
|
/** OAuth access token. */
|
|
1071
1120
|
access_token?: string;
|
|
1072
1121
|
/** Data format for response. */
|
|
1073
|
-
alt?:
|
|
1122
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1074
1123
|
/** JSONP */
|
|
1075
1124
|
callback?: string;
|
|
1076
1125
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1093,11 +1142,11 @@ declare namespace gapi.client {
|
|
|
1093
1142
|
/** Gets a list of policy schemas that match a specified filter value for a given customer. */
|
|
1094
1143
|
list(request?: {
|
|
1095
1144
|
/** V1 error format. */
|
|
1096
|
-
'$.xgafv'?:
|
|
1145
|
+
'$.xgafv'?: '1' | '2';
|
|
1097
1146
|
/** OAuth access token. */
|
|
1098
1147
|
access_token?: string;
|
|
1099
1148
|
/** Data format for response. */
|
|
1100
|
-
alt?:
|
|
1149
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1101
1150
|
/** JSONP */
|
|
1102
1151
|
callback?: string;
|
|
1103
1152
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1132,11 +1181,11 @@ declare namespace gapi.client {
|
|
|
1132
1181
|
/** Creates an enterprise file from the content provided by user. Returns a public download url for end user. */
|
|
1133
1182
|
upload(request: {
|
|
1134
1183
|
/** V1 error format. */
|
|
1135
|
-
'$.xgafv'?:
|
|
1184
|
+
'$.xgafv'?: '1' | '2';
|
|
1136
1185
|
/** OAuth access token. */
|
|
1137
1186
|
access_token?: string;
|
|
1138
1187
|
/** Data format for response. */
|
|
1139
|
-
alt?:
|
|
1188
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1140
1189
|
/** JSONP */
|
|
1141
1190
|
callback?: string;
|
|
1142
1191
|
/** Required. The customer for which the file upload will apply. */
|
|
@@ -1161,11 +1210,11 @@ declare namespace gapi.client {
|
|
|
1161
1210
|
upload(
|
|
1162
1211
|
request: {
|
|
1163
1212
|
/** V1 error format. */
|
|
1164
|
-
'$.xgafv'?:
|
|
1213
|
+
'$.xgafv'?: '1' | '2';
|
|
1165
1214
|
/** OAuth access token. */
|
|
1166
1215
|
access_token?: string;
|
|
1167
1216
|
/** Data format for response. */
|
|
1168
|
-
alt?:
|
|
1217
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1169
1218
|
/** JSONP */
|
|
1170
1219
|
callback?: string;
|
|
1171
1220
|
/** Required. The customer for which the file upload will apply. */
|