@pulumi/gcp 5.24.0 → 5.26.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/cloudbuild/workerPool.d.ts +6 -6
- package/composer/environment.d.ts +0 -16
- package/composer/environment.js +0 -16
- package/composer/environment.js.map +1 -1
- package/compute/address.d.ts +9 -0
- package/compute/address.js.map +1 -1
- package/compute/backendService.d.ts +15 -9
- package/compute/backendService.js.map +1 -1
- package/compute/firewallPolicyRule.d.ts +3 -3
- package/compute/getInstance.d.ts +1 -1
- package/compute/getInstanceTemplate.d.ts +1 -1
- package/compute/globalForwardingRule.d.ts +120 -0
- package/compute/globalForwardingRule.js +120 -0
- package/compute/globalForwardingRule.js.map +1 -1
- package/compute/instance.d.ts +6 -6
- package/compute/instanceGroup.d.ts +3 -3
- package/compute/instanceGroupManager.d.ts +3 -3
- package/compute/instanceTemplate.d.ts +12 -12
- package/compute/regionBackendService.d.ts +30 -0
- package/compute/regionBackendService.js +30 -0
- package/compute/regionBackendService.js.map +1 -1
- package/compute/router.d.ts +9 -6
- package/compute/router.js.map +1 -1
- package/compute/securityPolicy.d.ts +5 -21
- package/compute/securityPolicy.js +0 -16
- package/compute/securityPolicy.js.map +1 -1
- package/container/cluster.d.ts +48 -68
- package/container/cluster.js +0 -18
- package/container/cluster.js.map +1 -1
- package/container/nodePool.d.ts +11 -11
- package/container/nodePool.js +2 -2
- package/dataflow/job.d.ts +1 -1
- package/dataflow/job.js +1 -1
- package/gkehub/featureMembership.d.ts +3 -3
- package/gkehub/membership.d.ts +1 -1
- package/gkehub/membership.js +1 -1
- package/healthcare/dicomStore.d.ts +9 -9
- package/kms/cryptoKeyIAMBinding.d.ts +3 -3
- package/kms/cryptoKeyIAMMember.d.ts +3 -3
- package/kms/keyRingIAMBinding.d.ts +3 -3
- package/kms/keyRingIAMMember.d.ts +3 -3
- package/notebooks/instance.d.ts +9 -3
- package/notebooks/instance.js.map +1 -1
- package/organizations/policy.d.ts +6 -3
- package/organizations/policy.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/pubsub/schema.d.ts +23 -0
- package/pubsub/schema.js +23 -0
- package/pubsub/schema.js.map +1 -1
- package/sql/user.d.ts +1 -1
- package/sql/user.js +1 -1
- package/storage/bucket.d.ts +9 -9
- package/storage/bucketObject.d.ts +3 -3
- package/types/input.d.ts +86 -39
- package/types/output.d.ts +93 -42
- package/vpcaccess/connector.d.ts +9 -3
- package/vpcaccess/connector.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -2988,7 +2988,7 @@ export declare namespace bigquery {
|
|
|
2988
2988
|
* When set, configures hive partitioning
|
|
2989
2989
|
* support. Not all storage formats support hive partitioning -- requesting hive
|
|
2990
2990
|
* partitioning on an unsupported format will lead to an error, as will providing
|
|
2991
|
-
* an invalid specification.
|
|
2991
|
+
* an invalid specification. Structure is documented below.
|
|
2992
2992
|
*/
|
|
2993
2993
|
hivePartitioningOptions?: outputs.bigquery.TableExternalDataConfigurationHivePartitioningOptions;
|
|
2994
2994
|
/**
|
|
@@ -6073,6 +6073,10 @@ export declare namespace cloudrun {
|
|
|
6073
6073
|
* TimeoutSeconds holds the max duration the instance is allowed for responding to a request.
|
|
6074
6074
|
*/
|
|
6075
6075
|
timeoutSeconds: number;
|
|
6076
|
+
/**
|
|
6077
|
+
* Volume represents a named volume in a container.
|
|
6078
|
+
* Structure is documented below.
|
|
6079
|
+
*/
|
|
6076
6080
|
volumes?: outputs.cloudrun.ServiceTemplateSpecVolume[];
|
|
6077
6081
|
}
|
|
6078
6082
|
interface ServiceTemplateSpecContainer {
|
|
@@ -6138,6 +6142,11 @@ export declare namespace cloudrun {
|
|
|
6138
6142
|
* Structure is documented below.
|
|
6139
6143
|
*/
|
|
6140
6144
|
resources: outputs.cloudrun.ServiceTemplateSpecContainerResources;
|
|
6145
|
+
/**
|
|
6146
|
+
* Volume to mount into the container's filesystem.
|
|
6147
|
+
* Only supports SecretVolumeSources.
|
|
6148
|
+
* Structure is documented below.
|
|
6149
|
+
*/
|
|
6141
6150
|
volumeMounts?: outputs.cloudrun.ServiceTemplateSpecContainerVolumeMount[];
|
|
6142
6151
|
/**
|
|
6143
6152
|
* -
|
|
@@ -6166,6 +6175,10 @@ export declare namespace cloudrun {
|
|
|
6166
6175
|
* Defaults to "".
|
|
6167
6176
|
*/
|
|
6168
6177
|
value?: string;
|
|
6178
|
+
/**
|
|
6179
|
+
* Source for the environment variable's value. Only supports secret_key_ref.
|
|
6180
|
+
* Structure is documented below.
|
|
6181
|
+
*/
|
|
6169
6182
|
valueFrom?: outputs.cloudrun.ServiceTemplateSpecContainerEnvValueFrom;
|
|
6170
6183
|
}
|
|
6171
6184
|
interface ServiceTemplateSpecContainerEnvFrom {
|
|
@@ -6244,7 +6257,7 @@ export declare namespace cloudrun {
|
|
|
6244
6257
|
/**
|
|
6245
6258
|
* Volume's name.
|
|
6246
6259
|
*/
|
|
6247
|
-
name
|
|
6260
|
+
name: string;
|
|
6248
6261
|
/**
|
|
6249
6262
|
* Protocol used on port. Defaults to TCP.
|
|
6250
6263
|
*/
|
|
@@ -6616,18 +6629,19 @@ export declare namespace composer {
|
|
|
6616
6629
|
/**
|
|
6617
6630
|
* The configuration settings for Cloud SQL instance used internally
|
|
6618
6631
|
* by Apache Airflow software. This field is supported for Cloud
|
|
6619
|
-
* Composer environments in versions composer-1.*.*-airflow-*.*.*.
|
|
6632
|
+
* Composer environments in versions composer-1.*.*-airflow-*.*.*. Structure is documented below.
|
|
6620
6633
|
*/
|
|
6621
6634
|
databaseConfig: outputs.composer.EnvironmentConfigDatabaseConfig;
|
|
6622
6635
|
/**
|
|
6623
6636
|
* The encryption options for the Cloud Composer environment and its
|
|
6624
6637
|
* dependencies. This field is supported for Cloud Composer environments in
|
|
6625
|
-
* versions composer-1.*.*-airflow-*.*.*.
|
|
6638
|
+
* versions composer-1.*.*-airflow-*.*.*. Structure is documented below.
|
|
6626
6639
|
*/
|
|
6627
6640
|
encryptionConfig: outputs.composer.EnvironmentConfigEncryptionConfig;
|
|
6641
|
+
environmentSize?: string;
|
|
6628
6642
|
gkeCluster: string;
|
|
6629
6643
|
/**
|
|
6630
|
-
* The configuration settings for Cloud Composer maintenance window.
|
|
6644
|
+
* The configuration settings for Cloud Composer maintenance window. Structure is documented below.
|
|
6631
6645
|
*/
|
|
6632
6646
|
maintenanceWindow: outputs.composer.EnvironmentConfigMaintenanceWindow;
|
|
6633
6647
|
/**
|
|
@@ -6652,9 +6666,15 @@ export declare namespace composer {
|
|
|
6652
6666
|
/**
|
|
6653
6667
|
* The configuration settings for the Airflow web server App Engine instance.
|
|
6654
6668
|
* This field is supported for Cloud Composer environments in versions
|
|
6655
|
-
* composer-1.*.*-airflow-*.*.*.
|
|
6669
|
+
* composer-1.*.*-airflow-*.*.*. Structure is documented below.
|
|
6656
6670
|
*/
|
|
6657
6671
|
webServerConfig: outputs.composer.EnvironmentConfigWebServerConfig;
|
|
6672
|
+
/**
|
|
6673
|
+
* The network-level access control policy for the Airflow web server.
|
|
6674
|
+
* If unspecified, no network-level access restrictions will be applied.
|
|
6675
|
+
* This field is supported for Cloud Composer environments in versions
|
|
6676
|
+
* composer-1.*.*-airflow-*.*.*.
|
|
6677
|
+
*/
|
|
6658
6678
|
webServerNetworkAccessControl: outputs.composer.EnvironmentConfigWebServerNetworkAccessControl;
|
|
6659
6679
|
/**
|
|
6660
6680
|
* The Kubernetes workloads configuration for GKE cluster associated with the
|
|
@@ -6704,6 +6724,12 @@ export declare namespace composer {
|
|
|
6704
6724
|
* for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
|
|
6705
6725
|
*/
|
|
6706
6726
|
diskSizeGb: number;
|
|
6727
|
+
/**
|
|
6728
|
+
* Deploys 'ip-masq-agent' daemon set in the GKE cluster and defines
|
|
6729
|
+
* nonMasqueradeCIDRs equals to pod IP range so IP masquerading is used for
|
|
6730
|
+
* all destination addresses, except between pods traffic.
|
|
6731
|
+
* See the [documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent).
|
|
6732
|
+
*/
|
|
6707
6733
|
enableIpMasqAgent: boolean;
|
|
6708
6734
|
/**
|
|
6709
6735
|
* Configuration for controlling how IPs are allocated in the GKE cluster.
|
|
@@ -6834,6 +6860,10 @@ export declare namespace composer {
|
|
|
6834
6860
|
* composer-1.*.*-airflow-*.*.*.
|
|
6835
6861
|
*/
|
|
6836
6862
|
enablePrivateEndpoint?: boolean;
|
|
6863
|
+
/**
|
|
6864
|
+
* When enabled, IPs from public (non-RFC1918) ranges can be used for
|
|
6865
|
+
* `ip_allocation_policy.cluster_ipv4_cidr_block` and `ip_allocation_policy.service_ipv4_cidr_block`.
|
|
6866
|
+
*/
|
|
6837
6867
|
enablePrivatelyUsedPublicIps: boolean;
|
|
6838
6868
|
/**
|
|
6839
6869
|
* The IP range in CIDR notation to use for the hosted master network. This range is used
|
|
@@ -7006,6 +7036,7 @@ export declare namespace composer {
|
|
|
7006
7036
|
dagGcsPrefix: string;
|
|
7007
7037
|
databaseConfigs: outputs.composer.GetEnvironmentConfigDatabaseConfig[];
|
|
7008
7038
|
encryptionConfigs: outputs.composer.GetEnvironmentConfigEncryptionConfig[];
|
|
7039
|
+
environmentSize: string;
|
|
7009
7040
|
gkeCluster: string;
|
|
7010
7041
|
maintenanceWindows: outputs.composer.GetEnvironmentConfigMaintenanceWindow[];
|
|
7011
7042
|
nodeConfigs: outputs.composer.GetEnvironmentConfigNodeConfig[];
|
|
@@ -8216,7 +8247,7 @@ export declare namespace compute {
|
|
|
8216
8247
|
*/
|
|
8217
8248
|
destIpRanges?: string[];
|
|
8218
8249
|
/**
|
|
8219
|
-
* Pairs of IP protocols and ports that the rule should match.
|
|
8250
|
+
* Pairs of IP protocols and ports that the rule should match. Structure is documented below.
|
|
8220
8251
|
*/
|
|
8221
8252
|
layer4Configs: outputs.compute.FirewallPolicyRuleMatchLayer4Config[];
|
|
8222
8253
|
/**
|
|
@@ -13505,17 +13536,17 @@ export declare namespace compute {
|
|
|
13505
13536
|
}
|
|
13506
13537
|
interface SecurityPolicyAdaptiveProtectionConfig {
|
|
13507
13538
|
/**
|
|
13508
|
-
*
|
|
13539
|
+
* Configuration for [Google Cloud Armor Adaptive Protection Layer 7 DDoS Defense](https://cloud.google.com/armor/docs/adaptive-protection-overview?hl=en). Structure is documented below.
|
|
13509
13540
|
*/
|
|
13510
13541
|
layer7DdosDefenseConfig?: outputs.compute.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig;
|
|
13511
13542
|
}
|
|
13512
13543
|
interface SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig {
|
|
13513
13544
|
/**
|
|
13514
|
-
*
|
|
13545
|
+
* If set to true, enables CAAP for L7 DDoS detection.
|
|
13515
13546
|
*/
|
|
13516
13547
|
enable?: boolean;
|
|
13517
13548
|
/**
|
|
13518
|
-
*
|
|
13549
|
+
* Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules.
|
|
13519
13550
|
*/
|
|
13520
13551
|
ruleVisibility?: string;
|
|
13521
13552
|
}
|
|
@@ -15857,16 +15888,10 @@ export declare namespace container {
|
|
|
15857
15888
|
}
|
|
15858
15889
|
interface ClusterDnsConfig {
|
|
15859
15890
|
/**
|
|
15860
|
-
* Which in-cluster DNS provider
|
|
15891
|
+
* Which in-cluster DNS provider shoul
|
|
15861
15892
|
*/
|
|
15862
15893
|
clusterDns?: string;
|
|
15863
|
-
/**
|
|
15864
|
-
* The suffix used for all cluster service records.
|
|
15865
|
-
*/
|
|
15866
15894
|
clusterDnsDomain?: string;
|
|
15867
|
-
/**
|
|
15868
|
-
* The scope of access to cluster DNS records. `DNS_SCOPE_UNSPECIFIED` (default) or `CLUSTER_SCOPE` or `VPC_SCOPE`.
|
|
15869
|
-
*/
|
|
15870
15895
|
clusterDnsScope?: string;
|
|
15871
15896
|
}
|
|
15872
15897
|
interface ClusterIpAllocationPolicy {
|
|
@@ -15902,8 +15927,7 @@ export declare namespace container {
|
|
|
15902
15927
|
}
|
|
15903
15928
|
interface ClusterLoggingConfig {
|
|
15904
15929
|
/**
|
|
15905
|
-
* The GKE components exposing logs.
|
|
15906
|
-
* is supported.
|
|
15930
|
+
* The GKE components exposing logs. `SYSTEM_COMPONENTS` and in beta provider, both `SYSTEM_COMPONENTS` and `WORKLOADS` are supported.
|
|
15907
15931
|
*/
|
|
15908
15932
|
enableComponents: string[];
|
|
15909
15933
|
}
|
|
@@ -15979,8 +16003,7 @@ export declare namespace container {
|
|
|
15979
16003
|
}
|
|
15980
16004
|
interface ClusterMonitoringConfig {
|
|
15981
16005
|
/**
|
|
15982
|
-
* The GKE components exposing logs.
|
|
15983
|
-
* is supported.
|
|
16006
|
+
* The GKE components exposing logs. `SYSTEM_COMPONENTS` and in beta provider, both `SYSTEM_COMPONENTS` and `WORKLOADS` are supported.
|
|
15984
16007
|
*/
|
|
15985
16008
|
enableComponents: string[];
|
|
15986
16009
|
}
|
|
@@ -16129,6 +16152,10 @@ export declare namespace container {
|
|
|
16129
16152
|
* The number of the guest accelerator cards exposed to this instance.
|
|
16130
16153
|
*/
|
|
16131
16154
|
count: number;
|
|
16155
|
+
/**
|
|
16156
|
+
* 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).
|
|
16157
|
+
*/
|
|
16158
|
+
gpuPartitionSize?: string;
|
|
16132
16159
|
/**
|
|
16133
16160
|
* The accelerator type resource to expose to this instance. E.g. `nvidia-tesla-k80`.
|
|
16134
16161
|
*/
|
|
@@ -16203,7 +16230,7 @@ export declare namespace container {
|
|
|
16203
16230
|
* * GCE_METADATA: Expose all Compute Engine metadata to pods.
|
|
16204
16231
|
* * GKE_METADATA: Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if [workload identity](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity) is enabled at the cluster level.
|
|
16205
16232
|
*/
|
|
16206
|
-
mode
|
|
16233
|
+
mode: string;
|
|
16207
16234
|
/**
|
|
16208
16235
|
* How to expose the node metadata to the workload running on the node. This is deprecated in favor of `mode`
|
|
16209
16236
|
* Accepted values are:
|
|
@@ -16227,10 +16254,6 @@ export declare namespace container {
|
|
|
16227
16254
|
* `removeDefaultNodePool` to `true`.
|
|
16228
16255
|
*/
|
|
16229
16256
|
initialNodeCount: number;
|
|
16230
|
-
/**
|
|
16231
|
-
* List of instance group URLs which have been assigned
|
|
16232
|
-
* to the cluster.
|
|
16233
|
-
*/
|
|
16234
16257
|
instanceGroupUrls: string[];
|
|
16235
16258
|
management: outputs.container.ClusterNodePoolManagement;
|
|
16236
16259
|
maxPodsPerNode: number;
|
|
@@ -16241,8 +16264,8 @@ export declare namespace container {
|
|
|
16241
16264
|
name: string;
|
|
16242
16265
|
namePrefix: string;
|
|
16243
16266
|
/**
|
|
16244
|
-
*
|
|
16245
|
-
* [Adding Pod IP address ranges](https://cloud.google.com/kubernetes-engine/docs/how-to/multi-pod-cidr)) to the node pool.
|
|
16267
|
+
* Configuration for
|
|
16268
|
+
* [Adding Pod IP address ranges](https://cloud.google.com/kubernetes-engine/docs/how-to/multi-pod-cidr)) to the node pool. Structure is documented below
|
|
16246
16269
|
*/
|
|
16247
16270
|
networkConfig: outputs.container.ClusterNodePoolNetworkConfig;
|
|
16248
16271
|
/**
|
|
@@ -16274,15 +16297,15 @@ export declare namespace container {
|
|
|
16274
16297
|
}
|
|
16275
16298
|
interface ClusterNodePoolNetworkConfig {
|
|
16276
16299
|
/**
|
|
16277
|
-
*
|
|
16300
|
+
* Whether to create a new range for pod IPs in this node pool. Defaults are provided for `podRange` and `podIpv4CidrBlock` if they are not specified.
|
|
16278
16301
|
*/
|
|
16279
16302
|
createPodRange?: boolean;
|
|
16280
16303
|
/**
|
|
16281
|
-
*
|
|
16304
|
+
* The IP address range for pod IPs in this node pool. Only applicable if createPodRange is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) to pick a specific range to use.
|
|
16282
16305
|
*/
|
|
16283
16306
|
podIpv4CidrBlock: string;
|
|
16284
16307
|
/**
|
|
16285
|
-
*
|
|
16308
|
+
* The ID of the secondary range for pod IPs. If `createPodRange` is true, this ID is used for the new range. If `createPodRange` is false, uses an existing secondary range with this ID.
|
|
16286
16309
|
*/
|
|
16287
16310
|
podRange: string;
|
|
16288
16311
|
}
|
|
@@ -16420,6 +16443,10 @@ export declare namespace container {
|
|
|
16420
16443
|
* The number of the guest accelerator cards exposed to this instance.
|
|
16421
16444
|
*/
|
|
16422
16445
|
count: number;
|
|
16446
|
+
/**
|
|
16447
|
+
* 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).
|
|
16448
|
+
*/
|
|
16449
|
+
gpuPartitionSize?: string;
|
|
16423
16450
|
/**
|
|
16424
16451
|
* The accelerator type resource to expose to this instance. E.g. `nvidia-tesla-k80`.
|
|
16425
16452
|
*/
|
|
@@ -16494,7 +16521,7 @@ export declare namespace container {
|
|
|
16494
16521
|
* * GCE_METADATA: Expose all Compute Engine metadata to pods.
|
|
16495
16522
|
* * GKE_METADATA: Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if [workload identity](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity) is enabled at the cluster level.
|
|
16496
16523
|
*/
|
|
16497
|
-
mode
|
|
16524
|
+
mode: string;
|
|
16498
16525
|
/**
|
|
16499
16526
|
* How to expose the node metadata to the workload running on the node. This is deprecated in favor of `mode`
|
|
16500
16527
|
* Accepted values are:
|
|
@@ -16628,9 +16655,15 @@ export declare namespace container {
|
|
|
16628
16655
|
}
|
|
16629
16656
|
interface ClusterWorkloadIdentityConfig {
|
|
16630
16657
|
/**
|
|
16631
|
-
* Currently, the only supported identity namespace is the project's default.
|
|
16658
|
+
* - Currently, the only supported identity namespace is the project's default.
|
|
16659
|
+
*
|
|
16660
|
+
* @deprecated This field will be removed in a future major release as it has been deprecated in the API. Use `workload_pool` instead.
|
|
16632
16661
|
*/
|
|
16633
|
-
identityNamespace
|
|
16662
|
+
identityNamespace?: string;
|
|
16663
|
+
/**
|
|
16664
|
+
* The workload pool to attach all Kubernetes service accounts to. Currently, the only supported identity namespace is the project of the cluster.
|
|
16665
|
+
*/
|
|
16666
|
+
workloadPool?: string;
|
|
16634
16667
|
}
|
|
16635
16668
|
interface GetClusterAddonsConfig {
|
|
16636
16669
|
cloudrunConfigs: outputs.container.GetClusterAddonsConfigCloudrunConfig[];
|
|
@@ -16794,6 +16827,7 @@ export declare namespace container {
|
|
|
16794
16827
|
}
|
|
16795
16828
|
interface GetClusterNodeConfigGuestAccelerator {
|
|
16796
16829
|
count: number;
|
|
16830
|
+
gpuPartitionSize: string;
|
|
16797
16831
|
type: string;
|
|
16798
16832
|
}
|
|
16799
16833
|
interface GetClusterNodeConfigKubeletConfig {
|
|
@@ -16885,6 +16919,7 @@ export declare namespace container {
|
|
|
16885
16919
|
}
|
|
16886
16920
|
interface GetClusterNodePoolNodeConfigGuestAccelerator {
|
|
16887
16921
|
count: number;
|
|
16922
|
+
gpuPartitionSize: string;
|
|
16888
16923
|
type: string;
|
|
16889
16924
|
}
|
|
16890
16925
|
interface GetClusterNodePoolNodeConfigKubeletConfig {
|
|
@@ -16955,6 +16990,7 @@ export declare namespace container {
|
|
|
16955
16990
|
}
|
|
16956
16991
|
interface GetClusterWorkloadIdentityConfig {
|
|
16957
16992
|
identityNamespace: string;
|
|
16993
|
+
workloadPool: string;
|
|
16958
16994
|
}
|
|
16959
16995
|
interface NodePoolAutoscaling {
|
|
16960
16996
|
/**
|
|
@@ -17014,6 +17050,7 @@ export declare namespace container {
|
|
|
17014
17050
|
}
|
|
17015
17051
|
interface NodePoolNodeConfigGuestAccelerator {
|
|
17016
17052
|
count: number;
|
|
17053
|
+
gpuPartitionSize?: string;
|
|
17017
17054
|
type: string;
|
|
17018
17055
|
}
|
|
17019
17056
|
interface NodePoolNodeConfigKubeletConfig {
|
|
@@ -17039,7 +17076,7 @@ export declare namespace container {
|
|
|
17039
17076
|
value: string;
|
|
17040
17077
|
}
|
|
17041
17078
|
interface NodePoolNodeConfigWorkloadMetadataConfig {
|
|
17042
|
-
mode
|
|
17079
|
+
mode: string;
|
|
17043
17080
|
/**
|
|
17044
17081
|
* @deprecated Deprecated in favor of mode.
|
|
17045
17082
|
*/
|
|
@@ -18521,7 +18558,7 @@ export declare namespace dataproc {
|
|
|
18521
18558
|
lifecycleConfig?: outputs.dataproc.ClusterClusterConfigLifecycleConfig;
|
|
18522
18559
|
/**
|
|
18523
18560
|
* The Google Compute Engine config settings for the master instances
|
|
18524
|
-
* in a cluster
|
|
18561
|
+
* in a cluster. Structure defined below.
|
|
18525
18562
|
*/
|
|
18526
18563
|
masterConfig: outputs.dataproc.ClusterClusterConfigMasterConfig;
|
|
18527
18564
|
/**
|
|
@@ -18565,7 +18602,7 @@ export declare namespace dataproc {
|
|
|
18565
18602
|
tempBucket: string;
|
|
18566
18603
|
/**
|
|
18567
18604
|
* The Google Compute Engine config settings for the worker instances
|
|
18568
|
-
* in a cluster
|
|
18605
|
+
* in a cluster. Structure defined below.
|
|
18569
18606
|
*/
|
|
18570
18607
|
workerConfig: outputs.dataproc.ClusterClusterConfigWorkerConfig;
|
|
18571
18608
|
}
|
|
@@ -21248,6 +21285,13 @@ export declare namespace filestore {
|
|
|
21248
21285
|
squashMode?: string;
|
|
21249
21286
|
}
|
|
21250
21287
|
interface InstanceNetwork {
|
|
21288
|
+
/**
|
|
21289
|
+
* The network connect mode of the Filestore instance.
|
|
21290
|
+
* If not provided, the connect mode defaults to
|
|
21291
|
+
* DIRECT_PEERING.
|
|
21292
|
+
* Default value is `DIRECT_PEERING`.
|
|
21293
|
+
* Possible values are `DIRECT_PEERING` and `PRIVATE_SERVICE_ACCESS`.
|
|
21294
|
+
*/
|
|
21251
21295
|
connectMode?: string;
|
|
21252
21296
|
/**
|
|
21253
21297
|
* -
|
|
@@ -21537,19 +21581,19 @@ export declare namespace gameservices {
|
|
|
21537
21581
|
export declare namespace gkehub {
|
|
21538
21582
|
interface FeatureMembershipConfigmanagement {
|
|
21539
21583
|
/**
|
|
21540
|
-
* Binauthz configuration for the cluster.
|
|
21584
|
+
* Binauthz configuration for the cluster. Structure is documented below.
|
|
21541
21585
|
*/
|
|
21542
21586
|
binauthz?: outputs.gkehub.FeatureMembershipConfigmanagementBinauthz;
|
|
21543
21587
|
/**
|
|
21544
|
-
* Config Sync configuration for the cluster.
|
|
21588
|
+
* Config Sync configuration for the cluster. Structure is documented below.
|
|
21545
21589
|
*/
|
|
21546
21590
|
configSync?: outputs.gkehub.FeatureMembershipConfigmanagementConfigSync;
|
|
21547
21591
|
/**
|
|
21548
|
-
* Hierarchy Controller configuration for the cluster.
|
|
21592
|
+
* Hierarchy Controller configuration for the cluster. Structure is documented below.
|
|
21549
21593
|
*/
|
|
21550
21594
|
hierarchyController?: outputs.gkehub.FeatureMembershipConfigmanagementHierarchyController;
|
|
21551
21595
|
/**
|
|
21552
|
-
* Policy Controller configuration for the cluster.
|
|
21596
|
+
* Policy Controller configuration for the cluster. Structure is documented below.
|
|
21553
21597
|
*/
|
|
21554
21598
|
policyController?: outputs.gkehub.FeatureMembershipConfigmanagementPolicyController;
|
|
21555
21599
|
/**
|
|
@@ -21566,7 +21610,7 @@ export declare namespace gkehub {
|
|
|
21566
21610
|
interface FeatureMembershipConfigmanagementConfigSync {
|
|
21567
21611
|
/**
|
|
21568
21612
|
* -
|
|
21569
|
-
* (Optional)
|
|
21613
|
+
* (Optional) Structure is documented below.
|
|
21570
21614
|
*/
|
|
21571
21615
|
git?: outputs.gkehub.FeatureMembershipConfigmanagementConfigSyncGit;
|
|
21572
21616
|
/**
|
|
@@ -27338,7 +27382,14 @@ export declare namespace vertex {
|
|
|
27338
27382
|
}
|
|
27339
27383
|
export declare namespace vpcaccess {
|
|
27340
27384
|
interface ConnectorSubnet {
|
|
27385
|
+
/**
|
|
27386
|
+
* Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is
|
|
27387
|
+
* https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName}"
|
|
27388
|
+
*/
|
|
27341
27389
|
name?: string;
|
|
27390
|
+
/**
|
|
27391
|
+
* Project in which the subnet exists. If not set, this project is assumed to be the project for which the connector create request was issued.
|
|
27392
|
+
*/
|
|
27342
27393
|
projectId: string;
|
|
27343
27394
|
}
|
|
27344
27395
|
}
|
package/vpcaccess/connector.d.ts
CHANGED
|
@@ -108,7 +108,8 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
108
108
|
*/
|
|
109
109
|
readonly minThroughput: pulumi.Output<number | undefined>;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is
|
|
112
|
+
* https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName}"
|
|
112
113
|
*/
|
|
113
114
|
readonly name: pulumi.Output<string>;
|
|
114
115
|
/**
|
|
@@ -134,6 +135,7 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
134
135
|
readonly state: pulumi.Output<string>;
|
|
135
136
|
/**
|
|
136
137
|
* The subnet in which to house the connector
|
|
138
|
+
* Structure is documented below.
|
|
137
139
|
*/
|
|
138
140
|
readonly subnet: pulumi.Output<outputs.vpcaccess.ConnectorSubnet | undefined>;
|
|
139
141
|
/**
|
|
@@ -174,7 +176,8 @@ export interface ConnectorState {
|
|
|
174
176
|
*/
|
|
175
177
|
minThroughput?: pulumi.Input<number>;
|
|
176
178
|
/**
|
|
177
|
-
*
|
|
179
|
+
* Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is
|
|
180
|
+
* https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName}"
|
|
178
181
|
*/
|
|
179
182
|
name?: pulumi.Input<string>;
|
|
180
183
|
/**
|
|
@@ -200,6 +203,7 @@ export interface ConnectorState {
|
|
|
200
203
|
state?: pulumi.Input<string>;
|
|
201
204
|
/**
|
|
202
205
|
* The subnet in which to house the connector
|
|
206
|
+
* Structure is documented below.
|
|
203
207
|
*/
|
|
204
208
|
subnet?: pulumi.Input<inputs.vpcaccess.ConnectorSubnet>;
|
|
205
209
|
}
|
|
@@ -232,7 +236,8 @@ export interface ConnectorArgs {
|
|
|
232
236
|
*/
|
|
233
237
|
minThroughput?: pulumi.Input<number>;
|
|
234
238
|
/**
|
|
235
|
-
*
|
|
239
|
+
* Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is
|
|
240
|
+
* https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName}"
|
|
236
241
|
*/
|
|
237
242
|
name?: pulumi.Input<string>;
|
|
238
243
|
/**
|
|
@@ -250,6 +255,7 @@ export interface ConnectorArgs {
|
|
|
250
255
|
region?: pulumi.Input<string>;
|
|
251
256
|
/**
|
|
252
257
|
* The subnet in which to house the connector
|
|
258
|
+
* Structure is documented below.
|
|
253
259
|
*/
|
|
254
260
|
subnet?: pulumi.Input<inputs.vpcaccess.ConnectorSubnet>;
|
|
255
261
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../../vpcaccess/connector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkEG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../../vpcaccess/connector.ts"],"names":[],"mappings":"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"}
|