pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712402830__py3-none-any.whl
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.
- pulumi_gcp/bigtable/_inputs.py +4 -4
- pulumi_gcp/bigtable/gc_policy.py +8 -0
- pulumi_gcp/bigtable/outputs.py +4 -4
- pulumi_gcp/billing/_inputs.py +4 -4
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
- pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +7 -7
- pulumi_gcp/composer/_inputs.py +14 -4
- pulumi_gcp/composer/outputs.py +22 -10
- pulumi_gcp/compute/_inputs.py +40 -44
- pulumi_gcp/compute/autoscaler.py +14 -14
- pulumi_gcp/compute/outputs.py +62 -60
- pulumi_gcp/compute/region_autoscaler.py +14 -14
- pulumi_gcp/container/_inputs.py +148 -16
- pulumi_gcp/container/outputs.py +148 -16
- pulumi_gcp/dataloss/_inputs.py +6 -6
- pulumi_gcp/dataloss/outputs.py +6 -6
- pulumi_gcp/dataproc/_inputs.py +14 -10
- pulumi_gcp/dataproc/outputs.py +14 -10
- pulumi_gcp/iam/_inputs.py +76 -0
- pulumi_gcp/iam/outputs.py +76 -0
- pulumi_gcp/iam/workforce_pool_provider.py +35 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
- pulumi_gcp/logging/_inputs.py +8 -8
- pulumi_gcp/logging/metric.py +7 -7
- pulumi_gcp/logging/outputs.py +8 -8
- pulumi_gcp/monitoring/_inputs.py +2 -2
- pulumi_gcp/monitoring/outputs.py +2 -2
- pulumi_gcp/monitoring/slo.py +4 -4
- pulumi_gcp/networkservices/_inputs.py +6 -6
- pulumi_gcp/networkservices/outputs.py +6 -6
- pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
- pulumi_gcp/sql/_inputs.py +20 -2
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +20 -2
- pulumi_gcp/storage/_inputs.py +2 -2
- pulumi_gcp/storage/outputs.py +2 -2
- pulumi_gcp/vertex/_inputs.py +6 -8
- pulumi_gcp/vertex/outputs.py +8 -10
- {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/RECORD +44 -44
- {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,7 @@ class ConsumerQuotaOverrideArgs:
|
|
33
33
|
:param pulumi.Input[str] override_value: The overriding quota limit value. Can be any nonnegative integer, or -1 (unlimited quota).
|
34
34
|
:param pulumi.Input[str] service: The service that the metrics belong to, e.g. `compute.googleapis.com`.
|
35
35
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
|
36
|
-
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10
|
36
|
+
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
37
37
|
If `force` is `true`, that safety check is ignored.
|
38
38
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
39
39
|
If it is not provided, the provider project is used.
|
@@ -118,7 +118,7 @@ class ConsumerQuotaOverrideArgs:
|
|
118
118
|
@pulumi.getter
|
119
119
|
def force(self) -> Optional[pulumi.Input[bool]]:
|
120
120
|
"""
|
121
|
-
If the new quota would decrease the existing quota by more than 10
|
121
|
+
If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
122
122
|
If `force` is `true`, that safety check is ignored.
|
123
123
|
"""
|
124
124
|
return pulumi.get(self, "force")
|
@@ -155,7 +155,7 @@ class _ConsumerQuotaOverrideState:
|
|
155
155
|
"""
|
156
156
|
Input properties used for looking up and filtering ConsumerQuotaOverride resources.
|
157
157
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
|
158
|
-
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10
|
158
|
+
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
159
159
|
If `force` is `true`, that safety check is ignored.
|
160
160
|
:param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
|
161
161
|
> Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
|
@@ -203,7 +203,7 @@ class _ConsumerQuotaOverrideState:
|
|
203
203
|
@pulumi.getter
|
204
204
|
def force(self) -> Optional[pulumi.Input[bool]]:
|
205
205
|
"""
|
206
|
-
If the new quota would decrease the existing quota by more than 10
|
206
|
+
If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
207
207
|
If `force` is `true`, that safety check is ignored.
|
208
208
|
"""
|
209
209
|
return pulumi.get(self, "force")
|
@@ -414,7 +414,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
|
|
414
414
|
:param str resource_name: The name of the resource.
|
415
415
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
416
416
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
|
417
|
-
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10
|
417
|
+
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
418
418
|
If `force` is `true`, that safety check is ignored.
|
419
419
|
:param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
|
420
420
|
> Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
|
@@ -614,7 +614,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
|
|
614
614
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
615
615
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
616
616
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] dimensions: If this map is nonempty, then this override applies only to specific values for dimensions defined in the limit unit.
|
617
|
-
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10
|
617
|
+
:param pulumi.Input[bool] force: If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
618
618
|
If `force` is `true`, that safety check is ignored.
|
619
619
|
:param pulumi.Input[str] limit: The limit on the metric, e.g. `/project/region`.
|
620
620
|
> Make sure that `limit` is in a format that doesn't start with `1/` or contain curly braces.
|
@@ -655,7 +655,7 @@ class ConsumerQuotaOverride(pulumi.CustomResource):
|
|
655
655
|
@pulumi.getter
|
656
656
|
def force(self) -> pulumi.Output[Optional[bool]]:
|
657
657
|
"""
|
658
|
-
If the new quota would decrease the existing quota by more than 10
|
658
|
+
If the new quota would decrease the existing quota by more than 10%, the request is rejected.
|
659
659
|
If `force` is `true`, that safety check is ignored.
|
660
660
|
"""
|
661
661
|
return pulumi.get(self, "force")
|
pulumi_gcp/sql/_inputs.py
CHANGED
@@ -132,6 +132,12 @@ class DatabaseInstanceIpAddressArgs:
|
|
132
132
|
ip_address: Optional[pulumi.Input[str]] = None,
|
133
133
|
time_to_retire: Optional[pulumi.Input[str]] = None,
|
134
134
|
type: Optional[pulumi.Input[str]] = None):
|
135
|
+
"""
|
136
|
+
:param pulumi.Input[str] ip_address: The IPv4 address assigned.
|
137
|
+
:param pulumi.Input[str] time_to_retire: The time this IP address will be retired, in RFC
|
138
|
+
3339 format.
|
139
|
+
:param pulumi.Input[str] type: The type of this IP address.
|
140
|
+
"""
|
135
141
|
if ip_address is not None:
|
136
142
|
pulumi.set(__self__, "ip_address", ip_address)
|
137
143
|
if time_to_retire is not None:
|
@@ -142,6 +148,9 @@ class DatabaseInstanceIpAddressArgs:
|
|
142
148
|
@property
|
143
149
|
@pulumi.getter(name="ipAddress")
|
144
150
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
151
|
+
"""
|
152
|
+
The IPv4 address assigned.
|
153
|
+
"""
|
145
154
|
return pulumi.get(self, "ip_address")
|
146
155
|
|
147
156
|
@ip_address.setter
|
@@ -151,6 +160,10 @@ class DatabaseInstanceIpAddressArgs:
|
|
151
160
|
@property
|
152
161
|
@pulumi.getter(name="timeToRetire")
|
153
162
|
def time_to_retire(self) -> Optional[pulumi.Input[str]]:
|
163
|
+
"""
|
164
|
+
The time this IP address will be retired, in RFC
|
165
|
+
3339 format.
|
166
|
+
"""
|
154
167
|
return pulumi.get(self, "time_to_retire")
|
155
168
|
|
156
169
|
@time_to_retire.setter
|
@@ -160,6 +173,9 @@ class DatabaseInstanceIpAddressArgs:
|
|
160
173
|
@property
|
161
174
|
@pulumi.getter
|
162
175
|
def type(self) -> Optional[pulumi.Input[str]]:
|
176
|
+
"""
|
177
|
+
The type of this IP address.
|
178
|
+
"""
|
163
179
|
return pulumi.get(self, "type")
|
164
180
|
|
165
181
|
@type.setter
|
@@ -573,7 +589,8 @@ class DatabaseInstanceSettingsArgs:
|
|
573
589
|
:param pulumi.Input[str] pricing_plan: Pricing plan for this instance, can only be `PER_USE`.
|
574
590
|
:param pulumi.Input[str] time_zone: The time_zone to be used by the database engine (supported only for SQL Server), in SQL Server timezone format.
|
575
591
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] user_labels: A set of key/value user label pairs to assign to the instance.
|
576
|
-
:param pulumi.Input[int] version: Used to make sure changes to the settings block are
|
592
|
+
:param pulumi.Input[int] version: Used to make sure changes to the `settings` block are
|
593
|
+
atomic.
|
577
594
|
"""
|
578
595
|
pulumi.set(__self__, "tier", tier)
|
579
596
|
if activation_policy is not None:
|
@@ -926,7 +943,8 @@ class DatabaseInstanceSettingsArgs:
|
|
926
943
|
@pulumi.getter
|
927
944
|
def version(self) -> Optional[pulumi.Input[int]]:
|
928
945
|
"""
|
929
|
-
Used to make sure changes to the settings block are
|
946
|
+
Used to make sure changes to the `settings` block are
|
947
|
+
atomic.
|
930
948
|
"""
|
931
949
|
return pulumi.get(self, "version")
|
932
950
|
|
@@ -801,7 +801,7 @@ class DatabaseInstance(pulumi.CustomResource):
|
|
801
801
|
or the [JSON API](https://cloud.google.com/sql/docs/admin-api/v1beta4/instances).
|
802
802
|
|
803
803
|
> **NOTE on `sql.DatabaseInstance`:** - Second-generation instances include a
|
804
|
-
default 'root'@'
|
804
|
+
default 'root'@'%' user with no password. This user will be deleted by the provider on
|
805
805
|
instance creation. You should use `sql.User` to define a custom user with
|
806
806
|
a restricted host and strong password.
|
807
807
|
|
@@ -1002,7 +1002,7 @@ class DatabaseInstance(pulumi.CustomResource):
|
|
1002
1002
|
or the [JSON API](https://cloud.google.com/sql/docs/admin-api/v1beta4/instances).
|
1003
1003
|
|
1004
1004
|
> **NOTE on `sql.DatabaseInstance`:** - Second-generation instances include a
|
1005
|
-
default 'root'@'
|
1005
|
+
default 'root'@'%' user with no password. This user will be deleted by the provider on
|
1006
1006
|
instance creation. You should use `sql.User` to define a custom user with
|
1007
1007
|
a restricted host and strong password.
|
1008
1008
|
|
pulumi_gcp/sql/outputs.py
CHANGED
@@ -203,6 +203,12 @@ class DatabaseInstanceIpAddress(dict):
|
|
203
203
|
ip_address: Optional[str] = None,
|
204
204
|
time_to_retire: Optional[str] = None,
|
205
205
|
type: Optional[str] = None):
|
206
|
+
"""
|
207
|
+
:param str ip_address: The IPv4 address assigned.
|
208
|
+
:param str time_to_retire: The time this IP address will be retired, in RFC
|
209
|
+
3339 format.
|
210
|
+
:param str type: The type of this IP address.
|
211
|
+
"""
|
206
212
|
if ip_address is not None:
|
207
213
|
pulumi.set(__self__, "ip_address", ip_address)
|
208
214
|
if time_to_retire is not None:
|
@@ -213,16 +219,26 @@ class DatabaseInstanceIpAddress(dict):
|
|
213
219
|
@property
|
214
220
|
@pulumi.getter(name="ipAddress")
|
215
221
|
def ip_address(self) -> Optional[str]:
|
222
|
+
"""
|
223
|
+
The IPv4 address assigned.
|
224
|
+
"""
|
216
225
|
return pulumi.get(self, "ip_address")
|
217
226
|
|
218
227
|
@property
|
219
228
|
@pulumi.getter(name="timeToRetire")
|
220
229
|
def time_to_retire(self) -> Optional[str]:
|
230
|
+
"""
|
231
|
+
The time this IP address will be retired, in RFC
|
232
|
+
3339 format.
|
233
|
+
"""
|
221
234
|
return pulumi.get(self, "time_to_retire")
|
222
235
|
|
223
236
|
@property
|
224
237
|
@pulumi.getter
|
225
238
|
def type(self) -> Optional[str]:
|
239
|
+
"""
|
240
|
+
The type of this IP address.
|
241
|
+
"""
|
226
242
|
return pulumi.get(self, "type")
|
227
243
|
|
228
244
|
|
@@ -692,7 +708,8 @@ class DatabaseInstanceSettings(dict):
|
|
692
708
|
:param str pricing_plan: Pricing plan for this instance, can only be `PER_USE`.
|
693
709
|
:param str time_zone: The time_zone to be used by the database engine (supported only for SQL Server), in SQL Server timezone format.
|
694
710
|
:param Mapping[str, str] user_labels: A set of key/value user label pairs to assign to the instance.
|
695
|
-
:param int version: Used to make sure changes to the settings block are
|
711
|
+
:param int version: Used to make sure changes to the `settings` block are
|
712
|
+
atomic.
|
696
713
|
"""
|
697
714
|
pulumi.set(__self__, "tier", tier)
|
698
715
|
if activation_policy is not None:
|
@@ -941,7 +958,8 @@ class DatabaseInstanceSettings(dict):
|
|
941
958
|
@pulumi.getter
|
942
959
|
def version(self) -> Optional[int]:
|
943
960
|
"""
|
944
|
-
Used to make sure changes to the settings block are
|
961
|
+
Used to make sure changes to the `settings` block are
|
962
|
+
atomic.
|
945
963
|
"""
|
946
964
|
return pulumi.get(self, "version")
|
947
965
|
|
pulumi_gcp/storage/_inputs.py
CHANGED
@@ -1993,7 +1993,7 @@ class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
|
1993
1993
|
:param pulumi.Input[str] container: The container to transfer from the Azure Storage account.`
|
1994
1994
|
:param pulumi.Input[str] storage_account: The name of the Azure Storage account.
|
1995
1995
|
:param pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs'] azure_credentials: Credentials used to authenticate API requests to Azure block.
|
1996
|
-
:param pulumi.Input[str] credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin
|
1996
|
+
:param pulumi.Input[str] credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%20with%20a%20%27/%27.-,credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
1997
1997
|
:param pulumi.Input[str] path: Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
1998
1998
|
"""
|
1999
1999
|
pulumi.set(__self__, "container", container)
|
@@ -2045,7 +2045,7 @@ class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
|
2045
2045
|
@pulumi.getter(name="credentialsSecret")
|
2046
2046
|
def credentials_secret(self) -> Optional[pulumi.Input[str]]:
|
2047
2047
|
"""
|
2048
|
-
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin
|
2048
|
+
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%20with%20a%20%27/%27.-,credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2049
2049
|
"""
|
2050
2050
|
return pulumi.get(self, "credentials_secret")
|
2051
2051
|
|
pulumi_gcp/storage/outputs.py
CHANGED
@@ -2122,7 +2122,7 @@ class TransferJobTransferSpecAzureBlobStorageDataSource(dict):
|
|
2122
2122
|
:param str container: The container to transfer from the Azure Storage account.`
|
2123
2123
|
:param str storage_account: The name of the Azure Storage account.
|
2124
2124
|
:param 'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs' azure_credentials: Credentials used to authenticate API requests to Azure block.
|
2125
|
-
:param str credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin
|
2125
|
+
:param str credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%20with%20a%20%27/%27.-,credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2126
2126
|
:param str path: Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2127
2127
|
"""
|
2128
2128
|
pulumi.set(__self__, "container", container)
|
@@ -2162,7 +2162,7 @@ class TransferJobTransferSpecAzureBlobStorageDataSource(dict):
|
|
2162
2162
|
@pulumi.getter(name="credentialsSecret")
|
2163
2163
|
def credentials_secret(self) -> Optional[str]:
|
2164
2164
|
"""
|
2165
|
-
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin
|
2165
|
+
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%20with%20a%20%27/%27.-,credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2166
2166
|
"""
|
2167
2167
|
return pulumi.get(self, "credentials_secret")
|
2168
2168
|
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -447,7 +447,7 @@ class AiEndpointDeployedModelDedicatedResourceAutoscalingMetricSpecArgs:
|
|
447
447
|
:param pulumi.Input[str] metric_name: (Output)
|
448
448
|
The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization`
|
449
449
|
:param pulumi.Input[int] target: (Output)
|
450
|
-
The target resource utilization in percentage (1%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60
|
450
|
+
The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided.
|
451
451
|
"""
|
452
452
|
if metric_name is not None:
|
453
453
|
pulumi.set(__self__, "metric_name", metric_name)
|
@@ -472,7 +472,7 @@ class AiEndpointDeployedModelDedicatedResourceAutoscalingMetricSpecArgs:
|
|
472
472
|
def target(self) -> Optional[pulumi.Input[int]]:
|
473
473
|
"""
|
474
474
|
(Output)
|
475
|
-
The target resource utilization in percentage (1%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60
|
475
|
+
The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided.
|
476
476
|
"""
|
477
477
|
return pulumi.get(self, "target")
|
478
478
|
|
@@ -816,8 +816,7 @@ class AiFeatureOnlineStoreBigtableAutoScalingArgs:
|
|
816
816
|
"""
|
817
817
|
:param pulumi.Input[int] max_node_count: The maximum number of nodes to scale up to. Must be greater than or equal to minNodeCount, and less than or equal to 10 times of 'minNodeCount'.
|
818
818
|
:param pulumi.Input[int] min_node_count: The minimum number of nodes to scale down to. Must be greater than or equal to 1.
|
819
|
-
:param pulumi.Input[int] cpu_utilization_target: A percentage of the cluster's CPU capacity. Can be from 10
|
820
|
-
(MISSING)
|
819
|
+
:param pulumi.Input[int] cpu_utilization_target: A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
821
820
|
"""
|
822
821
|
pulumi.set(__self__, "max_node_count", max_node_count)
|
823
822
|
pulumi.set(__self__, "min_node_count", min_node_count)
|
@@ -852,8 +851,7 @@ class AiFeatureOnlineStoreBigtableAutoScalingArgs:
|
|
852
851
|
@pulumi.getter(name="cpuUtilizationTarget")
|
853
852
|
def cpu_utilization_target(self) -> Optional[pulumi.Input[int]]:
|
854
853
|
"""
|
855
|
-
A percentage of the cluster's CPU capacity. Can be from 10
|
856
|
-
(MISSING)
|
854
|
+
A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
857
855
|
"""
|
858
856
|
return pulumi.get(self, "cpu_utilization_target")
|
859
857
|
|
@@ -2162,7 +2160,7 @@ class AiIndexMetadataConfigAlgorithmConfigTreeAhConfigArgs:
|
|
2162
2160
|
"""
|
2163
2161
|
:param pulumi.Input[int] leaf_node_embedding_count: Number of embeddings on each leaf node. The default value is 1000 if not set.
|
2164
2162
|
:param pulumi.Input[int] leaf_nodes_to_search_percent: The default percentage of leaf nodes that any query may be searched. Must be in
|
2165
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2163
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2166
2164
|
"""
|
2167
2165
|
if leaf_node_embedding_count is not None:
|
2168
2166
|
pulumi.set(__self__, "leaf_node_embedding_count", leaf_node_embedding_count)
|
@@ -2186,7 +2184,7 @@ class AiIndexMetadataConfigAlgorithmConfigTreeAhConfigArgs:
|
|
2186
2184
|
def leaf_nodes_to_search_percent(self) -> Optional[pulumi.Input[int]]:
|
2187
2185
|
"""
|
2188
2186
|
The default percentage of leaf nodes that any query may be searched. Must be in
|
2189
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2187
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2190
2188
|
"""
|
2191
2189
|
return pulumi.get(self, "leaf_nodes_to_search_percent")
|
2192
2190
|
|
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -490,7 +490,7 @@ class AiEndpointDeployedModelDedicatedResourceAutoscalingMetricSpec(dict):
|
|
490
490
|
:param str metric_name: (Output)
|
491
491
|
The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization`
|
492
492
|
:param int target: (Output)
|
493
|
-
The target resource utilization in percentage (1%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60
|
493
|
+
The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided.
|
494
494
|
"""
|
495
495
|
if metric_name is not None:
|
496
496
|
pulumi.set(__self__, "metric_name", metric_name)
|
@@ -511,7 +511,7 @@ class AiEndpointDeployedModelDedicatedResourceAutoscalingMetricSpec(dict):
|
|
511
511
|
def target(self) -> Optional[int]:
|
512
512
|
"""
|
513
513
|
(Output)
|
514
|
-
The target resource utilization in percentage (1%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60
|
514
|
+
The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided.
|
515
515
|
"""
|
516
516
|
return pulumi.get(self, "target")
|
517
517
|
|
@@ -914,8 +914,7 @@ class AiFeatureOnlineStoreBigtableAutoScaling(dict):
|
|
914
914
|
"""
|
915
915
|
:param int max_node_count: The maximum number of nodes to scale up to. Must be greater than or equal to minNodeCount, and less than or equal to 10 times of 'minNodeCount'.
|
916
916
|
:param int min_node_count: The minimum number of nodes to scale down to. Must be greater than or equal to 1.
|
917
|
-
:param int cpu_utilization_target: A percentage of the cluster's CPU capacity. Can be from 10
|
918
|
-
(MISSING)
|
917
|
+
:param int cpu_utilization_target: A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
919
918
|
"""
|
920
919
|
pulumi.set(__self__, "max_node_count", max_node_count)
|
921
920
|
pulumi.set(__self__, "min_node_count", min_node_count)
|
@@ -942,8 +941,7 @@ class AiFeatureOnlineStoreBigtableAutoScaling(dict):
|
|
942
941
|
@pulumi.getter(name="cpuUtilizationTarget")
|
943
942
|
def cpu_utilization_target(self) -> Optional[int]:
|
944
943
|
"""
|
945
|
-
A percentage of the cluster's CPU capacity. Can be from 10
|
946
|
-
(MISSING)
|
944
|
+
A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
947
945
|
"""
|
948
946
|
return pulumi.get(self, "cpu_utilization_target")
|
949
947
|
|
@@ -2373,7 +2371,7 @@ class AiIndexMetadataConfigAlgorithmConfigTreeAhConfig(dict):
|
|
2373
2371
|
"""
|
2374
2372
|
:param int leaf_node_embedding_count: Number of embeddings on each leaf node. The default value is 1000 if not set.
|
2375
2373
|
:param int leaf_nodes_to_search_percent: The default percentage of leaf nodes that any query may be searched. Must be in
|
2376
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2374
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2377
2375
|
"""
|
2378
2376
|
if leaf_node_embedding_count is not None:
|
2379
2377
|
pulumi.set(__self__, "leaf_node_embedding_count", leaf_node_embedding_count)
|
@@ -2393,7 +2391,7 @@ class AiIndexMetadataConfigAlgorithmConfigTreeAhConfig(dict):
|
|
2393
2391
|
def leaf_nodes_to_search_percent(self) -> Optional[int]:
|
2394
2392
|
"""
|
2395
2393
|
The default percentage of leaf nodes that any query may be searched. Must be in
|
2396
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2394
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2397
2395
|
"""
|
2398
2396
|
return pulumi.get(self, "leaf_nodes_to_search_percent")
|
2399
2397
|
|
@@ -2767,7 +2765,7 @@ class GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigResult(dict):
|
|
2767
2765
|
"""
|
2768
2766
|
:param int leaf_node_embedding_count: Number of embeddings on each leaf node. The default value is 1000 if not set.
|
2769
2767
|
:param int leaf_nodes_to_search_percent: The default percentage of leaf nodes that any query may be searched. Must be in
|
2770
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2768
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2771
2769
|
"""
|
2772
2770
|
pulumi.set(__self__, "leaf_node_embedding_count", leaf_node_embedding_count)
|
2773
2771
|
pulumi.set(__self__, "leaf_nodes_to_search_percent", leaf_nodes_to_search_percent)
|
@@ -2785,7 +2783,7 @@ class GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigResult(dict):
|
|
2785
2783
|
def leaf_nodes_to_search_percent(self) -> int:
|
2786
2784
|
"""
|
2787
2785
|
The default percentage of leaf nodes that any query may be searched. Must be in
|
2788
|
-
range 1-100, inclusive. The default value is 10 (means 10
|
2786
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2789
2787
|
"""
|
2790
2788
|
return pulumi.get(self, "leaf_nodes_to_search_percent")
|
2791
2789
|
|