@pulumi/gcp 7.22.0-alpha.1715345822 → 7.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/alloydb/cluster.d.ts +15 -0
- package/alloydb/cluster.js +2 -0
- package/alloydb/cluster.js.map +1 -1
- package/applicationintegration/authConfig.d.ts +1 -4
- package/applicationintegration/authConfig.js +1 -4
- package/applicationintegration/authConfig.js.map +1 -1
- package/applicationintegration/client.d.ts +45 -6
- package/applicationintegration/client.js +5 -6
- package/applicationintegration/client.js.map +1 -1
- package/bigquery/dataset.d.ts +1 -1
- package/bigquery/dataset.js +1 -1
- package/bigquery/job.d.ts +10 -11
- package/bigquery/job.js +10 -11
- package/bigquery/job.js.map +1 -1
- package/cloudrunv2/job.d.ts +1 -2
- package/cloudrunv2/job.js +1 -2
- package/cloudrunv2/job.js.map +1 -1
- package/cloudrunv2/service.d.ts +1 -2
- package/cloudrunv2/service.js +1 -2
- package/cloudrunv2/service.js.map +1 -1
- package/compute/routerPeer.d.ts +27 -6
- package/compute/routerPeer.js +21 -0
- package/compute/routerPeer.js.map +1 -1
- package/config/vars.d.ts +1 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/dataflow/flexTemplateJob.d.ts +9 -9
- package/dataflow/job.d.ts +9 -3
- package/dataflow/job.js.map +1 -1
- package/essentialcontacts/documentAiWarehouseDocumentSchema.d.ts +0 -272
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js +0 -272
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js.map +1 -1
- package/firebaserules/release.d.ts +1 -1
- package/firebaserules/release.js +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/privilegedaccessmanager/entitlement.d.ts +277 -0
- package/privilegedaccessmanager/entitlement.js +157 -0
- package/privilegedaccessmanager/entitlement.js.map +1 -0
- package/privilegedaccessmanager/index.d.ts +3 -0
- package/privilegedaccessmanager/index.js +22 -0
- package/privilegedaccessmanager/index.js.map +1 -0
- package/provider.d.ts +2 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/redis/cluster.d.ts +27 -0
- package/redis/cluster.js +5 -0
- package/redis/cluster.js.map +1 -1
- package/storage/getBuckets.d.ts +81 -0
- package/storage/getBuckets.js +57 -0
- package/storage/getBuckets.js.map +1 -0
- package/storage/index.d.ts +3 -0
- package/storage/index.js +4 -1
- package/storage/index.js.map +1 -1
- package/types/input.d.ts +198 -0
- package/types/output.d.ts +250 -0
package/types/output.d.ts
CHANGED
|
@@ -1916,6 +1916,43 @@ export declare namespace alloydb {
|
|
|
1916
1916
|
*/
|
|
1917
1917
|
user?: string;
|
|
1918
1918
|
}
|
|
1919
|
+
interface ClusterMaintenanceUpdatePolicy {
|
|
1920
|
+
/**
|
|
1921
|
+
* Preferred windows to perform maintenance. Currently limited to 1.
|
|
1922
|
+
* Structure is documented below.
|
|
1923
|
+
*/
|
|
1924
|
+
maintenanceWindows?: outputs.alloydb.ClusterMaintenanceUpdatePolicyMaintenanceWindow[];
|
|
1925
|
+
}
|
|
1926
|
+
interface ClusterMaintenanceUpdatePolicyMaintenanceWindow {
|
|
1927
|
+
/**
|
|
1928
|
+
* Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
|
|
1929
|
+
* Possible values are: `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
|
|
1930
|
+
*/
|
|
1931
|
+
day: string;
|
|
1932
|
+
/**
|
|
1933
|
+
* Preferred time to start the maintenance operation on the specified day. Maintenance will start within 1 hour of this time.
|
|
1934
|
+
* Structure is documented below.
|
|
1935
|
+
*/
|
|
1936
|
+
startTime: outputs.alloydb.ClusterMaintenanceUpdatePolicyMaintenanceWindowStartTime;
|
|
1937
|
+
}
|
|
1938
|
+
interface ClusterMaintenanceUpdatePolicyMaintenanceWindowStartTime {
|
|
1939
|
+
/**
|
|
1940
|
+
* Hours of day in 24 hour format. Should be from 0 to 23.
|
|
1941
|
+
*/
|
|
1942
|
+
hours: number;
|
|
1943
|
+
/**
|
|
1944
|
+
* Minutes of hour of day. Currently, only the value 0 is supported.
|
|
1945
|
+
*/
|
|
1946
|
+
minutes?: number;
|
|
1947
|
+
/**
|
|
1948
|
+
* Fractions of seconds in nanoseconds. Currently, only the value 0 is supported.
|
|
1949
|
+
*/
|
|
1950
|
+
nanos?: number;
|
|
1951
|
+
/**
|
|
1952
|
+
* Seconds of minutes of the time. Currently, only the value 0 is supported.
|
|
1953
|
+
*/
|
|
1954
|
+
seconds?: number;
|
|
1955
|
+
}
|
|
1919
1956
|
interface ClusterMigrationSource {
|
|
1920
1957
|
/**
|
|
1921
1958
|
* The host and port of the on-premises instance in host:port format
|
|
@@ -30571,6 +30608,8 @@ export declare namespace compute {
|
|
|
30571
30608
|
* The number of consecutive BFD packets that must be missed before
|
|
30572
30609
|
* BFD declares that a peer is unavailable. If set, the value must
|
|
30573
30610
|
* be a value between 5 and 16.
|
|
30611
|
+
*
|
|
30612
|
+
* <a name="nestedMd5AuthenticationKey"></a>The `md5AuthenticationKey` block supports:
|
|
30574
30613
|
*/
|
|
30575
30614
|
multiplier?: number;
|
|
30576
30615
|
/**
|
|
@@ -34949,6 +34988,10 @@ export declare namespace container {
|
|
|
34949
34988
|
* Sandbox configuration for this node.
|
|
34950
34989
|
*/
|
|
34951
34990
|
sandboxConfig?: outputs.container.ClusterNodeConfigSandboxConfig;
|
|
34991
|
+
/**
|
|
34992
|
+
* Parameters for secondary boot disks to preload container images and data on new nodes. Structure is documented below. `gcfsConfig` must be `enabled=true` for this feature to work. `minMasterVersion` must also be set to use GKE 1.28.3-gke.106700 or later versions.
|
|
34993
|
+
*/
|
|
34994
|
+
secondaryBootDisks?: outputs.container.ClusterNodeConfigSecondaryBootDisk[];
|
|
34952
34995
|
/**
|
|
34953
34996
|
* The service account to be used by the Node VMs.
|
|
34954
34997
|
* If not specified, the "default" service account is used.
|
|
@@ -35079,6 +35122,7 @@ export declare namespace container {
|
|
|
35079
35122
|
* The type of GPU sharing strategy to enable on the GPU node.
|
|
35080
35123
|
* Accepted values are:
|
|
35081
35124
|
* * `"TIME_SHARING"`: Allow multiple containers to have [time-shared](https://cloud.google.com/kubernetes-engine/docs/concepts/timesharing-gpus) access to a single GPU device.
|
|
35125
|
+
* * `"MPS"`: Enable co-operative multi-process CUDA workloads to run concurrently on a single GPU device with [MPS](https://cloud.google.com/kubernetes-engine/docs/how-to/nvidia-mps-gpus)
|
|
35082
35126
|
*/
|
|
35083
35127
|
gpuSharingStrategy: string;
|
|
35084
35128
|
/**
|
|
@@ -35179,6 +35223,16 @@ export declare namespace container {
|
|
|
35179
35223
|
*/
|
|
35180
35224
|
sandboxType: string;
|
|
35181
35225
|
}
|
|
35226
|
+
interface ClusterNodeConfigSecondaryBootDisk {
|
|
35227
|
+
/**
|
|
35228
|
+
* Path to disk image to create the secondary boot disk from. After using the [gke-disk-image-builder](https://github.com/GoogleCloudPlatform/ai-on-gke/tree/main/tools/gke-disk-image-builder), this argument should be `global/images/DISK_IMAGE_NAME`.
|
|
35229
|
+
*/
|
|
35230
|
+
diskImage: string;
|
|
35231
|
+
/**
|
|
35232
|
+
* Mode for how the secondary boot disk is used. An example mode is `CONTAINER_IMAGE_CACHE`.
|
|
35233
|
+
*/
|
|
35234
|
+
mode?: string;
|
|
35235
|
+
}
|
|
35182
35236
|
interface ClusterNodeConfigShieldedInstanceConfig {
|
|
35183
35237
|
/**
|
|
35184
35238
|
* Defines if the instance has integrity monitoring enabled.
|
|
@@ -35652,6 +35706,10 @@ export declare namespace container {
|
|
|
35652
35706
|
* Sandbox configuration for this node.
|
|
35653
35707
|
*/
|
|
35654
35708
|
sandboxConfig?: outputs.container.ClusterNodePoolNodeConfigSandboxConfig;
|
|
35709
|
+
/**
|
|
35710
|
+
* Parameters for secondary boot disks to preload container images and data on new nodes. Structure is documented below. `gcfsConfig` must be `enabled=true` for this feature to work. `minMasterVersion` must also be set to use GKE 1.28.3-gke.106700 or later versions.
|
|
35711
|
+
*/
|
|
35712
|
+
secondaryBootDisks?: outputs.container.ClusterNodePoolNodeConfigSecondaryBootDisk[];
|
|
35655
35713
|
/**
|
|
35656
35714
|
* The service account to be used by the Node VMs.
|
|
35657
35715
|
* If not specified, the "default" service account is used.
|
|
@@ -35782,6 +35840,7 @@ export declare namespace container {
|
|
|
35782
35840
|
* The type of GPU sharing strategy to enable on the GPU node.
|
|
35783
35841
|
* Accepted values are:
|
|
35784
35842
|
* * `"TIME_SHARING"`: Allow multiple containers to have [time-shared](https://cloud.google.com/kubernetes-engine/docs/concepts/timesharing-gpus) access to a single GPU device.
|
|
35843
|
+
* * `"MPS"`: Enable co-operative multi-process CUDA workloads to run concurrently on a single GPU device with [MPS](https://cloud.google.com/kubernetes-engine/docs/how-to/nvidia-mps-gpus)
|
|
35785
35844
|
*/
|
|
35786
35845
|
gpuSharingStrategy: string;
|
|
35787
35846
|
/**
|
|
@@ -35882,6 +35941,16 @@ export declare namespace container {
|
|
|
35882
35941
|
*/
|
|
35883
35942
|
sandboxType: string;
|
|
35884
35943
|
}
|
|
35944
|
+
interface ClusterNodePoolNodeConfigSecondaryBootDisk {
|
|
35945
|
+
/**
|
|
35946
|
+
* Path to disk image to create the secondary boot disk from. After using the [gke-disk-image-builder](https://github.com/GoogleCloudPlatform/ai-on-gke/tree/main/tools/gke-disk-image-builder), this argument should be `global/images/DISK_IMAGE_NAME`.
|
|
35947
|
+
*/
|
|
35948
|
+
diskImage: string;
|
|
35949
|
+
/**
|
|
35950
|
+
* Mode for how the secondary boot disk is used. An example mode is `CONTAINER_IMAGE_CACHE`.
|
|
35951
|
+
*/
|
|
35952
|
+
mode?: string;
|
|
35953
|
+
}
|
|
35885
35954
|
interface ClusterNodePoolNodeConfigShieldedInstanceConfig {
|
|
35886
35955
|
/**
|
|
35887
35956
|
* Defines if the instance has integrity monitoring enabled.
|
|
@@ -36867,6 +36936,10 @@ export declare namespace container {
|
|
|
36867
36936
|
* Sandbox configuration for this node.
|
|
36868
36937
|
*/
|
|
36869
36938
|
sandboxConfigs: outputs.container.GetClusterNodeConfigSandboxConfig[];
|
|
36939
|
+
/**
|
|
36940
|
+
* Secondary boot disks for preloading data or container images.
|
|
36941
|
+
*/
|
|
36942
|
+
secondaryBootDisks: outputs.container.GetClusterNodeConfigSecondaryBootDisk[];
|
|
36870
36943
|
/**
|
|
36871
36944
|
* The Google Cloud Platform Service Account to be used by the node VMs.
|
|
36872
36945
|
*/
|
|
@@ -37052,6 +37125,16 @@ export declare namespace container {
|
|
|
37052
37125
|
*/
|
|
37053
37126
|
sandboxType: string;
|
|
37054
37127
|
}
|
|
37128
|
+
interface GetClusterNodeConfigSecondaryBootDisk {
|
|
37129
|
+
/**
|
|
37130
|
+
* Disk image to create the secondary boot disk from
|
|
37131
|
+
*/
|
|
37132
|
+
diskImage: string;
|
|
37133
|
+
/**
|
|
37134
|
+
* Mode for how the secondary boot disk is used.
|
|
37135
|
+
*/
|
|
37136
|
+
mode: string;
|
|
37137
|
+
}
|
|
37055
37138
|
interface GetClusterNodeConfigShieldedInstanceConfig {
|
|
37056
37139
|
/**
|
|
37057
37140
|
* Defines whether the instance has integrity monitoring enabled.
|
|
@@ -37437,6 +37520,10 @@ export declare namespace container {
|
|
|
37437
37520
|
* Sandbox configuration for this node.
|
|
37438
37521
|
*/
|
|
37439
37522
|
sandboxConfigs: outputs.container.GetClusterNodePoolNodeConfigSandboxConfig[];
|
|
37523
|
+
/**
|
|
37524
|
+
* Secondary boot disks for preloading data or container images.
|
|
37525
|
+
*/
|
|
37526
|
+
secondaryBootDisks: outputs.container.GetClusterNodePoolNodeConfigSecondaryBootDisk[];
|
|
37440
37527
|
/**
|
|
37441
37528
|
* The Google Cloud Platform Service Account to be used by the node VMs.
|
|
37442
37529
|
*/
|
|
@@ -37622,6 +37709,16 @@ export declare namespace container {
|
|
|
37622
37709
|
*/
|
|
37623
37710
|
sandboxType: string;
|
|
37624
37711
|
}
|
|
37712
|
+
interface GetClusterNodePoolNodeConfigSecondaryBootDisk {
|
|
37713
|
+
/**
|
|
37714
|
+
* Disk image to create the secondary boot disk from
|
|
37715
|
+
*/
|
|
37716
|
+
diskImage: string;
|
|
37717
|
+
/**
|
|
37718
|
+
* Mode for how the secondary boot disk is used.
|
|
37719
|
+
*/
|
|
37720
|
+
mode: string;
|
|
37721
|
+
}
|
|
37625
37722
|
interface GetClusterNodePoolNodeConfigShieldedInstanceConfig {
|
|
37626
37723
|
/**
|
|
37627
37724
|
* Defines whether the instance has integrity monitoring enabled.
|
|
@@ -38144,6 +38241,10 @@ export declare namespace container {
|
|
|
38144
38241
|
* Sandbox configuration for this node.
|
|
38145
38242
|
*/
|
|
38146
38243
|
sandboxConfig?: outputs.container.NodePoolNodeConfigSandboxConfig;
|
|
38244
|
+
/**
|
|
38245
|
+
* Secondary boot disks for preloading data or container images.
|
|
38246
|
+
*/
|
|
38247
|
+
secondaryBootDisks?: outputs.container.NodePoolNodeConfigSecondaryBootDisk[];
|
|
38147
38248
|
/**
|
|
38148
38249
|
* The Google Cloud Platform Service Account to be used by the node VMs.
|
|
38149
38250
|
*/
|
|
@@ -38330,6 +38431,16 @@ export declare namespace container {
|
|
|
38330
38431
|
*/
|
|
38331
38432
|
sandboxType: string;
|
|
38332
38433
|
}
|
|
38434
|
+
interface NodePoolNodeConfigSecondaryBootDisk {
|
|
38435
|
+
/**
|
|
38436
|
+
* Disk image to create the secondary boot disk from
|
|
38437
|
+
*/
|
|
38438
|
+
diskImage: string;
|
|
38439
|
+
/**
|
|
38440
|
+
* Mode for how the secondary boot disk is used.
|
|
38441
|
+
*/
|
|
38442
|
+
mode?: string;
|
|
38443
|
+
}
|
|
38333
38444
|
interface NodePoolNodeConfigShieldedInstanceConfig {
|
|
38334
38445
|
/**
|
|
38335
38446
|
* Defines whether the instance has integrity monitoring enabled.
|
|
@@ -66285,6 +66396,121 @@ export declare namespace osconfig {
|
|
|
66285
66396
|
percentage?: number;
|
|
66286
66397
|
}
|
|
66287
66398
|
}
|
|
66399
|
+
export declare namespace privilegedaccessmanager {
|
|
66400
|
+
interface EntitlementAdditionalNotificationTargets {
|
|
66401
|
+
/**
|
|
66402
|
+
* Optional. Additional email addresses to be notified when a principal(requester) is granted access.
|
|
66403
|
+
*/
|
|
66404
|
+
adminEmailRecipients?: string[];
|
|
66405
|
+
/**
|
|
66406
|
+
* Optional. Additional email address to be notified about an eligible entitlement.
|
|
66407
|
+
*/
|
|
66408
|
+
requesterEmailRecipients?: string[];
|
|
66409
|
+
}
|
|
66410
|
+
interface EntitlementApprovalWorkflow {
|
|
66411
|
+
/**
|
|
66412
|
+
* A manual approval workflow where users who are designated as approvers need to call the ApproveGrant/DenyGrant APIs for an Grant.
|
|
66413
|
+
* The workflow can consist of multiple serial steps where each step defines who can act as Approver in that step and how many of those users should approve before the workflow moves to the next step.
|
|
66414
|
+
* This can be used to create approval workflows such as
|
|
66415
|
+
* * Require an approval from any user in a group G.
|
|
66416
|
+
* * Require an approval from any k number of users from a Group G.
|
|
66417
|
+
* * Require an approval from any user in a group G and then from a user U. etc.
|
|
66418
|
+
* A single user might be part of `approvers` ACL for multiple steps in this workflow but they can only approve once and that approval will only be considered to satisfy the approval step at which it was granted.
|
|
66419
|
+
* Structure is documented below.
|
|
66420
|
+
*/
|
|
66421
|
+
manualApprovals: outputs.privilegedaccessmanager.EntitlementApprovalWorkflowManualApprovals;
|
|
66422
|
+
}
|
|
66423
|
+
interface EntitlementApprovalWorkflowManualApprovals {
|
|
66424
|
+
/**
|
|
66425
|
+
* Optional. Do the approvers need to provide a justification for their actions?
|
|
66426
|
+
*/
|
|
66427
|
+
requireApproverJustification?: boolean;
|
|
66428
|
+
/**
|
|
66429
|
+
* List of approval steps in this workflow. These steps would be followed in the specified order sequentially. 1 step is supported for now.
|
|
66430
|
+
* Structure is documented below.
|
|
66431
|
+
*/
|
|
66432
|
+
steps: outputs.privilegedaccessmanager.EntitlementApprovalWorkflowManualApprovalsStep[];
|
|
66433
|
+
}
|
|
66434
|
+
interface EntitlementApprovalWorkflowManualApprovalsStep {
|
|
66435
|
+
/**
|
|
66436
|
+
* How many users from the above list need to approve.
|
|
66437
|
+
* If there are not enough distinct users in the list above then the workflow
|
|
66438
|
+
* will indefinitely block. Should always be greater than 0. Currently 1 is the only
|
|
66439
|
+
* supported value.
|
|
66440
|
+
*/
|
|
66441
|
+
approvalsNeeded?: number;
|
|
66442
|
+
/**
|
|
66443
|
+
* Optional. Additional email addresses to be notified when a grant is pending approval.
|
|
66444
|
+
*/
|
|
66445
|
+
approverEmailRecipients?: string[];
|
|
66446
|
+
/**
|
|
66447
|
+
* The potential set of approvers in this step. This list should contain at only one entry.
|
|
66448
|
+
* Structure is documented below.
|
|
66449
|
+
*/
|
|
66450
|
+
approvers: outputs.privilegedaccessmanager.EntitlementApprovalWorkflowManualApprovalsStepApprovers;
|
|
66451
|
+
}
|
|
66452
|
+
interface EntitlementApprovalWorkflowManualApprovalsStepApprovers {
|
|
66453
|
+
/**
|
|
66454
|
+
* Users who are being allowed for the operation. Each entry should be a valid v1 IAM Principal Identifier. Format for these is documented at: https://cloud.google.com/iam/docs/principal-identifiers#v1
|
|
66455
|
+
*/
|
|
66456
|
+
principals: string[];
|
|
66457
|
+
}
|
|
66458
|
+
interface EntitlementEligibleUser {
|
|
66459
|
+
/**
|
|
66460
|
+
* Users who are being allowed for the operation. Each entry should be a valid v1 IAM Principal Identifier. Format for these is documented at "https://cloud.google.com/iam/docs/principal-identifiers#v1"
|
|
66461
|
+
*/
|
|
66462
|
+
principals: string[];
|
|
66463
|
+
}
|
|
66464
|
+
interface EntitlementPrivilegedAccess {
|
|
66465
|
+
/**
|
|
66466
|
+
* GcpIamAccess represents IAM based access control on a GCP resource. Refer to https://cloud.google.com/iam/docs to understand more about IAM.
|
|
66467
|
+
* Structure is documented below.
|
|
66468
|
+
*/
|
|
66469
|
+
gcpIamAccess: outputs.privilegedaccessmanager.EntitlementPrivilegedAccessGcpIamAccess;
|
|
66470
|
+
}
|
|
66471
|
+
interface EntitlementPrivilegedAccessGcpIamAccess {
|
|
66472
|
+
/**
|
|
66473
|
+
* Name of the resource.
|
|
66474
|
+
*/
|
|
66475
|
+
resource: string;
|
|
66476
|
+
/**
|
|
66477
|
+
* The type of this resource.
|
|
66478
|
+
*/
|
|
66479
|
+
resourceType: string;
|
|
66480
|
+
/**
|
|
66481
|
+
* Role bindings to be created on successful grant.
|
|
66482
|
+
* Structure is documented below.
|
|
66483
|
+
*/
|
|
66484
|
+
roleBindings: outputs.privilegedaccessmanager.EntitlementPrivilegedAccessGcpIamAccessRoleBinding[];
|
|
66485
|
+
}
|
|
66486
|
+
interface EntitlementPrivilegedAccessGcpIamAccessRoleBinding {
|
|
66487
|
+
/**
|
|
66488
|
+
* The expression field of the IAM condition to be associated with the role. If specified, a user with an active grant for this entitlement would be able to access the resource only if this condition evaluates to true for their request.
|
|
66489
|
+
* https://cloud.google.com/iam/docs/conditions-overview#attributes.
|
|
66490
|
+
*/
|
|
66491
|
+
conditionExpression?: string;
|
|
66492
|
+
/**
|
|
66493
|
+
* IAM role to be granted. https://cloud.google.com/iam/docs/roles-overview.
|
|
66494
|
+
*/
|
|
66495
|
+
role: string;
|
|
66496
|
+
}
|
|
66497
|
+
interface EntitlementRequesterJustificationConfig {
|
|
66498
|
+
/**
|
|
66499
|
+
* The justification is not mandatory but can be provided in any of the supported formats.
|
|
66500
|
+
*/
|
|
66501
|
+
notMandatory?: outputs.privilegedaccessmanager.EntitlementRequesterJustificationConfigNotMandatory;
|
|
66502
|
+
/**
|
|
66503
|
+
* The requester has to provide a justification in the form of free flowing text.
|
|
66504
|
+
*
|
|
66505
|
+
* - - -
|
|
66506
|
+
*/
|
|
66507
|
+
unstructured?: outputs.privilegedaccessmanager.EntitlementRequesterJustificationConfigUnstructured;
|
|
66508
|
+
}
|
|
66509
|
+
interface EntitlementRequesterJustificationConfigNotMandatory {
|
|
66510
|
+
}
|
|
66511
|
+
interface EntitlementRequesterJustificationConfigUnstructured {
|
|
66512
|
+
}
|
|
66513
|
+
}
|
|
66288
66514
|
export declare namespace projects {
|
|
66289
66515
|
interface AccessApprovalSettingsEnrolledService {
|
|
66290
66516
|
/**
|
|
@@ -70940,6 +71166,30 @@ export declare namespace storage {
|
|
|
70940
71166
|
*/
|
|
70941
71167
|
notFoundPage: string;
|
|
70942
71168
|
}
|
|
71169
|
+
interface GetBucketsBucket {
|
|
71170
|
+
/**
|
|
71171
|
+
* User-provided bucket labels, in key/value pairs.
|
|
71172
|
+
*/
|
|
71173
|
+
labels: {
|
|
71174
|
+
[key: string]: string;
|
|
71175
|
+
};
|
|
71176
|
+
/**
|
|
71177
|
+
* The location of the bucket.
|
|
71178
|
+
*/
|
|
71179
|
+
location: string;
|
|
71180
|
+
/**
|
|
71181
|
+
* The name of the bucket.
|
|
71182
|
+
*/
|
|
71183
|
+
name: string;
|
|
71184
|
+
/**
|
|
71185
|
+
* A url reference to the bucket.
|
|
71186
|
+
*/
|
|
71187
|
+
selfLink: string;
|
|
71188
|
+
/**
|
|
71189
|
+
* The [StorageClass](https://cloud.google.com/storage/docs/storage-classes) of the bucket.
|
|
71190
|
+
*/
|
|
71191
|
+
storageClass: string;
|
|
71192
|
+
}
|
|
70943
71193
|
interface InsightsReportConfigCsvOptions {
|
|
70944
71194
|
/**
|
|
70945
71195
|
* The delimiter used to separate the fields in the inventory report CSV file.
|