@globus/sdk 1.18.1 → 2.0.1

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.
Files changed (45) hide show
  1. package/README.md +0 -1
  2. package/cjs/lib/services/auth/service/oauth2/token.d.ts +16 -12
  3. package/cjs/lib/services/auth/service/oauth2/token.d.ts.map +1 -1
  4. package/cjs/lib/services/auth/service/oauth2/token.js +25 -4
  5. package/cjs/lib/services/auth/service/oauth2/token.js.map +1 -1
  6. package/cjs/lib/services/flows/service/flows.d.ts +0 -13
  7. package/cjs/lib/services/flows/service/flows.d.ts.map +1 -1
  8. package/cjs/lib/services/flows/service/flows.js +1 -6
  9. package/cjs/lib/services/flows/service/flows.js.map +1 -1
  10. package/cjs/lib/services/globus-connect-server/client.d.ts +1651 -675
  11. package/cjs/lib/services/globus-connect-server/client.d.ts.map +1 -1
  12. package/cjs/lib/services/globus-connect-server/service/collections.d.ts +2 -8
  13. package/cjs/lib/services/globus-connect-server/service/collections.d.ts.map +1 -1
  14. package/cjs/lib/services/globus-connect-server/service/roles.d.ts +1 -3
  15. package/cjs/lib/services/globus-connect-server/service/roles.d.ts.map +1 -1
  16. package/cjs/lib/services/globus-connect-server/service/storage-gateways.d.ts +2 -6
  17. package/cjs/lib/services/globus-connect-server/service/storage-gateways.d.ts.map +1 -1
  18. package/cjs/lib/services/globus-connect-server/service/user-credentials.d.ts +1 -4
  19. package/cjs/lib/services/globus-connect-server/service/user-credentials.d.ts.map +1 -1
  20. package/cjs/lib/services/shared.d.ts.map +1 -1
  21. package/cjs/lib/services/shared.js +5 -2
  22. package/cjs/lib/services/shared.js.map +1 -1
  23. package/esm/lib/services/auth/service/oauth2/token.d.ts +16 -12
  24. package/esm/lib/services/auth/service/oauth2/token.d.ts.map +1 -1
  25. package/esm/lib/services/auth/service/oauth2/token.js +25 -4
  26. package/esm/lib/services/auth/service/oauth2/token.js.map +1 -1
  27. package/esm/lib/services/flows/service/flows.d.ts +0 -13
  28. package/esm/lib/services/flows/service/flows.d.ts.map +1 -1
  29. package/esm/lib/services/flows/service/flows.js +0 -5
  30. package/esm/lib/services/flows/service/flows.js.map +1 -1
  31. package/esm/lib/services/globus-connect-server/client.d.ts +1651 -675
  32. package/esm/lib/services/globus-connect-server/client.d.ts.map +1 -1
  33. package/esm/lib/services/globus-connect-server/service/collections.d.ts +2 -8
  34. package/esm/lib/services/globus-connect-server/service/collections.d.ts.map +1 -1
  35. package/esm/lib/services/globus-connect-server/service/roles.d.ts +1 -3
  36. package/esm/lib/services/globus-connect-server/service/roles.d.ts.map +1 -1
  37. package/esm/lib/services/globus-connect-server/service/storage-gateways.d.ts +2 -6
  38. package/esm/lib/services/globus-connect-server/service/storage-gateways.d.ts.map +1 -1
  39. package/esm/lib/services/globus-connect-server/service/user-credentials.d.ts +1 -4
  40. package/esm/lib/services/globus-connect-server/service/user-credentials.d.ts.map +1 -1
  41. package/esm/lib/services/shared.d.ts.map +1 -1
  42. package/esm/lib/services/shared.js +5 -2
  43. package/esm/lib/services/shared.js.map +1 -1
  44. package/package.json +3 -3
  45. package/umd/globus.production.js +1 -1
@@ -73,12 +73,34 @@ export declare function getClient(configuration: GCSConfiguration): {
73
73
  preferred_parallelism?: number | undefined;
74
74
  public?: boolean | undefined;
75
75
  subscription_id?: string | null | undefined;
76
+ } | {
77
+ DATA_TYPE: "endpoint#1.2.0";
78
+ allow_udt?: boolean | undefined;
79
+ contact_email?: string | undefined;
80
+ contact_info?: string | undefined;
81
+ department?: string | undefined;
82
+ description?: string | undefined;
83
+ display_name: string;
84
+ earliest_last_access?: string | undefined;
85
+ id?: string | undefined;
86
+ gcs_manager_url?: string | undefined;
87
+ gridftp_control_channel_port?: number | null | undefined;
88
+ info_link?: string | undefined;
89
+ keywords?: string[] | undefined;
90
+ max_concurrency?: number | undefined;
91
+ max_parallelism?: number | undefined;
92
+ network_use?: "normal" | "minimal" | "aggressive" | "custom" | undefined;
93
+ organization?: string | undefined;
94
+ preferred_concurrency?: number | undefined;
95
+ preferred_parallelism?: number | undefined;
96
+ public?: boolean | undefined;
97
+ subscription_id?: string | null | undefined;
76
98
  })[] | undefined;
