@pulumi/gcp 6.60.0 → 6.61.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.
Files changed (65) hide show
  1. package/alloydb/cluster.d.ts +43 -2
  2. package/alloydb/cluster.js +43 -2
  3. package/alloydb/cluster.js.map +1 -1
  4. package/alloydb/instance.d.ts +2 -2
  5. package/alloydb/instance.js +2 -2
  6. package/apigee/organization.d.ts +69 -0
  7. package/apigee/organization.js +47 -0
  8. package/apigee/organization.js.map +1 -1
  9. package/bigtable/table.d.ts +19 -6
  10. package/bigtable/table.js +3 -0
  11. package/bigtable/table.js.map +1 -1
  12. package/cloudfunctionsv2/function.d.ts +0 -2
  13. package/cloudfunctionsv2/function.js +0 -2
  14. package/cloudfunctionsv2/function.js.map +1 -1
  15. package/compute/disk.d.ts +15 -0
  16. package/compute/disk.js +2 -0
  17. package/compute/disk.js.map +1 -1
  18. package/compute/getDisk.d.ts +1 -0
  19. package/compute/getDisk.js.map +1 -1
  20. package/compute/getImage.d.ts +15 -2
  21. package/compute/getImage.js +1 -0
  22. package/compute/getImage.js.map +1 -1
  23. package/compute/getInstance.d.ts +1 -1
  24. package/compute/resourcePolicy.d.ts +4 -0
  25. package/compute/resourcePolicy.js +4 -0
  26. package/compute/resourcePolicy.js.map +1 -1
  27. package/config/vars.d.ts +1 -0
  28. package/config/vars.js +6 -0
  29. package/config/vars.js.map +1 -1
  30. package/dns/responsePolicy.d.ts +5 -12
  31. package/dns/responsePolicy.js +5 -12
  32. package/dns/responsePolicy.js.map +1 -1
  33. package/dns/responsePolicyRule.d.ts +13 -13
  34. package/dns/responsePolicyRule.js +7 -10
  35. package/dns/responsePolicyRule.js.map +1 -1
  36. package/firestore/database.d.ts +35 -4
  37. package/firestore/database.js +35 -4
  38. package/firestore/database.js.map +1 -1
  39. package/gkebackup/backupPlan.d.ts +16 -0
  40. package/gkebackup/backupPlan.js +4 -0
  41. package/gkebackup/backupPlan.js.map +1 -1
  42. package/healthcare/fhirStore.d.ts +16 -0
  43. package/healthcare/fhirStore.js +3 -0
  44. package/healthcare/fhirStore.js.map +1 -1
  45. package/index.d.ts +2 -1
  46. package/index.js +4 -2
  47. package/index.js.map +1 -1
  48. package/looker/index.d.ts +3 -0
  49. package/looker/index.js +22 -0
  50. package/looker/index.js.map +1 -0
  51. package/looker/instance.d.ts +532 -0
  52. package/looker/instance.js +259 -0
  53. package/looker/instance.js.map +1 -0
  54. package/package.json +2 -2
  55. package/provider.d.ts +2 -0
  56. package/provider.js +1 -0
  57. package/provider.js.map +1 -1
  58. package/types/input.d.ts +214 -3
  59. package/types/output.d.ts +222 -3
  60. package/vpcaccess/connector.d.ts +10 -6
  61. package/vpcaccess/connector.js +5 -1
  62. package/vpcaccess/connector.js.map +1 -1
  63. package/workflows/workflow.d.ts +10 -9
  64. package/workflows/workflow.js +10 -9
  65. package/workflows/workflow.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -4250,6 +4250,11 @@ export declare namespace bigquery {
4250
4250
  * The default value is false.
4251
4251
  */
4252
4252
  ignoreUnknownValues?: pulumi.Input<boolean>;
4253
+ /**
4254
+ * Additional properties to set if
4255
+ * `sourceFormat` is set to "JSON". Structure is documented below.
4256
+ */
4257
+ jsonOptions?: pulumi.Input<inputs.bigquery.TableExternalDataConfigurationJsonOptions>;
4253
4258
  /**
4254
4259
  * The maximum number of bad records that
4255
4260
  * BigQuery can ignore when reading data.
@@ -4263,6 +4268,11 @@ export declare namespace bigquery {
4263
4268
  * Object Metadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the sourceUris. If `objectMetadata` is set, `sourceFormat` should be omitted.
4264
4269
  */
4265
4270
  objectMetadata?: pulumi.Input<string>;
4271
+ /**
4272
+ * Additional properties to set if
4273
+ * `sourceFormat` is set to "PARQUET". Structure is documented below.
4274
+ */
4275
+ parquetOptions?: pulumi.Input<inputs.bigquery.TableExternalDataConfigurationParquetOptions>;
4266
4276
  /**
4267
4277
  * When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
4268
4278
  */
@@ -4384,6 +4394,22 @@ export declare namespace bigquery {
4384
4394
  */
4385
4395
  sourceUriPrefix?: pulumi.Input<string>;
4386
4396
  }
4397
+ interface TableExternalDataConfigurationJsonOptions {
4398
+ /**
4399
+ * The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
4400
+ */
4401
+ encoding?: pulumi.Input<string>;
4402
+ }
4403
+ interface TableExternalDataConfigurationParquetOptions {
4404
+ /**
4405
+ * Indicates whether to use schema inference specifically for Parquet LIST logical type.
4406
+ */
4407
+ enableListInference?: pulumi.Input<boolean>;
4408
+ /**
4409
+ * Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
4410
+ */
4411
+ enumAsString?: pulumi.Input<boolean>;
4412
+ }
4387
4413
  interface TableMaterializedView {
4388
4414
  /**
4389
4415
  * Specifies whether to use BigQuery's automatic refresh for this materialized view when the base table is updated.
@@ -4578,8 +4604,8 @@ export declare namespace bigtable {
4578
4604
  */
4579
4605
  kmsKeyName?: pulumi.Input<string>;
4580
4606
  /**
4581
- * The number of nodes in your Cloud Bigtable cluster.
4582
- * Required, with a minimum of `1` for each cluster in an instance.
4607
+ * The number of nodes in the cluster.
4608
+ * If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
4583
4609
  */
4584
4610
  numNodes?: pulumi.Input<number>;
4585
4611
  /**
@@ -18538,7 +18564,7 @@ export declare namespace compute {
18538
18564
  }
18539
18565
  interface ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule {
18540
18566
  /**
18541
- * The number of days between snapshots.
18567
+ * Defines a schedule with units measured in days. The value determines how many days pass between the start of each cycle. Days in cycle for snapshot schedule policy must be 1.
18542
18568
  */
18543
18569
  daysInCycle: pulumi.Input<number>;
18544
18570
  /**
@@ -22913,6 +22939,10 @@ export declare namespace container {
22913
22939
  * The number of the guest accelerator cards exposed to this instance.
22914
22940
  */
22915
22941
  count: pulumi.Input<number>;
22942
+ /**
22943
+ * Configuration for auto installation of GPU driver. Structure is documented below.
22944
+ */
22945
+ gpuDriverInstallationConfig?: pulumi.Input<inputs.container.ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig>;
22916
22946
  /**
22917
22947
  * Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig [user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).
22918
22948
  */
@@ -22926,6 +22956,17 @@ export declare namespace container {
22926
22956
  */
22927
22957
  type: pulumi.Input<string>;
22928
22958
  }
22959
+ interface ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
22960
+ /**
22961
+ * Mode for how the GPU driver is installed.
22962
+ * Accepted values are:
22963
+ * * `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
22964
+ * * `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
22965
+ * * `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
22966
+ * * `"LATEST"`: "Latest" GPU driver in COS.
22967
+ */
22968
+ gpuDriverVersion: pulumi.Input<string>;
22969
+ }
22929
22970
  interface ClusterNodeConfigGuestAcceleratorGpuSharingConfig {
22930
22971
  /**
22931
22972
  * The type of GPU sharing strategy to enable on the GPU node.
@@ -23461,6 +23502,10 @@ export declare namespace container {
23461
23502
  * The number of the guest accelerator cards exposed to this instance.
23462
23503
  */
23463
23504
  count: pulumi.Input<number>;
23505
+ /**
23506
+ * Configuration for auto installation of GPU driver. Structure is documented below.
23507
+ */
23508
+ gpuDriverInstallationConfig?: pulumi.Input<inputs.container.ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig>;
23464
23509
  /**
23465
23510
  * Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig [user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).
23466
23511
  */
@@ -23474,6 +23519,17 @@ export declare namespace container {
23474
23519
  */
23475
23520
  type: pulumi.Input<string>;
23476
23521
  }
23522
+ interface ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
23523
+ /**
23524
+ * Mode for how the GPU driver is installed.
23525
+ * Accepted values are:
23526
+ * * `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
23527
+ * * `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
23528
+ * * `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
23529
+ * * `"LATEST"`: "Latest" GPU driver in COS.
23530
+ */
23531
+ gpuDriverVersion: pulumi.Input<string>;
23532
+ }
23477
23533
  interface ClusterNodePoolNodeConfigGuestAcceleratorGpuSharingConfig {
23478
23534
  /**
23479
23535
  * The type of GPU sharing strategy to enable on the GPU node.
@@ -23995,6 +24051,7 @@ export declare namespace container {
23995
24051
  }
23996
24052
  interface NodePoolNodeConfigGuestAccelerator {
23997
24053
  count: pulumi.Input<number>;
24054
+ gpuDriverInstallationConfig?: pulumi.Input<inputs.container.NodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig>;
23998
24055
  gpuPartitionSize?: pulumi.Input<string>;
23999
24056
  gpuSharingConfig?: pulumi.Input<inputs.container.NodePoolNodeConfigGuestAcceleratorGpuSharingConfig>;
24000
24057
  /**
@@ -24004,6 +24061,9 @@ export declare namespace container {
24004
24061
  */
24005
24062
  type: pulumi.Input<string>;
24006
24063
  }
24064
+ interface NodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
24065
+ gpuDriverVersion: pulumi.Input<string>;
24066
+ }
24007
24067
  interface NodePoolNodeConfigGuestAcceleratorGpuSharingConfig {
24008
24068
  gpuSharingStrategy: pulumi.Input<string>;
24009
24069
  maxSharedClientsPerGpu: pulumi.Input<number>;
@@ -39350,6 +39410,157 @@ export declare namespace logging {
39350
39410
  name: pulumi.Input<string>;
39351
39411
  }
39352
39412
  }