77
99
  } & {
78
100
  DATA_TYPE: "result#1.0.0";
79
101
  code: string;
80
- data?: Record<string, never>[] | undefined;
81
- detail?: Record<string, never> | undefined;
102
+ data?: Record<string, unknown>[] | undefined;
103
+ detail?: unknown;
82
104
  has_next_page?: boolean | undefined;
83
105
  http_response_code: number;
84
106
  marker?: string | null | undefined;
@@ -126,6 +148,28 @@ export declare function getClient(configuration: GCSConfiguration): {
126
148
  preferred_parallelism?: number | undefined;
127
149
  public?: boolean | undefined;
128
150
  subscription_id?: string | null | undefined;
151
+ } | {
152
+ DATA_TYPE: "endpoint#1.2.0";
153
+ allow_udt?: boolean | undefined;
154
+ contact_email?: string | undefined;
155
+ contact_info?: string | undefined;
156
+ department?: string | undefined;
157
+ description?: string | undefined;
158
+ display_name: string;
159
+ earliest_last_access?: string | undefined;
160
+ id?: string | undefined;
161
+ gcs_manager_url?: string | undefined;
162
+ gridftp_control_channel_port?: number | null | undefined;
163
+ info_link?: string | undefined;
164
+ keywords?: string[] | undefined;
165
+ max_concurrency?: number | undefined;
166
+ max_parallelism?: number | undefined;
167
+ network_use?: "normal" | "minimal" | "aggressive" | "custom" | undefined;
168
+ organization?: string | undefined;
169
+ preferred_concurrency?: number | undefined;
170
+ preferred_parallelism?: number | undefined;
171
+ public?: boolean | undefined;
172
+ subscription_id?: string | null | undefined;
129
173
  };
130
174
  } & {
131
175
  query?: {
@@ -175,12 +219,34 @@ export declare function getClient(configuration: GCSConfiguration): {
175
219
  preferred_parallelism?: number | undefined;
176
220
  public?: boolean | undefined;
177
221
  subscription_id?: string | null | undefined;
222
+ } | {
223
+ DATA_TYPE: "endpoint#1.2.0";
224
+ allow_udt?: boolean | undefined;
225
+ contact_email?: string | undefined;
226
+ contact_info?: string | undefined;
227
+ department?: string | undefined;
228
+ description?: string | undefined;
229
+ display_name: string;
230
+ earliest_last_access?: string | undefined;
231
+ id?: string | undefined;
232
+ gcs_manager_url?: string | undefined;
233
+ gridftp_control_channel_port?: number | null | undefined;
234
+ info_link?: string | undefined;
235
+ keywords?: string[] | undefined;
236
+ max_concurrency?: number | undefined;
237
+ max_parallelism?: number | undefined;
238
+ network_use?: "normal" | "minimal" | "aggressive" | "custom" | undefined;
239
+ organization?: string | undefined;
240
+ preferred_concurrency?: number | undefined;
241
+ preferred_parallelism?: number | undefined;
242
+ public?: boolean | undefined;
243
+ subscription_id?: string | null | undefined;
178
244
  })[] | undefined;
179
245
  } & {
180
246
  DATA_TYPE: "result#1.0.0";
181
247
  code: string;
182
- data?: Record<string, never>[] | undefined;
183
- detail?: Record<string, never> | undefined;
248
+ data?: Record<string, unknown>[] | undefined;
249
+ detail?: unknown;
184
250
  has_next_page?: boolean | undefined;
185
251
  http_response_code: number;
186
252
  marker?: string | null | undefined;
@@ -228,6 +294,28 @@ export declare function getClient(configuration: GCSConfiguration): {
228
294
  preferred_parallelism?: number | undefined;
229
295
  public?: boolean | undefined;
230
296
  subscription_id?: string | null | undefined;
297
+ } | {
298
+ DATA_TYPE: "endpoint#1.2.0";
299
+ allow_udt?: boolean | undefined;
300
+ contact_email?: string | undefined;
301
+ contact_info?: string | undefined;
302
+ department?: string | undefined;
303
+ description?: string | undefined;
304
+ display_name: string;
305
+ earliest_last_access?: string | undefined;
306
+ id?: string | undefined;
307
+ gcs_manager_url?: string | undefined;
308
+ gridftp_control_channel_port?: number | null | undefined;
309
+ info_link?: string | undefined;
310
+ keywords?: string[] | undefined;
311
+ max_concurrency?: number | undefined;
312
+ max_parallelism?: number | undefined;
313
+ network_use?: "normal" | "minimal" | "aggressive" | "custom" | undefined;
314
+ organization?: string | undefined;
315
+ preferred_concurrency?: number | undefined;
316
+ preferred_parallelism?: number | undefined;
317
+ public?: boolean | undefined;
318
+ subscription_id?: string | null | undefined;
231
319
  };
232
320
  } & {
233
321
  query?: {
@@ -277,12 +365,34 @@ export declare function getClient(configuration: GCSConfiguration): {
277
365
  preferred_parallelism?: number | undefined;
278
366
  public?: boolean | undefined;
279
367
  subscription_id?: string | null | undefined;
368
+ } | {
369
+ DATA_TYPE: "endpoint#1.2.0";
370
+ allow_udt?: boolean | undefined;
371
+ contact_email?: string | undefined;
372
+ contact_info?: string | undefined;
373
+ department?: string | undefined;
374
+ description?: string | undefined;
375
+ display_name: string;
376
+ earliest_last_access?: string | undefined;
377
+ id?: string | undefined;
378
+ gcs_manager_url?: string | undefined;
379
+ gridftp_control_channel_port?: number | null | undefined;
380
+ info_link?: string | undefined;
381
+ keywords?: string[] | undefined;
382
+ max_concurrency?: number | undefined;
383
+ max_parallelism?: number | undefined;
384
+ network_use?: "normal" | "minimal" | "aggressive" | "custom" | undefined;
385
+ organization?: string | undefined;
386
+ preferred_concurrency?: number | undefined;
387
+ preferred_parallelism?: number | undefined;
388
+ public?: boolean | undefined;
389
+ subscription_id?: string | null | undefined;
280
390
  })[] | undefined;
281
391
  } & {
282
392
  DATA_TYPE: "result#1.0.0";
283
393
  code: string;
284
- data?: Record<string, never>[] | undefined;
285
- detail?: Record<string, never> | undefined;
394
+ data?: Record<string, unknown>[] | undefined;
395
+ detail?: unknown;
286
396
  has_next_page?: boolean | undefined;
287
397
  http_response_code: number;
288
398
  marker?: string | null | undefined;
@@ -316,8 +426,8 @@ export declare function getClient(configuration: GCSConfiguration): {
316
426
  } & {
317
427
  DATA_TYPE: "result#1.0.0";
318
428
  code: string;
319
- data?: Record<string, never>[] | undefined;
320
- detail?: Record<string, never> | undefined;
429
+ data?: Record<string, unknown>[] | undefined;
430
+ detail?: unknown;
321
431
  has_next_page?: boolean | undefined;
322
432
  http_response_code: number;
323
433
  marker?: string | null | undefined;
@@ -363,6 +473,8 @@ export declare function getClient(configuration: GCSConfiguration): {
363
473
  mapped_collection_id?: string | undefined;
364
474
  organization?: string | undefined;
365
475
  policies?: {
476
+ DATA_TYPE: "s3_collection_policies#1.0.0";
477
+ } | {
366
478
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
367
479
  } | {
368
480
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -370,6 +482,8 @@ export declare function getClient(configuration: GCSConfiguration): {
370
482
  DATA_TYPE: "box_collection_policies#1.0.0";
371
483
  } | {
372
484
  DATA_TYPE: "ceph_collection_policies#1.0.0";
485
+ } | {
486
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
373
487
  } | {
374
488
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
375
489
  project?: string | undefined;
@@ -391,17 +505,10 @@ export declare function getClient(configuration: GCSConfiguration): {
391
505
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
392
506
  sharing_groups_allow?: string[] | null | undefined;
393
507
  sharing_groups_deny?: string[] | null | undefined;
394
- } | {
395
- DATA_TYPE: "s3_collection_policies#1.0.0";
396
508
  } | undefined;
397
509
  public: boolean;
398
510
  root_path?: string | undefined;
399
- sharing_restrict_paths?: Record<string, unknown> | {
400
- DATA_TYPE: "path_restrictions#1.0.0";
401
- none?: string[] | undefined;
402
- read?: string[] | undefined;
403
- read_write?: string[] | undefined;
404
- } | null | undefined;
511
+ sharing_restrict_paths?: unknown;
405
512
  storage_gateway_id?: string | undefined;
406
513
  tlsftp_url?: string | undefined;
407
514
  user_credential_id?: string | undefined;
@@ -433,6 +540,8 @@ export declare function getClient(configuration: GCSConfiguration): {
433
540
  mapped_collection_id?: string | undefined;
434
541
  organization?: string | undefined;
435
542
  policies?: {
543
+ DATA_TYPE: "s3_collection_policies#1.0.0";
544
+ } | {
436
545
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
437
546
  } | {
438
547
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -440,6 +549,8 @@ export declare function getClient(configuration: GCSConfiguration): {
440
549
  DATA_TYPE: "box_collection_policies#1.0.0";
441
550
  } | {
442
551
  DATA_TYPE: "ceph_collection_policies#1.0.0";
552
+ } | {
553
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
443
554
  } | {
444
555
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
445
556
  project?: string | undefined;
@@ -461,17 +572,10 @@ export declare function getClient(configuration: GCSConfiguration): {
461
572
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
462
573
  sharing_groups_allow?: string[] | null | undefined;
463
574
  sharing_groups_deny?: string[] | null | undefined;
464
- } | {
465
- DATA_TYPE: "s3_collection_policies#1.0.0";
466
575
  } | undefined;
467
576
  public: boolean;
468
577
  root_path?: string | undefined;
469
- sharing_restrict_paths?: Record<string, unknown> | {
470
- DATA_TYPE: "path_restrictions#1.0.0";
471
- none?: string[] | undefined;
472
- read?: string[] | undefined;
473
- read_write?: string[] | undefined;
474
- } | null | undefined;
578
+ sharing_restrict_paths?: unknown;
475
579
  storage_gateway_id?: string | undefined;
476
580
  tlsftp_url?: string | undefined;
477
581
  user_credential_id?: string | undefined;
@@ -505,6 +609,8 @@ export declare function getClient(configuration: GCSConfiguration): {
505
609
  mapped_collection_id?: string | undefined;
506
610
  organization?: string | undefined;
507
611
  policies?: {
612
+ DATA_TYPE: "s3_collection_policies#1.0.0";
613
+ } | {
508
614
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
509
615
  } | {
510
616
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -512,6 +618,8 @@ export declare function getClient(configuration: GCSConfiguration): {
512
618
  DATA_TYPE: "box_collection_policies#1.0.0";
513
619
  } | {
514
620
  DATA_TYPE: "ceph_collection_policies#1.0.0";
621
+ } | {
622
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
515
623
  } | {
516
624
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
517
625
  project?: string | undefined;
@@ -533,17 +641,10 @@ export declare function getClient(configuration: GCSConfiguration): {
533
641
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
534
642
  sharing_groups_allow?: string[] | null | undefined;
535
643
  sharing_groups_deny?: string[] | null | undefined;
536
- } | {
537
- DATA_TYPE: "s3_collection_policies#1.0.0";
538
644
  } | undefined;
539
645
  public: boolean;
540
646
  root_path?: string | undefined;
541
- sharing_restrict_paths?: Record<string, unknown> | {
542
- DATA_TYPE: "path_restrictions#1.0.0";
543
- none?: string[] | undefined;
544
- read?: string[] | undefined;
545
- read_write?: string[] | undefined;
546
- } | null | undefined;
647
+ sharing_restrict_paths?: unknown;
547
648
  sharing_users_allow?: string[] | null | undefined;
548
649
  sharing_users_deny?: string[] | null | undefined;
549
650
  storage_gateway_id?: string | undefined;
@@ -590,6 +691,8 @@ export declare function getClient(configuration: GCSConfiguration): {
590
691
  mapped_collection_id?: string | undefined;
591
692
  organization?: string | undefined;
592
693
  policies?: {
694
+ DATA_TYPE: "s3_collection_policies#1.0.0";
695
+ } | {
593
696
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
594
697
  } | {
595
698
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -597,6 +700,8 @@ export declare function getClient(configuration: GCSConfiguration): {
597
700
  DATA_TYPE: "box_collection_policies#1.0.0";
598
701
  } | {
599
702
  DATA_TYPE: "ceph_collection_policies#1.0.0";
703
+ } | {
704
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
600
705
  } | {
601
706
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
602
707
  project?: string | undefined;
@@ -618,17 +723,10 @@ export declare function getClient(configuration: GCSConfiguration): {
618
723
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
619
724
  sharing_groups_allow?: string[] | null | undefined;
620
725
  sharing_groups_deny?: string[] | null | undefined;
621
- } | {
622
- DATA_TYPE: "s3_collection_policies#1.0.0";
623
726
  } | undefined;
624
727
  public: boolean;
625
728
  root_path?: string | undefined;
626
- sharing_restrict_paths?: Record<string, unknown> | {
627
- DATA_TYPE: "path_restrictions#1.0.0";
628
- none?: string[] | undefined;
629
- read?: string[] | undefined;
630
- read_write?: string[] | undefined;
631
- } | null | undefined;
729
+ sharing_restrict_paths?: unknown;
632
730
  sharing_users_allow?: string[] | null | undefined;
633
731
  sharing_users_deny?: string[] | null | undefined;
634
732
  storage_gateway_id?: string | undefined;
@@ -676,6 +774,8 @@ export declare function getClient(configuration: GCSConfiguration): {
676
774
  mapped_collection_id?: string | undefined;
677
775
  organization?: string | undefined;
678
776
  policies?: {
777
+ DATA_TYPE: "s3_collection_policies#1.0.0";
778
+ } | {
679
779
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
680
780
  } | {
681
781
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -683,6 +783,8 @@ export declare function getClient(configuration: GCSConfiguration): {
683
783
  DATA_TYPE: "box_collection_policies#1.0.0";
684
784
  } | {
685
785
  DATA_TYPE: "ceph_collection_policies#1.0.0";
786
+ } | {
787
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
686
788
  } | {
687
789
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
688
790
  project?: string | undefined;
@@ -704,18 +806,11 @@ export declare function getClient(configuration: GCSConfiguration): {
704
806
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
705
807
  sharing_groups_allow?: string[] | null | undefined;
706
808
  sharing_groups_deny?: string[] | null | undefined;
707
- } | {
708
- DATA_TYPE: "s3_collection_policies#1.0.0";
709
809
  } | undefined;
710
810
  public: boolean;
711
811
  require_mfa?: boolean | undefined;
712
812
  root_path?: string | undefined;
713
- sharing_restrict_paths?: Record<string, unknown> | {
714
- DATA_TYPE: "path_restrictions#1.0.0";
715
- none?: string[] | undefined;
716
- read?: string[] | undefined;
717
- read_write?: string[] | undefined;
718
- } | null | undefined;
813
+ sharing_restrict_paths?: unknown;
719
814
  sharing_users_allow?: string[] | null | undefined;
720
815
  sharing_users_deny?: string[] | null | undefined;
721
816
  storage_gateway_id?: string | undefined;
@@ -764,6 +859,8 @@ export declare function getClient(configuration: GCSConfiguration): {
764
859
  mapped_collection_id?: string | undefined;
765
860
  organization?: string | undefined;
766
861
  policies?: {
862
+ DATA_TYPE: "s3_collection_policies#1.0.0";
863
+ } | {
767
864
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
768
865
  } | {
769
866
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -771,6 +868,8 @@ export declare function getClient(configuration: GCSConfiguration): {
771
868
  DATA_TYPE: "box_collection_policies#1.0.0";
772
869
  } | {
773
870
  DATA_TYPE: "ceph_collection_policies#1.0.0";
871
+ } | {
872
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
774
873
  } | {
775
874
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
776
875
  project?: string | undefined;
@@ -792,18 +891,11 @@ export declare function getClient(configuration: GCSConfiguration): {
792
891
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
793
892
  sharing_groups_allow?: string[] | null | undefined;
794
893
  sharing_groups_deny?: string[] | null | undefined;
795
- } | {
796
- DATA_TYPE: "s3_collection_policies#1.0.0";
797
894
  } | undefined;
798
895
  public: boolean;
799
896
  require_mfa?: boolean | undefined;
800
897
  root_path?: string | undefined;
801
- sharing_restrict_paths?: Record<string, unknown> | {
802
- DATA_TYPE: "path_restrictions#1.0.0";
803
- none?: string[] | undefined;
804
- read?: string[] | undefined;
805
- read_write?: string[] | undefined;
806
- } | null | undefined;
898
+ sharing_restrict_paths?: unknown;
807
899
  sharing_users_allow?: string[] | null | undefined;
808
900
  sharing_users_deny?: string[] | null | undefined;
809
901
  storage_gateway_id?: string | undefined;
@@ -853,6 +945,8 @@ export declare function getClient(configuration: GCSConfiguration): {
853
945
  mapped_collection_id?: string | undefined;
854
946
  organization?: string | undefined;
855
947
  policies?: {
948
+ DATA_TYPE: "s3_collection_policies#1.0.0";
949
+ } | {
856
950
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
857
951
  } | {
858
952
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -860,6 +954,8 @@ export declare function getClient(configuration: GCSConfiguration): {
860
954
  DATA_TYPE: "box_collection_policies#1.0.0";
861
955
  } | {
862
956
  DATA_TYPE: "ceph_collection_policies#1.0.0";
957
+ } | {
958
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
863
959
  } | {
864
960
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
865
961
  project?: string | undefined;
@@ -881,18 +977,11 @@ export declare function getClient(configuration: GCSConfiguration): {
881
977
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
882
978
  sharing_groups_allow?: string[] | null | undefined;
883
979
  sharing_groups_deny?: string[] | null | undefined;
884
- } | {
885
- DATA_TYPE: "s3_collection_policies#1.0.0";
886
980
  } | undefined;
887
981
  public: boolean;
888
982
  require_mfa?: boolean | undefined;
889
983
  root_path?: string | undefined;
890
- sharing_restrict_paths?: Record<string, unknown> | {
891
- DATA_TYPE: "path_restrictions#1.0.0";
892
- none?: string[] | undefined;
893
- read?: string[] | undefined;
894
- read_write?: string[] | undefined;
895
- } | null | undefined;
984
+ sharing_restrict_paths?: unknown;
896
985
  sharing_users_allow?: string[] | null | undefined;
897
986
  sharing_users_deny?: string[] | null | undefined;
898
987
  storage_gateway_id?: string | undefined;
@@ -942,6 +1031,8 @@ export declare function getClient(configuration: GCSConfiguration): {
942
1031
  mapped_collection_id?: string | undefined;
943
1032
  organization?: string | undefined;
944
1033
  policies?: {
1034
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1035
+ } | {
945
1036
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
946
1037
  } | {
947
1038
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -949,6 +1040,8 @@ export declare function getClient(configuration: GCSConfiguration): {
949
1040
  DATA_TYPE: "box_collection_policies#1.0.0";
950
1041
  } | {
951
1042
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1043
+ } | {
1044
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
952
1045
  } | {
953
1046
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
954
1047
  project?: string | undefined;
@@ -970,18 +1063,11 @@ export declare function getClient(configuration: GCSConfiguration): {
970
1063
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
971
1064
  sharing_groups_allow?: string[] | null | undefined;
972
1065
  sharing_groups_deny?: string[] | null | undefined;
973
- } | {
974
- DATA_TYPE: "s3_collection_policies#1.0.0";
975
1066
  } | undefined;
976
1067
  public: boolean;
977
1068
  require_mfa?: boolean | undefined;
978
1069
  root_path?: string | undefined;
979
- sharing_restrict_paths?: Record<string, unknown> | {
980
- DATA_TYPE: "path_restrictions#1.0.0";
981
- none?: string[] | undefined;
982
- read?: string[] | undefined;
983
- read_write?: string[] | undefined;
984
- } | null | undefined;
1070
+ sharing_restrict_paths?: unknown;
985
1071
  sharing_users_allow?: string[] | null | undefined;
986
1072
  sharing_users_deny?: string[] | null | undefined;
987
1073
  storage_gateway_id?: string | undefined;
@@ -1032,6 +1118,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1032
1118
  mapped_collection_id?: string | undefined;
1033
1119
  organization?: string | undefined;
1034
1120
  policies?: {
1121
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1122
+ } | {
1035
1123
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1036
1124
  } | {
1037
1125
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1039,6 +1127,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1039
1127
  DATA_TYPE: "box_collection_policies#1.0.0";
1040
1128
  } | {
1041
1129
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1130
+ } | {
1131
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1042
1132
  } | {
1043
1133
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1044
1134
  project?: string | undefined;
@@ -1060,18 +1150,100 @@ export declare function getClient(configuration: GCSConfiguration): {
1060
1150
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1061
1151
  sharing_groups_allow?: string[] | null | undefined;
1062
1152
  sharing_groups_deny?: string[] | null | undefined;
1063
- } | {
1153
+ } | undefined;
1154
+ public: boolean;
1155
+ require_mfa?: boolean | undefined;
1156
+ root_path?: string | undefined;
1157
+ sharing_restrict_paths?: unknown;
1158
+ sharing_users_allow?: string[] | null | undefined;
1159
+ sharing_users_deny?: string[] | null | undefined;
1160
+ storage_gateway_id?: string | undefined;
1161
+ tlsftp_url?: string | undefined;
1162
+ user_credential_id?: string | undefined;
1163
+ user_message?: string | null | undefined;
1164
+ user_message_link?: string | null | undefined;
1165
+ } | {
1166
+ DATA_TYPE: "collection#1.9.0";
1167
+ allow_guest_collections?: boolean | undefined;
1168
+ authentication_timeout_mins?: number | undefined;
1169
+ collection_base_path: string;
1170
+ collection_type: "mapped" | "guest";
1171
+ connector_id?: string | undefined;
1172
+ contact_email?: string | null | undefined;
1173
+ contact_info?: string | null | undefined;
1174
+ created_at?: string | null | undefined;
1175
+ default_directory?: string | undefined;
1176
+ delete_protected?: boolean | undefined;
1177
+ deleted?: boolean | undefined;
1178
+ department?: string | null | undefined;
1179
+ description?: string | null | undefined;
1180
+ disable_anonymous_writes?: boolean | undefined;
1181
+ disable_verify?: boolean | undefined;
1182
+ display_name: string;
1183
+ domain?: {
1184
+ DATA_TYPE: "domain#1.0.0";
1185
+ certificate?: string | null | undefined;
1186
+ certificate_chain?: string | null | undefined;
1187
+ certificate_chain_path?: string | null | undefined;
1188
+ certificate_path?: string | null | undefined;
1189
+ domain_name: string;
1190
+ private_key?: string | null | undefined;
1191
+ private_key_path?: string | null | undefined;
1192
+ wildcard: boolean;
1193
+ } | undefined;
1194
+ domain_name?: string | undefined;
1195
+ enable_https?: boolean | undefined;
1196
+ force_encryption?: boolean | undefined;
1197
+ force_verify?: boolean | undefined;
1198
+ guest_auth_policy_id?: string | null | undefined;
1199
+ high_assurance?: boolean | undefined;
1200
+ https_url?: string | undefined;
1201
+ id?: string | undefined;
1202
+ identity_id?: string | undefined;
1203
+ info_link?: string | null | undefined;
1204
+ keywords?: string[] | undefined;
1205
+ last_access?: string | null | undefined;
1206
+ manager_url?: string | undefined;
1207
+ mapped_collection_id?: string | undefined;
1208
+ organization?: string | undefined;
1209
+ policies?: {
1064
1210
  DATA_TYPE: "s3_collection_policies#1.0.0";
1211
+ } | {
1212
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1213
+ } | {
1214
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
1215
+ } | {
1216
+ DATA_TYPE: "box_collection_policies#1.0.0";
1217
+ } | {
1218
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
1219
+ } | {
1220
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1221
+ } | {
1222
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1223
+ project?: string | undefined;
1224
+ } | {
1225
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
1226
+ } | {
1227
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
1228
+ } | {
1229
+ DATA_TYPE: "irods_collection_policies#1.0.0";
1230
+ } | {
1231
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
1232
+ } | {
1233
+ DATA_TYPE: "posix_collection_policies#1.0.0";
1234
+ } | {
1235
+ DATA_TYPE: "posix_collection_policies#1.1.0";
1236
+ sharing_groups_allow?: string[] | null | undefined;
1237
+ sharing_groups_deny?: string[] | null | undefined;
1238
+ } | {
1239
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1240
+ sharing_groups_allow?: string[] | null | undefined;
1241
+ sharing_groups_deny?: string[] | null | undefined;
1065
1242
  } | undefined;
1066
1243
  public: boolean;
1067
1244
  require_mfa?: boolean | undefined;
1068
1245
  root_path?: string | undefined;
1069
- sharing_restrict_paths?: Record<string, unknown> | {
1070
- DATA_TYPE: "path_restrictions#1.0.0";
1071
- none?: string[] | undefined;
1072
- read?: string[] | undefined;
1073
- read_write?: string[] | undefined;
1074
- } | null | undefined;
1246
+ sharing_restrict_paths?: unknown;
1075
1247
  sharing_users_allow?: string[] | null | undefined;
1076
1248
  sharing_users_deny?: string[] | null | undefined;
1077
1249
  storage_gateway_id?: string | undefined;
@@ -1083,8 +1255,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1083
1255
  } & {
1084
1256
  DATA_TYPE: "result#1.0.0";
1085
1257
  code: string;
1086
- data?: Record<string, never>[] | undefined;
1087
- detail?: Record<string, never> | undefined;
1258
+ data?: Record<string, unknown>[] | undefined;
1259
+ detail?: unknown;
1088
1260
  has_next_page?: boolean | undefined;
1089
1261
  http_response_code: number;
1090
1262
  marker?: string | null | undefined;
@@ -1092,8 +1264,11 @@ export declare function getClient(configuration: GCSConfiguration): {
1092
1264
  }>>;
1093
1265
  getAll: (options?: ({
1094
1266
  query?: {
1267
+ page_size?: number | undefined;
1268
+ marker?: string | undefined;
1095
1269
  include?: "private_policies"[] | undefined;
1096
- filter?: ("mapped_collections" | "guest_collections" | "managed_by_me" | "created_by_me")[] | undefined;
1270
+ filter?: string[] | undefined;
1271
+ storage_gateway_id?: string | undefined;
1097
1272
  mapped_collection_id?: string | undefined;
1098
1273
  } | undefined;
1099
1274
  } & {
@@ -1130,6 +1305,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1130
1305
  mapped_collection_id?: string | undefined;
1131
1306
  organization?: string | undefined;
1132
1307
  policies?: {
1308
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1309
+ } | {
1133
1310
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1134
1311
  } | {
1135
1312
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1137,6 +1314,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1137
1314
  DATA_TYPE: "box_collection_policies#1.0.0";
1138
1315
  } | {
1139
1316
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1317
+ } | {
1318
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1140
1319
  } | {
1141
1320
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1142
1321
  project?: string | undefined;
@@ -1158,17 +1337,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1158
1337
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1159
1338
  sharing_groups_allow?: string[] | null | undefined;
1160
1339
  sharing_groups_deny?: string[] | null | undefined;
1161
- } | {
1162
- DATA_TYPE: "s3_collection_policies#1.0.0";
1163
1340
  } | undefined;
1164
1341
  public: boolean;
1165
1342
  root_path?: string | undefined;
1166
- sharing_restrict_paths?: Record<string, unknown> | {
1167
- DATA_TYPE: "path_restrictions#1.0.0";
1168
- none?: string[] | undefined;
1169
- read?: string[] | undefined;
1170
- read_write?: string[] | undefined;
1171
- } | null | undefined;
1343
+ sharing_restrict_paths?: unknown;
1172
1344
  storage_gateway_id?: string | undefined;
1173
1345
  tlsftp_url?: string | undefined;
1174
1346
  user_credential_id?: string | undefined;
@@ -1200,6 +1372,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1200
1372
  mapped_collection_id?: string | undefined;
1201
1373
  organization?: string | undefined;
1202
1374
  policies?: {
1375
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1376
+ } | {
1203
1377
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1204
1378
  } | {
1205
1379
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1207,6 +1381,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1207
1381
  DATA_TYPE: "box_collection_policies#1.0.0";
1208
1382
  } | {
1209
1383
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1384
+ } | {
1385
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1210
1386
  } | {
1211
1387
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1212
1388
  project?: string | undefined;
@@ -1228,17 +1404,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1228
1404
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1229
1405
  sharing_groups_allow?: string[] | null | undefined;
1230
1406
  sharing_groups_deny?: string[] | null | undefined;
1231
- } | {
1232
- DATA_TYPE: "s3_collection_policies#1.0.0";
1233
1407
  } | undefined;
1234
1408
  public: boolean;
1235
1409
  root_path?: string | undefined;
1236
- sharing_restrict_paths?: Record<string, unknown> | {
1237
- DATA_TYPE: "path_restrictions#1.0.0";
1238
- none?: string[] | undefined;
1239
- read?: string[] | undefined;
1240
- read_write?: string[] | undefined;
1241
- } | null | undefined;
1410
+ sharing_restrict_paths?: unknown;
1242
1411
  storage_gateway_id?: string | undefined;
1243
1412
  tlsftp_url?: string | undefined;
1244
1413
  user_credential_id?: string | undefined;
@@ -1272,6 +1441,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1272
1441
  mapped_collection_id?: string | undefined;
1273
1442
  organization?: string | undefined;
1274
1443
  policies?: {
1444
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1445
+ } | {
1275
1446
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1276
1447
  } | {
1277
1448
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1279,6 +1450,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1279
1450
  DATA_TYPE: "box_collection_policies#1.0.0";
1280
1451
  } | {
1281
1452
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1453
+ } | {
1454
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1282
1455
  } | {
1283
1456
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1284
1457
  project?: string | undefined;
@@ -1300,17 +1473,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1300
1473
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1301
1474
  sharing_groups_allow?: string[] | null | undefined;
1302
1475
  sharing_groups_deny?: string[] | null | undefined;
1303
- } | {
1304
- DATA_TYPE: "s3_collection_policies#1.0.0";
1305
1476
  } | undefined;
1306
1477
  public: boolean;
1307
1478
  root_path?: string | undefined;
1308
- sharing_restrict_paths?: Record<string, unknown> | {
1309
- DATA_TYPE: "path_restrictions#1.0.0";
1310
- none?: string[] | undefined;
1311
- read?: string[] | undefined;
1312
- read_write?: string[] | undefined;
1313
- } | null | undefined;
1479
+ sharing_restrict_paths?: unknown;
1314
1480
  sharing_users_allow?: string[] | null | undefined;
1315
1481
  sharing_users_deny?: string[] | null | undefined;
1316
1482
  storage_gateway_id?: string | undefined;
@@ -1357,6 +1523,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1357
1523
  mapped_collection_id?: string | undefined;
1358
1524
  organization?: string | undefined;
1359
1525
  policies?: {
1526
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1527
+ } | {
1360
1528
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1361
1529
  } | {
1362
1530
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1364,6 +1532,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1364
1532
  DATA_TYPE: "box_collection_policies#1.0.0";
1365
1533
  } | {
1366
1534
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1535
+ } | {
1536
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1367
1537
  } | {
1368
1538
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1369
1539
  project?: string | undefined;
@@ -1385,17 +1555,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1385
1555
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1386
1556
  sharing_groups_allow?: string[] | null | undefined;
1387
1557
  sharing_groups_deny?: string[] | null | undefined;
1388
- } | {
1389
- DATA_TYPE: "s3_collection_policies#1.0.0";
1390
1558
  } | undefined;
1391
1559
  public: boolean;
1392
1560
  root_path?: string | undefined;
1393
- sharing_restrict_paths?: Record<string, unknown> | {
1394
- DATA_TYPE: "path_restrictions#1.0.0";
1395
- none?: string[] | undefined;
1396
- read?: string[] | undefined;
1397
- read_write?: string[] | undefined;
1398
- } | null | undefined;
1561
+ sharing_restrict_paths?: unknown;
1399
1562
  sharing_users_allow?: string[] | null | undefined;
1400
1563
  sharing_users_deny?: string[] | null | undefined;
1401
1564
  storage_gateway_id?: string | undefined;
@@ -1443,6 +1606,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1443
1606
  mapped_collection_id?: string | undefined;
1444
1607
  organization?: string | undefined;
1445
1608
  policies?: {
1609
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1610
+ } | {
1446
1611
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1447
1612
  } | {
1448
1613
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1450,6 +1615,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1450
1615
  DATA_TYPE: "box_collection_policies#1.0.0";
1451
1616
  } | {
1452
1617
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1618
+ } | {
1619
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1453
1620
  } | {
1454
1621
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1455
1622
  project?: string | undefined;
@@ -1471,18 +1638,11 @@ export declare function getClient(configuration: GCSConfiguration): {
1471
1638
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1472
1639
  sharing_groups_allow?: string[] | null | undefined;
1473
1640
  sharing_groups_deny?: string[] | null | undefined;
1474
- } | {
1475
- DATA_TYPE: "s3_collection_policies#1.0.0";
1476
1641
  } | undefined;
1477
1642
  public: boolean;
1478
1643
  require_mfa?: boolean | undefined;
1479
1644
  root_path?: string | undefined;
1480
- sharing_restrict_paths?: Record<string, unknown> | {
1481
- DATA_TYPE: "path_restrictions#1.0.0";
1482
- none?: string[] | undefined;
1483
- read?: string[] | undefined;
1484
- read_write?: string[] | undefined;
1485
- } | null | undefined;
1645
+ sharing_restrict_paths?: unknown;
1486
1646
  sharing_users_allow?: string[] | null | undefined;
1487
1647
  sharing_users_deny?: string[] | null | undefined;
1488
1648
  storage_gateway_id?: string | undefined;
@@ -1531,6 +1691,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1531
1691
  mapped_collection_id?: string | undefined;
1532
1692
  organization?: string | undefined;
1533
1693
  policies?: {
1694
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1695
+ } | {
1534
1696
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1535
1697
  } | {
1536
1698
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1538,6 +1700,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1538
1700
  DATA_TYPE: "box_collection_policies#1.0.0";
1539
1701
  } | {
1540
1702
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1703
+ } | {
1704
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1541
1705
  } | {
1542
1706
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1543
1707
  project?: string | undefined;
@@ -1559,18 +1723,11 @@ export declare function getClient(configuration: GCSConfiguration): {
1559
1723
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1560
1724
  sharing_groups_allow?: string[] | null | undefined;
1561
1725
  sharing_groups_deny?: string[] | null | undefined;
1562
- } | {
1563
- DATA_TYPE: "s3_collection_policies#1.0.0";
1564
1726
  } | undefined;
1565
1727
  public: boolean;
1566
1728
  require_mfa?: boolean | undefined;
1567
1729
  root_path?: string | undefined;
1568
- sharing_restrict_paths?: Record<string, unknown> | {
1569
- DATA_TYPE: "path_restrictions#1.0.0";
1570
- none?: string[] | undefined;
1571
- read?: string[] | undefined;
1572
- read_write?: string[] | undefined;
1573
- } | null | undefined;
1730
+ sharing_restrict_paths?: unknown;
1574
1731
  sharing_users_allow?: string[] | null | undefined;
1575
1732
  sharing_users_deny?: string[] | null | undefined;
1576
1733
  storage_gateway_id?: string | undefined;
@@ -1620,6 +1777,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1620
1777
  mapped_collection_id?: string | undefined;
1621
1778
  organization?: string | undefined;
1622
1779
  policies?: {
1780
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1781
+ } | {
1623
1782
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1624
1783
  } | {
1625
1784
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1627,6 +1786,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1627
1786
  DATA_TYPE: "box_collection_policies#1.0.0";
1628
1787
  } | {
1629
1788
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1789
+ } | {
1790
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1630
1791
  } | {
1631
1792
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1632
1793
  project?: string | undefined;
@@ -1648,18 +1809,11 @@ export declare function getClient(configuration: GCSConfiguration): {
1648
1809
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1649
1810
  sharing_groups_allow?: string[] | null | undefined;
1650
1811
  sharing_groups_deny?: string[] | null | undefined;
1651
- } | {
1652
- DATA_TYPE: "s3_collection_policies#1.0.0";
1653
1812
  } | undefined;
1654
1813
  public: boolean;
1655
1814
  require_mfa?: boolean | undefined;
1656
1815
  root_path?: string | undefined;
1657
- sharing_restrict_paths?: Record<string, unknown> | {
1658
- DATA_TYPE: "path_restrictions#1.0.0";
1659
- none?: string[] | undefined;
1660
- read?: string[] | undefined;
1661
- read_write?: string[] | undefined;
1662
- } | null | undefined;
1816
+ sharing_restrict_paths?: unknown;
1663
1817
  sharing_users_allow?: string[] | null | undefined;
1664
1818
  sharing_users_deny?: string[] | null | undefined;
1665
1819
  storage_gateway_id?: string | undefined;
@@ -1709,6 +1863,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1709
1863
  mapped_collection_id?: string | undefined;
1710
1864
  organization?: string | undefined;
1711
1865
  policies?: {
1866
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1867
+ } | {
1712
1868
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1713
1869
  } | {
1714
1870
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1716,6 +1872,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1716
1872
  DATA_TYPE: "box_collection_policies#1.0.0";
1717
1873
  } | {
1718
1874
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1875
+ } | {
1876
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1719
1877
  } | {
1720
1878
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1721
1879
  project?: string | undefined;
@@ -1737,18 +1895,11 @@ export declare function getClient(configuration: GCSConfiguration): {
1737
1895
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1738
1896
  sharing_groups_allow?: string[] | null | undefined;
1739
1897
  sharing_groups_deny?: string[] | null | undefined;
1740
- } | {
1741
- DATA_TYPE: "s3_collection_policies#1.0.0";
1742
1898
  } | undefined;
1743
1899
  public: boolean;
1744
1900
  require_mfa?: boolean | undefined;
1745
1901
  root_path?: string | undefined;
1746
- sharing_restrict_paths?: Record<string, unknown> | {
1747
- DATA_TYPE: "path_restrictions#1.0.0";
1748
- none?: string[] | undefined;
1749
- read?: string[] | undefined;
1750
- read_write?: string[] | undefined;
1751
- } | null | undefined;
1902
+ sharing_restrict_paths?: unknown;
1752
1903
  sharing_users_allow?: string[] | null | undefined;
1753
1904
  sharing_users_deny?: string[] | null | undefined;
1754
1905
  storage_gateway_id?: string | undefined;
@@ -1799,6 +1950,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1799
1950
  mapped_collection_id?: string | undefined;
1800
1951
  organization?: string | undefined;
1801
1952
  policies?: {
1953
+ DATA_TYPE: "s3_collection_policies#1.0.0";
1954
+ } | {
1802
1955
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1803
1956
  } | {
1804
1957
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1806,6 +1959,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1806
1959
  DATA_TYPE: "box_collection_policies#1.0.0";
1807
1960
  } | {
1808
1961
  DATA_TYPE: "ceph_collection_policies#1.0.0";
1962
+ } | {
1963
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1809
1964
  } | {
1810
1965
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1811
1966
  project?: string | undefined;
@@ -1827,18 +1982,100 @@ export declare function getClient(configuration: GCSConfiguration): {
1827
1982
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1828
1983
  sharing_groups_allow?: string[] | null | undefined;
1829
1984
  sharing_groups_deny?: string[] | null | undefined;
1830
- } | {
1985
+ } | undefined;
1986
+ public: boolean;
1987
+ require_mfa?: boolean | undefined;
1988
+ root_path?: string | undefined;
1989
+ sharing_restrict_paths?: unknown;
1990
+ sharing_users_allow?: string[] | null | undefined;
1991
+ sharing_users_deny?: string[] | null | undefined;
1992
+ storage_gateway_id?: string | undefined;
1993
+ tlsftp_url?: string | undefined;
1994
+ user_credential_id?: string | undefined;
1995
+ user_message?: string | null | undefined;
1996
+ user_message_link?: string | null | undefined;
1997
+ } | {
1998
+ DATA_TYPE: "collection#1.9.0";
1999
+ allow_guest_collections?: boolean | undefined;
2000
+ authentication_timeout_mins?: number | undefined;
2001
+ collection_base_path: string;
2002
+ collection_type: "mapped" | "guest";
2003
+ connector_id?: string | undefined;
2004
+ contact_email?: string | null | undefined;
2005
+ contact_info?: string | null | undefined;
2006
+ created_at?: string | null | undefined;
2007
+ default_directory?: string | undefined;
2008
+ delete_protected?: boolean | undefined;
2009
+ deleted?: boolean | undefined;
2010
+ department?: string | null | undefined;
2011
+ description?: string | null | undefined;
2012
+ disable_anonymous_writes?: boolean | undefined;
2013
+ disable_verify?: boolean | undefined;
2014
+ display_name: string;
2015
+ domain?: {
2016
+ DATA_TYPE: "domain#1.0.0";
2017
+ certificate?: string | null | undefined;
2018
+ certificate_chain?: string | null | undefined;
2019
+ certificate_chain_path?: string | null | undefined;
2020
+ certificate_path?: string | null | undefined;
2021
+ domain_name: string;
2022
+ private_key?: string | null | undefined;
2023
+ private_key_path?: string | null | undefined;
2024
+ wildcard: boolean;
2025
+ } | undefined;
2026
+ domain_name?: string | undefined;
2027
+ enable_https?: boolean | undefined;
2028
+ force_encryption?: boolean | undefined;
2029
+ force_verify?: boolean | undefined;
2030
+ guest_auth_policy_id?: string | null | undefined;
2031
+ high_assurance?: boolean | undefined;
2032
+ https_url?: string | undefined;
2033
+ id?: string | undefined;
2034
+ identity_id?: string | undefined;
2035
+ info_link?: string | null | undefined;
2036
+ keywords?: string[] | undefined;
2037
+ last_access?: string | null | undefined;
2038
+ manager_url?: string | undefined;
2039
+ mapped_collection_id?: string | undefined;
2040
+ organization?: string | undefined;
2041
+ policies?: {
1831
2042
  DATA_TYPE: "s3_collection_policies#1.0.0";
2043
+ } | {
2044
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2045
+ } | {
2046
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
2047
+ } | {
2048
+ DATA_TYPE: "box_collection_policies#1.0.0";
2049
+ } | {
2050
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
2051
+ } | {
2052
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2053
+ } | {
2054
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2055
+ project?: string | undefined;
2056
+ } | {
2057
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
2058
+ } | {
2059
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
2060
+ } | {
2061
+ DATA_TYPE: "irods_collection_policies#1.0.0";
2062
+ } | {
2063
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
2064
+ } | {
2065
+ DATA_TYPE: "posix_collection_policies#1.0.0";
2066
+ } | {
2067
+ DATA_TYPE: "posix_collection_policies#1.1.0";
2068
+ sharing_groups_allow?: string[] | null | undefined;
2069
+ sharing_groups_deny?: string[] | null | undefined;
2070
+ } | {
2071
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2072
+ sharing_groups_allow?: string[] | null | undefined;
2073
+ sharing_groups_deny?: string[] | null | undefined;
1832
2074
  } | undefined;
1833
2075
  public: boolean;
1834
2076
  require_mfa?: boolean | undefined;
1835
2077
  root_path?: string | undefined;
1836
- sharing_restrict_paths?: Record<string, unknown> | {
1837
- DATA_TYPE: "path_restrictions#1.0.0";
1838
- none?: string[] | undefined;
1839
- read?: string[] | undefined;
1840
- read_write?: string[] | undefined;
1841
- } | null | undefined;
2078
+ sharing_restrict_paths?: unknown;
1842
2079
  sharing_users_allow?: string[] | null | undefined;
1843
2080
  sharing_users_deny?: string[] | null | undefined;
1844
2081
  storage_gateway_id?: string | undefined;
@@ -1850,8 +2087,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1850
2087
  } & {
1851
2088
  DATA_TYPE: "result#1.0.0";
1852
2089
  code: string;
1853
- data?: Record<string, never>[] | undefined;
1854
- detail?: Record<string, never> | undefined;
2090
+ data?: Record<string, unknown>[] | undefined;
2091
+ detail?: unknown;
1855
2092
  has_next_page?: boolean | undefined;
1856
2093
  http_response_code: number;
1857
2094
  marker?: string | null | undefined;
@@ -1885,6 +2122,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1885
2122
  mapped_collection_id?: string | undefined;
1886
2123
  organization?: string | undefined;
1887
2124
  policies?: {
2125
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2126
+ } | {
1888
2127
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1889
2128
  } | {
1890
2129
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1892,6 +2131,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1892
2131
  DATA_TYPE: "box_collection_policies#1.0.0";
1893
2132
  } | {
1894
2133
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2134
+ } | {
2135
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1895
2136
  } | {
1896
2137
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1897
2138
  project?: string | undefined;
@@ -1913,17 +2154,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1913
2154
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1914
2155
  sharing_groups_allow?: string[] | null | undefined;
1915
2156
  sharing_groups_deny?: string[] | null | undefined;
1916
- } | {
1917
- DATA_TYPE: "s3_collection_policies#1.0.0";
1918
2157
  } | undefined;
1919
2158
  public: boolean;
1920
2159
  root_path?: string | undefined;
1921
- sharing_restrict_paths?: Record<string, unknown> | {
1922
- DATA_TYPE: "path_restrictions#1.0.0";
1923
- none?: string[] | undefined;
1924
- read?: string[] | undefined;
1925
- read_write?: string[] | undefined;
1926
- } | null | undefined;
2160
+ sharing_restrict_paths?: unknown;
1927
2161
  storage_gateway_id?: string | undefined;
1928
2162
  tlsftp_url?: string | undefined;
1929
2163
  user_credential_id?: string | undefined;
@@ -1955,6 +2189,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1955
2189
  mapped_collection_id?: string | undefined;
1956
2190
  organization?: string | undefined;
1957
2191
  policies?: {
2192
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2193
+ } | {
1958
2194
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
1959
2195
  } | {
1960
2196
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -1962,6 +2198,8 @@ export declare function getClient(configuration: GCSConfiguration): {
1962
2198
  DATA_TYPE: "box_collection_policies#1.0.0";
1963
2199
  } | {
1964
2200
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2201
+ } | {
2202
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
1965
2203
  } | {
1966
2204
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
1967
2205
  project?: string | undefined;
@@ -1983,17 +2221,10 @@ export declare function getClient(configuration: GCSConfiguration): {
1983
2221
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
1984
2222
  sharing_groups_allow?: string[] | null | undefined;
1985
2223
  sharing_groups_deny?: string[] | null | undefined;
1986
- } | {
1987
- DATA_TYPE: "s3_collection_policies#1.0.0";
1988
2224
  } | undefined;
1989
2225
  public: boolean;
1990
2226
  root_path?: string | undefined;
1991
- sharing_restrict_paths?: Record<string, unknown> | {
1992
- DATA_TYPE: "path_restrictions#1.0.0";
1993
- none?: string[] | undefined;
1994
- read?: string[] | undefined;
1995
- read_write?: string[] | undefined;
1996
- } | null | undefined;
2227
+ sharing_restrict_paths?: unknown;
1997
2228
  storage_gateway_id?: string | undefined;
1998
2229
  tlsftp_url?: string | undefined;
1999
2230
  user_credential_id?: string | undefined;
@@ -2027,6 +2258,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2027
2258
  mapped_collection_id?: string | undefined;
2028
2259
  organization?: string | undefined;
2029
2260
  policies?: {
2261
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2262
+ } | {
2030
2263
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2031
2264
  } | {
2032
2265
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2034,6 +2267,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2034
2267
  DATA_TYPE: "box_collection_policies#1.0.0";
2035
2268
  } | {
2036
2269
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2270
+ } | {
2271
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2037
2272
  } | {
2038
2273
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2039
2274
  project?: string | undefined;
@@ -2055,17 +2290,10 @@ export declare function getClient(configuration: GCSConfiguration): {
2055
2290
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2056
2291
  sharing_groups_allow?: string[] | null | undefined;
2057
2292
  sharing_groups_deny?: string[] | null | undefined;
2058
- } | {
2059
- DATA_TYPE: "s3_collection_policies#1.0.0";
2060
2293
  } | undefined;
2061
2294
  public: boolean;
2062
2295
  root_path?: string | undefined;
2063
- sharing_restrict_paths?: Record<string, unknown> | {
2064
- DATA_TYPE: "path_restrictions#1.0.0";
2065
- none?: string[] | undefined;
2066
- read?: string[] | undefined;
2067
- read_write?: string[] | undefined;
2068
- } | null | undefined;
2296
+ sharing_restrict_paths?: unknown;
2069
2297
  sharing_users_allow?: string[] | null | undefined;
2070
2298
  sharing_users_deny?: string[] | null | undefined;
2071
2299
  storage_gateway_id?: string | undefined;
@@ -2112,6 +2340,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2112
2340
  mapped_collection_id?: string | undefined;
2113
2341
  organization?: string | undefined;
2114
2342
  policies?: {
2343
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2344
+ } | {
2115
2345
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2116
2346
  } | {
2117
2347
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2119,6 +2349,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2119
2349
  DATA_TYPE: "box_collection_policies#1.0.0";
2120
2350
  } | {
2121
2351
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2352
+ } | {
2353
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2122
2354
  } | {
2123
2355
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2124
2356
  project?: string | undefined;
@@ -2140,17 +2372,10 @@ export declare function getClient(configuration: GCSConfiguration): {
2140
2372
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2141
2373
  sharing_groups_allow?: string[] | null | undefined;
2142
2374
  sharing_groups_deny?: string[] | null | undefined;
2143
- } | {
2144
- DATA_TYPE: "s3_collection_policies#1.0.0";
2145
2375
  } | undefined;
2146
2376
  public: boolean;
2147
2377
  root_path?: string | undefined;
2148
- sharing_restrict_paths?: Record<string, unknown> | {
2149
- DATA_TYPE: "path_restrictions#1.0.0";
2150
- none?: string[] | undefined;
2151
- read?: string[] | undefined;
2152
- read_write?: string[] | undefined;
2153
- } | null | undefined;
2378
+ sharing_restrict_paths?: unknown;
2154
2379
  sharing_users_allow?: string[] | null | undefined;
2155
2380
  sharing_users_deny?: string[] | null | undefined;
2156
2381
  storage_gateway_id?: string | undefined;
@@ -2198,6 +2423,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2198
2423
  mapped_collection_id?: string | undefined;
2199
2424
  organization?: string | undefined;
2200
2425
  policies?: {
2426
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2427
+ } | {
2201
2428
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2202
2429
  } | {
2203
2430
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2205,6 +2432,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2205
2432
  DATA_TYPE: "box_collection_policies#1.0.0";
2206
2433
  } | {
2207
2434
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2435
+ } | {
2436
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2208
2437
  } | {
2209
2438
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2210
2439
  project?: string | undefined;
@@ -2226,18 +2455,11 @@ export declare function getClient(configuration: GCSConfiguration): {
2226
2455
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2227
2456
  sharing_groups_allow?: string[] | null | undefined;
2228
2457
  sharing_groups_deny?: string[] | null | undefined;
2229
- } | {
2230
- DATA_TYPE: "s3_collection_policies#1.0.0";
2231
2458
  } | undefined;
2232
2459
  public: boolean;
2233
2460
  require_mfa?: boolean | undefined;
2234
2461
  root_path?: string | undefined;
2235
- sharing_restrict_paths?: Record<string, unknown> | {
2236
- DATA_TYPE: "path_restrictions#1.0.0";
2237
- none?: string[] | undefined;
2238
- read?: string[] | undefined;
2239
- read_write?: string[] | undefined;
2240
- } | null | undefined;
2462
+ sharing_restrict_paths?: unknown;
2241
2463
  sharing_users_allow?: string[] | null | undefined;
2242
2464
  sharing_users_deny?: string[] | null | undefined;
2243
2465
  storage_gateway_id?: string | undefined;
@@ -2286,6 +2508,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2286
2508
  mapped_collection_id?: string | undefined;
2287
2509
  organization?: string | undefined;
2288
2510
  policies?: {
2511
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2512
+ } | {
2289
2513
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2290
2514
  } | {
2291
2515
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2293,6 +2517,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2293
2517
  DATA_TYPE: "box_collection_policies#1.0.0";
2294
2518
  } | {
2295
2519
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2520
+ } | {
2521
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2296
2522
  } | {
2297
2523
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2298
2524
  project?: string | undefined;
@@ -2314,18 +2540,11 @@ export declare function getClient(configuration: GCSConfiguration): {
2314
2540
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2315
2541
  sharing_groups_allow?: string[] | null | undefined;
2316
2542
  sharing_groups_deny?: string[] | null | undefined;
2317
- } | {
2318
- DATA_TYPE: "s3_collection_policies#1.0.0";
2319
2543
  } | undefined;
2320
2544
  public: boolean;
2321
2545
  require_mfa?: boolean | undefined;
2322
2546
  root_path?: string | undefined;
2323
- sharing_restrict_paths?: Record<string, unknown> | {
2324
- DATA_TYPE: "path_restrictions#1.0.0";
2325
- none?: string[] | undefined;
2326
- read?: string[] | undefined;
2327
- read_write?: string[] | undefined;
2328
- } | null | undefined;
2547
+ sharing_restrict_paths?: unknown;
2329
2548
  sharing_users_allow?: string[] | null | undefined;
2330
2549
  sharing_users_deny?: string[] | null | undefined;
2331
2550
  storage_gateway_id?: string | undefined;
@@ -2375,6 +2594,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2375
2594
  mapped_collection_id?: string | undefined;
2376
2595
  organization?: string | undefined;
2377
2596
  policies?: {
2597
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2598
+ } | {
2378
2599
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2379
2600
  } | {
2380
2601
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2382,6 +2603,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2382
2603
  DATA_TYPE: "box_collection_policies#1.0.0";
2383
2604
  } | {
2384
2605
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2606
+ } | {
2607
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2385
2608
  } | {
2386
2609
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2387
2610
  project?: string | undefined;
@@ -2403,18 +2626,11 @@ export declare function getClient(configuration: GCSConfiguration): {
2403
2626
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2404
2627
  sharing_groups_allow?: string[] | null | undefined;
2405
2628
  sharing_groups_deny?: string[] | null | undefined;
2406
- } | {
2407
- DATA_TYPE: "s3_collection_policies#1.0.0";
2408
2629
  } | undefined;
2409
2630
  public: boolean;
2410
2631
  require_mfa?: boolean | undefined;
2411
2632
  root_path?: string | undefined;
2412
- sharing_restrict_paths?: Record<string, unknown> | {
2413
- DATA_TYPE: "path_restrictions#1.0.0";
2414
- none?: string[] | undefined;
2415
- read?: string[] | undefined;
2416
- read_write?: string[] | undefined;
2417
- } | null | undefined;
2633
+ sharing_restrict_paths?: unknown;
2418
2634
  sharing_users_allow?: string[] | null | undefined;
2419
2635
  sharing_users_deny?: string[] | null | undefined;
2420
2636
  storage_gateway_id?: string | undefined;
@@ -2464,6 +2680,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2464
2680
  mapped_collection_id?: string | undefined;
2465
2681
  organization?: string | undefined;
2466
2682
  policies?: {
2683
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2684
+ } | {
2467
2685
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2468
2686
  } | {
2469
2687
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2471,6 +2689,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2471
2689
  DATA_TYPE: "box_collection_policies#1.0.0";
2472
2690
  } | {
2473
2691
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2692
+ } | {
2693
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2474
2694
  } | {
2475
2695
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2476
2696
  project?: string | undefined;
@@ -2492,18 +2712,11 @@ export declare function getClient(configuration: GCSConfiguration): {
2492
2712
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2493
2713
  sharing_groups_allow?: string[] | null | undefined;
2494
2714
  sharing_groups_deny?: string[] | null | undefined;
2495
- } | {
2496
- DATA_TYPE: "s3_collection_policies#1.0.0";
2497
2715
  } | undefined;
2498
2716
  public: boolean;
2499
2717
  require_mfa?: boolean | undefined;
2500
2718
  root_path?: string | undefined;
2501
- sharing_restrict_paths?: Record<string, unknown> | {
2502
- DATA_TYPE: "path_restrictions#1.0.0";
2503
- none?: string[] | undefined;
2504
- read?: string[] | undefined;
2505
- read_write?: string[] | undefined;
2506
- } | null | undefined;
2719
+ sharing_restrict_paths?: unknown;
2507
2720
  sharing_users_allow?: string[] | null | undefined;
2508
2721
  sharing_users_deny?: string[] | null | undefined;
2509
2722
  storage_gateway_id?: string | undefined;
@@ -2554,6 +2767,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2554
2767
  mapped_collection_id?: string | undefined;
2555
2768
  organization?: string | undefined;
2556
2769
  policies?: {
2770
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2771
+ } | {
2557
2772
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2558
2773
  } | {
2559
2774
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2561,6 +2776,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2561
2776
  DATA_TYPE: "box_collection_policies#1.0.0";
2562
2777
  } | {
2563
2778
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2779
+ } | {
2780
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2564
2781
  } | {
2565
2782
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2566
2783
  project?: string | undefined;
@@ -2582,18 +2799,11 @@ export declare function getClient(configuration: GCSConfiguration): {
2582
2799
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2583
2800
  sharing_groups_allow?: string[] | null | undefined;
2584
2801
  sharing_groups_deny?: string[] | null | undefined;
2585
- } | {
2586
- DATA_TYPE: "s3_collection_policies#1.0.0";
2587
2802
  } | undefined;
2588
2803
  public: boolean;
2589
2804
  require_mfa?: boolean | undefined;
2590
2805
  root_path?: string | undefined;
2591
- sharing_restrict_paths?: Record<string, unknown> | {
2592
- DATA_TYPE: "path_restrictions#1.0.0";
2593
- none?: string[] | undefined;
2594
- read?: string[] | undefined;
2595
- read_write?: string[] | undefined;
2596
- } | null | undefined;
2806
+ sharing_restrict_paths?: unknown;
2597
2807
  sharing_users_allow?: string[] | null | undefined;
2598
2808
  sharing_users_deny?: string[] | null | undefined;
2599
2809
  storage_gateway_id?: string | undefined;
@@ -2601,16 +2811,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2601
2811
  user_credential_id?: string | undefined;
2602
2812
  user_message?: string | null | undefined;
2603
2813
  user_message_link?: string | null | undefined;
2604
- };
2605
- } & {
2606
- query?: {
2607
- [key: string]: string | number | (string | number | null | undefined)[] | null | undefined;
2608
- } | undefined;
2609
- headers?: import("../types.js").Headers | undefined;
2610
- }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
2611
- code?: "success" | undefined;
2612
- data?: ({
2613
- DATA_TYPE: "collection#1.0.0";
2814
+ } | {
2815
+ DATA_TYPE: "collection#1.9.0";
2614
2816
  allow_guest_collections?: boolean | undefined;
2615
2817
  authentication_timeout_mins?: number | undefined;
2616
2818
  collection_base_path: string;
@@ -2618,24 +2820,44 @@ export declare function getClient(configuration: GCSConfiguration): {
2618
2820
  connector_id?: string | undefined;
2619
2821
  contact_email?: string | null | undefined;
2620
2822
  contact_info?: string | null | undefined;
2823
+ created_at?: string | null | undefined;
2621
2824
  default_directory?: string | undefined;
2825
+ delete_protected?: boolean | undefined;
2622
2826
  deleted?: boolean | undefined;
2623
2827
  department?: string | null | undefined;
2624
2828
  description?: string | null | undefined;
2829
+ disable_anonymous_writes?: boolean | undefined;
2625
2830
  disable_verify?: boolean | undefined;
2626
2831
  display_name: string;
2832
+ domain?: {
2833
+ DATA_TYPE: "domain#1.0.0";
2834
+ certificate?: string | null | undefined;
2835
+ certificate_chain?: string | null | undefined;
2836
+ certificate_chain_path?: string | null | undefined;
2837
+ certificate_path?: string | null | undefined;
2838
+ domain_name: string;
2839
+ private_key?: string | null | undefined;
2840
+ private_key_path?: string | null | undefined;
2841
+ wildcard: boolean;
2842
+ } | undefined;
2627
2843
  domain_name?: string | undefined;
2844
+ enable_https?: boolean | undefined;
2628
2845
  force_encryption?: boolean | undefined;
2846
+ force_verify?: boolean | undefined;
2847
+ guest_auth_policy_id?: string | null | undefined;
2629
2848
  high_assurance?: boolean | undefined;
2630
2849
  https_url?: string | undefined;
2631
2850
  id?: string | undefined;
2632
2851
  identity_id?: string | undefined;
2633
2852
  info_link?: string | null | undefined;
2634
2853
  keywords?: string[] | undefined;
2854
+ last_access?: string | null | undefined;
2635
2855
  manager_url?: string | undefined;
2636
2856
  mapped_collection_id?: string | undefined;
2637
2857
  organization?: string | undefined;
2638
2858
  policies?: {
2859
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2860
+ } | {
2639
2861
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2640
2862
  } | {
2641
2863
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2643,6 +2865,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2643
2865
  DATA_TYPE: "box_collection_policies#1.0.0";
2644
2866
  } | {
2645
2867
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2868
+ } | {
2869
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2646
2870
  } | {
2647
2871
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2648
2872
  project?: string | undefined;
@@ -2664,22 +2888,28 @@ export declare function getClient(configuration: GCSConfiguration): {
2664
2888
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2665
2889
  sharing_groups_allow?: string[] | null | undefined;
2666
2890
  sharing_groups_deny?: string[] | null | undefined;
2667
- } | {
2668
- DATA_TYPE: "s3_collection_policies#1.0.0";
2669
2891
  } | undefined;
2670
2892
  public: boolean;
2893
+ require_mfa?: boolean | undefined;
2671
2894
  root_path?: string | undefined;
2672
- sharing_restrict_paths?: Record<string, unknown> | {
2673
- DATA_TYPE: "path_restrictions#1.0.0";
2674
- none?: string[] | undefined;
2675
- read?: string[] | undefined;
2676
- read_write?: string[] | undefined;
2677
- } | null | undefined;
2895
+ sharing_restrict_paths?: unknown;
2896
+ sharing_users_allow?: string[] | null | undefined;
2897
+ sharing_users_deny?: string[] | null | undefined;
2678
2898
  storage_gateway_id?: string | undefined;
2679
2899
  tlsftp_url?: string | undefined;
2680
2900
  user_credential_id?: string | undefined;
2681
- } | {
2682
- DATA_TYPE: "collection#1.1.0";
2901
+ user_message?: string | null | undefined;
2902
+ user_message_link?: string | null | undefined;
2903
+ };
2904
+ } & {
2905
+ query?: {
2906
+ [key: string]: string | number | (string | number | null | undefined)[] | null | undefined;
2907
+ } | undefined;
2908
+ headers?: import("../types.js").Headers | undefined;
2909
+ }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
2910
+ code?: "success" | undefined;
2911
+ data?: ({
2912
+ DATA_TYPE: "collection#1.0.0";
2683
2913
  allow_guest_collections?: boolean | undefined;
2684
2914
  authentication_timeout_mins?: number | undefined;
2685
2915
  collection_base_path: string;
@@ -2694,7 +2924,6 @@ export declare function getClient(configuration: GCSConfiguration): {
2694
2924
  disable_verify?: boolean | undefined;
2695
2925
  display_name: string;
2696
2926
  domain_name?: string | undefined;
2697
- enable_https?: boolean | undefined;
2698
2927
  force_encryption?: boolean | undefined;
2699
2928
  high_assurance?: boolean | undefined;
2700
2929
  https_url?: string | undefined;
@@ -2706,6 +2935,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2706
2935
  mapped_collection_id?: string | undefined;
2707
2936
  organization?: string | undefined;
2708
2937
  policies?: {
2938
+ DATA_TYPE: "s3_collection_policies#1.0.0";
2939
+ } | {
2709
2940
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2710
2941
  } | {
2711
2942
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2713,6 +2944,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2713
2944
  DATA_TYPE: "box_collection_policies#1.0.0";
2714
2945
  } | {
2715
2946
  DATA_TYPE: "ceph_collection_policies#1.0.0";
2947
+ } | {
2948
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2716
2949
  } | {
2717
2950
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2718
2951
  project?: string | undefined;
@@ -2734,24 +2967,15 @@ export declare function getClient(configuration: GCSConfiguration): {
2734
2967
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2735
2968
  sharing_groups_allow?: string[] | null | undefined;
2736
2969
  sharing_groups_deny?: string[] | null | undefined;
2737
- } | {
2738
- DATA_TYPE: "s3_collection_policies#1.0.0";
2739
2970
  } | undefined;
2740
2971
  public: boolean;
2741
2972
  root_path?: string | undefined;
2742
- sharing_restrict_paths?: Record<string, unknown> | {
2743
- DATA_TYPE: "path_restrictions#1.0.0";
2744
- none?: string[] | undefined;
2745
- read?: string[] | undefined;
2746
- read_write?: string[] | undefined;
2747
- } | null | undefined;
2973
+ sharing_restrict_paths?: unknown;
2748
2974
  storage_gateway_id?: string | undefined;
2749
2975
  tlsftp_url?: string | undefined;
2750
2976
  user_credential_id?: string | undefined;
2751
- user_message?: string | null | undefined;
2752
- user_message_link?: string | null | undefined;
2753
2977
  } | {
2754
- DATA_TYPE: "collection#1.2.0";
2978
+ DATA_TYPE: "collection#1.1.0";
2755
2979
  allow_guest_collections?: boolean | undefined;
2756
2980
  authentication_timeout_mins?: number | undefined;
2757
2981
  collection_base_path: string;
@@ -2778,6 +3002,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2778
3002
  mapped_collection_id?: string | undefined;
2779
3003
  organization?: string | undefined;
2780
3004
  policies?: {
3005
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3006
+ } | {
2781
3007
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2782
3008
  } | {
2783
3009
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2785,6 +3011,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2785
3011
  DATA_TYPE: "box_collection_policies#1.0.0";
2786
3012
  } | {
2787
3013
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3014
+ } | {
3015
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2788
3016
  } | {
2789
3017
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2790
3018
  project?: string | undefined;
@@ -2806,26 +3034,17 @@ export declare function getClient(configuration: GCSConfiguration): {
2806
3034
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2807
3035
  sharing_groups_allow?: string[] | null | undefined;
2808
3036
  sharing_groups_deny?: string[] | null | undefined;
2809
- } | {
2810
- DATA_TYPE: "s3_collection_policies#1.0.0";
2811
3037
  } | undefined;
2812
3038
  public: boolean;
2813
3039
  root_path?: string | undefined;
2814
- sharing_restrict_paths?: Record<string, unknown> | {
2815
- DATA_TYPE: "path_restrictions#1.0.0";
2816
- none?: string[] | undefined;
2817
- read?: string[] | undefined;
2818
- read_write?: string[] | undefined;
2819
- } | null | undefined;
2820
- sharing_users_allow?: string[] | null | undefined;
2821
- sharing_users_deny?: string[] | null | undefined;
3040
+ sharing_restrict_paths?: unknown;
2822
3041
  storage_gateway_id?: string | undefined;
2823
3042
  tlsftp_url?: string | undefined;
2824
3043
  user_credential_id?: string | undefined;
2825
3044
  user_message?: string | null | undefined;
2826
3045
  user_message_link?: string | null | undefined;
2827
3046
  } | {
2828
- DATA_TYPE: "collection#1.3.0";
3047
+ DATA_TYPE: "collection#1.2.0";
2829
3048
  allow_guest_collections?: boolean | undefined;
2830
3049
  authentication_timeout_mins?: number | undefined;
2831
3050
  collection_base_path: string;
@@ -2839,17 +3058,6 @@ export declare function getClient(configuration: GCSConfiguration): {
2839
3058
  description?: string | null | undefined;
2840
3059
  disable_verify?: boolean | undefined;
2841
3060
  display_name: string;
2842
- domain?: {
2843
- DATA_TYPE: "domain#1.0.0";
2844
- certificate?: string | null | undefined;
2845
- certificate_chain?: string | null | undefined;
2846
- certificate_chain_path?: string | null | undefined;
2847
- certificate_path?: string | null | undefined;
2848
- domain_name: string;
2849
- private_key?: string | null | undefined;
2850
- private_key_path?: string | null | undefined;
2851
- wildcard: boolean;
2852
- } | undefined;
2853
3061
  domain_name?: string | undefined;
2854
3062
  enable_https?: boolean | undefined;
2855
3063
  force_encryption?: boolean | undefined;
@@ -2863,6 +3071,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2863
3071
  mapped_collection_id?: string | undefined;
2864
3072
  organization?: string | undefined;
2865
3073
  policies?: {
3074
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3075
+ } | {
2866
3076
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2867
3077
  } | {
2868
3078
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2870,6 +3080,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2870
3080
  DATA_TYPE: "box_collection_policies#1.0.0";
2871
3081
  } | {
2872
3082
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3083
+ } | {
3084
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2873
3085
  } | {
2874
3086
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2875
3087
  project?: string | undefined;
@@ -2891,17 +3103,10 @@ export declare function getClient(configuration: GCSConfiguration): {
2891
3103
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2892
3104
  sharing_groups_allow?: string[] | null | undefined;
2893
3105
  sharing_groups_deny?: string[] | null | undefined;
2894
- } | {
2895
- DATA_TYPE: "s3_collection_policies#1.0.0";
2896
3106
  } | undefined;
2897
3107
  public: boolean;
2898
3108
  root_path?: string | undefined;
2899
- sharing_restrict_paths?: Record<string, unknown> | {
2900
- DATA_TYPE: "path_restrictions#1.0.0";
2901
- none?: string[] | undefined;
2902
- read?: string[] | undefined;
2903
- read_write?: string[] | undefined;
2904
- } | null | undefined;
3109
+ sharing_restrict_paths?: unknown;
2905
3110
  sharing_users_allow?: string[] | null | undefined;
2906
3111
  sharing_users_deny?: string[] | null | undefined;
2907
3112
  storage_gateway_id?: string | undefined;
@@ -2910,7 +3115,7 @@ export declare function getClient(configuration: GCSConfiguration): {
2910
3115
  user_message?: string | null | undefined;
2911
3116
  user_message_link?: string | null | undefined;
2912
3117
  } | {
2913
- DATA_TYPE: "collection#1.4.0";
3118
+ DATA_TYPE: "collection#1.3.0";
2914
3119
  allow_guest_collections?: boolean | undefined;
2915
3120
  authentication_timeout_mins?: number | undefined;
2916
3121
  collection_base_path: string;
@@ -2938,7 +3143,6 @@ export declare function getClient(configuration: GCSConfiguration): {
2938
3143
  domain_name?: string | undefined;
2939
3144
  enable_https?: boolean | undefined;
2940
3145
  force_encryption?: boolean | undefined;
2941
- force_verify?: boolean | undefined;
2942
3146
  high_assurance?: boolean | undefined;
2943
3147
  https_url?: string | undefined;
2944
3148
  id?: string | undefined;
@@ -2949,6 +3153,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2949
3153
  mapped_collection_id?: string | undefined;
2950
3154
  organization?: string | undefined;
2951
3155
  policies?: {
3156
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3157
+ } | {
2952
3158
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
2953
3159
  } | {
2954
3160
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -2956,6 +3162,8 @@ export declare function getClient(configuration: GCSConfiguration): {
2956
3162
  DATA_TYPE: "box_collection_policies#1.0.0";
2957
3163
  } | {
2958
3164
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3165
+ } | {
3166
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
2959
3167
  } | {
2960
3168
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
2961
3169
  project?: string | undefined;
@@ -2977,18 +3185,10 @@ export declare function getClient(configuration: GCSConfiguration): {
2977
3185
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
2978
3186
  sharing_groups_allow?: string[] | null | undefined;
2979
3187
  sharing_groups_deny?: string[] | null | undefined;
2980
- } | {
2981
- DATA_TYPE: "s3_collection_policies#1.0.0";
2982
3188
  } | undefined;
2983
3189
  public: boolean;
2984
- require_mfa?: boolean | undefined;
2985
3190
  root_path?: string | undefined;
2986
- sharing_restrict_paths?: Record<string, unknown> | {
2987
- DATA_TYPE: "path_restrictions#1.0.0";
2988
- none?: string[] | undefined;
2989
- read?: string[] | undefined;
2990
- read_write?: string[] | undefined;
2991
- } | null | undefined;
3191
+ sharing_restrict_paths?: unknown;
2992
3192
  sharing_users_allow?: string[] | null | undefined;
2993
3193
  sharing_users_deny?: string[] | null | undefined;
2994
3194
  storage_gateway_id?: string | undefined;
@@ -2997,7 +3197,7 @@ export declare function getClient(configuration: GCSConfiguration): {
2997
3197
  user_message?: string | null | undefined;
2998
3198
  user_message_link?: string | null | undefined;
2999
3199
  } | {
3000
- DATA_TYPE: "collection#1.5.0";
3200
+ DATA_TYPE: "collection#1.4.0";
3001
3201
  allow_guest_collections?: boolean | undefined;
3002
3202
  authentication_timeout_mins?: number | undefined;
3003
3203
  collection_base_path: string;
@@ -3009,7 +3209,6 @@ export declare function getClient(configuration: GCSConfiguration): {
3009
3209
  deleted?: boolean | undefined;
3010
3210
  department?: string | null | undefined;
3011
3211
  description?: string | null | undefined;
3012
- disable_anonymous_writes?: boolean | undefined;
3013
3212
  disable_verify?: boolean | undefined;
3014
3213
  display_name: string;
3015
3214
  domain?: {
@@ -3037,6 +3236,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3037
3236
  mapped_collection_id?: string | undefined;
3038
3237
  organization?: string | undefined;
3039
3238
  policies?: {
3239
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3240
+ } | {
3040
3241
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3041
3242
  } | {
3042
3243
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3044,6 +3245,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3044
3245
  DATA_TYPE: "box_collection_policies#1.0.0";
3045
3246
  } | {
3046
3247
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3248
+ } | {
3249
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3047
3250
  } | {
3048
3251
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3049
3252
  project?: string | undefined;
@@ -3065,18 +3268,11 @@ export declare function getClient(configuration: GCSConfiguration): {
3065
3268
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3066
3269
  sharing_groups_allow?: string[] | null | undefined;
3067
3270
  sharing_groups_deny?: string[] | null | undefined;
3068
- } | {
3069
- DATA_TYPE: "s3_collection_policies#1.0.0";
3070
3271
  } | undefined;
3071
3272
  public: boolean;
3072
3273
  require_mfa?: boolean | undefined;
3073
3274
  root_path?: string | undefined;
3074
- sharing_restrict_paths?: Record<string, unknown> | {
3075
- DATA_TYPE: "path_restrictions#1.0.0";
3076
- none?: string[] | undefined;
3077
- read?: string[] | undefined;
3078
- read_write?: string[] | undefined;
3079
- } | null | undefined;
3275
+ sharing_restrict_paths?: unknown;
3080
3276
  sharing_users_allow?: string[] | null | undefined;
3081
3277
  sharing_users_deny?: string[] | null | undefined;
3082
3278
  storage_gateway_id?: string | undefined;
@@ -3085,7 +3281,7 @@ export declare function getClient(configuration: GCSConfiguration): {
3085
3281
  user_message?: string | null | undefined;
3086
3282
  user_message_link?: string | null | undefined;
3087
3283
  } | {
3088
- DATA_TYPE: "collection#1.6.0";
3284
+ DATA_TYPE: "collection#1.5.0";
3089
3285
  allow_guest_collections?: boolean | undefined;
3090
3286
  authentication_timeout_mins?: number | undefined;
3091
3287
  collection_base_path: string;
@@ -3115,7 +3311,6 @@ export declare function getClient(configuration: GCSConfiguration): {
3115
3311
  enable_https?: boolean | undefined;
3116
3312
  force_encryption?: boolean | undefined;
3117
3313
  force_verify?: boolean | undefined;
3118
- guest_auth_policy_id?: string | null | undefined;
3119
3314
  high_assurance?: boolean | undefined;
3120
3315
  https_url?: string | undefined;
3121
3316
  id?: string | undefined;
@@ -3126,6 +3321,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3126
3321
  mapped_collection_id?: string | undefined;
3127
3322
  organization?: string | undefined;
3128
3323
  policies?: {
3324
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3325
+ } | {
3129
3326
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3130
3327
  } | {
3131
3328
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3133,6 +3330,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3133
3330
  DATA_TYPE: "box_collection_policies#1.0.0";
3134
3331
  } | {
3135
3332
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3333
+ } | {
3334
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3136
3335
  } | {
3137
3336
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3138
3337
  project?: string | undefined;
@@ -3154,18 +3353,11 @@ export declare function getClient(configuration: GCSConfiguration): {
3154
3353
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3155
3354
  sharing_groups_allow?: string[] | null | undefined;
3156
3355
  sharing_groups_deny?: string[] | null | undefined;
3157
- } | {
3158
- DATA_TYPE: "s3_collection_policies#1.0.0";
3159
3356
  } | undefined;
3160
3357
  public: boolean;
3161
3358
  require_mfa?: boolean | undefined;
3162
3359
  root_path?: string | undefined;
3163
- sharing_restrict_paths?: Record<string, unknown> | {
3164
- DATA_TYPE: "path_restrictions#1.0.0";
3165
- none?: string[] | undefined;
3166
- read?: string[] | undefined;
3167
- read_write?: string[] | undefined;
3168
- } | null | undefined;
3360
+ sharing_restrict_paths?: unknown;
3169
3361
  sharing_users_allow?: string[] | null | undefined;
3170
3362
  sharing_users_deny?: string[] | null | undefined;
3171
3363
  storage_gateway_id?: string | undefined;
@@ -3174,7 +3366,7 @@ export declare function getClient(configuration: GCSConfiguration): {
3174
3366
  user_message?: string | null | undefined;
3175
3367
  user_message_link?: string | null | undefined;
3176
3368
  } | {
3177
- DATA_TYPE: "collection#1.7.0";
3369
+ DATA_TYPE: "collection#1.6.0";
3178
3370
  allow_guest_collections?: boolean | undefined;
3179
3371
  authentication_timeout_mins?: number | undefined;
3180
3372
  collection_base_path: string;
@@ -3215,13 +3407,17 @@ export declare function getClient(configuration: GCSConfiguration): {
3215
3407
  mapped_collection_id?: string | undefined;
3216
3408
  organization?: string | undefined;
3217
3409
  policies?: {
3218
- DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3410
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3411
+ } | {
3412
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3219
3413
  } | {
3220
3414
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
3221
3415
  } | {
3222
3416
  DATA_TYPE: "box_collection_policies#1.0.0";
3223
3417
  } | {
3224
3418
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3419
+ } | {
3420
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3225
3421
  } | {
3226
3422
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3227
3423
  project?: string | undefined;
@@ -3243,18 +3439,97 @@ export declare function getClient(configuration: GCSConfiguration): {
3243
3439
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3244
3440
  sharing_groups_allow?: string[] | null | undefined;
3245
3441
  sharing_groups_deny?: string[] | null | undefined;
3246
- } | {
3442
+ } | undefined;
3443
+ public: boolean;
3444
+ require_mfa?: boolean | undefined;
3445
+ root_path?: string | undefined;
3446
+ sharing_restrict_paths?: unknown;
3447
+ sharing_users_allow?: string[] | null | undefined;
3448
+ sharing_users_deny?: string[] | null | undefined;
3449
+ storage_gateway_id?: string | undefined;
3450
+ tlsftp_url?: string | undefined;
3451
+ user_credential_id?: string | undefined;
3452
+ user_message?: string | null | undefined;
3453
+ user_message_link?: string | null | undefined;
3454
+ } | {
3455
+ DATA_TYPE: "collection#1.7.0";
3456
+ allow_guest_collections?: boolean | undefined;
3457
+ authentication_timeout_mins?: number | undefined;
3458
+ collection_base_path: string;
3459
+ collection_type: "mapped" | "guest";
3460
+ connector_id?: string | undefined;
3461
+ contact_email?: string | null | undefined;
3462
+ contact_info?: string | null | undefined;
3463
+ default_directory?: string | undefined;
3464
+ deleted?: boolean | undefined;
3465
+ department?: string | null | undefined;
3466
+ description?: string | null | undefined;
3467
+ disable_anonymous_writes?: boolean | undefined;
3468
+ disable_verify?: boolean | undefined;
3469
+ display_name: string;
3470
+ domain?: {
3471
+ DATA_TYPE: "domain#1.0.0";
3472
+ certificate?: string | null | undefined;
3473
+ certificate_chain?: string | null | undefined;
3474
+ certificate_chain_path?: string | null | undefined;
3475
+ certificate_path?: string | null | undefined;
3476
+ domain_name: string;
3477
+ private_key?: string | null | undefined;
3478
+ private_key_path?: string | null | undefined;
3479
+ wildcard: boolean;
3480
+ } | undefined;
3481
+ domain_name?: string | undefined;
3482
+ enable_https?: boolean | undefined;
3483
+ force_encryption?: boolean | undefined;
3484
+ force_verify?: boolean | undefined;
3485
+ guest_auth_policy_id?: string | null | undefined;
3486
+ high_assurance?: boolean | undefined;
3487
+ https_url?: string | undefined;
3488
+ id?: string | undefined;
3489
+ identity_id?: string | undefined;
3490
+ info_link?: string | null | undefined;
3491
+ keywords?: string[] | undefined;
3492
+ manager_url?: string | undefined;
3493
+ mapped_collection_id?: string | undefined;
3494
+ organization?: string | undefined;
3495
+ policies?: {
3247
3496
  DATA_TYPE: "s3_collection_policies#1.0.0";
3497
+ } | {
3498
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3499
+ } | {
3500
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
3501
+ } | {
3502
+ DATA_TYPE: "box_collection_policies#1.0.0";
3503
+ } | {
3504
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
3505
+ } | {
3506
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3507
+ } | {
3508
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3509
+ project?: string | undefined;
3510
+ } | {
3511
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
3512
+ } | {
3513
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
3514
+ } | {
3515
+ DATA_TYPE: "irods_collection_policies#1.0.0";
3516
+ } | {
3517
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
3518
+ } | {
3519
+ DATA_TYPE: "posix_collection_policies#1.0.0";
3520
+ } | {
3521
+ DATA_TYPE: "posix_collection_policies#1.1.0";
3522
+ sharing_groups_allow?: string[] | null | undefined;
3523
+ sharing_groups_deny?: string[] | null | undefined;
3524
+ } | {
3525
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3526
+ sharing_groups_allow?: string[] | null | undefined;
3527
+ sharing_groups_deny?: string[] | null | undefined;
3248
3528
  } | undefined;
3249
3529
  public: boolean;
3250
3530
  require_mfa?: boolean | undefined;
3251
3531
  root_path?: string | undefined;
3252
- sharing_restrict_paths?: Record<string, unknown> | {
3253
- DATA_TYPE: "path_restrictions#1.0.0";
3254
- none?: string[] | undefined;
3255
- read?: string[] | undefined;
3256
- read_write?: string[] | undefined;
3257
- } | null | undefined;
3532
+ sharing_restrict_paths?: unknown;
3258
3533
  sharing_users_allow?: string[] | null | undefined;
3259
3534
  sharing_users_deny?: string[] | null | undefined;
3260
3535
  storage_gateway_id?: string | undefined;
@@ -3305,6 +3580,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3305
3580
  mapped_collection_id?: string | undefined;
3306
3581
  organization?: string | undefined;
3307
3582
  policies?: {
3583
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3584
+ } | {
3308
3585
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3309
3586
  } | {
3310
3587
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3312,6 +3589,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3312
3589
  DATA_TYPE: "box_collection_policies#1.0.0";
3313
3590
  } | {
3314
3591
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3592
+ } | {
3593
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3315
3594
  } | {
3316
3595
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3317
3596
  project?: string | undefined;
@@ -3333,18 +3612,100 @@ export declare function getClient(configuration: GCSConfiguration): {
3333
3612
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3334
3613
  sharing_groups_allow?: string[] | null | undefined;
3335
3614
  sharing_groups_deny?: string[] | null | undefined;
3336
- } | {
3615
+ } | undefined;
3616
+ public: boolean;
3617
+ require_mfa?: boolean | undefined;
3618
+ root_path?: string | undefined;
3619
+ sharing_restrict_paths?: unknown;
3620
+ sharing_users_allow?: string[] | null | undefined;
3621
+ sharing_users_deny?: string[] | null | undefined;
3622
+ storage_gateway_id?: string | undefined;
3623
+ tlsftp_url?: string | undefined;
3624
+ user_credential_id?: string | undefined;
3625
+ user_message?: string | null | undefined;
3626
+ user_message_link?: string | null | undefined;
3627
+ } | {
3628
+ DATA_TYPE: "collection#1.9.0";
3629
+ allow_guest_collections?: boolean | undefined;
3630
+ authentication_timeout_mins?: number | undefined;
3631
+ collection_base_path: string;
3632
+ collection_type: "mapped" | "guest";
3633
+ connector_id?: string | undefined;
3634
+ contact_email?: string | null | undefined;
3635
+ contact_info?: string | null | undefined;
3636
+ created_at?: string | null | undefined;
3637
+ default_directory?: string | undefined;
3638
+ delete_protected?: boolean | undefined;
3639
+ deleted?: boolean | undefined;
3640
+ department?: string | null | undefined;
3641
+ description?: string | null | undefined;
3642
+ disable_anonymous_writes?: boolean | undefined;
3643
+ disable_verify?: boolean | undefined;
3644
+ display_name: string;
3645
+ domain?: {
3646
+ DATA_TYPE: "domain#1.0.0";
3647
+ certificate?: string | null | undefined;
3648
+ certificate_chain?: string | null | undefined;
3649
+ certificate_chain_path?: string | null | undefined;
3650
+ certificate_path?: string | null | undefined;
3651
+ domain_name: string;
3652
+ private_key?: string | null | undefined;
3653
+ private_key_path?: string | null | undefined;
3654
+ wildcard: boolean;
3655
+ } | undefined;
3656
+ domain_name?: string | undefined;
3657
+ enable_https?: boolean | undefined;
3658
+ force_encryption?: boolean | undefined;
3659
+ force_verify?: boolean | undefined;
3660
+ guest_auth_policy_id?: string | null | undefined;
3661
+ high_assurance?: boolean | undefined;
3662
+ https_url?: string | undefined;
3663
+ id?: string | undefined;
3664
+ identity_id?: string | undefined;
3665
+ info_link?: string | null | undefined;
3666
+ keywords?: string[] | undefined;
3667
+ last_access?: string | null | undefined;
3668
+ manager_url?: string | undefined;
3669
+ mapped_collection_id?: string | undefined;
3670
+ organization?: string | undefined;
3671
+ policies?: {
3337
3672
  DATA_TYPE: "s3_collection_policies#1.0.0";
3673
+ } | {
3674
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3675
+ } | {
3676
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
3677
+ } | {
3678
+ DATA_TYPE: "box_collection_policies#1.0.0";
3679
+ } | {
3680
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
3681
+ } | {
3682
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3683
+ } | {
3684
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3685
+ project?: string | undefined;
3686
+ } | {
3687
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
3688
+ } | {
3689
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
3690
+ } | {
3691
+ DATA_TYPE: "irods_collection_policies#1.0.0";
3692
+ } | {
3693
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
3694
+ } | {
3695
+ DATA_TYPE: "posix_collection_policies#1.0.0";
3696
+ } | {
3697
+ DATA_TYPE: "posix_collection_policies#1.1.0";
3698
+ sharing_groups_allow?: string[] | null | undefined;
3699
+ sharing_groups_deny?: string[] | null | undefined;
3700
+ } | {
3701
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3702
+ sharing_groups_allow?: string[] | null | undefined;
3703
+ sharing_groups_deny?: string[] | null | undefined;
3338
3704
  } | undefined;
3339
3705
  public: boolean;
3340
3706
  require_mfa?: boolean | undefined;
3341
3707
  root_path?: string | undefined;
3342
- sharing_restrict_paths?: Record<string, unknown> | {
3343
- DATA_TYPE: "path_restrictions#1.0.0";
3344
- none?: string[] | undefined;
3345
- read?: string[] | undefined;
3346
- read_write?: string[] | undefined;
3347
- } | null | undefined;
3708
+ sharing_restrict_paths?: unknown;
3348
3709
  sharing_users_allow?: string[] | null | undefined;
3349
3710
  sharing_users_deny?: string[] | null | undefined;
3350
3711
  storage_gateway_id?: string | undefined;
@@ -3356,8 +3717,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3356
3717
  } & {
3357
3718
  DATA_TYPE: "result#1.0.0";
3358
3719
  code: string;
3359
- data?: Record<string, never>[] | undefined;
3360
- detail?: Record<string, never> | undefined;
3720
+ data?: Record<string, unknown>[] | undefined;
3721
+ detail?: unknown;
3361
3722
  has_next_page?: boolean | undefined;
3362
3723
  http_response_code: number;
3363
3724
  marker?: string | null | undefined;
@@ -3374,8 +3735,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3374
3735
  }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
3375
3736
  DATA_TYPE: "result#1.0.0";
3376
3737
  code: string;
3377
- data?: Record<string, never>[] | undefined;
3378
- detail?: Record<string, never> | undefined;
3738
+ data?: Record<string, unknown>[] | undefined;
3739
+ detail?: unknown;
3379
3740
  has_next_page?: boolean | undefined;
3380
3741
  http_response_code: number;
3381
3742
  marker?: string | null | undefined;
@@ -3409,6 +3770,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3409
3770
  mapped_collection_id?: string | undefined;
3410
3771
  organization?: string | undefined;
3411
3772
  policies?: {
3773
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3774
+ } | {
3412
3775
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3413
3776
  } | {
3414
3777
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3416,6 +3779,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3416
3779
  DATA_TYPE: "box_collection_policies#1.0.0";
3417
3780
  } | {
3418
3781
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3782
+ } | {
3783
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3419
3784
  } | {
3420
3785
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3421
3786
  project?: string | undefined;
@@ -3437,17 +3802,10 @@ export declare function getClient(configuration: GCSConfiguration): {
3437
3802
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3438
3803
  sharing_groups_allow?: string[] | null | undefined;
3439
3804
  sharing_groups_deny?: string[] | null | undefined;
3440
- } | {
3441
- DATA_TYPE: "s3_collection_policies#1.0.0";
3442
3805
  } | undefined;
3443
3806
  public: boolean;
3444
3807
  root_path?: string | undefined;
3445
- sharing_restrict_paths?: Record<string, unknown> | {
3446
- DATA_TYPE: "path_restrictions#1.0.0";
3447
- none?: string[] | undefined;
3448
- read?: string[] | undefined;
3449
- read_write?: string[] | undefined;
3450
- } | null | undefined;
3808
+ sharing_restrict_paths?: unknown;
3451
3809
  storage_gateway_id?: string | undefined;
3452
3810
  tlsftp_url?: string | undefined;
3453
3811
  user_credential_id?: string | undefined;
@@ -3479,6 +3837,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3479
3837
  mapped_collection_id?: string | undefined;
3480
3838
  organization?: string | undefined;
3481
3839
  policies?: {
3840
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3841
+ } | {
3482
3842
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3483
3843
  } | {
3484
3844
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3486,6 +3846,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3486
3846
  DATA_TYPE: "box_collection_policies#1.0.0";
3487
3847
  } | {
3488
3848
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3849
+ } | {
3850
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3489
3851
  } | {
3490
3852
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3491
3853
  project?: string | undefined;
@@ -3507,17 +3869,10 @@ export declare function getClient(configuration: GCSConfiguration): {
3507
3869
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3508
3870
  sharing_groups_allow?: string[] | null | undefined;
3509
3871
  sharing_groups_deny?: string[] | null | undefined;
3510
- } | {
3511
- DATA_TYPE: "s3_collection_policies#1.0.0";
3512
3872
  } | undefined;
3513
3873
  public: boolean;
3514
3874
  root_path?: string | undefined;
3515
- sharing_restrict_paths?: Record<string, unknown> | {
3516
- DATA_TYPE: "path_restrictions#1.0.0";
3517
- none?: string[] | undefined;
3518
- read?: string[] | undefined;
3519
- read_write?: string[] | undefined;
3520
- } | null | undefined;
3875
+ sharing_restrict_paths?: unknown;
3521
3876
  storage_gateway_id?: string | undefined;
3522
3877
  tlsftp_url?: string | undefined;
3523
3878
  user_credential_id?: string | undefined;
@@ -3551,6 +3906,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3551
3906
  mapped_collection_id?: string | undefined;
3552
3907
  organization?: string | undefined;
3553
3908
  policies?: {
3909
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3910
+ } | {
3554
3911
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3555
3912
  } | {
3556
3913
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3558,6 +3915,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3558
3915
  DATA_TYPE: "box_collection_policies#1.0.0";
3559
3916
  } | {
3560
3917
  DATA_TYPE: "ceph_collection_policies#1.0.0";
3918
+ } | {
3919
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3561
3920
  } | {
3562
3921
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3563
3922
  project?: string | undefined;
@@ -3579,17 +3938,10 @@ export declare function getClient(configuration: GCSConfiguration): {
3579
3938
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3580
3939
  sharing_groups_allow?: string[] | null | undefined;
3581
3940
  sharing_groups_deny?: string[] | null | undefined;
3582
- } | {
3583
- DATA_TYPE: "s3_collection_policies#1.0.0";
3584
3941
  } | undefined;
3585
3942
  public: boolean;
3586
3943
  root_path?: string | undefined;
3587
- sharing_restrict_paths?: Record<string, unknown> | {
3588
- DATA_TYPE: "path_restrictions#1.0.0";
3589
- none?: string[] | undefined;
3590
- read?: string[] | undefined;
3591
- read_write?: string[] | undefined;
3592
- } | null | undefined;
3944
+ sharing_restrict_paths?: unknown;
3593
3945
  sharing_users_allow?: string[] | null | undefined;
3594
3946
  sharing_users_deny?: string[] | null | undefined;
3595
3947
  storage_gateway_id?: string | undefined;
@@ -3636,6 +3988,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3636
3988
  mapped_collection_id?: string | undefined;
3637
3989
  organization?: string | undefined;
3638
3990
  policies?: {
3991
+ DATA_TYPE: "s3_collection_policies#1.0.0";
3992
+ } | {
3639
3993
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3640
3994
  } | {
3641
3995
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3643,6 +3997,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3643
3997
  DATA_TYPE: "box_collection_policies#1.0.0";
3644
3998
  } | {
3645
3999
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4000
+ } | {
4001
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3646
4002
  } | {
3647
4003
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3648
4004
  project?: string | undefined;
@@ -3664,17 +4020,10 @@ export declare function getClient(configuration: GCSConfiguration): {
3664
4020
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3665
4021
  sharing_groups_allow?: string[] | null | undefined;
3666
4022
  sharing_groups_deny?: string[] | null | undefined;
3667
- } | {
3668
- DATA_TYPE: "s3_collection_policies#1.0.0";
3669
4023
  } | undefined;
3670
4024
  public: boolean;
3671
4025
  root_path?: string | undefined;
3672
- sharing_restrict_paths?: Record<string, unknown> | {
3673
- DATA_TYPE: "path_restrictions#1.0.0";
3674
- none?: string[] | undefined;
3675
- read?: string[] | undefined;
3676
- read_write?: string[] | undefined;
3677
- } | null | undefined;
4026
+ sharing_restrict_paths?: unknown;
3678
4027
  sharing_users_allow?: string[] | null | undefined;
3679
4028
  sharing_users_deny?: string[] | null | undefined;
3680
4029
  storage_gateway_id?: string | undefined;
@@ -3722,6 +4071,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3722
4071
  mapped_collection_id?: string | undefined;
3723
4072
  organization?: string | undefined;
3724
4073
  policies?: {
4074
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4075
+ } | {
3725
4076
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3726
4077
  } | {
3727
4078
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3729,6 +4080,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3729
4080
  DATA_TYPE: "box_collection_policies#1.0.0";
3730
4081
  } | {
3731
4082
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4083
+ } | {
4084
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3732
4085
  } | {
3733
4086
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3734
4087
  project?: string | undefined;
@@ -3750,18 +4103,11 @@ export declare function getClient(configuration: GCSConfiguration): {
3750
4103
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3751
4104
  sharing_groups_allow?: string[] | null | undefined;
3752
4105
  sharing_groups_deny?: string[] | null | undefined;
3753
- } | {
3754
- DATA_TYPE: "s3_collection_policies#1.0.0";
3755
4106
  } | undefined;
3756
4107
  public: boolean;
3757
4108
  require_mfa?: boolean | undefined;
3758
4109
  root_path?: string | undefined;
3759
- sharing_restrict_paths?: Record<string, unknown> | {
3760
- DATA_TYPE: "path_restrictions#1.0.0";
3761
- none?: string[] | undefined;
3762
- read?: string[] | undefined;
3763
- read_write?: string[] | undefined;
3764
- } | null | undefined;
4110
+ sharing_restrict_paths?: unknown;
3765
4111
  sharing_users_allow?: string[] | null | undefined;
3766
4112
  sharing_users_deny?: string[] | null | undefined;
3767
4113
  storage_gateway_id?: string | undefined;
@@ -3810,6 +4156,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3810
4156
  mapped_collection_id?: string | undefined;
3811
4157
  organization?: string | undefined;
3812
4158
  policies?: {
4159
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4160
+ } | {
3813
4161
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3814
4162
  } | {
3815
4163
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3817,6 +4165,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3817
4165
  DATA_TYPE: "box_collection_policies#1.0.0";
3818
4166
  } | {
3819
4167
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4168
+ } | {
4169
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3820
4170
  } | {
3821
4171
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3822
4172
  project?: string | undefined;
@@ -3838,18 +4188,11 @@ export declare function getClient(configuration: GCSConfiguration): {
3838
4188
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3839
4189
  sharing_groups_allow?: string[] | null | undefined;
3840
4190
  sharing_groups_deny?: string[] | null | undefined;
3841
- } | {
3842
- DATA_TYPE: "s3_collection_policies#1.0.0";
3843
4191
  } | undefined;
3844
4192
  public: boolean;
3845
4193
  require_mfa?: boolean | undefined;
3846
4194
  root_path?: string | undefined;
3847
- sharing_restrict_paths?: Record<string, unknown> | {
3848
- DATA_TYPE: "path_restrictions#1.0.0";
3849
- none?: string[] | undefined;
3850
- read?: string[] | undefined;
3851
- read_write?: string[] | undefined;
3852
- } | null | undefined;
4195
+ sharing_restrict_paths?: unknown;
3853
4196
  sharing_users_allow?: string[] | null | undefined;
3854
4197
  sharing_users_deny?: string[] | null | undefined;
3855
4198
  storage_gateway_id?: string | undefined;
@@ -3899,6 +4242,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3899
4242
  mapped_collection_id?: string | undefined;
3900
4243
  organization?: string | undefined;
3901
4244
  policies?: {
4245
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4246
+ } | {
3902
4247
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3903
4248
  } | {
3904
4249
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3906,6 +4251,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3906
4251
  DATA_TYPE: "box_collection_policies#1.0.0";
3907
4252
  } | {
3908
4253
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4254
+ } | {
4255
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3909
4256
  } | {
3910
4257
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
3911
4258
  project?: string | undefined;
@@ -3927,18 +4274,11 @@ export declare function getClient(configuration: GCSConfiguration): {
3927
4274
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
3928
4275
  sharing_groups_allow?: string[] | null | undefined;
3929
4276
  sharing_groups_deny?: string[] | null | undefined;
3930
- } | {
3931
- DATA_TYPE: "s3_collection_policies#1.0.0";
3932
4277
  } | undefined;
3933
4278
  public: boolean;
3934
4279
  require_mfa?: boolean | undefined;
3935
4280
  root_path?: string | undefined;
3936
- sharing_restrict_paths?: Record<string, unknown> | {
3937
- DATA_TYPE: "path_restrictions#1.0.0";
3938
- none?: string[] | undefined;
3939
- read?: string[] | undefined;
3940
- read_write?: string[] | undefined;
3941
- } | null | undefined;
4281
+ sharing_restrict_paths?: unknown;
3942
4282
  sharing_users_allow?: string[] | null | undefined;
3943
4283
  sharing_users_deny?: string[] | null | undefined;
3944
4284
  storage_gateway_id?: string | undefined;
@@ -3988,6 +4328,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3988
4328
  mapped_collection_id?: string | undefined;
3989
4329
  organization?: string | undefined;
3990
4330
  policies?: {
4331
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4332
+ } | {
3991
4333
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
3992
4334
  } | {
3993
4335
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -3995,6 +4337,8 @@ export declare function getClient(configuration: GCSConfiguration): {
3995
4337
  DATA_TYPE: "box_collection_policies#1.0.0";
3996
4338
  } | {
3997
4339
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4340
+ } | {
4341
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
3998
4342
  } | {
3999
4343
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4000
4344
  project?: string | undefined;
@@ -4016,18 +4360,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4016
4360
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4017
4361
  sharing_groups_allow?: string[] | null | undefined;
4018
4362
  sharing_groups_deny?: string[] | null | undefined;
4019
- } | {
4020
- DATA_TYPE: "s3_collection_policies#1.0.0";
4021
4363
  } | undefined;
4022
4364
  public: boolean;
4023
4365
  require_mfa?: boolean | undefined;
4024
4366
  root_path?: string | undefined;
4025
- sharing_restrict_paths?: Record<string, unknown> | {
4026
- DATA_TYPE: "path_restrictions#1.0.0";
4027
- none?: string[] | undefined;
4028
- read?: string[] | undefined;
4029
- read_write?: string[] | undefined;
4030
- } | null | undefined;
4367
+ sharing_restrict_paths?: unknown;
4031
4368
  sharing_users_allow?: string[] | null | undefined;
4032
4369
  sharing_users_deny?: string[] | null | undefined;
4033
4370
  storage_gateway_id?: string | undefined;
@@ -4078,6 +4415,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4078
4415
  mapped_collection_id?: string | undefined;
4079
4416
  organization?: string | undefined;
4080
4417
  policies?: {
4418
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4419
+ } | {
4081
4420
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4082
4421
  } | {
4083
4422
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4085,6 +4424,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4085
4424
  DATA_TYPE: "box_collection_policies#1.0.0";
4086
4425
  } | {
4087
4426
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4427
+ } | {
4428
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4088
4429
  } | {
4089
4430
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4090
4431
  project?: string | undefined;
@@ -4106,18 +4447,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4106
4447
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4107
4448
  sharing_groups_allow?: string[] | null | undefined;
4108
4449
  sharing_groups_deny?: string[] | null | undefined;
4109
- } | {
4110
- DATA_TYPE: "s3_collection_policies#1.0.0";
4111
4450
  } | undefined;
4112
4451
  public: boolean;
4113
4452
  require_mfa?: boolean | undefined;
4114
4453
  root_path?: string | undefined;
4115
- sharing_restrict_paths?: Record<string, unknown> | {
4116
- DATA_TYPE: "path_restrictions#1.0.0";
4117
- none?: string[] | undefined;
4118
- read?: string[] | undefined;
4119
- read_write?: string[] | undefined;
4120
- } | null | undefined;
4454
+ sharing_restrict_paths?: unknown;
4121
4455
  sharing_users_allow?: string[] | null | undefined;
4122
4456
  sharing_users_deny?: string[] | null | undefined;
4123
4457
  storage_gateway_id?: string | undefined;
@@ -4125,25 +4459,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4125
4459
  user_credential_id?: string | undefined;
4126
4460
  user_message?: string | null | undefined;
4127
4461
  user_message_link?: string | null | undefined;
4128
- };
4129
- } & {
4130
- query?: {
4131
- [key: string]: string | number | (string | number | null | undefined)[] | null | undefined;
4132
- } | undefined;
4133
- headers?: import("../types.js").Headers | undefined;
4134
- }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
4135
- DATA_TYPE: "result#1.0.0";
4136
- code: string;
4137
- data?: Record<string, never>[] | undefined;
4138
- detail?: Record<string, never> | undefined;
4139
- has_next_page?: boolean | undefined;
4140
- http_response_code: number;
4141
- marker?: string | null | undefined;
4142
- message?: string | undefined;
4143
- }>>;
4144
- patch: (collection_id: string, options: ({
4145
- payload: Partial<{
4146
- DATA_TYPE: "collection#1.0.0";
4462
+ } | {
4463
+ DATA_TYPE: "collection#1.9.0";
4147
4464
  allow_guest_collections?: boolean | undefined;
4148
4465
  authentication_timeout_mins?: number | undefined;
4149
4466
  collection_base_path: string;
@@ -4151,24 +4468,44 @@ export declare function getClient(configuration: GCSConfiguration): {
4151
4468
  connector_id?: string | undefined;
4152
4469
  contact_email?: string | null | undefined;
4153
4470
  contact_info?: string | null | undefined;
4471
+ created_at?: string | null | undefined;
4154
4472
  default_directory?: string | undefined;
4473
+ delete_protected?: boolean | undefined;
4155
4474
  deleted?: boolean | undefined;
4156
4475
  department?: string | null | undefined;
4157
4476
  description?: string | null | undefined;
4477
+ disable_anonymous_writes?: boolean | undefined;
4158
4478
  disable_verify?: boolean | undefined;
4159
4479
  display_name: string;
4480
+ domain?: {
4481
+ DATA_TYPE: "domain#1.0.0";
4482
+ certificate?: string | null | undefined;
4483
+ certificate_chain?: string | null | undefined;
4484
+ certificate_chain_path?: string | null | undefined;
4485
+ certificate_path?: string | null | undefined;
4486
+ domain_name: string;
4487
+ private_key?: string | null | undefined;
4488
+ private_key_path?: string | null | undefined;
4489
+ wildcard: boolean;
4490
+ } | undefined;
4160
4491
  domain_name?: string | undefined;
4492
+ enable_https?: boolean | undefined;
4161
4493
  force_encryption?: boolean | undefined;
4494
+ force_verify?: boolean | undefined;
4495
+ guest_auth_policy_id?: string | null | undefined;
4162
4496
  high_assurance?: boolean | undefined;
4163
4497
  https_url?: string | undefined;
4164
4498
  id?: string | undefined;
4165
4499
  identity_id?: string | undefined;
4166
4500
  info_link?: string | null | undefined;
4167
4501
  keywords?: string[] | undefined;
4502
+ last_access?: string | null | undefined;
4168
4503
  manager_url?: string | undefined;
4169
4504
  mapped_collection_id?: string | undefined;
4170
4505
  organization?: string | undefined;
4171
4506
  policies?: {
4507
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4508
+ } | {
4172
4509
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4173
4510
  } | {
4174
4511
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4176,6 +4513,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4176
4513
  DATA_TYPE: "box_collection_policies#1.0.0";
4177
4514
  } | {
4178
4515
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4516
+ } | {
4517
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4179
4518
  } | {
4180
4519
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4181
4520
  project?: string | undefined;
@@ -4197,17 +4536,98 @@ export declare function getClient(configuration: GCSConfiguration): {
4197
4536
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4198
4537
  sharing_groups_allow?: string[] | null | undefined;
4199
4538
  sharing_groups_deny?: string[] | null | undefined;
4200
- } | {
4539
+ } | undefined;
4540
+ public: boolean;
4541
+ require_mfa?: boolean | undefined;
4542
+ root_path?: string | undefined;
4543
+ sharing_restrict_paths?: unknown;
4544
+ sharing_users_allow?: string[] | null | undefined;
4545
+ sharing_users_deny?: string[] | null | undefined;
4546
+ storage_gateway_id?: string | undefined;
4547
+ tlsftp_url?: string | undefined;
4548
+ user_credential_id?: string | undefined;
4549
+ user_message?: string | null | undefined;
4550
+ user_message_link?: string | null | undefined;
4551
+ };
4552
+ } & {
4553
+ query?: {
4554
+ [key: string]: string | number | (string | number | null | undefined)[] | null | undefined;
4555
+ } | undefined;
4556
+ headers?: import("../types.js").Headers | undefined;
4557
+ }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
4558
+ DATA_TYPE: "result#1.0.0";
4559
+ code: string;
4560
+ data?: Record<string, unknown>[] | undefined;
4561
+ detail?: unknown;
4562
+ has_next_page?: boolean | undefined;
4563
+ http_response_code: number;
4564
+ marker?: string | null | undefined;
4565
+ message?: string | undefined;
4566
+ }>>;
4567
+ patch: (collection_id: string, options: ({
4568
+ payload: Partial<{
4569
+ DATA_TYPE: "collection#1.0.0";
4570
+ allow_guest_collections?: boolean | undefined;
4571
+ authentication_timeout_mins?: number | undefined;
4572
+ collection_base_path: string;
4573
+ collection_type: "mapped" | "guest";
4574
+ connector_id?: string | undefined;
4575
+ contact_email?: string | null | undefined;
4576
+ contact_info?: string | null | undefined;
4577
+ default_directory?: string | undefined;
4578
+ deleted?: boolean | undefined;
4579
+ department?: string | null | undefined;
4580
+ description?: string | null | undefined;
4581
+ disable_verify?: boolean | undefined;
4582
+ display_name: string;
4583
+ domain_name?: string | undefined;
4584
+ force_encryption?: boolean | undefined;
4585
+ high_assurance?: boolean | undefined;
4586
+ https_url?: string | undefined;
4587
+ id?: string | undefined;
4588
+ identity_id?: string | undefined;
4589
+ info_link?: string | null | undefined;
4590
+ keywords?: string[] | undefined;
4591
+ manager_url?: string | undefined;
4592
+ mapped_collection_id?: string | undefined;
4593
+ organization?: string | undefined;
4594
+ policies?: {
4201
4595
  DATA_TYPE: "s3_collection_policies#1.0.0";
4596
+ } | {
4597
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4598
+ } | {
4599
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
4600
+ } | {
4601
+ DATA_TYPE: "box_collection_policies#1.0.0";
4602
+ } | {
4603
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
4604
+ } | {
4605
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4606
+ } | {
4607
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4608
+ project?: string | undefined;
4609
+ } | {
4610
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
4611
+ } | {
4612
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
4613
+ } | {
4614
+ DATA_TYPE: "irods_collection_policies#1.0.0";
4615
+ } | {
4616
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
4617
+ } | {
4618
+ DATA_TYPE: "posix_collection_policies#1.0.0";
4619
+ } | {
4620
+ DATA_TYPE: "posix_collection_policies#1.1.0";
4621
+ sharing_groups_allow?: string[] | null | undefined;
4622
+ sharing_groups_deny?: string[] | null | undefined;
4623
+ } | {
4624
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4625
+ sharing_groups_allow?: string[] | null | undefined;
4626
+ sharing_groups_deny?: string[] | null | undefined;
4202
4627
  } | undefined;
4203
4628
  public: boolean;
4204
4629
  root_path?: string | undefined;
4205
- sharing_restrict_paths?: Record<string, unknown> | {
4206
- DATA_TYPE: "path_restrictions#1.0.0";
4207
- none?: string[] | undefined;
4208
- read?: string[] | undefined;
4209
- read_write?: string[] | undefined;
4210
- } | null | undefined;
4630
+ sharing_restrict_paths?: unknown;
4211
4631
  storage_gateway_id?: string | undefined;
4212
4632
  tlsftp_url?: string | undefined;
4213
4633
  user_credential_id?: string | undefined;
@@ -4239,6 +4659,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4239
4659
  mapped_collection_id?: string | undefined;
4240
4660
  organization?: string | undefined;
4241
4661
  policies?: {
4662
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4663
+ } | {
4242
4664
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4243
4665
  } | {
4244
4666
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4246,6 +4668,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4246
4668
  DATA_TYPE: "box_collection_policies#1.0.0";
4247
4669
  } | {
4248
4670
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4671
+ } | {
4672
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4249
4673
  } | {
4250
4674
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4251
4675
  project?: string | undefined;
@@ -4267,17 +4691,10 @@ export declare function getClient(configuration: GCSConfiguration): {
4267
4691
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4268
4692
  sharing_groups_allow?: string[] | null | undefined;
4269
4693
  sharing_groups_deny?: string[] | null | undefined;
4270
- } | {
4271
- DATA_TYPE: "s3_collection_policies#1.0.0";
4272
4694
  } | undefined;
4273
4695
  public: boolean;
4274
4696
  root_path?: string | undefined;
4275
- sharing_restrict_paths?: Record<string, unknown> | {
4276
- DATA_TYPE: "path_restrictions#1.0.0";
4277
- none?: string[] | undefined;
4278
- read?: string[] | undefined;
4279
- read_write?: string[] | undefined;
4280
- } | null | undefined;
4697
+ sharing_restrict_paths?: unknown;
4281
4698
  storage_gateway_id?: string | undefined;
4282
4699
  tlsftp_url?: string | undefined;
4283
4700
  user_credential_id?: string | undefined;
@@ -4311,6 +4728,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4311
4728
  mapped_collection_id?: string | undefined;
4312
4729
  organization?: string | undefined;
4313
4730
  policies?: {
4731
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4732
+ } | {
4314
4733
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4315
4734
  } | {
4316
4735
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4318,6 +4737,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4318
4737
  DATA_TYPE: "box_collection_policies#1.0.0";
4319
4738
  } | {
4320
4739
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4740
+ } | {
4741
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4321
4742
  } | {
4322
4743
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4323
4744
  project?: string | undefined;
@@ -4339,17 +4760,10 @@ export declare function getClient(configuration: GCSConfiguration): {
4339
4760
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4340
4761
  sharing_groups_allow?: string[] | null | undefined;
4341
4762
  sharing_groups_deny?: string[] | null | undefined;
4342
- } | {
4343
- DATA_TYPE: "s3_collection_policies#1.0.0";
4344
4763
  } | undefined;
4345
4764
  public: boolean;
4346
4765
  root_path?: string | undefined;
4347
- sharing_restrict_paths?: Record<string, unknown> | {
4348
- DATA_TYPE: "path_restrictions#1.0.0";
4349
- none?: string[] | undefined;
4350
- read?: string[] | undefined;
4351
- read_write?: string[] | undefined;
4352
- } | null | undefined;
4766
+ sharing_restrict_paths?: unknown;
4353
4767
  sharing_users_allow?: string[] | null | undefined;
4354
4768
  sharing_users_deny?: string[] | null | undefined;
4355
4769
  storage_gateway_id?: string | undefined;
@@ -4396,6 +4810,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4396
4810
  mapped_collection_id?: string | undefined;
4397
4811
  organization?: string | undefined;
4398
4812
  policies?: {
4813
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4814
+ } | {
4399
4815
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4400
4816
  } | {
4401
4817
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4403,6 +4819,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4403
4819
  DATA_TYPE: "box_collection_policies#1.0.0";
4404
4820
  } | {
4405
4821
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4822
+ } | {
4823
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4406
4824
  } | {
4407
4825
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4408
4826
  project?: string | undefined;
@@ -4424,17 +4842,10 @@ export declare function getClient(configuration: GCSConfiguration): {
4424
4842
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4425
4843
  sharing_groups_allow?: string[] | null | undefined;
4426
4844
  sharing_groups_deny?: string[] | null | undefined;
4427
- } | {
4428
- DATA_TYPE: "s3_collection_policies#1.0.0";
4429
4845
  } | undefined;
4430
4846
  public: boolean;
4431
4847
  root_path?: string | undefined;
4432
- sharing_restrict_paths?: Record<string, unknown> | {
4433
- DATA_TYPE: "path_restrictions#1.0.0";
4434
- none?: string[] | undefined;
4435
- read?: string[] | undefined;
4436
- read_write?: string[] | undefined;
4437
- } | null | undefined;
4848
+ sharing_restrict_paths?: unknown;
4438
4849
  sharing_users_allow?: string[] | null | undefined;
4439
4850
  sharing_users_deny?: string[] | null | undefined;
4440
4851
  storage_gateway_id?: string | undefined;
@@ -4482,6 +4893,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4482
4893
  mapped_collection_id?: string | undefined;
4483
4894
  organization?: string | undefined;
4484
4895
  policies?: {
4896
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4897
+ } | {
4485
4898
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4486
4899
  } | {
4487
4900
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4489,6 +4902,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4489
4902
  DATA_TYPE: "box_collection_policies#1.0.0";
4490
4903
  } | {
4491
4904
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4905
+ } | {
4906
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4492
4907
  } | {
4493
4908
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4494
4909
  project?: string | undefined;
@@ -4510,18 +4925,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4510
4925
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4511
4926
  sharing_groups_allow?: string[] | null | undefined;
4512
4927
  sharing_groups_deny?: string[] | null | undefined;
4513
- } | {
4514
- DATA_TYPE: "s3_collection_policies#1.0.0";
4515
4928
  } | undefined;
4516
4929
  public: boolean;
4517
4930
  require_mfa?: boolean | undefined;
4518
4931
  root_path?: string | undefined;
4519
- sharing_restrict_paths?: Record<string, unknown> | {
4520
- DATA_TYPE: "path_restrictions#1.0.0";
4521
- none?: string[] | undefined;
4522
- read?: string[] | undefined;
4523
- read_write?: string[] | undefined;
4524
- } | null | undefined;
4932
+ sharing_restrict_paths?: unknown;
4525
4933
  sharing_users_allow?: string[] | null | undefined;
4526
4934
  sharing_users_deny?: string[] | null | undefined;
4527
4935
  storage_gateway_id?: string | undefined;
@@ -4570,6 +4978,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4570
4978
  mapped_collection_id?: string | undefined;
4571
4979
  organization?: string | undefined;
4572
4980
  policies?: {
4981
+ DATA_TYPE: "s3_collection_policies#1.0.0";
4982
+ } | {
4573
4983
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4574
4984
  } | {
4575
4985
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4577,6 +4987,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4577
4987
  DATA_TYPE: "box_collection_policies#1.0.0";
4578
4988
  } | {
4579
4989
  DATA_TYPE: "ceph_collection_policies#1.0.0";
4990
+ } | {
4991
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4580
4992
  } | {
4581
4993
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4582
4994
  project?: string | undefined;
@@ -4598,18 +5010,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4598
5010
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4599
5011
  sharing_groups_allow?: string[] | null | undefined;
4600
5012
  sharing_groups_deny?: string[] | null | undefined;
4601
- } | {
4602
- DATA_TYPE: "s3_collection_policies#1.0.0";
4603
5013
  } | undefined;
4604
5014
  public: boolean;
4605
5015
  require_mfa?: boolean | undefined;
4606
5016
  root_path?: string | undefined;
4607
- sharing_restrict_paths?: Record<string, unknown> | {
4608
- DATA_TYPE: "path_restrictions#1.0.0";
4609
- none?: string[] | undefined;
4610
- read?: string[] | undefined;
4611
- read_write?: string[] | undefined;
4612
- } | null | undefined;
5017
+ sharing_restrict_paths?: unknown;
4613
5018
  sharing_users_allow?: string[] | null | undefined;
4614
5019
  sharing_users_deny?: string[] | null | undefined;
4615
5020
  storage_gateway_id?: string | undefined;
@@ -4659,6 +5064,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4659
5064
  mapped_collection_id?: string | undefined;
4660
5065
  organization?: string | undefined;
4661
5066
  policies?: {
5067
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5068
+ } | {
4662
5069
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4663
5070
  } | {
4664
5071
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4666,6 +5073,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4666
5073
  DATA_TYPE: "box_collection_policies#1.0.0";
4667
5074
  } | {
4668
5075
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5076
+ } | {
5077
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4669
5078
  } | {
4670
5079
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4671
5080
  project?: string | undefined;
@@ -4687,18 +5096,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4687
5096
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4688
5097
  sharing_groups_allow?: string[] | null | undefined;
4689
5098
  sharing_groups_deny?: string[] | null | undefined;
4690
- } | {
4691
- DATA_TYPE: "s3_collection_policies#1.0.0";
4692
5099
  } | undefined;
4693
5100
  public: boolean;
4694
5101
  require_mfa?: boolean | undefined;
4695
5102
  root_path?: string | undefined;
4696
- sharing_restrict_paths?: Record<string, unknown> | {
4697
- DATA_TYPE: "path_restrictions#1.0.0";
4698
- none?: string[] | undefined;
4699
- read?: string[] | undefined;
4700
- read_write?: string[] | undefined;
4701
- } | null | undefined;
5103
+ sharing_restrict_paths?: unknown;
4702
5104
  sharing_users_allow?: string[] | null | undefined;
4703
5105
  sharing_users_deny?: string[] | null | undefined;
4704
5106
  storage_gateway_id?: string | undefined;
@@ -4748,6 +5150,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4748
5150
  mapped_collection_id?: string | undefined;
4749
5151
  organization?: string | undefined;
4750
5152
  policies?: {
5153
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5154
+ } | {
4751
5155
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4752
5156
  } | {
4753
5157
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4755,6 +5159,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4755
5159
  DATA_TYPE: "box_collection_policies#1.0.0";
4756
5160
  } | {
4757
5161
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5162
+ } | {
5163
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4758
5164
  } | {
4759
5165
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4760
5166
  project?: string | undefined;
@@ -4776,18 +5182,11 @@ export declare function getClient(configuration: GCSConfiguration): {
4776
5182
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4777
5183
  sharing_groups_allow?: string[] | null | undefined;
4778
5184
  sharing_groups_deny?: string[] | null | undefined;
4779
- } | {
4780
- DATA_TYPE: "s3_collection_policies#1.0.0";
4781
5185
  } | undefined;
4782
5186
  public: boolean;
4783
5187
  require_mfa?: boolean | undefined;
4784
5188
  root_path?: string | undefined;
4785
- sharing_restrict_paths?: Record<string, unknown> | {
4786
- DATA_TYPE: "path_restrictions#1.0.0";
4787
- none?: string[] | undefined;
4788
- read?: string[] | undefined;
4789
- read_write?: string[] | undefined;
4790
- } | null | undefined;
5189
+ sharing_restrict_paths?: unknown;
4791
5190
  sharing_users_allow?: string[] | null | undefined;
4792
5191
  sharing_users_deny?: string[] | null | undefined;
4793
5192
  storage_gateway_id?: string | undefined;
@@ -4838,6 +5237,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4838
5237
  mapped_collection_id?: string | undefined;
4839
5238
  organization?: string | undefined;
4840
5239
  policies?: {
5240
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5241
+ } | {
4841
5242
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4842
5243
  } | {
4843
5244
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4845,6 +5246,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4845
5246
  DATA_TYPE: "box_collection_policies#1.0.0";
4846
5247
  } | {
4847
5248
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5249
+ } | {
5250
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4848
5251
  } | {
4849
5252
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4850
5253
  project?: string | undefined;
@@ -4866,18 +5269,100 @@ export declare function getClient(configuration: GCSConfiguration): {
4866
5269
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
4867
5270
  sharing_groups_allow?: string[] | null | undefined;
4868
5271
  sharing_groups_deny?: string[] | null | undefined;
4869
- } | {
5272
+ } | undefined;
5273
+ public: boolean;
5274
+ require_mfa?: boolean | undefined;
5275
+ root_path?: string | undefined;
5276
+ sharing_restrict_paths?: unknown;
5277
+ sharing_users_allow?: string[] | null | undefined;
5278
+ sharing_users_deny?: string[] | null | undefined;
5279
+ storage_gateway_id?: string | undefined;
5280
+ tlsftp_url?: string | undefined;
5281
+ user_credential_id?: string | undefined;
5282
+ user_message?: string | null | undefined;
5283
+ user_message_link?: string | null | undefined;
5284
+ } | {
5285
+ DATA_TYPE: "collection#1.9.0";
5286
+ allow_guest_collections?: boolean | undefined;
5287
+ authentication_timeout_mins?: number | undefined;
5288
+ collection_base_path: string;
5289
+ collection_type: "mapped" | "guest";
5290
+ connector_id?: string | undefined;
5291
+ contact_email?: string | null | undefined;
5292
+ contact_info?: string | null | undefined;
5293
+ created_at?: string | null | undefined;
5294
+ default_directory?: string | undefined;
5295
+ delete_protected?: boolean | undefined;
5296
+ deleted?: boolean | undefined;
5297
+ department?: string | null | undefined;
5298
+ description?: string | null | undefined;
5299
+ disable_anonymous_writes?: boolean | undefined;
5300
+ disable_verify?: boolean | undefined;
5301
+ display_name: string;
5302
+ domain?: {
5303
+ DATA_TYPE: "domain#1.0.0";
5304
+ certificate?: string | null | undefined;
5305
+ certificate_chain?: string | null | undefined;
5306
+ certificate_chain_path?: string | null | undefined;
5307
+ certificate_path?: string | null | undefined;
5308
+ domain_name: string;
5309
+ private_key?: string | null | undefined;
5310
+ private_key_path?: string | null | undefined;
5311
+ wildcard: boolean;
5312
+ } | undefined;
5313
+ domain_name?: string | undefined;
5314
+ enable_https?: boolean | undefined;
5315
+ force_encryption?: boolean | undefined;
5316
+ force_verify?: boolean | undefined;
5317
+ guest_auth_policy_id?: string | null | undefined;
5318
+ high_assurance?: boolean | undefined;
5319
+ https_url?: string | undefined;
5320
+ id?: string | undefined;
5321
+ identity_id?: string | undefined;
5322
+ info_link?: string | null | undefined;
5323
+ keywords?: string[] | undefined;
5324
+ last_access?: string | null | undefined;
5325
+ manager_url?: string | undefined;
5326
+ mapped_collection_id?: string | undefined;
5327
+ organization?: string | undefined;
5328
+ policies?: {
4870
5329
  DATA_TYPE: "s3_collection_policies#1.0.0";
5330
+ } | {
5331
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5332
+ } | {
5333
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
5334
+ } | {
5335
+ DATA_TYPE: "box_collection_policies#1.0.0";
5336
+ } | {
5337
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
5338
+ } | {
5339
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5340
+ } | {
5341
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5342
+ project?: string | undefined;
5343
+ } | {
5344
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
5345
+ } | {
5346
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
5347
+ } | {
5348
+ DATA_TYPE: "irods_collection_policies#1.0.0";
5349
+ } | {
5350
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
5351
+ } | {
5352
+ DATA_TYPE: "posix_collection_policies#1.0.0";
5353
+ } | {
5354
+ DATA_TYPE: "posix_collection_policies#1.1.0";
5355
+ sharing_groups_allow?: string[] | null | undefined;
5356
+ sharing_groups_deny?: string[] | null | undefined;
5357
+ } | {
5358
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5359
+ sharing_groups_allow?: string[] | null | undefined;
5360
+ sharing_groups_deny?: string[] | null | undefined;
4871
5361
  } | undefined;
4872
5362
  public: boolean;
4873
5363
  require_mfa?: boolean | undefined;
4874
5364
  root_path?: string | undefined;
4875
- sharing_restrict_paths?: Record<string, unknown> | {
4876
- DATA_TYPE: "path_restrictions#1.0.0";
4877
- none?: string[] | undefined;
4878
- read?: string[] | undefined;
4879
- read_write?: string[] | undefined;
4880
- } | null | undefined;
5365
+ sharing_restrict_paths?: unknown;
4881
5366
  sharing_users_allow?: string[] | null | undefined;
4882
5367
  sharing_users_deny?: string[] | null | undefined;
4883
5368
  storage_gateway_id?: string | undefined;
@@ -4894,8 +5379,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4894
5379
  }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
4895
5380
  DATA_TYPE: "result#1.0.0";
4896
5381
  code: string;
4897
- data?: Record<string, never>[] | undefined;
4898
- detail?: Record<string, never> | undefined;
5382
+ data?: Record<string, unknown>[] | undefined;
5383
+ detail?: unknown;
4899
5384
  has_next_page?: boolean | undefined;
4900
5385
  http_response_code: number;
4901
5386
  marker?: string | null | undefined;
@@ -4914,8 +5399,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4914
5399
  }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
4915
5400
  DATA_TYPE: "result#1.0.0";
4916
5401
  code: string;
4917
- data?: Record<string, never>[] | undefined;
4918
- detail?: Record<string, never> | undefined;
5402
+ data?: Record<string, unknown>[] | undefined;
5403
+ detail?: unknown;
4919
5404
  has_next_page?: boolean | undefined;
4920
5405
  http_response_code: number;
4921
5406
  marker?: string | null | undefined;
@@ -4929,8 +5414,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4929
5414
  } | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
4930
5415
  DATA_TYPE: "result#1.0.0";
4931
5416
  code: string;
4932
- data?: Record<string, never>[] | undefined;
4933
- detail?: Record<string, never> | undefined;
5417
+ data?: Record<string, unknown>[] | undefined;
5418
+ detail?: unknown;
4934
5419
  has_next_page?: boolean | undefined;
4935
5420
  http_response_code: number;
4936
5421
  marker?: string | null | undefined;
@@ -4975,6 +5460,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4975
5460
  mapped_collection_id?: string | undefined;
4976
5461
  organization?: string | undefined;
4977
5462
  policies?: {
5463
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5464
+ } | {
4978
5465
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
4979
5466
  } | {
4980
5467
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -4982,6 +5469,8 @@ export declare function getClient(configuration: GCSConfiguration): {
4982
5469
  DATA_TYPE: "box_collection_policies#1.0.0";
4983
5470
  } | {
4984
5471
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5472
+ } | {
5473
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
4985
5474
  } | {
4986
5475
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
4987
5476
  project?: string | undefined;
@@ -5003,17 +5492,10 @@ export declare function getClient(configuration: GCSConfiguration): {
5003
5492
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5004
5493
  sharing_groups_allow?: string[] | null | undefined;
5005
5494
  sharing_groups_deny?: string[] | null | undefined;
5006
- } | {
5007
- DATA_TYPE: "s3_collection_policies#1.0.0";
5008
5495
  } | undefined;
5009
5496
  public: boolean;
5010
5497
  root_path?: string | undefined;
5011
- sharing_restrict_paths?: Record<string, unknown> | {
5012
- DATA_TYPE: "path_restrictions#1.0.0";
5013
- none?: string[] | undefined;
5014
- read?: string[] | undefined;
5015
- read_write?: string[] | undefined;
5016
- } | null | undefined;
5498
+ sharing_restrict_paths?: unknown;
5017
5499
  storage_gateway_id?: string | undefined;
5018
5500
  tlsftp_url?: string | undefined;
5019
5501
  user_credential_id?: string | undefined;
@@ -5045,6 +5527,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5045
5527
  mapped_collection_id?: string | undefined;
5046
5528
  organization?: string | undefined;
5047
5529
  policies?: {
5530
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5531
+ } | {
5048
5532
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5049
5533
  } | {
5050
5534
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5052,6 +5536,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5052
5536
  DATA_TYPE: "box_collection_policies#1.0.0";
5053
5537
  } | {
5054
5538
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5539
+ } | {
5540
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5055
5541
  } | {
5056
5542
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5057
5543
  project?: string | undefined;
@@ -5073,17 +5559,10 @@ export declare function getClient(configuration: GCSConfiguration): {
5073
5559
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5074
5560
  sharing_groups_allow?: string[] | null | undefined;
5075
5561
  sharing_groups_deny?: string[] | null | undefined;
5076
- } | {
5077
- DATA_TYPE: "s3_collection_policies#1.0.0";
5078
5562
  } | undefined;
5079
5563
  public: boolean;
5080
5564
  root_path?: string | undefined;
5081
- sharing_restrict_paths?: Record<string, unknown> | {
5082
- DATA_TYPE: "path_restrictions#1.0.0";
5083
- none?: string[] | undefined;
5084
- read?: string[] | undefined;
5085
- read_write?: string[] | undefined;
5086
- } | null | undefined;
5565
+ sharing_restrict_paths?: unknown;
5087
5566
  storage_gateway_id?: string | undefined;
5088
5567
  tlsftp_url?: string | undefined;
5089
5568
  user_credential_id?: string | undefined;
@@ -5117,6 +5596,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5117
5596
  mapped_collection_id?: string | undefined;
5118
5597
  organization?: string | undefined;
5119
5598
  policies?: {
5599
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5600
+ } | {
5120
5601
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5121
5602
  } | {
5122
5603
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5124,6 +5605,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5124
5605
  DATA_TYPE: "box_collection_policies#1.0.0";
5125
5606
  } | {
5126
5607
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5608
+ } | {
5609
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5127
5610
  } | {
5128
5611
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5129
5612
  project?: string | undefined;
@@ -5145,17 +5628,10 @@ export declare function getClient(configuration: GCSConfiguration): {
5145
5628
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5146
5629
  sharing_groups_allow?: string[] | null | undefined;
5147
5630
  sharing_groups_deny?: string[] | null | undefined;
5148
- } | {
5149
- DATA_TYPE: "s3_collection_policies#1.0.0";
5150
5631
  } | undefined;
5151
5632
  public: boolean;
5152
5633
  root_path?: string | undefined;
5153
- sharing_restrict_paths?: Record<string, unknown> | {
5154
- DATA_TYPE: "path_restrictions#1.0.0";
5155
- none?: string[] | undefined;
5156
- read?: string[] | undefined;
5157
- read_write?: string[] | undefined;
5158
- } | null | undefined;
5634
+ sharing_restrict_paths?: unknown;
5159
5635
  sharing_users_allow?: string[] | null | undefined;
5160
5636
  sharing_users_deny?: string[] | null | undefined;
5161
5637
  storage_gateway_id?: string | undefined;
@@ -5202,6 +5678,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5202
5678
  mapped_collection_id?: string | undefined;
5203
5679
  organization?: string | undefined;
5204
5680
  policies?: {
5681
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5682
+ } | {
5205
5683
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5206
5684
  } | {
5207
5685
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5209,6 +5687,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5209
5687
  DATA_TYPE: "box_collection_policies#1.0.0";
5210
5688
  } | {
5211
5689
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5690
+ } | {
5691
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5212
5692
  } | {
5213
5693
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5214
5694
  project?: string | undefined;
@@ -5230,17 +5710,10 @@ export declare function getClient(configuration: GCSConfiguration): {
5230
5710
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5231
5711
  sharing_groups_allow?: string[] | null | undefined;
5232
5712
  sharing_groups_deny?: string[] | null | undefined;
5233
- } | {
5234
- DATA_TYPE: "s3_collection_policies#1.0.0";
5235
5713
  } | undefined;
5236
5714
  public: boolean;
5237
5715
  root_path?: string | undefined;
5238
- sharing_restrict_paths?: Record<string, unknown> | {
5239
- DATA_TYPE: "path_restrictions#1.0.0";
5240
- none?: string[] | undefined;
5241
- read?: string[] | undefined;
5242
- read_write?: string[] | undefined;
5243
- } | null | undefined;
5716
+ sharing_restrict_paths?: unknown;
5244
5717
  sharing_users_allow?: string[] | null | undefined;
5245
5718
  sharing_users_deny?: string[] | null | undefined;
5246
5719
  storage_gateway_id?: string | undefined;
@@ -5288,6 +5761,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5288
5761
  mapped_collection_id?: string | undefined;
5289
5762
  organization?: string | undefined;
5290
5763
  policies?: {
5764
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5765
+ } | {
5291
5766
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5292
5767
  } | {
5293
5768
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5295,6 +5770,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5295
5770
  DATA_TYPE: "box_collection_policies#1.0.0";
5296
5771
  } | {
5297
5772
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5773
+ } | {
5774
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5298
5775
  } | {
5299
5776
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5300
5777
  project?: string | undefined;
@@ -5316,18 +5793,11 @@ export declare function getClient(configuration: GCSConfiguration): {
5316
5793
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5317
5794
  sharing_groups_allow?: string[] | null | undefined;
5318
5795
  sharing_groups_deny?: string[] | null | undefined;
5319
- } | {
5320
- DATA_TYPE: "s3_collection_policies#1.0.0";
5321
5796
  } | undefined;
5322
5797
  public: boolean;
5323
5798
  require_mfa?: boolean | undefined;
5324
5799
  root_path?: string | undefined;
5325
- sharing_restrict_paths?: Record<string, unknown> | {
5326
- DATA_TYPE: "path_restrictions#1.0.0";
5327
- none?: string[] | undefined;
5328
- read?: string[] | undefined;
5329
- read_write?: string[] | undefined;
5330
- } | null | undefined;
5800
+ sharing_restrict_paths?: unknown;
5331
5801
  sharing_users_allow?: string[] | null | undefined;
5332
5802
  sharing_users_deny?: string[] | null | undefined;
5333
5803
  storage_gateway_id?: string | undefined;
@@ -5376,6 +5846,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5376
5846
  mapped_collection_id?: string | undefined;
5377
5847
  organization?: string | undefined;
5378
5848
  policies?: {
5849
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5850
+ } | {
5379
5851
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5380
5852
  } | {
5381
5853
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5383,6 +5855,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5383
5855
  DATA_TYPE: "box_collection_policies#1.0.0";
5384
5856
  } | {
5385
5857
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5858
+ } | {
5859
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5386
5860
  } | {
5387
5861
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5388
5862
  project?: string | undefined;
@@ -5404,18 +5878,11 @@ export declare function getClient(configuration: GCSConfiguration): {
5404
5878
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5405
5879
  sharing_groups_allow?: string[] | null | undefined;
5406
5880
  sharing_groups_deny?: string[] | null | undefined;
5407
- } | {
5408
- DATA_TYPE: "s3_collection_policies#1.0.0";
5409
5881
  } | undefined;
5410
5882
  public: boolean;
5411
5883
  require_mfa?: boolean | undefined;
5412
5884
  root_path?: string | undefined;
5413
- sharing_restrict_paths?: Record<string, unknown> | {
5414
- DATA_TYPE: "path_restrictions#1.0.0";
5415
- none?: string[] | undefined;
5416
- read?: string[] | undefined;
5417
- read_write?: string[] | undefined;
5418
- } | null | undefined;
5885
+ sharing_restrict_paths?: unknown;
5419
5886
  sharing_users_allow?: string[] | null | undefined;
5420
5887
  sharing_users_deny?: string[] | null | undefined;
5421
5888
  storage_gateway_id?: string | undefined;
@@ -5465,6 +5932,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5465
5932
  mapped_collection_id?: string | undefined;
5466
5933
  organization?: string | undefined;
5467
5934
  policies?: {
5935
+ DATA_TYPE: "s3_collection_policies#1.0.0";
5936
+ } | {
5468
5937
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5469
5938
  } | {
5470
5939
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5472,6 +5941,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5472
5941
  DATA_TYPE: "box_collection_policies#1.0.0";
5473
5942
  } | {
5474
5943
  DATA_TYPE: "ceph_collection_policies#1.0.0";
5944
+ } | {
5945
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5475
5946
  } | {
5476
5947
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5477
5948
  project?: string | undefined;
@@ -5493,18 +5964,11 @@ export declare function getClient(configuration: GCSConfiguration): {
5493
5964
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5494
5965
  sharing_groups_allow?: string[] | null | undefined;
5495
5966
  sharing_groups_deny?: string[] | null | undefined;
5496
- } | {
5497
- DATA_TYPE: "s3_collection_policies#1.0.0";
5498
5967
  } | undefined;
5499
5968
  public: boolean;
5500
5969
  require_mfa?: boolean | undefined;
5501
5970
  root_path?: string | undefined;
5502
- sharing_restrict_paths?: Record<string, unknown> | {
5503
- DATA_TYPE: "path_restrictions#1.0.0";
5504
- none?: string[] | undefined;
5505
- read?: string[] | undefined;
5506
- read_write?: string[] | undefined;
5507
- } | null | undefined;
5971
+ sharing_restrict_paths?: unknown;
5508
5972
  sharing_users_allow?: string[] | null | undefined;
5509
5973
  sharing_users_deny?: string[] | null | undefined;
5510
5974
  storage_gateway_id?: string | undefined;
@@ -5554,6 +6018,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5554
6018
  mapped_collection_id?: string | undefined;
5555
6019
  organization?: string | undefined;
5556
6020
  policies?: {
6021
+ DATA_TYPE: "s3_collection_policies#1.0.0";
6022
+ } | {
5557
6023
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5558
6024
  } | {
5559
6025
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5561,6 +6027,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5561
6027
  DATA_TYPE: "box_collection_policies#1.0.0";
5562
6028
  } | {
5563
6029
  DATA_TYPE: "ceph_collection_policies#1.0.0";
6030
+ } | {
6031
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5564
6032
  } | {
5565
6033
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5566
6034
  project?: string | undefined;
@@ -5582,18 +6050,11 @@ export declare function getClient(configuration: GCSConfiguration): {
5582
6050
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5583
6051
  sharing_groups_allow?: string[] | null | undefined;
5584
6052
  sharing_groups_deny?: string[] | null | undefined;
5585
- } | {
5586
- DATA_TYPE: "s3_collection_policies#1.0.0";
5587
6053
  } | undefined;
5588
6054
  public: boolean;
5589
6055
  require_mfa?: boolean | undefined;
5590
6056
  root_path?: string | undefined;
5591
- sharing_restrict_paths?: Record<string, unknown> | {
5592
- DATA_TYPE: "path_restrictions#1.0.0";
5593
- none?: string[] | undefined;
5594
- read?: string[] | undefined;
5595
- read_write?: string[] | undefined;
5596
- } | null | undefined;
6057
+ sharing_restrict_paths?: unknown;
5597
6058
  sharing_users_allow?: string[] | null | undefined;
5598
6059
  sharing_users_deny?: string[] | null | undefined;
5599
6060
  storage_gateway_id?: string | undefined;
@@ -5644,6 +6105,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5644
6105
  mapped_collection_id?: string | undefined;
5645
6106
  organization?: string | undefined;
5646
6107
  policies?: {
6108
+ DATA_TYPE: "s3_collection_policies#1.0.0";
6109
+ } | {
5647
6110
  DATA_TYPE: "azure_blob_collection_policies#1.0.0";
5648
6111
  } | {
5649
6112
  DATA_TYPE: "blackpearl_collection_policies#1.0.0";
@@ -5651,6 +6114,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5651
6114
  DATA_TYPE: "box_collection_policies#1.0.0";
5652
6115
  } | {
5653
6116
  DATA_TYPE: "ceph_collection_policies#1.0.0";
6117
+ } | {
6118
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
5654
6119
  } | {
5655
6120
  DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
5656
6121
  project?: string | undefined;
@@ -5672,18 +6137,11 @@ export declare function getClient(configuration: GCSConfiguration): {
5672
6137
  DATA_TYPE: "posix_staging_collection_policies#1.0.0";
5673
6138
  sharing_groups_allow?: string[] | null | undefined;
5674
6139
  sharing_groups_deny?: string[] | null | undefined;
5675
- } | {
5676
- DATA_TYPE: "s3_collection_policies#1.0.0";
5677
6140
  } | undefined;
5678
6141
  public: boolean;
5679
6142
  require_mfa?: boolean | undefined;
5680
6143
  root_path?: string | undefined;
5681
- sharing_restrict_paths?: Record<string, unknown> | {
5682
- DATA_TYPE: "path_restrictions#1.0.0";
5683
- none?: string[] | undefined;
5684
- read?: string[] | undefined;
5685
- read_write?: string[] | undefined;
5686
- } | null | undefined;
6144
+ sharing_restrict_paths?: unknown;
5687
6145
  sharing_users_allow?: string[] | null | undefined;
5688
6146
  sharing_users_deny?: string[] | null | undefined;
5689
6147
  storage_gateway_id?: string | undefined;
@@ -5691,12 +6149,101 @@ export declare function getClient(configuration: GCSConfiguration): {
5691
6149
  user_credential_id?: string | undefined;
5692
6150
  user_message?: string | null | undefined;
5693
6151
  user_message_link?: string | null | undefined;
5694
- })[] | undefined;
5695
- } & {
5696
- DATA_TYPE: "result#1.0.0";
5697
- code: string;
5698
- data?: Record<string, never>[] | undefined;
5699
- detail?: Record<string, never> | undefined;
6152
+ } | {
6153
+ DATA_TYPE: "collection#1.9.0";
6154
+ allow_guest_collections?: boolean | undefined;
6155
+ authentication_timeout_mins?: number | undefined;
6156
+ collection_base_path: string;
6157
+ collection_type: "mapped" | "guest";
6158
+ connector_id?: string | undefined;
6159
+ contact_email?: string | null | undefined;
6160
+ contact_info?: string | null | undefined;
6161
+ created_at?: string | null | undefined;
6162
+ default_directory?: string | undefined;
6163
+ delete_protected?: boolean | undefined;
6164
+ deleted?: boolean | undefined;
6165
+ department?: string | null | undefined;
6166
+ description?: string | null | undefined;
6167
+ disable_anonymous_writes?: boolean | undefined;
6168
+ disable_verify?: boolean | undefined;
6169
+ display_name: string;
6170
+ domain?: {
6171
+ DATA_TYPE: "domain#1.0.0";
6172
+ certificate?: string | null | undefined;
6173
+ certificate_chain?: string | null | undefined;
6174
+ certificate_chain_path?: string | null | undefined;
6175
+ certificate_path?: string | null | undefined;
6176
+ domain_name: string;
6177
+ private_key?: string | null | undefined;
6178
+ private_key_path?: string | null | undefined;
6179
+ wildcard: boolean;
6180
+ } | undefined;
6181
+ domain_name?: string | undefined;
6182
+ enable_https?: boolean | undefined;
6183
+ force_encryption?: boolean | undefined;
6184
+ force_verify?: boolean | undefined;
6185
+ guest_auth_policy_id?: string | null | undefined;
6186
+ high_assurance?: boolean | undefined;
6187
+ https_url?: string | undefined;
6188
+ id?: string | undefined;
6189
+ identity_id?: string | undefined;
6190
+ info_link?: string | null | undefined;
6191
+ keywords?: string[] | undefined;
6192
+ last_access?: string | null | undefined;
6193
+ manager_url?: string | undefined;
6194
+ mapped_collection_id?: string | undefined;
6195
+ organization?: string | undefined;
6196
+ policies?: {
6197
+ DATA_TYPE: "s3_collection_policies#1.0.0";
6198
+ } | {
6199
+ DATA_TYPE: "azure_blob_collection_policies#1.0.0";
6200
+ } | {
6201
+ DATA_TYPE: "blackpearl_collection_policies#1.0.0";
6202
+ } | {
6203
+ DATA_TYPE: "box_collection_policies#1.0.0";
6204
+ } | {
6205
+ DATA_TYPE: "ceph_collection_policies#1.0.0";
6206
+ } | {
6207
+ DATA_TYPE: "dropbox_collection_policies#1.0.0";
6208
+ } | {
6209
+ DATA_TYPE: "google_cloud_storage_collection_policies#1.0.0";
6210
+ project?: string | undefined;
6211
+ } | {
6212
+ DATA_TYPE: "google_drive_collection_policies#1.0.0";
6213
+ } | {
6214
+ DATA_TYPE: "hpss_collection_policies#1.0.0";
6215
+ } | {
6216
+ DATA_TYPE: "irods_collection_policies#1.0.0";
6217
+ } | {
6218
+ DATA_TYPE: "onedrive_collection_policies#1.0.0";
6219
+ } | {
6220
+ DATA_TYPE: "posix_collection_policies#1.0.0";
6221
+ } | {
6222
+ DATA_TYPE: "posix_collection_policies#1.1.0";
6223
+ sharing_groups_allow?: string[] | null | undefined;
6224
+ sharing_groups_deny?: string[] | null | undefined;
6225
+ } | {
6226
+ DATA_TYPE: "posix_staging_collection_policies#1.0.0";
6227
+ sharing_groups_allow?: string[] | null | undefined;
6228
+ sharing_groups_deny?: string[] | null | undefined;
6229
+ } | undefined;
6230
+ public: boolean;
6231
+ require_mfa?: boolean | undefined;
6232
+ root_path?: string | undefined;
6233
+ sharing_restrict_paths?: unknown;
6234
+ sharing_users_allow?: string[] | null | undefined;
6235
+ sharing_users_deny?: string[] | null | undefined;
6236
+ storage_gateway_id?: string | undefined;
6237
+ tlsftp_url?: string | undefined;
6238
+ user_credential_id?: string | undefined;
6239
+ user_message?: string | null | undefined;
6240
+ user_message_link?: string | null | undefined;
6241
+ })[] | undefined;
6242
+ } & {
6243
+ DATA_TYPE: "result#1.0.0";
6244
+ code: string;
6245
+ data?: Record<string, unknown>[] | undefined;
6246
+ detail?: unknown;
5700
6247
  has_next_page?: boolean | undefined;
5701
6248
  http_response_code: number;
5702
6249
  marker?: string | null | undefined;
@@ -5704,6 +6251,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5704
6251
  }>>;
5705
6252
  getAll: (options?: ({
5706
6253
  query?: {
6254
+ page_size?: number | undefined;
6255
+ marker?: string | undefined;
5707
6256
  include?: "all"[] | undefined;
5708
6257
  storage_gateway?: string | undefined;
5709
6258
  } | undefined;
@@ -5724,6 +6273,15 @@ export declare function getClient(configuration: GCSConfiguration): {
5724
6273
  identity_id?: string | undefined;
5725
6274
  invalid?: boolean | undefined;
5726
6275
  policies?: {
6276
+ DATA_TYPE: "s3_user_credential_policies#1.0.0";
6277
+ s3_key_id?: string | null | undefined;
6278
+ s3_secret_key?: string | null | undefined;
6279
+ } | {
6280
+ DATA_TYPE: "s3_user_credential_policies#1.1.0";
6281
+ s3_key_id?: string | null | undefined;
6282
+ s3_requester_pays?: boolean | undefined;
6283
+ s3_secret_key?: string | null | undefined;
6284
+ } | {
5727
6285
  DATA_TYPE: "azure_blob_user_credential_policies#1.0.0";
5728
6286
  access_token?: string | null | undefined;
5729
6287
  email?: string | null | undefined;
@@ -5749,6 +6307,15 @@ export declare function getClient(configuration: GCSConfiguration): {
5749
6307
  token_expiry?: string | undefined;
5750
6308
  } | {
5751
6309
  DATA_TYPE: "ceph_user_credential_policies#1.0.0";
6310
+ } | {
6311
+ DATA_TYPE: "dropbox_user_credential_policies#1.0.0";
6312
+ access_token?: string | null | undefined;
6313
+ email?: string | null | undefined;
6314
+ refresh_token?: string | null | undefined;
6315
+ root_info?: Record<string, unknown> | undefined;
6316
+ scopes?: string[] | undefined;
6317
+ sub?: string | null | undefined;
6318
+ token_expiry?: string | undefined;
5752
6319
  } | {
5753
6320
  DATA_TYPE: "google_cloud_storage_user_credential_policies#1.0.0";
5754
6321
  access_token?: string | null | undefined;
@@ -5786,10 +6353,6 @@ export declare function getClient(configuration: GCSConfiguration): {
5786
6353
  DATA_TYPE: "posix_user_credential_policies#1.0.0";
5787
6354
  } | {
5788
6355
  DATA_TYPE: "posix_staging_user_credential_policies#1.0.0";
5789
- } | {
5790
- DATA_TYPE: "s3_user_credential_policies#1.0.0";
5791
- s3_key_id?: string | null | undefined;
5792
- s3_secret_key?: string | null | undefined;
5793
6356
  } | undefined;
5794
6357
  provisioned?: boolean | undefined;
5795
6358
  storage_gateway_id?: string | undefined;
@@ -5798,8 +6361,8 @@ export declare function getClient(configuration: GCSConfiguration): {
5798
6361
  } & {
5799
6362
  DATA_TYPE: "result#1.0.0";
5800
6363
  code: string;
5801
- data?: Record<string, never>[] | undefined;
5802
- detail?: Record<string, never> | undefined;
6364
+ data?: Record<string, unknown>[] | undefined;
6365
+ detail?: unknown;
5803
6366
  has_next_page?: boolean | undefined;
5804
6367
  http_response_code: number;
5805
6368
  marker?: string | null | undefined;
@@ -5843,6 +6406,17 @@ export declare function getClient(configuration: GCSConfiguration): {
5843
6406
  })[] | null | undefined;
5844
6407
  load_dsi_module?: string | null | undefined;
5845
6408
  policies?: {
6409
+ DATA_TYPE: "s3_storage_policies#1.0.0";
6410
+ s3_buckets?: string[] | undefined;
6411
+ s3_endpoint?: string | undefined;
6412
+ s3_user_credential_required?: boolean | undefined;
6413
+ } | {
6414
+ DATA_TYPE: "s3_storage_policies#1.1.0";
6415
+ s3_buckets?: string[] | undefined;
6416
+ s3_endpoint?: string | undefined;
6417
+ s3_requester_pays?: boolean | undefined;
6418
+ s3_user_credential_required?: boolean | undefined;
6419
+ } | {
5846
6420
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
5847
6421
  account: string | null;
5848
6422
  adls: boolean | null;
@@ -5852,6 +6426,17 @@ export declare function getClient(configuration: GCSConfiguration): {
5852
6426
  secret: string | null;
5853
6427
  tenant: string | null;
5854
6428
  user_credential_required?: boolean | undefined;
6429
+ } | {
6430
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
6431
+ account: string | null;
6432
+ adls: boolean | null;
6433
+ allow_any_account?: boolean | undefined;
6434
+ auth_callback?: string | undefined;
6435
+ auth_type: string | null;
6436
+ client_id: string | null;
6437
+ secret: string | null;
6438
+ tenant: string | null;
6439
+ user_credential_required?: boolean | undefined;
5855
6440
  } | {
5856
6441
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
5857
6442
  bp_access_id_file?: string | undefined;
@@ -5885,12 +6470,37 @@ export declare function getClient(configuration: GCSConfiguration): {
5885
6470
  secret?: string | undefined;
5886
6471
  user_api_rate_limit?: number | undefined;
5887
6472
  user_credential_required?: boolean | undefined;
6473
+ } | {
6474
+ DATA_TYPE: "box_storage_policies#1.2.0";
6475
+ allow_any_account?: boolean | undefined;
6476
+ auth_callback?: string | undefined;
6477
+ boxAppSettings?: {
6478
+ appAuth: {
6479
+ passphrase: string;
6480
+ privateKey: string;
6481
+ publicKeyID: string;
6482
+ };
6483
+ clientID: string;
6484
+ clientSecret: string;
6485
+ } | undefined;
6486
+ client_id?: string | undefined;
6487
+ enterpriseID?: string | undefined;
6488
+ secret?: string | undefined;
6489
+ user_api_rate_limit?: number | undefined;
6490
+ user_credential_required?: boolean | undefined;
5888
6491
  } | {
5889
6492
  DATA_TYPE: "ceph_storage_policies#1.0.0";
5890
6493
  ceph_admin_key_id?: string | undefined;
5891
6494
  ceph_admin_secret_key?: string | undefined;
5892
6495
  s3_buckets?: string[] | undefined;
5893
6496
  s3_endpoint?: string | undefined;
6497
+ } | {
6498
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
6499
+ allow_any_account?: boolean | undefined;
6500
+ auth_callback?: string | undefined;
6501
+ client_id: string | null;
6502
+ secret: string | null;
6503
+ user_api_rate_limit?: number | undefined;
5894
6504
  } | {
5895
6505
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
5896
6506
  auth_callback?: string | undefined;
@@ -5898,7 +6508,17 @@ export declare function getClient(configuration: GCSConfiguration): {
5898
6508
  client_id: string | null;
5899
6509
  projects?: string[] | null | undefined;
5900
6510
  secret: string | null;
5901
- service_account_key?: Record<string, unknown> | null | undefined;
6511
+ service_account_key?: unknown;
6512
+ user_credential_required?: boolean | undefined;
6513
+ } | {
6514
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
6515
+ allow_any_account?: boolean | undefined;
6516
+ auth_callback?: string | undefined;
6517
+ buckets?: string[] | null | undefined;
6518
+ client_id: string | null;
6519
+ projects?: string[] | null | undefined;
6520
+ secret: string | null;
6521
+ service_account_key?: unknown;
5902
6522
  user_credential_required?: boolean | undefined;
5903
6523
  } | {
5904
6524
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -5906,11 +6526,24 @@ export declare function getClient(configuration: GCSConfiguration): {
5906
6526
  client_id: string | null;
5907
6527
  secret: string | null;
5908
6528
  user_api_rate_quota?: number | undefined;
6529
+ } | {
6530
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
6531
+ allow_any_account?: boolean | undefined;
6532
+ auth_callback?: string | undefined;
6533
+ client_id: string | null;
6534
+ secret: string | null;
6535
+ user_api_rate_quota?: number | undefined;
5909
6536
  } | {
5910
6537
  DATA_TYPE: "hpss_storage_policies#1.0.0";
5911
6538
  authentication_mech: "krb5" | "unix";
5912
6539
  authenticator: string;
5913
6540
  uda_checksum: boolean;
6541
+ } | {
6542
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
6543
+ authentication_mech: "krb5" | "unix";
6544
+ authenticator: string;
6545
+ login_name?: string | undefined;
6546
+ uda_checksum: boolean;
5914
6547
  } | {
5915
6548
  DATA_TYPE: "irods_storage_policies#1.0.0";
5916
6549
  environment?: {
@@ -5926,6 +6559,14 @@ export declare function getClient(configuration: GCSConfiguration): {
5926
6559
  secret: string | null;
5927
6560
  tenant?: string | null | undefined;
5928
6561
  user_api_rate_limit?: number | undefined;
6562
+ } | {
6563
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
6564
+ allow_any_account?: boolean | undefined;
6565
+ auth_callback?: string | undefined;
6566
+ client_id: string | null;
6567
+ secret: string | null;
6568
+ tenant?: string | null | undefined;
6569
+ user_api_rate_limit?: number | undefined;
5929
6570
  } | {
5930
6571
  DATA_TYPE: "posix_storage_policies#1.0.0";
5931
6572
  groups_allow?: string[] | null | undefined;
@@ -5939,20 +6580,10 @@ export declare function getClient(configuration: GCSConfiguration): {
5939
6580
  groups_allow?: string[] | null | undefined;
5940
6581
  groups_deny?: string[] | null | undefined;
5941
6582
  stage_app: string;
5942
- } | {
5943
- DATA_TYPE: "s3_storage_policies#1.0.0";
5944
- s3_buckets?: string[] | undefined;
5945
- s3_endpoint?: string | undefined;
5946
- s3_user_credential_required?: boolean | undefined;
5947
6583
  } | undefined;
5948
6584
  process_user?: string | null | undefined;
5949
6585
  require_high_assurance?: boolean | null | undefined;
5950
- restrict_paths?: Record<string, unknown> | {
5951
- DATA_TYPE: "path_restrictions#1.0.0";
5952
- none?: string[] | undefined;
5953
- read?: string[] | undefined;
5954
- read_write?: string[] | undefined;
5955
- } | null | undefined;
6586
+ restrict_paths?: unknown;
5956
6587
  users_allow?: string[] | null | undefined;
5957
6588
  users_deny?: string[] | null | undefined;
5958
6589
  } | {
@@ -5980,6 +6611,17 @@ export declare function getClient(configuration: GCSConfiguration): {
5980
6611
  })[] | null | undefined;
5981
6612
  load_dsi_module?: string | null | undefined;
5982
6613
  policies?: {
6614
+ DATA_TYPE: "s3_storage_policies#1.0.0";
6615
+ s3_buckets?: string[] | undefined;
6616
+ s3_endpoint?: string | undefined;
6617
+ s3_user_credential_required?: boolean | undefined;
6618
+ } | {
6619
+ DATA_TYPE: "s3_storage_policies#1.1.0";
6620
+ s3_buckets?: string[] | undefined;
6621
+ s3_endpoint?: string | undefined;
6622
+ s3_requester_pays?: boolean | undefined;
6623
+ s3_user_credential_required?: boolean | undefined;
6624
+ } | {
5983
6625
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
5984
6626
  account: string | null;
5985
6627
  adls: boolean | null;
@@ -5989,6 +6631,17 @@ export declare function getClient(configuration: GCSConfiguration): {
5989
6631
  secret: string | null;
5990
6632
  tenant: string | null;
5991
6633
  user_credential_required?: boolean | undefined;
6634
+ } | {
6635
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
6636
+ account: string | null;
6637
+ adls: boolean | null;
6638
+ allow_any_account?: boolean | undefined;
6639
+ auth_callback?: string | undefined;
6640
+ auth_type: string | null;
6641
+ client_id: string | null;
6642
+ secret: string | null;
6643
+ tenant: string | null;
6644
+ user_credential_required?: boolean | undefined;
5992
6645
  } | {
5993
6646
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
5994
6647
  bp_access_id_file?: string | undefined;
@@ -6022,12 +6675,37 @@ export declare function getClient(configuration: GCSConfiguration): {
6022
6675
  secret?: string | undefined;
6023
6676
  user_api_rate_limit?: number | undefined;
6024
6677
  user_credential_required?: boolean | undefined;
6678
+ } | {
6679
+ DATA_TYPE: "box_storage_policies#1.2.0";
6680
+ allow_any_account?: boolean | undefined;
6681
+ auth_callback?: string | undefined;
6682
+ boxAppSettings?: {
6683
+ appAuth: {
6684
+ passphrase: string;
6685
+ privateKey: string;
6686
+ publicKeyID: string;
6687
+ };
6688
+ clientID: string;
6689
+ clientSecret: string;
6690
+ } | undefined;
6691
+ client_id?: string | undefined;
6692
+ enterpriseID?: string | undefined;
6693
+ secret?: string | undefined;
6694
+ user_api_rate_limit?: number | undefined;
6695
+ user_credential_required?: boolean | undefined;
6025
6696
  } | {
6026
6697
  DATA_TYPE: "ceph_storage_policies#1.0.0";
6027
6698
  ceph_admin_key_id?: string | undefined;
6028
6699
  ceph_admin_secret_key?: string | undefined;
6029
6700
  s3_buckets?: string[] | undefined;
6030
6701
  s3_endpoint?: string | undefined;
6702
+ } | {
6703
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
6704
+ allow_any_account?: boolean | undefined;
6705
+ auth_callback?: string | undefined;
6706
+ client_id: string | null;
6707
+ secret: string | null;
6708
+ user_api_rate_limit?: number | undefined;
6031
6709
  } | {
6032
6710
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
6033
6711
  auth_callback?: string | undefined;
@@ -6035,7 +6713,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6035
6713
  client_id: string | null;
6036
6714
  projects?: string[] | null | undefined;
6037
6715
  secret: string | null;
6038
- service_account_key?: Record<string, unknown> | null | undefined;
6716
+ service_account_key?: unknown;
6717
+ user_credential_required?: boolean | undefined;
6718
+ } | {
6719
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
6720
+ allow_any_account?: boolean | undefined;
6721
+ auth_callback?: string | undefined;
6722
+ buckets?: string[] | null | undefined;
6723
+ client_id: string | null;
6724
+ projects?: string[] | null | undefined;
6725
+ secret: string | null;
6726
+ service_account_key?: unknown;
6039
6727
  user_credential_required?: boolean | undefined;
6040
6728
  } | {
6041
6729
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -6043,11 +6731,24 @@ export declare function getClient(configuration: GCSConfiguration): {
6043
6731
  client_id: string | null;
6044
6732
  secret: string | null;
6045
6733
  user_api_rate_quota?: number | undefined;
6734
+ } | {
6735
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
6736
+ allow_any_account?: boolean | undefined;
6737
+ auth_callback?: string | undefined;
6738
+ client_id: string | null;
6739
+ secret: string | null;
6740
+ user_api_rate_quota?: number | undefined;
6046
6741
  } | {
6047
6742
  DATA_TYPE: "hpss_storage_policies#1.0.0";
6048
6743
  authentication_mech: "krb5" | "unix";
6049
6744
  authenticator: string;
6050
6745
  uda_checksum: boolean;
6746
+ } | {
6747
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
6748
+ authentication_mech: "krb5" | "unix";
6749
+ authenticator: string;
6750
+ login_name?: string | undefined;
6751
+ uda_checksum: boolean;
6051
6752
  } | {
6052
6753
  DATA_TYPE: "irods_storage_policies#1.0.0";
6053
6754
  environment?: {
@@ -6063,6 +6764,14 @@ export declare function getClient(configuration: GCSConfiguration): {
6063
6764
  secret: string | null;
6064
6765
  tenant?: string | null | undefined;
6065
6766
  user_api_rate_limit?: number | undefined;
6767
+ } | {
6768
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
6769
+ allow_any_account?: boolean | undefined;
6770
+ auth_callback?: string | undefined;
6771
+ client_id: string | null;
6772
+ secret: string | null;
6773
+ tenant?: string | null | undefined;
6774
+ user_api_rate_limit?: number | undefined;
6066
6775
  } | {
6067
6776
  DATA_TYPE: "posix_storage_policies#1.0.0";
6068
6777
  groups_allow?: string[] | null | undefined;
@@ -6076,21 +6785,11 @@ export declare function getClient(configuration: GCSConfiguration): {
6076
6785
  groups_allow?: string[] | null | undefined;
6077
6786
  groups_deny?: string[] | null | undefined;
6078
6787
  stage_app: string;
6079
- } | {
6080
- DATA_TYPE: "s3_storage_policies#1.0.0";
6081
- s3_buckets?: string[] | undefined;
6082
- s3_endpoint?: string | undefined;
6083
- s3_user_credential_required?: boolean | undefined;
6084
6788
  } | undefined;
6085
6789
  process_user?: string | null | undefined;
6086
6790
  require_high_assurance?: boolean | null | undefined;
6087
6791
  require_mfa?: boolean | undefined;
6088
- restrict_paths?: Record<string, unknown> | {
6089
- DATA_TYPE: "path_restrictions#1.0.0";
6090
- none?: string[] | undefined;
6091
- read?: string[] | undefined;
6092
- read_write?: string[] | undefined;
6093
- } | null | undefined;
6792
+ restrict_paths?: unknown;
6094
6793
  users_allow?: string[] | null | undefined;
6095
6794
  users_deny?: string[] | null | undefined;
6096
6795
  } | {
@@ -6119,6 +6818,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6119
6818
  })[] | null | undefined;
6120
6819
  load_dsi_module?: string | null | undefined;
6121
6820
  policies?: {
6821
+ DATA_TYPE: "s3_storage_policies#1.0.0";
6822
+ s3_buckets?: string[] | undefined;
6823
+ s3_endpoint?: string | undefined;
6824
+ s3_user_credential_required?: boolean | undefined;
6825
+ } | {
6826
+ DATA_TYPE: "s3_storage_policies#1.1.0";
6827
+ s3_buckets?: string[] | undefined;
6828
+ s3_endpoint?: string | undefined;
6829
+ s3_requester_pays?: boolean | undefined;
6830
+ s3_user_credential_required?: boolean | undefined;
6831
+ } | {
6122
6832
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
6123
6833
  account: string | null;
6124
6834
  adls: boolean | null;
@@ -6128,6 +6838,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6128
6838
  secret: string | null;
6129
6839
  tenant: string | null;
6130
6840
  user_credential_required?: boolean | undefined;
6841
+ } | {
6842
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
6843
+ account: string | null;
6844
+ adls: boolean | null;
6845
+ allow_any_account?: boolean | undefined;
6846
+ auth_callback?: string | undefined;
6847
+ auth_type: string | null;
6848
+ client_id: string | null;
6849
+ secret: string | null;
6850
+ tenant: string | null;
6851
+ user_credential_required?: boolean | undefined;
6131
6852
  } | {
6132
6853
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
6133
6854
  bp_access_id_file?: string | undefined;
@@ -6161,12 +6882,37 @@ export declare function getClient(configuration: GCSConfiguration): {
6161
6882
  secret?: string | undefined;
6162
6883
  user_api_rate_limit?: number | undefined;
6163
6884
  user_credential_required?: boolean | undefined;
6885
+ } | {
6886
+ DATA_TYPE: "box_storage_policies#1.2.0";
6887
+ allow_any_account?: boolean | undefined;
6888
+ auth_callback?: string | undefined;
6889
+ boxAppSettings?: {
6890
+ appAuth: {
6891
+ passphrase: string;
6892
+ privateKey: string;
6893
+ publicKeyID: string;
6894
+ };
6895
+ clientID: string;
6896
+ clientSecret: string;
6897
+ } | undefined;
6898
+ client_id?: string | undefined;
6899
+ enterpriseID?: string | undefined;
6900
+ secret?: string | undefined;
6901
+ user_api_rate_limit?: number | undefined;
6902
+ user_credential_required?: boolean | undefined;
6164
6903
  } | {
6165
6904
  DATA_TYPE: "ceph_storage_policies#1.0.0";
6166
6905
  ceph_admin_key_id?: string | undefined;
6167
6906
  ceph_admin_secret_key?: string | undefined;
6168
6907
  s3_buckets?: string[] | undefined;
6169
6908
  s3_endpoint?: string | undefined;
6909
+ } | {
6910
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
6911
+ allow_any_account?: boolean | undefined;
6912
+ auth_callback?: string | undefined;
6913
+ client_id: string | null;
6914
+ secret: string | null;
6915
+ user_api_rate_limit?: number | undefined;
6170
6916
  } | {
6171
6917
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
6172
6918
  auth_callback?: string | undefined;
@@ -6174,7 +6920,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6174
6920
  client_id: string | null;
6175
6921
  projects?: string[] | null | undefined;
6176
6922
  secret: string | null;
6177
- service_account_key?: Record<string, unknown> | null | undefined;
6923
+ service_account_key?: unknown;
6924
+ user_credential_required?: boolean | undefined;
6925
+ } | {
6926
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
6927
+ allow_any_account?: boolean | undefined;
6928
+ auth_callback?: string | undefined;
6929
+ buckets?: string[] | null | undefined;
6930
+ client_id: string | null;
6931
+ projects?: string[] | null | undefined;
6932
+ secret: string | null;
6933
+ service_account_key?: unknown;
6178
6934
  user_credential_required?: boolean | undefined;
6179
6935
  } | {
6180
6936
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -6182,11 +6938,24 @@ export declare function getClient(configuration: GCSConfiguration): {
6182
6938
  client_id: string | null;
6183
6939
  secret: string | null;
6184
6940
  user_api_rate_quota?: number | undefined;
6941
+ } | {
6942
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
6943
+ allow_any_account?: boolean | undefined;
6944
+ auth_callback?: string | undefined;
6945
+ client_id: string | null;
6946
+ secret: string | null;
6947
+ user_api_rate_quota?: number | undefined;
6185
6948
  } | {
6186
6949
  DATA_TYPE: "hpss_storage_policies#1.0.0";
6187
6950
  authentication_mech: "krb5" | "unix";
6188
6951
  authenticator: string;
6189
6952
  uda_checksum: boolean;
6953
+ } | {
6954
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
6955
+ authentication_mech: "krb5" | "unix";
6956
+ authenticator: string;
6957
+ login_name?: string | undefined;
6958
+ uda_checksum: boolean;
6190
6959
  } | {
6191
6960
  DATA_TYPE: "irods_storage_policies#1.0.0";
6192
6961
  environment?: {
@@ -6202,6 +6971,14 @@ export declare function getClient(configuration: GCSConfiguration): {
6202
6971
  secret: string | null;
6203
6972
  tenant?: string | null | undefined;
6204
6973
  user_api_rate_limit?: number | undefined;
6974
+ } | {
6975
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
6976
+ allow_any_account?: boolean | undefined;
6977
+ auth_callback?: string | undefined;
6978
+ client_id: string | null;
6979
+ secret: string | null;
6980
+ tenant?: string | null | undefined;
6981
+ user_api_rate_limit?: number | undefined;
6205
6982
  } | {
6206
6983
  DATA_TYPE: "posix_storage_policies#1.0.0";
6207
6984
  groups_allow?: string[] | null | undefined;
@@ -6215,29 +6992,19 @@ export declare function getClient(configuration: GCSConfiguration): {
6215
6992
  groups_allow?: string[] | null | undefined;
6216
6993
  groups_deny?: string[] | null | undefined;
6217
6994
  stage_app: string;
6218
- } | {
6219
- DATA_TYPE: "s3_storage_policies#1.0.0";
6220
- s3_buckets?: string[] | undefined;
6221
- s3_endpoint?: string | undefined;
6222
- s3_user_credential_required?: boolean | undefined;
6223
6995
  } | undefined;
6224
6996
  process_user?: string | null | undefined;
6225
6997
  require_high_assurance?: boolean | null | undefined;
6226
6998
  require_mfa?: boolean | undefined;
6227
- restrict_paths?: Record<string, unknown> | {
6228
- DATA_TYPE: "path_restrictions#1.0.0";
6229
- none?: string[] | undefined;
6230
- read?: string[] | undefined;
6231
- read_write?: string[] | undefined;
6232
- } | null | undefined;
6999
+ restrict_paths?: unknown;
6233
7000
  users_allow?: string[] | null | undefined;
6234
7001
  users_deny?: string[] | null | undefined;
6235
7002
  })[] | undefined;
6236
7003
  } & {
6237
7004
  DATA_TYPE: "result#1.0.0";
6238
7005
  code: string;
6239
- data?: Record<string, never>[] | undefined;
6240
- detail?: Record<string, never> | undefined;
7006
+ data?: Record<string, unknown>[] | undefined;
7007
+ detail?: unknown;
6241
7008
  has_next_page?: boolean | undefined;
6242
7009
  http_response_code: number;
6243
7010
  marker?: string | null | undefined;
@@ -6245,6 +7012,8 @@ export declare function getClient(configuration: GCSConfiguration): {
6245
7012
  }>>;
6246
7013
  getAll: (options?: ({
6247
7014
  query?: {
7015
+ page_size?: number | undefined;
7016
+ marker?: string | undefined;
6248
7017
  include?: ("private_policies" | "accounts")[] | undefined;
6249
7018
  } | undefined;
6250
7019
  } & {
@@ -6279,6 +7048,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6279
7048
  })[] | null | undefined;
6280
7049
  load_dsi_module?: string | null | undefined;
6281
7050
  policies?: {
7051
+ DATA_TYPE: "s3_storage_policies#1.0.0";
7052
+ s3_buckets?: string[] | undefined;
7053
+ s3_endpoint?: string | undefined;
7054
+ s3_user_credential_required?: boolean | undefined;
7055
+ } | {
7056
+ DATA_TYPE: "s3_storage_policies#1.1.0";
7057
+ s3_buckets?: string[] | undefined;
7058
+ s3_endpoint?: string | undefined;
7059
+ s3_requester_pays?: boolean | undefined;
7060
+ s3_user_credential_required?: boolean | undefined;
7061
+ } | {
6282
7062
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
6283
7063
  account: string | null;
6284
7064
  adls: boolean | null;
@@ -6288,6 +7068,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6288
7068
  secret: string | null;
6289
7069
  tenant: string | null;
6290
7070
  user_credential_required?: boolean | undefined;
7071
+ } | {
7072
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
7073
+ account: string | null;
7074
+ adls: boolean | null;
7075
+ allow_any_account?: boolean | undefined;
7076
+ auth_callback?: string | undefined;
7077
+ auth_type: string | null;
7078
+ client_id: string | null;
7079
+ secret: string | null;
7080
+ tenant: string | null;
7081
+ user_credential_required?: boolean | undefined;
6291
7082
  } | {
6292
7083
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
6293
7084
  bp_access_id_file?: string | undefined;
@@ -6321,12 +7112,37 @@ export declare function getClient(configuration: GCSConfiguration): {
6321
7112
  secret?: string | undefined;
6322
7113
  user_api_rate_limit?: number | undefined;
6323
7114
  user_credential_required?: boolean | undefined;
7115
+ } | {
7116
+ DATA_TYPE: "box_storage_policies#1.2.0";
7117
+ allow_any_account?: boolean | undefined;
7118
+ auth_callback?: string | undefined;
7119
+ boxAppSettings?: {
7120
+ appAuth: {
7121
+ passphrase: string;
7122
+ privateKey: string;
7123
+ publicKeyID: string;
7124
+ };
7125
+ clientID: string;
7126
+ clientSecret: string;
7127
+ } | undefined;
7128
+ client_id?: string | undefined;
7129
+ enterpriseID?: string | undefined;
7130
+ secret?: string | undefined;
7131
+ user_api_rate_limit?: number | undefined;
7132
+ user_credential_required?: boolean | undefined;
6324
7133
  } | {
6325
7134
  DATA_TYPE: "ceph_storage_policies#1.0.0";
6326
7135
  ceph_admin_key_id?: string | undefined;
6327
7136
  ceph_admin_secret_key?: string | undefined;
6328
7137
  s3_buckets?: string[] | undefined;
6329
7138
  s3_endpoint?: string | undefined;
7139
+ } | {
7140
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
7141
+ allow_any_account?: boolean | undefined;
7142
+ auth_callback?: string | undefined;
7143
+ client_id: string | null;
7144
+ secret: string | null;
7145
+ user_api_rate_limit?: number | undefined;
6330
7146
  } | {
6331
7147
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
6332
7148
  auth_callback?: string | undefined;
@@ -6334,7 +7150,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6334
7150
  client_id: string | null;
6335
7151
  projects?: string[] | null | undefined;
6336
7152
  secret: string | null;
6337
- service_account_key?: Record<string, unknown> | null | undefined;
7153
+ service_account_key?: unknown;
7154
+ user_credential_required?: boolean | undefined;
7155
+ } | {
7156
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
7157
+ allow_any_account?: boolean | undefined;
7158
+ auth_callback?: string | undefined;
7159
+ buckets?: string[] | null | undefined;
7160
+ client_id: string | null;
7161
+ projects?: string[] | null | undefined;
7162
+ secret: string | null;
7163
+ service_account_key?: unknown;
6338
7164
  user_credential_required?: boolean | undefined;
6339
7165
  } | {
6340
7166
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -6342,11 +7168,24 @@ export declare function getClient(configuration: GCSConfiguration): {
6342
7168
  client_id: string | null;
6343
7169
  secret: string | null;
6344
7170
  user_api_rate_quota?: number | undefined;
7171
+ } | {
7172
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
7173
+ allow_any_account?: boolean | undefined;
7174
+ auth_callback?: string | undefined;
7175
+ client_id: string | null;
7176
+ secret: string | null;
7177
+ user_api_rate_quota?: number | undefined;
6345
7178
  } | {
6346
7179
  DATA_TYPE: "hpss_storage_policies#1.0.0";
6347
7180
  authentication_mech: "krb5" | "unix";
6348
7181
  authenticator: string;
6349
7182
  uda_checksum: boolean;
7183
+ } | {
7184
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
7185
+ authentication_mech: "krb5" | "unix";
7186
+ authenticator: string;
7187
+ login_name?: string | undefined;
7188
+ uda_checksum: boolean;
6350
7189
  } | {
6351
7190
  DATA_TYPE: "irods_storage_policies#1.0.0";
6352
7191
  environment?: {
@@ -6362,6 +7201,14 @@ export declare function getClient(configuration: GCSConfiguration): {
6362
7201
  secret: string | null;
6363
7202
  tenant?: string | null | undefined;
6364
7203
  user_api_rate_limit?: number | undefined;
7204
+ } | {
7205
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
7206
+ allow_any_account?: boolean | undefined;
7207
+ auth_callback?: string | undefined;
7208
+ client_id: string | null;
7209
+ secret: string | null;
7210
+ tenant?: string | null | undefined;
7211
+ user_api_rate_limit?: number | undefined;
6365
7212
  } | {
6366
7213
  DATA_TYPE: "posix_storage_policies#1.0.0";
6367
7214
  groups_allow?: string[] | null | undefined;
@@ -6375,20 +7222,10 @@ export declare function getClient(configuration: GCSConfiguration): {
6375
7222
  groups_allow?: string[] | null | undefined;
6376
7223
  groups_deny?: string[] | null | undefined;
6377
7224
  stage_app: string;
6378
- } | {
6379
- DATA_TYPE: "s3_storage_policies#1.0.0";
6380
- s3_buckets?: string[] | undefined;
6381
- s3_endpoint?: string | undefined;
6382
- s3_user_credential_required?: boolean | undefined;
6383
7225
  } | undefined;
6384
7226
  process_user?: string | null | undefined;
6385
7227
  require_high_assurance?: boolean | null | undefined;
6386
- restrict_paths?: Record<string, unknown> | {
6387
- DATA_TYPE: "path_restrictions#1.0.0";
6388
- none?: string[] | undefined;
6389
- read?: string[] | undefined;
6390
- read_write?: string[] | undefined;
6391
- } | null | undefined;
7228
+ restrict_paths?: unknown;
6392
7229
  users_allow?: string[] | null | undefined;
6393
7230
  users_deny?: string[] | null | undefined;
6394
7231
  } | {
@@ -6416,6 +7253,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6416
7253
  })[] | null | undefined;
6417
7254
  load_dsi_module?: string | null | undefined;
6418
7255
  policies?: {
7256
+ DATA_TYPE: "s3_storage_policies#1.0.0";
7257
+ s3_buckets?: string[] | undefined;
7258
+ s3_endpoint?: string | undefined;
7259
+ s3_user_credential_required?: boolean | undefined;
7260
+ } | {
7261
+ DATA_TYPE: "s3_storage_policies#1.1.0";
7262
+ s3_buckets?: string[] | undefined;
7263
+ s3_endpoint?: string | undefined;
7264
+ s3_requester_pays?: boolean | undefined;
7265
+ s3_user_credential_required?: boolean | undefined;
7266
+ } | {
6419
7267
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
6420
7268
  account: string | null;
6421
7269
  adls: boolean | null;
@@ -6425,6 +7273,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6425
7273
  secret: string | null;
6426
7274
  tenant: string | null;
6427
7275
  user_credential_required?: boolean | undefined;
7276
+ } | {
7277
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
7278
+ account: string | null;
7279
+ adls: boolean | null;
7280
+ allow_any_account?: boolean | undefined;
7281
+ auth_callback?: string | undefined;
7282
+ auth_type: string | null;
7283
+ client_id: string | null;
7284
+ secret: string | null;
7285
+ tenant: string | null;
7286
+ user_credential_required?: boolean | undefined;
6428
7287
  } | {
6429
7288
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
6430
7289
  bp_access_id_file?: string | undefined;
@@ -6458,12 +7317,37 @@ export declare function getClient(configuration: GCSConfiguration): {
6458
7317
  secret?: string | undefined;
6459
7318
  user_api_rate_limit?: number | undefined;
6460
7319
  user_credential_required?: boolean | undefined;
7320
+ } | {
7321
+ DATA_TYPE: "box_storage_policies#1.2.0";
7322
+ allow_any_account?: boolean | undefined;
7323
+ auth_callback?: string | undefined;
7324
+ boxAppSettings?: {
7325
+ appAuth: {
7326
+ passphrase: string;
7327
+ privateKey: string;
7328
+ publicKeyID: string;
7329
+ };
7330
+ clientID: string;
7331
+ clientSecret: string;
7332
+ } | undefined;
7333
+ client_id?: string | undefined;
7334
+ enterpriseID?: string | undefined;
7335
+ secret?: string | undefined;
7336
+ user_api_rate_limit?: number | undefined;
7337
+ user_credential_required?: boolean | undefined;
6461
7338
  } | {
6462
7339
  DATA_TYPE: "ceph_storage_policies#1.0.0";
6463
7340
  ceph_admin_key_id?: string | undefined;
6464
7341
  ceph_admin_secret_key?: string | undefined;
6465
7342
  s3_buckets?: string[] | undefined;
6466
7343
  s3_endpoint?: string | undefined;
7344
+ } | {
7345
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
7346
+ allow_any_account?: boolean | undefined;
7347
+ auth_callback?: string | undefined;
7348
+ client_id: string | null;
7349
+ secret: string | null;
7350
+ user_api_rate_limit?: number | undefined;
6467
7351
  } | {
6468
7352
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
6469
7353
  auth_callback?: string | undefined;
@@ -6471,7 +7355,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6471
7355
  client_id: string | null;
6472
7356
  projects?: string[] | null | undefined;
6473
7357
  secret: string | null;
6474
- service_account_key?: Record<string, unknown> | null | undefined;
7358
+ service_account_key?: unknown;
7359
+ user_credential_required?: boolean | undefined;
7360
+ } | {
7361
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
7362
+ allow_any_account?: boolean | undefined;
7363
+ auth_callback?: string | undefined;
7364
+ buckets?: string[] | null | undefined;
7365
+ client_id: string | null;
7366
+ projects?: string[] | null | undefined;
7367
+ secret: string | null;
7368
+ service_account_key?: unknown;
6475
7369
  user_credential_required?: boolean | undefined;
6476
7370
  } | {
6477
7371
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -6479,11 +7373,24 @@ export declare function getClient(configuration: GCSConfiguration): {
6479
7373
  client_id: string | null;
6480
7374
  secret: string | null;
6481
7375
  user_api_rate_quota?: number | undefined;
7376
+ } | {
7377
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
7378
+ allow_any_account?: boolean | undefined;
7379
+ auth_callback?: string | undefined;
7380
+ client_id: string | null;
7381
+ secret: string | null;
7382
+ user_api_rate_quota?: number | undefined;
6482
7383
  } | {
6483
7384
  DATA_TYPE: "hpss_storage_policies#1.0.0";
6484
7385
  authentication_mech: "krb5" | "unix";
6485
7386
  authenticator: string;
6486
7387
  uda_checksum: boolean;
7388
+ } | {
7389
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
7390
+ authentication_mech: "krb5" | "unix";
7391
+ authenticator: string;
7392
+ login_name?: string | undefined;
7393
+ uda_checksum: boolean;
6487
7394
  } | {
6488
7395
  DATA_TYPE: "irods_storage_policies#1.0.0";
6489
7396
  environment?: {
@@ -6499,6 +7406,14 @@ export declare function getClient(configuration: GCSConfiguration): {
6499
7406
  secret: string | null;
6500
7407
  tenant?: string | null | undefined;
6501
7408
  user_api_rate_limit?: number | undefined;
7409
+ } | {
7410
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
7411
+ allow_any_account?: boolean | undefined;
7412
+ auth_callback?: string | undefined;
7413
+ client_id: string | null;
7414
+ secret: string | null;
7415
+ tenant?: string | null | undefined;
7416
+ user_api_rate_limit?: number | undefined;
6502
7417
  } | {
6503
7418
  DATA_TYPE: "posix_storage_policies#1.0.0";
6504
7419
  groups_allow?: string[] | null | undefined;
@@ -6512,21 +7427,11 @@ export declare function getClient(configuration: GCSConfiguration): {
6512
7427
  groups_allow?: string[] | null | undefined;
6513
7428
  groups_deny?: string[] | null | undefined;
6514
7429
  stage_app: string;
6515
- } | {
6516
- DATA_TYPE: "s3_storage_policies#1.0.0";
6517
- s3_buckets?: string[] | undefined;
6518
- s3_endpoint?: string | undefined;
6519
- s3_user_credential_required?: boolean | undefined;
6520
7430
  } | undefined;
6521
7431
  process_user?: string | null | undefined;
6522
7432
  require_high_assurance?: boolean | null | undefined;
6523
7433
  require_mfa?: boolean | undefined;
6524
- restrict_paths?: Record<string, unknown> | {
6525
- DATA_TYPE: "path_restrictions#1.0.0";
6526
- none?: string[] | undefined;
6527
- read?: string[] | undefined;
6528
- read_write?: string[] | undefined;
6529
- } | null | undefined;
7434
+ restrict_paths?: unknown;
6530
7435
  users_allow?: string[] | null | undefined;
6531
7436
  users_deny?: string[] | null | undefined;
6532
7437
  } | {
@@ -6555,6 +7460,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6555
7460
  })[] | null | undefined;
6556
7461
  load_dsi_module?: string | null | undefined;
6557
7462
  policies?: {
7463
+ DATA_TYPE: "s3_storage_policies#1.0.0";
7464
+ s3_buckets?: string[] | undefined;
7465
+ s3_endpoint?: string | undefined;
7466
+ s3_user_credential_required?: boolean | undefined;
7467
+ } | {
7468
+ DATA_TYPE: "s3_storage_policies#1.1.0";
7469
+ s3_buckets?: string[] | undefined;
7470
+ s3_endpoint?: string | undefined;
7471
+ s3_requester_pays?: boolean | undefined;
7472
+ s3_user_credential_required?: boolean | undefined;
7473
+ } | {
6558
7474
  DATA_TYPE: "azure_blob_storage_policies#1.0.0";
6559
7475
  account: string | null;
6560
7476
  adls: boolean | null;
@@ -6564,6 +7480,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6564
7480
  secret: string | null;
6565
7481
  tenant: string | null;
6566
7482
  user_credential_required?: boolean | undefined;
7483
+ } | {
7484
+ DATA_TYPE: "azure_blob_storage_policies#1.1.0";
7485
+ account: string | null;
7486
+ adls: boolean | null;
7487
+ allow_any_account?: boolean | undefined;
7488
+ auth_callback?: string | undefined;
7489
+ auth_type: string | null;
7490
+ client_id: string | null;
7491
+ secret: string | null;
7492
+ tenant: string | null;
7493
+ user_credential_required?: boolean | undefined;
6567
7494
  } | {
6568
7495
  DATA_TYPE: "blackpearl_storage_policies#1.0.0";
6569
7496
  bp_access_id_file?: string | undefined;
@@ -6597,12 +7524,37 @@ export declare function getClient(configuration: GCSConfiguration): {
6597
7524
  secret?: string | undefined;
6598
7525
  user_api_rate_limit?: number | undefined;
6599
7526
  user_credential_required?: boolean | undefined;
7527
+ } | {
7528
+ DATA_TYPE: "box_storage_policies#1.2.0";
7529
+ allow_any_account?: boolean | undefined;
7530
+ auth_callback?: string | undefined;
7531
+ boxAppSettings?: {
7532
+ appAuth: {
7533
+ passphrase: string;
7534
+ privateKey: string;
7535
+ publicKeyID: string;
7536
+ };
7537
+ clientID: string;
7538
+ clientSecret: string;
7539
+ } | undefined;
7540
+ client_id?: string | undefined;
7541
+ enterpriseID?: string | undefined;
7542
+ secret?: string | undefined;
7543
+ user_api_rate_limit?: number | undefined;
7544
+ user_credential_required?: boolean | undefined;
6600
7545
  } | {
6601
7546
  DATA_TYPE: "ceph_storage_policies#1.0.0";
6602
7547
  ceph_admin_key_id?: string | undefined;
6603
7548
  ceph_admin_secret_key?: string | undefined;
6604
7549
  s3_buckets?: string[] | undefined;
6605
7550
  s3_endpoint?: string | undefined;
7551
+ } | {
7552
+ DATA_TYPE: "dropbox_storage_policies#1.0.0";
7553
+ allow_any_account?: boolean | undefined;
7554
+ auth_callback?: string | undefined;
7555
+ client_id: string | null;
7556
+ secret: string | null;
7557
+ user_api_rate_limit?: number | undefined;
6606
7558
  } | {
6607
7559
  DATA_TYPE: "google_cloud_storage_policies#1.0.0";
6608
7560
  auth_callback?: string | undefined;
@@ -6610,7 +7562,17 @@ export declare function getClient(configuration: GCSConfiguration): {
6610
7562
  client_id: string | null;
6611
7563
  projects?: string[] | null | undefined;
6612
7564
  secret: string | null;
6613
- service_account_key?: Record<string, unknown> | null | undefined;
7565
+ service_account_key?: unknown;
7566
+ user_credential_required?: boolean | undefined;
7567
+ } | {
7568
+ DATA_TYPE: "google_cloud_storage_policies#1.1.0";
7569
+ allow_any_account?: boolean | undefined;
7570
+ auth_callback?: string | undefined;
7571
+ buckets?: string[] | null | undefined;
7572
+ client_id: string | null;
7573
+ projects?: string[] | null | undefined;
7574
+ secret: string | null;
7575
+ service_account_key?: unknown;
6614
7576
  user_credential_required?: boolean | undefined;
6615
7577
  } | {
6616
7578
  DATA_TYPE: "google_drive_storage_policies#1.0.0";
@@ -6618,11 +7580,24 @@ export declare function getClient(configuration: GCSConfiguration): {
6618
7580
  client_id: string | null;
6619
7581
  secret: string | null;
6620
7582
  user_api_rate_quota?: number | undefined;
7583
+ } | {
7584
+ DATA_TYPE: "google_drive_storage_policies#1.1.0";
7585
+ allow_any_account?: boolean | undefined;
7586
+ auth_callback?: string | undefined;
7587
+ client_id: string | null;
7588
+ secret: string | null;
7589
+ user_api_rate_quota?: number | undefined;
6621
7590
  } | {
6622
7591
  DATA_TYPE: "hpss_storage_policies#1.0.0";
6623
7592
  authentication_mech: "krb5" | "unix";
6624
7593
  authenticator: string;
6625
7594
  uda_checksum: boolean;
7595
+ } | {
7596
+ DATA_TYPE: "hpss_storage_policies#1.1.0";
7597
+ authentication_mech: "krb5" | "unix";
7598
+ authenticator: string;
7599
+ login_name?: string | undefined;
7600
+ uda_checksum: boolean;
6626
7601
  } | {
6627
7602
  DATA_TYPE: "irods_storage_policies#1.0.0";
6628
7603
  environment?: {
@@ -6638,6 +7613,14 @@ export declare function getClient(configuration: GCSConfiguration): {
6638
7613
  secret: string | null;
6639
7614
  tenant?: string | null | undefined;
6640
7615
  user_api_rate_limit?: number | undefined;
7616
+ } | {
7617
+ DATA_TYPE: "onedrive_storage_policies#1.1.0";
7618
+ allow_any_account?: boolean | undefined;
7619
+ auth_callback?: string | undefined;
7620
+ client_id: string | null;
7621
+ secret: string | null;
7622
+ tenant?: string | null | undefined;
7623
+ user_api_rate_limit?: number | undefined;
6641
7624
  } | {
6642
7625
  DATA_TYPE: "posix_storage_policies#1.0.0";
6643
7626
  groups_allow?: string[] | null | undefined;
@@ -6651,29 +7634,19 @@ export declare function getClient(configuration: GCSConfiguration): {
6651
7634
  groups_allow?: string[] | null | undefined;
6652
7635
  groups_deny?: string[] | null | undefined;
6653
7636
  stage_app: string;
6654
- } | {
6655
- DATA_TYPE: "s3_storage_policies#1.0.0";
6656
- s3_buckets?: string[] | undefined;
6657
- s3_endpoint?: string | undefined;
6658
- s3_user_credential_required?: boolean | undefined;
6659
7637
  } | undefined;
6660
7638
  process_user?: string | null | undefined;
6661
7639
  require_high_assurance?: boolean | null | undefined;
6662
7640
  require_mfa?: boolean | undefined;
6663
- restrict_paths?: Record<string, unknown> | {
6664
- DATA_TYPE: "path_restrictions#1.0.0";
6665
- none?: string[] | undefined;
6666
- read?: string[] | undefined;
6667
- read_write?: string[] | undefined;
6668
- } | null | undefined;
7641
+ restrict_paths?: unknown;
6669
7642
  users_allow?: string[] | null | undefined;
6670
7643
  users_deny?: string[] | null | undefined;
6671
7644
  })[] | undefined;
6672
7645
  } & {
6673
7646
  DATA_TYPE: "result#1.0.0";
6674
7647
  code: string;
6675
- data?: Record<string, never>[] | undefined;
6676
- detail?: Record<string, never> | undefined;
7648
+ data?: Record<string, unknown>[] | undefined;
7649
+ detail?: unknown;
6677
7650
  has_next_page?: boolean | undefined;
6678
7651
  http_response_code: number;
6679
7652
  marker?: string | null | undefined;
@@ -6701,8 +7674,8 @@ export declare function getClient(configuration: GCSConfiguration): {
6701
7674
  } & {
6702
7675
  DATA_TYPE: "result#1.0.0";
6703
7676
  code: string;
6704
- data?: Record<string, never>[] | undefined;
6705
- detail?: Record<string, never> | undefined;
7677
+ data?: Record<string, unknown>[] | undefined;
7678
+ detail?: unknown;
6706
7679
  has_next_page?: boolean | undefined;
6707
7680
  http_response_code: number;
6708
7681
  marker?: string | null | undefined;
@@ -6710,6 +7683,9 @@ export declare function getClient(configuration: GCSConfiguration): {
6710
7683
  }>>;
6711
7684
  getAll: (options?: ({
6712
7685
  query?: {
7686
+ page_size?: number | undefined;
7687
+ marker?: string | undefined;
7688
+ collection_id?: string | undefined;
6713
7689
  include?: "all_roles"[] | undefined;
6714
7690
  } | undefined;
6715
7691
  } & {
@@ -6729,8 +7705,8 @@ export declare function getClient(configuration: GCSConfiguration): {
6729
7705
  } & {
6730
7706
  DATA_TYPE: "result#1.0.0";
6731
7707
  code: string;
6732
- data?: Record<string, never>[] | undefined;
6733
- detail?: Record<string, never> | undefined;
7708
+ data?: Record<string, unknown>[] | undefined;
7709
+ detail?: unknown;
6734
7710
  has_next_page?: boolean | undefined;
6735
7711
  http_response_code: number;
6736
7712
  marker?: string | null | undefined;
@@ -6761,8 +7737,8 @@ export declare function getClient(configuration: GCSConfiguration): {
6761
7737
  } & {
6762
7738
  DATA_TYPE: "result#1.0.0";
6763
7739
  code: string;
6764
- data?: Record<string, never>[] | undefined;
6765
- detail?: Record<string, never> | undefined;
7740
+ data?: Record<string, unknown>[] | undefined;
7741
+ detail?: unknown;
6766
7742
  has_next_page?: boolean | undefined;
6767
7743
  http_response_code: number;
6768
7744
  marker?: string | null | undefined;
@@ -6779,8 +7755,8 @@ export declare function getClient(configuration: GCSConfiguration): {
6779
7755
  }) | undefined, sdkOptions?: import("../types.js").SDKOptions | undefined) => Promise<import("../types.js").JSONFetchResponse<{
6780
7756
  DATA_TYPE: "result#1.0.0";
6781
7757
  code: string;
6782
- data?: Record<string, never>[] | undefined;
6783
- detail?: Record<string, never> | undefined;
7758
+ data?: Record<string, unknown>[] | undefined;
7759
+ detail?: unknown;
6784
7760
  has_next_page?: boolean | undefined;
6785
7761
  http_response_code: number;
6786
7762
  marker?: string | null | undefined;