39413
+ export declare namespace looker {
39414
+ interface InstanceAdminSettings {
39415
+ allowedEmailDomains?: pulumi.Input<pulumi.Input<string>[]>;
39416
+ }
39417
+ interface InstanceDenyMaintenancePeriod {
39418
+ /**
39419
+ * Required. Start date of the deny maintenance period
39420
+ * Structure is documented below.
39421
+ */
39422
+ endDate: pulumi.Input<inputs.looker.InstanceDenyMaintenancePeriodEndDate>;
39423
+ /**
39424
+ * Required. Start date of the deny maintenance period
39425
+ * Structure is documented below.
39426
+ */
39427
+ startDate: pulumi.Input<inputs.looker.InstanceDenyMaintenancePeriodStartDate>;
39428
+ /**
39429
+ * Required. Start time of the window in UTC time.
39430
+ * Structure is documented below.
39431
+ */
39432
+ time: pulumi.Input<inputs.looker.InstanceDenyMaintenancePeriodTime>;
39433
+ }
39434
+ interface InstanceDenyMaintenancePeriodEndDate {
39435
+ /**
39436
+ * Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
39437
+ * to specify a year by itself or a year and month where the day isn't significant.
39438
+ */
39439
+ day?: pulumi.Input<number>;
39440
+ /**
39441
+ * Month of a year. Must be from 1 to 12, or 0 to specify a year without a
39442
+ * month and day.
39443
+ */
39444
+ month?: pulumi.Input<number>;
39445
+ /**
39446
+ * Year of the date. Must be from 1 to 9999, or 0 to specify a date without
39447
+ * a year.
39448
+ */
39449
+ year?: pulumi.Input<number>;
39450
+ }
39451
+ interface InstanceDenyMaintenancePeriodStartDate {
39452
+ /**
39453
+ * Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
39454
+ * to specify a year by itself or a year and month where the day isn't significant.
39455
+ */
39456
+ day?: pulumi.Input<number>;
39457
+ /**
39458
+ * Month of a year. Must be from 1 to 12, or 0 to specify a year without a
39459
+ * month and day.
39460
+ */
39461
+ month?: pulumi.Input<number>;
39462
+ /**
39463
+ * Year of the date. Must be from 1 to 9999, or 0 to specify a date without
39464
+ * a year.
39465
+ */
39466
+ year?: pulumi.Input<number>;
39467
+ }
39468
+ interface InstanceDenyMaintenancePeriodTime {
39469
+ /**
39470
+ * Hours of day in 24 hour format. Should be from 0 to 23.
39471
+ */
39472
+ hours?: pulumi.Input<number>;
39473
+ /**
39474
+ * Minutes of hour of day. Must be from 0 to 59.
39475
+ */
39476
+ minutes?: pulumi.Input<number>;
39477
+ /**
39478
+ * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
39479
+ */
39480
+ nanos?: pulumi.Input<number>;
39481
+ /**
39482
+ * Seconds of minutes of the time. Must normally be from 0 to 59.
39483
+ */
39484
+ seconds?: pulumi.Input<number>;
39485
+ }
39486
+ interface InstanceEncryptionConfig {
39487
+ /**
39488
+ * Name of the customer managed encryption key (CMEK) in KMS.
39489
+ */
39490
+ kmsKeyName?: pulumi.Input<string>;
39491
+ /**
39492
+ * (Output)
39493
+ * Full name and version of the CMEK key currently in use to encrypt Looker data.
39494
+ */
39495
+ kmsKeyNameVersion?: pulumi.Input<string>;
39496
+ /**
39497
+ * (Output)
39498
+ * Status of the customer managed encryption key (CMEK) in KMS.
39499
+ */
39500
+ kmsKeyState?: pulumi.Input<string>;
39501
+ }
39502
+ interface InstanceMaintenanceWindow {
39503
+ /**
39504
+ * Required. Day of the week for this MaintenanceWindow (in UTC).
39505
+ * - MONDAY: Monday
39506
+ * - TUESDAY: Tuesday
39507
+ * - WEDNESDAY: Wednesday
39508
+ * - THURSDAY: Thursday
39509
+ * - FRIDAY: Friday
39510
+ * - SATURDAY: Saturday
39511
+ * - SUNDAY: Sunday
39512
+ * Possible values are: `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
39513
+ */
39514
+ dayOfWeek: pulumi.Input<string>;
39515
+ /**
39516
+ * Required. Start time of the window in UTC time.
39517
+ * Structure is documented below.
39518
+ */
39519
+ startTime: pulumi.Input<inputs.looker.InstanceMaintenanceWindowStartTime>;
39520
+ }
39521
+ interface InstanceMaintenanceWindowStartTime {
39522
+ /**
39523
+ * Hours of day in 24 hour format. Should be from 0 to 23.
39524
+ */
39525
+ hours?: pulumi.Input<number>;
39526
+ /**
39527
+ * Minutes of hour of day. Must be from 0 to 59.
39528
+ */
39529
+ minutes?: pulumi.Input<number>;
39530
+ /**
39531
+ * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
39532
+ */
39533
+ nanos?: pulumi.Input<number>;
39534
+ /**
39535
+ * Seconds of minutes of the time. Must normally be from 0 to 59.
39536
+ */
39537
+ seconds?: pulumi.Input<number>;
39538
+ }
39539
+ interface InstanceOauthConfig {
39540
+ /**
39541
+ * The client ID for the Oauth config.
39542
+ */
39543
+ clientId: pulumi.Input<string>;
39544
+ /**
39545
+ * The client secret for the Oauth config.
39546
+ */
39547
+ clientSecret: pulumi.Input<string>;
39548
+ }
39549
+ interface InstanceUserMetadata {
39550
+ /**
39551
+ * Number of additional Developer Users to allocate to the Looker Instance.
39552
+ */
39553
+ additionalDeveloperUserCount?: pulumi.Input<number>;
39554
+ /**
39555
+ * Number of additional Standard Users to allocate to the Looker Instance.
39556
+ */
39557
+ additionalStandardUserCount?: pulumi.Input<number>;
39558
+ /**
39559
+ * Number of additional Viewer Users to allocate to the Looker Instance.
39560
+ */
39561
+ additionalViewerUserCount?: pulumi.Input<number>;
39562
+ }
39563
+ }
39353
39564
  export declare namespace memcache {
39354
39565
  interface InstanceMaintenancePolicy {
39355
39566
  /**
package/types/output.d.ts CHANGED
@@ -4366,6 +4366,11 @@ export declare namespace bigquery {
4366
4366
  * The default value is false.
4367
4367
  */
4368
4368
  ignoreUnknownValues?: boolean;
4369
+ /**
4370
+ * Additional properties to set if
4371
+ * `sourceFormat` is set to "JSON". Structure is documented below.
4372
+ */
4373
+ jsonOptions?: outputs.bigquery.TableExternalDataConfigurationJsonOptions;
4369
4374
  /**
4370
4375
  * The maximum number of bad records that
4371
4376
  * BigQuery can ignore when reading data.
@@ -4379,6 +4384,11 @@ export declare namespace bigquery {
4379
4384
  * Object Metadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the sourceUris. If `objectMetadata` is set, `sourceFormat` should be omitted.
4380
4385
  */
4381
4386
  objectMetadata?: string;
4387
+ /**
4388
+ * Additional properties to set if
4389
+ * `sourceFormat` is set to "PARQUET". Structure is documented below.
4390
+ */
4391
+ parquetOptions?: outputs.bigquery.TableExternalDataConfigurationParquetOptions;
4382
4392
  /**
4383
4393
  * When creating an external table, the user can provide a reference file with the table schema. This is enabled for the following formats: AVRO, PARQUET, ORC.
4384
4394
  */
@@ -4500,6 +4510,22 @@ export declare namespace bigquery {
4500
4510
  */
4501
4511
  sourceUriPrefix?: string;
4502
4512
  }
4513
+ interface TableExternalDataConfigurationJsonOptions {
4514
+ /**
4515
+ * The character encoding of the data. The supported values are UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
4516
+ */
4517
+ encoding?: string;
4518
+ }
4519
+ interface TableExternalDataConfigurationParquetOptions {
4520
+ /**
4521
+ * Indicates whether to use schema inference specifically for Parquet LIST logical type.
4522
+ */
4523
+ enableListInference?: boolean;
4524
+ /**
4525
+ * Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.
4526
+ */
4527
+ enumAsString?: boolean;
4528
+ }
4503
4529
  interface TableMaterializedView {
4504
4530
  /**
4505
4531
  * Specifies whether to use BigQuery's automatic refresh for this materialized view when the base table is updated.
@@ -4694,8 +4720,8 @@ export declare namespace bigtable {
4694
4720
  */
4695
4721
  kmsKeyName: string;
4696
4722
  /**
4697
- * The number of nodes in your Cloud Bigtable cluster.
4698
- * Required, with a minimum of `1` for each cluster in an instance.
4723
+ * The number of nodes in the cluster.
4724
+ * If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
4699
4725
  */
4700
4726
  numNodes: number;
4701
4727
  /**
@@ -21057,7 +21083,7 @@ export declare namespace compute {
21057
21083
  }
21058
21084
  interface ResourcePolicySnapshotSchedulePolicyScheduleDailySchedule {
21059
21085
  /**
21060
- * The number of days between snapshots.
21086
+ * Defines a schedule with units measured in days. The value determines how many days pass between the start of each cycle. Days in cycle for snapshot schedule policy must be 1.
21061
21087
  */
21062
21088
  daysInCycle: number;
21063
21089
  /**
@@ -25492,6 +25518,10 @@ export declare namespace container {
25492
25518
  * The number of the guest accelerator cards exposed to this instance.
25493
25519
  */
25494
25520
  count: number;
25521
+ /**
25522
+ * Configuration for auto installation of GPU driver. Structure is documented below.
25523
+ */
25524
+ gpuDriverInstallationConfig?: outputs.container.ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig;
25495
25525
  /**
25496
25526
  * Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig [user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).
25497
25527
  */
@@ -25505,6 +25535,17 @@ export declare namespace container {
25505
25535
  */
25506
25536
  type: string;
25507
25537
  }
25538
+ interface ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
25539
+ /**
25540
+ * Mode for how the GPU driver is installed.
25541
+ * Accepted values are:
25542
+ * * `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
25543
+ * * `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
25544
+ * * `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
25545
+ * * `"LATEST"`: "Latest" GPU driver in COS.
25546
+ */
25547
+ gpuDriverVersion: string;
25548
+ }
25508
25549
  interface ClusterNodeConfigGuestAcceleratorGpuSharingConfig {
25509
25550
  /**
25510
25551
  * The type of GPU sharing strategy to enable on the GPU node.
@@ -26040,6 +26081,10 @@ export declare namespace container {
26040
26081
  * The number of the guest accelerator cards exposed to this instance.
26041
26082
  */
26042
26083
  count: number;
26084
+ /**
26085
+ * Configuration for auto installation of GPU driver. Structure is documented below.
26086
+ */
26087
+ gpuDriverInstallationConfig?: outputs.container.ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig;
26043
26088
  /**
26044
26089
  * Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig [user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).
26045
26090
  */
@@ -26053,6 +26098,17 @@ export declare namespace container {
26053
26098
  */
26054
26099
  type: string;
26055
26100
  }
26101
+ interface ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
26102
+ /**
26103
+ * Mode for how the GPU driver is installed.
26104
+ * Accepted values are:
26105
+ * * `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
26106
+ * * `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
26107
+ * * `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
26108
+ * * `"LATEST"`: "Latest" GPU driver in COS.
26109
+ */
26110
+ gpuDriverVersion: string;
26111
+ }
26056
26112
  interface ClusterNodePoolNodeConfigGuestAcceleratorGpuSharingConfig {
26057
26113
  /**
26058
26114
  * The type of GPU sharing strategy to enable on the GPU node.
@@ -26715,10 +26771,14 @@ export declare namespace container {
26715
26771
  }
26716
26772
  interface GetClusterNodeConfigGuestAccelerator {
26717
26773
  count: number;
26774
+ gpuDriverInstallationConfigs: outputs.container.GetClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig[];
26718
26775
  gpuPartitionSize: string;
26719
26776
  gpuSharingConfigs: outputs.container.GetClusterNodeConfigGuestAcceleratorGpuSharingConfig[];
26720
26777
  type: string;
26721
26778
  }
26779
+ interface GetClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
26780
+ gpuDriverVersion: string;
26781
+ }
26722
26782
  interface GetClusterNodeConfigGuestAcceleratorGpuSharingConfig {
26723
26783
  gpuSharingStrategy: string;
26724
26784
  maxSharedClientsPerGpu: number;
@@ -26879,10 +26939,14 @@ export declare namespace container {
26879
26939
  }
26880
26940
  interface GetClusterNodePoolNodeConfigGuestAccelerator {
26881
26941
  count: number;
26942
+ gpuDriverInstallationConfigs: outputs.container.GetClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig[];
26882
26943
  gpuPartitionSize: string;
26883
26944
  gpuSharingConfigs: outputs.container.GetClusterNodePoolNodeConfigGuestAcceleratorGpuSharingConfig[];
26884
26945
  type: string;
26885
26946
  }
26947
+ interface GetClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
26948
+ gpuDriverVersion: string;
26949
+ }
26886
26950
  interface GetClusterNodePoolNodeConfigGuestAcceleratorGpuSharingConfig {
26887
26951
  gpuSharingStrategy: string;
26888
26952
  maxSharedClientsPerGpu: number;
@@ -27132,6 +27196,7 @@ export declare namespace container {
27132
27196
  }
27133
27197
  interface NodePoolNodeConfigGuestAccelerator {
27134
27198
  count: number;
27199
+ gpuDriverInstallationConfig?: outputs.container.NodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig;
27135
27200
  gpuPartitionSize?: string;
27136
27201
  gpuSharingConfig?: outputs.container.NodePoolNodeConfigGuestAcceleratorGpuSharingConfig;
27137
27202
  /**
@@ -27141,6 +27206,9 @@ export declare namespace container {
27141
27206
  */
27142
27207
  type: string;
27143
27208
  }
27209
+ interface NodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig {
27210
+ gpuDriverVersion: string;
27211
+ }
27144
27212
  interface NodePoolNodeConfigGuestAcceleratorGpuSharingConfig {
27145
27213
  gpuSharingStrategy: string;
27146
27214
  maxSharedClientsPerGpu: number;
@@ -42691,6 +42759,157 @@ export declare namespace logging {
42691
42759
  name: string;
42692
42760
  }
42693
42761
  }
42762
+ export declare namespace looker {
42763
+ interface InstanceAdminSettings {
42764
+ allowedEmailDomains?: string[];
42765
+ }
42766
+ interface InstanceDenyMaintenancePeriod {
42767
+ /**
42768
+ * Required. Start date of the deny maintenance period
42769
+ * Structure is documented below.
42770
+ */
42771
+ endDate: outputs.looker.InstanceDenyMaintenancePeriodEndDate;
42772
+ /**
42773
+ * Required. Start date of the deny maintenance period
42774
+ * Structure is documented below.
42775
+ */
42776
+ startDate: outputs.looker.InstanceDenyMaintenancePeriodStartDate;
42777
+ /**
42778
+ * Required. Start time of the window in UTC time.
42779
+ * Structure is documented below.
42780
+ */
42781
+ time: outputs.looker.InstanceDenyMaintenancePeriodTime;
42782
+ }
42783
+ interface InstanceDenyMaintenancePeriodEndDate {
42784
+ /**
42785
+ * Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
42786
+ * to specify a year by itself or a year and month where the day isn't significant.
42787
+ */
42788
+ day?: number;
42789
+ /**
42790
+ * Month of a year. Must be from 1 to 12, or 0 to specify a year without a
42791
+ * month and day.
42792
+ */
42793
+ month?: number;
42794
+ /**
42795
+ * Year of the date. Must be from 1 to 9999, or 0 to specify a date without
42796
+ * a year.
42797
+ */
42798
+ year?: number;
42799
+ }
42800
+ interface InstanceDenyMaintenancePeriodStartDate {
42801
+ /**
42802
+ * Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
42803
+ * to specify a year by itself or a year and month where the day isn't significant.
42804
+ */
42805
+ day?: number;
42806
+ /**
42807
+ * Month of a year. Must be from 1 to 12, or 0 to specify a year without a
42808
+ * month and day.
42809
+ */
42810
+ month?: number;
42811
+ /**
42812
+ * Year of the date. Must be from 1 to 9999, or 0 to specify a date without
42813
+ * a year.
42814
+ */
42815
+ year?: number;
42816
+ }
42817
+ interface InstanceDenyMaintenancePeriodTime {
42818
+ /**
42819
+ * Hours of day in 24 hour format. Should be from 0 to 23.
42820
+ */
42821
+ hours?: number;
42822
+ /**
42823
+ * Minutes of hour of day. Must be from 0 to 59.
42824
+ */
42825
+ minutes?: number;
42826
+ /**
42827
+ * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
42828
+ */
42829
+ nanos?: number;
42830
+ /**
42831
+ * Seconds of minutes of the time. Must normally be from 0 to 59.
42832
+ */
42833
+ seconds?: number;
42834
+ }
42835
+ interface InstanceEncryptionConfig {
42836
+ /**
42837
+ * Name of the customer managed encryption key (CMEK) in KMS.
42838
+ */
42839
+ kmsKeyName?: string;
42840
+ /**
42841
+ * (Output)
42842
+ * Full name and version of the CMEK key currently in use to encrypt Looker data.
42843
+ */
42844
+ kmsKeyNameVersion: string;
42845
+ /**
42846
+ * (Output)
42847
+ * Status of the customer managed encryption key (CMEK) in KMS.
42848
+ */
42849
+ kmsKeyState: string;
42850
+ }
42851
+ interface InstanceMaintenanceWindow {
42852
+ /**
42853
+ * Required. Day of the week for this MaintenanceWindow (in UTC).
42854
+ * - MONDAY: Monday
42855
+ * - TUESDAY: Tuesday
42856
+ * - WEDNESDAY: Wednesday
42857
+ * - THURSDAY: Thursday
42858
+ * - FRIDAY: Friday
42859
+ * - SATURDAY: Saturday
42860
+ * - SUNDAY: Sunday
42861
+ * Possible values are: `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `SATURDAY`, `SUNDAY`.
42862
+ */
42863
+ dayOfWeek: string;
42864
+ /**
42865
+ * Required. Start time of the window in UTC time.
42866
+ * Structure is documented below.
42867
+ */
42868
+ startTime: outputs.looker.InstanceMaintenanceWindowStartTime;
42869
+ }
42870
+ interface InstanceMaintenanceWindowStartTime {
42871
+ /**
42872
+ * Hours of day in 24 hour format. Should be from 0 to 23.
42873
+ */
42874
+ hours?: number;
42875
+ /**
42876
+ * Minutes of hour of day. Must be from 0 to 59.
42877
+ */
42878
+ minutes?: number;
42879
+ /**
42880
+ * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
42881
+ */
42882
+ nanos?: number;
42883
+ /**
42884
+ * Seconds of minutes of the time. Must normally be from 0 to 59.
42885
+ */
42886
+ seconds?: number;
42887
+ }
42888
+ interface InstanceOauthConfig {
42889
+ /**
42890
+ * The client ID for the Oauth config.
42891
+ */
42892
+ clientId: string;
42893
+ /**
42894
+ * The client secret for the Oauth config.
42895
+ */
42896
+ clientSecret: string;
42897
+ }
42898
+ interface InstanceUserMetadata {
42899
+ /**
42900
+ * Number of additional Developer Users to allocate to the Looker Instance.
42901
+ */
42902
+ additionalDeveloperUserCount?: number;
42903
+ /**
42904
+ * Number of additional Standard Users to allocate to the Looker Instance.
42905
+ */
42906
+ additionalStandardUserCount?: number;
42907
+ /**
42908
+ * Number of additional Viewer Users to allocate to the Looker Instance.
42909
+ */
42910
+ additionalViewerUserCount?: number;
42911
+ }
42912
+ }
42694
42913
  export declare namespace memcache {
42695
42914
  interface InstanceMaintenancePolicy {
42696
42915
  /**
@@ -18,7 +18,9 @@ import * as outputs from "../types/output";
18
18
  * import * as gcp from "@pulumi/gcp";
19
19
  *
20
20
  * const connector = new gcp.vpcaccess.Connector("connector", {
21
- * ipCidrRange: "10.8.0.0/28",
21
+ * ipCidrRange: "10.18.0.0/28",
22
+ * maxInstances: 3,
23
+ * minInstances: 2,
22
24
  * network: "default",
23
25
  * });
24
26
  * ```
@@ -39,6 +41,8 @@ import * as outputs from "../types/output";
39
41
  * name: customTestSubnetwork.name,
40
42
  * },
41
43
  * machineType: "e2-standard-4",
44
+ * minInstances: 2,
45
+ * maxInstances: 3,
42
46
  * });
43
47
  * ```
44
48
  *
@@ -95,9 +99,9 @@ export declare class Connector extends pulumi.CustomResource {
95
99
  */
96
100
  readonly maxInstances: pulumi.Output<number>;
97
101
  /**
98
- * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 300.
102
+ * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 1000.
99
103
  */
100
- readonly maxThroughput: pulumi.Output<number | undefined>;
104
+ readonly maxThroughput: pulumi.Output<number>;
101
105
  /**
102
106
  * Minimum value of instances in autoscaling group underlying the connector.
103
107
  */
@@ -105,7 +109,7 @@ export declare class Connector extends pulumi.CustomResource {
105
109
  /**
106
110
  * Minimum throughput of the connector in Mbps. Default and min is 200.
107
111
  */
108
- readonly minThroughput: pulumi.Output<number | undefined>;
112
+ readonly minThroughput: pulumi.Output<number>;
109
113
  /**
110
114
  * The name of the resource (Max 25 characters).
111
115
  *
@@ -169,7 +173,7 @@ export interface ConnectorState {
169
173
  */
170
174
  maxInstances?: pulumi.Input<number>;
171
175
  /**
172
- * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 300.
176
+ * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 1000.
173
177
  */
174
178
  maxThroughput?: pulumi.Input<number>;
175
179
  /**
@@ -231,7 +235,7 @@ export interface ConnectorArgs {
231
235
  */
232
236
  maxInstances?: pulumi.Input<number>;
233
237
  /**
234
- * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 300.
238
+ * Maximum throughput of the connector in Mbps, must be greater than `minThroughput`. Default is 1000.
235
239
  */
236
240
  maxThroughput?: pulumi.Input<number>;
237
241
  /**