pulumi-gcp 8.7.0a1730183903__py3-none-any.whl → 8.7.0a1730196225__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/__init__.py +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -230,7 +230,7 @@ class AiDeploymentResourcePool(pulumi.CustomResource):
|
|
230
230
|
dedicated_resources={
|
231
231
|
"machine_spec": {
|
232
232
|
"machine_type": "n1-standard-4",
|
233
|
-
"accelerator_type": "
|
233
|
+
"accelerator_type": "NVIDIA_TESLA_P4",
|
234
234
|
"accelerator_count": 1,
|
235
235
|
},
|
236
236
|
"min_replica_count": 1,
|
@@ -312,7 +312,7 @@ class AiDeploymentResourcePool(pulumi.CustomResource):
|
|
312
312
|
dedicated_resources={
|
313
313
|
"machine_spec": {
|
314
314
|
"machine_type": "n1-standard-4",
|
315
|
-
"accelerator_type": "
|
315
|
+
"accelerator_type": "NVIDIA_TESLA_P4",
|
316
316
|
"accelerator_count": 1,
|
317
317
|
},
|
318
318
|
"min_replica_count": 1,
|
@@ -15,6 +15,16 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'ClusterAutoscalingSettingsArgs',
|
19
|
+
'ClusterAutoscalingSettingsArgsDict',
|
20
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyArgs',
|
21
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyArgsDict',
|
22
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs',
|
23
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgsDict',
|
24
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs',
|
25
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgsDict',
|
26
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs',
|
27
|
+
'ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgsDict',
|
18
28
|
'ClusterNodeTypeConfigArgs',
|
19
29
|
'ClusterNodeTypeConfigArgsDict',
|
20
30
|
'ExternalAccessRuleDestinationIpRangeArgs',
|
@@ -47,6 +57,436 @@ __all__ = [
|
|
47
57
|
|
48
58
|
MYPY = False
|
49
59
|
|
60
|
+
if not MYPY:
|
61
|
+
class ClusterAutoscalingSettingsArgsDict(TypedDict):
|
62
|
+
autoscaling_policies: pulumi.Input[Sequence[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyArgsDict']]]
|
63
|
+
"""
|
64
|
+
The map with autoscaling policies applied to the cluster.
|
65
|
+
The key is the identifier of the policy.
|
66
|
+
It must meet the following requirements:
|
67
|
+
* Only contains 1-63 alphanumeric characters and hyphens
|
68
|
+
* Begins with an alphabetical character
|
69
|
+
* Ends with a non-hyphen character
|
70
|
+
* Not formatted as a UUID
|
71
|
+
* Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
|
72
|
+
Currently the map must contain only one element
|
73
|
+
that describes the autoscaling policy for compute nodes.
|
74
|
+
Structure is documented below.
|
75
|
+
"""
|
76
|
+
cool_down_period: NotRequired[pulumi.Input[str]]
|
77
|
+
"""
|
78
|
+
The minimum duration between consecutive autoscale operations.
|
79
|
+
It starts once addition or removal of nodes is fully completed.
|
80
|
+
Minimum cool down period is 30m.
|
81
|
+
Cool down period must be in whole minutes (for example, 30m, 31m, 50m).
|
82
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
83
|
+
"""
|
84
|
+
max_cluster_node_count: NotRequired[pulumi.Input[int]]
|
85
|
+
"""
|
86
|
+
Maximum number of nodes of any type in a cluster.
|
87
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
88
|
+
"""
|
89
|
+
min_cluster_node_count: NotRequired[pulumi.Input[int]]
|
90
|
+
"""
|
91
|
+
Minimum number of nodes of any type in a cluster.
|
92
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
93
|
+
"""
|
94
|
+
elif False:
|
95
|
+
ClusterAutoscalingSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
96
|
+
|
97
|
+
@pulumi.input_type
|
98
|
+
class ClusterAutoscalingSettingsArgs:
|
99
|
+
def __init__(__self__, *,
|
100
|
+
autoscaling_policies: pulumi.Input[Sequence[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyArgs']]],
|
101
|
+
cool_down_period: Optional[pulumi.Input[str]] = None,
|
102
|
+
max_cluster_node_count: Optional[pulumi.Input[int]] = None,
|
103
|
+
min_cluster_node_count: Optional[pulumi.Input[int]] = None):
|
104
|
+
"""
|
105
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyArgs']]] autoscaling_policies: The map with autoscaling policies applied to the cluster.
|
106
|
+
The key is the identifier of the policy.
|
107
|
+
It must meet the following requirements:
|
108
|
+
* Only contains 1-63 alphanumeric characters and hyphens
|
109
|
+
* Begins with an alphabetical character
|
110
|
+
* Ends with a non-hyphen character
|
111
|
+
* Not formatted as a UUID
|
112
|
+
* Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
|
113
|
+
Currently the map must contain only one element
|
114
|
+
that describes the autoscaling policy for compute nodes.
|
115
|
+
Structure is documented below.
|
116
|
+
:param pulumi.Input[str] cool_down_period: The minimum duration between consecutive autoscale operations.
|
117
|
+
It starts once addition or removal of nodes is fully completed.
|
118
|
+
Minimum cool down period is 30m.
|
119
|
+
Cool down period must be in whole minutes (for example, 30m, 31m, 50m).
|
120
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
121
|
+
:param pulumi.Input[int] max_cluster_node_count: Maximum number of nodes of any type in a cluster.
|
122
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
123
|
+
:param pulumi.Input[int] min_cluster_node_count: Minimum number of nodes of any type in a cluster.
|
124
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
125
|
+
"""
|
126
|
+
pulumi.set(__self__, "autoscaling_policies", autoscaling_policies)
|
127
|
+
if cool_down_period is not None:
|
128
|
+
pulumi.set(__self__, "cool_down_period", cool_down_period)
|
129
|
+
if max_cluster_node_count is not None:
|
130
|
+
pulumi.set(__self__, "max_cluster_node_count", max_cluster_node_count)
|
131
|
+
if min_cluster_node_count is not None:
|
132
|
+
pulumi.set(__self__, "min_cluster_node_count", min_cluster_node_count)
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="autoscalingPolicies")
|
136
|
+
def autoscaling_policies(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyArgs']]]:
|
137
|
+
"""
|
138
|
+
The map with autoscaling policies applied to the cluster.
|
139
|
+
The key is the identifier of the policy.
|
140
|
+
It must meet the following requirements:
|
141
|
+
* Only contains 1-63 alphanumeric characters and hyphens
|
142
|
+
* Begins with an alphabetical character
|
143
|
+
* Ends with a non-hyphen character
|
144
|
+
* Not formatted as a UUID
|
145
|
+
* Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
|
146
|
+
Currently the map must contain only one element
|
147
|
+
that describes the autoscaling policy for compute nodes.
|
148
|
+
Structure is documented below.
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "autoscaling_policies")
|
151
|
+
|
152
|
+
@autoscaling_policies.setter
|
153
|
+
def autoscaling_policies(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyArgs']]]):
|
154
|
+
pulumi.set(self, "autoscaling_policies", value)
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="coolDownPeriod")
|
158
|
+
def cool_down_period(self) -> Optional[pulumi.Input[str]]:
|
159
|
+
"""
|
160
|
+
The minimum duration between consecutive autoscale operations.
|
161
|
+
It starts once addition or removal of nodes is fully completed.
|
162
|
+
Minimum cool down period is 30m.
|
163
|
+
Cool down period must be in whole minutes (for example, 30m, 31m, 50m).
|
164
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "cool_down_period")
|
167
|
+
|
168
|
+
@cool_down_period.setter
|
169
|
+
def cool_down_period(self, value: Optional[pulumi.Input[str]]):
|
170
|
+
pulumi.set(self, "cool_down_period", value)
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter(name="maxClusterNodeCount")
|
174
|
+
def max_cluster_node_count(self) -> Optional[pulumi.Input[int]]:
|
175
|
+
"""
|
176
|
+
Maximum number of nodes of any type in a cluster.
|
177
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "max_cluster_node_count")
|
180
|
+
|
181
|
+
@max_cluster_node_count.setter
|
182
|
+
def max_cluster_node_count(self, value: Optional[pulumi.Input[int]]):
|
183
|
+
pulumi.set(self, "max_cluster_node_count", value)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="minClusterNodeCount")
|
187
|
+
def min_cluster_node_count(self) -> Optional[pulumi.Input[int]]:
|
188
|
+
"""
|
189
|
+
Minimum number of nodes of any type in a cluster.
|
190
|
+
Mandatory for successful addition of autoscaling settings in cluster.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "min_cluster_node_count")
|
193
|
+
|
194
|
+
@min_cluster_node_count.setter
|
195
|
+
def min_cluster_node_count(self, value: Optional[pulumi.Input[int]]):
|
196
|
+
pulumi.set(self, "min_cluster_node_count", value)
|
197
|
+
|
198
|
+
|
199
|
+
if not MYPY:
|
200
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyArgsDict(TypedDict):
|
201
|
+
autoscale_policy_id: pulumi.Input[str]
|
202
|
+
"""
|
203
|
+
The identifier for this object. Format specified above.
|
204
|
+
"""
|
205
|
+
node_type_id: pulumi.Input[str]
|
206
|
+
"""
|
207
|
+
The canonical identifier of the node type to add or remove.
|
208
|
+
"""
|
209
|
+
scale_out_size: pulumi.Input[int]
|
210
|
+
"""
|
211
|
+
Number of nodes to add to a cluster during a scale-out operation.
|
212
|
+
Must be divisible by 2 for stretched clusters.
|
213
|
+
"""
|
214
|
+
consumed_memory_thresholds: NotRequired[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgsDict']]
|
215
|
+
"""
|
216
|
+
Utilization thresholds pertaining to amount of consumed memory.
|
217
|
+
Structure is documented below.
|
218
|
+
"""
|
219
|
+
cpu_thresholds: NotRequired[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgsDict']]
|
220
|
+
"""
|
221
|
+
Utilization thresholds pertaining to CPU utilization.
|
222
|
+
Structure is documented below.
|
223
|
+
"""
|
224
|
+
storage_thresholds: NotRequired[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgsDict']]
|
225
|
+
"""
|
226
|
+
Utilization thresholds pertaining to amount of consumed storage.
|
227
|
+
Structure is documented below.
|
228
|
+
"""
|
229
|
+
elif False:
|
230
|
+
ClusterAutoscalingSettingsAutoscalingPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
231
|
+
|
232
|
+
@pulumi.input_type
|
233
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyArgs:
|
234
|
+
def __init__(__self__, *,
|
235
|
+
autoscale_policy_id: pulumi.Input[str],
|
236
|
+
node_type_id: pulumi.Input[str],
|
237
|
+
scale_out_size: pulumi.Input[int],
|
238
|
+
consumed_memory_thresholds: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs']] = None,
|
239
|
+
cpu_thresholds: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs']] = None,
|
240
|
+
storage_thresholds: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs']] = None):
|
241
|
+
"""
|
242
|
+
:param pulumi.Input[str] autoscale_policy_id: The identifier for this object. Format specified above.
|
243
|
+
:param pulumi.Input[str] node_type_id: The canonical identifier of the node type to add or remove.
|
244
|
+
:param pulumi.Input[int] scale_out_size: Number of nodes to add to a cluster during a scale-out operation.
|
245
|
+
Must be divisible by 2 for stretched clusters.
|
246
|
+
:param pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs'] consumed_memory_thresholds: Utilization thresholds pertaining to amount of consumed memory.
|
247
|
+
Structure is documented below.
|
248
|
+
:param pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs'] cpu_thresholds: Utilization thresholds pertaining to CPU utilization.
|
249
|
+
Structure is documented below.
|
250
|
+
:param pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs'] storage_thresholds: Utilization thresholds pertaining to amount of consumed storage.
|
251
|
+
Structure is documented below.
|
252
|
+
"""
|
253
|
+
pulumi.set(__self__, "autoscale_policy_id", autoscale_policy_id)
|
254
|
+
pulumi.set(__self__, "node_type_id", node_type_id)
|
255
|
+
pulumi.set(__self__, "scale_out_size", scale_out_size)
|
256
|
+
if consumed_memory_thresholds is not None:
|
257
|
+
pulumi.set(__self__, "consumed_memory_thresholds", consumed_memory_thresholds)
|
258
|
+
if cpu_thresholds is not None:
|
259
|
+
pulumi.set(__self__, "cpu_thresholds", cpu_thresholds)
|
260
|
+
if storage_thresholds is not None:
|
261
|
+
pulumi.set(__self__, "storage_thresholds", storage_thresholds)
|
262
|
+
|
263
|
+
@property
|
264
|
+
@pulumi.getter(name="autoscalePolicyId")
|
265
|
+
def autoscale_policy_id(self) -> pulumi.Input[str]:
|
266
|
+
"""
|
267
|
+
The identifier for this object. Format specified above.
|
268
|
+
"""
|
269
|
+
return pulumi.get(self, "autoscale_policy_id")
|
270
|
+
|
271
|
+
@autoscale_policy_id.setter
|
272
|
+
def autoscale_policy_id(self, value: pulumi.Input[str]):
|
273
|
+
pulumi.set(self, "autoscale_policy_id", value)
|
274
|
+
|
275
|
+
@property
|
276
|
+
@pulumi.getter(name="nodeTypeId")
|
277
|
+
def node_type_id(self) -> pulumi.Input[str]:
|
278
|
+
"""
|
279
|
+
The canonical identifier of the node type to add or remove.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "node_type_id")
|
282
|
+
|
283
|
+
@node_type_id.setter
|
284
|
+
def node_type_id(self, value: pulumi.Input[str]):
|
285
|
+
pulumi.set(self, "node_type_id", value)
|
286
|
+
|
287
|
+
@property
|
288
|
+
@pulumi.getter(name="scaleOutSize")
|
289
|
+
def scale_out_size(self) -> pulumi.Input[int]:
|
290
|
+
"""
|
291
|
+
Number of nodes to add to a cluster during a scale-out operation.
|
292
|
+
Must be divisible by 2 for stretched clusters.
|
293
|
+
"""
|
294
|
+
return pulumi.get(self, "scale_out_size")
|
295
|
+
|
296
|
+
@scale_out_size.setter
|
297
|
+
def scale_out_size(self, value: pulumi.Input[int]):
|
298
|
+
pulumi.set(self, "scale_out_size", value)
|
299
|
+
|
300
|
+
@property
|
301
|
+
@pulumi.getter(name="consumedMemoryThresholds")
|
302
|
+
def consumed_memory_thresholds(self) -> Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs']]:
|
303
|
+
"""
|
304
|
+
Utilization thresholds pertaining to amount of consumed memory.
|
305
|
+
Structure is documented below.
|
306
|
+
"""
|
307
|
+
return pulumi.get(self, "consumed_memory_thresholds")
|
308
|
+
|
309
|
+
@consumed_memory_thresholds.setter
|
310
|
+
def consumed_memory_thresholds(self, value: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs']]):
|
311
|
+
pulumi.set(self, "consumed_memory_thresholds", value)
|
312
|
+
|
313
|
+
@property
|
314
|
+
@pulumi.getter(name="cpuThresholds")
|
315
|
+
def cpu_thresholds(self) -> Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs']]:
|
316
|
+
"""
|
317
|
+
Utilization thresholds pertaining to CPU utilization.
|
318
|
+
Structure is documented below.
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "cpu_thresholds")
|
321
|
+
|
322
|
+
@cpu_thresholds.setter
|
323
|
+
def cpu_thresholds(self, value: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs']]):
|
324
|
+
pulumi.set(self, "cpu_thresholds", value)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="storageThresholds")
|
328
|
+
def storage_thresholds(self) -> Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs']]:
|
329
|
+
"""
|
330
|
+
Utilization thresholds pertaining to amount of consumed storage.
|
331
|
+
Structure is documented below.
|
332
|
+
"""
|
333
|
+
return pulumi.get(self, "storage_thresholds")
|
334
|
+
|
335
|
+
@storage_thresholds.setter
|
336
|
+
def storage_thresholds(self, value: Optional[pulumi.Input['ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs']]):
|
337
|
+
pulumi.set(self, "storage_thresholds", value)
|
338
|
+
|
339
|
+
|
340
|
+
if not MYPY:
|
341
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgsDict(TypedDict):
|
342
|
+
scale_in: pulumi.Input[int]
|
343
|
+
"""
|
344
|
+
The utilization triggering the scale-in operation in percent.
|
345
|
+
"""
|
346
|
+
scale_out: pulumi.Input[int]
|
347
|
+
"""
|
348
|
+
The utilization triggering the scale-out operation in percent.
|
349
|
+
"""
|
350
|
+
elif False:
|
351
|
+
ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgsDict: TypeAlias = Mapping[str, Any]
|
352
|
+
|
353
|
+
@pulumi.input_type
|
354
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyConsumedMemoryThresholdsArgs:
|
355
|
+
def __init__(__self__, *,
|
356
|
+
scale_in: pulumi.Input[int],
|
357
|
+
scale_out: pulumi.Input[int]):
|
358
|
+
"""
|
359
|
+
:param pulumi.Input[int] scale_in: The utilization triggering the scale-in operation in percent.
|
360
|
+
:param pulumi.Input[int] scale_out: The utilization triggering the scale-out operation in percent.
|
361
|
+
"""
|
362
|
+
pulumi.set(__self__, "scale_in", scale_in)
|
363
|
+
pulumi.set(__self__, "scale_out", scale_out)
|
364
|
+
|
365
|
+
@property
|
366
|
+
@pulumi.getter(name="scaleIn")
|
367
|
+
def scale_in(self) -> pulumi.Input[int]:
|
368
|
+
"""
|
369
|
+
The utilization triggering the scale-in operation in percent.
|
370
|
+
"""
|
371
|
+
return pulumi.get(self, "scale_in")
|
372
|
+
|
373
|
+
@scale_in.setter
|
374
|
+
def scale_in(self, value: pulumi.Input[int]):
|
375
|
+
pulumi.set(self, "scale_in", value)
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter(name="scaleOut")
|
379
|
+
def scale_out(self) -> pulumi.Input[int]:
|
380
|
+
"""
|
381
|
+
The utilization triggering the scale-out operation in percent.
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "scale_out")
|
384
|
+
|
385
|
+
@scale_out.setter
|
386
|
+
def scale_out(self, value: pulumi.Input[int]):
|
387
|
+
pulumi.set(self, "scale_out", value)
|
388
|
+
|
389
|
+
|
390
|
+
if not MYPY:
|
391
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgsDict(TypedDict):
|
392
|
+
scale_in: pulumi.Input[int]
|
393
|
+
"""
|
394
|
+
The utilization triggering the scale-in operation in percent.
|
395
|
+
"""
|
396
|
+
scale_out: pulumi.Input[int]
|
397
|
+
"""
|
398
|
+
The utilization triggering the scale-out operation in percent.
|
399
|
+
"""
|
400
|
+
elif False:
|
401
|
+
ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgsDict: TypeAlias = Mapping[str, Any]
|
402
|
+
|
403
|
+
@pulumi.input_type
|
404
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyCpuThresholdsArgs:
|
405
|
+
def __init__(__self__, *,
|
406
|
+
scale_in: pulumi.Input[int],
|
407
|
+
scale_out: pulumi.Input[int]):
|
408
|
+
"""
|
409
|
+
:param pulumi.Input[int] scale_in: The utilization triggering the scale-in operation in percent.
|
410
|
+
:param pulumi.Input[int] scale_out: The utilization triggering the scale-out operation in percent.
|
411
|
+
"""
|
412
|
+
pulumi.set(__self__, "scale_in", scale_in)
|
413
|
+
pulumi.set(__self__, "scale_out", scale_out)
|
414
|
+
|
415
|
+
@property
|
416
|
+
@pulumi.getter(name="scaleIn")
|
417
|
+
def scale_in(self) -> pulumi.Input[int]:
|
418
|
+
"""
|
419
|
+
The utilization triggering the scale-in operation in percent.
|
420
|
+
"""
|
421
|
+
return pulumi.get(self, "scale_in")
|
422
|
+
|
423
|
+
@scale_in.setter
|
424
|
+
def scale_in(self, value: pulumi.Input[int]):
|
425
|
+
pulumi.set(self, "scale_in", value)
|
426
|
+
|
427
|
+
@property
|
428
|
+
@pulumi.getter(name="scaleOut")
|
429
|
+
def scale_out(self) -> pulumi.Input[int]:
|
430
|
+
"""
|
431
|
+
The utilization triggering the scale-out operation in percent.
|
432
|
+
"""
|
433
|
+
return pulumi.get(self, "scale_out")
|
434
|
+
|
435
|
+
@scale_out.setter
|
436
|
+
def scale_out(self, value: pulumi.Input[int]):
|
437
|
+
pulumi.set(self, "scale_out", value)
|
438
|
+
|
439
|
+
|
440
|
+
if not MYPY:
|
441
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgsDict(TypedDict):
|
442
|
+
scale_in: pulumi.Input[int]
|
443
|
+
"""
|
444
|
+
The utilization triggering the scale-in operation in percent.
|
445
|
+
"""
|
446
|
+
scale_out: pulumi.Input[int]
|
447
|
+
"""
|
448
|
+
The utilization triggering the scale-out operation in percent.
|
449
|
+
"""
|
450
|
+
elif False:
|
451
|
+
ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgsDict: TypeAlias = Mapping[str, Any]
|
452
|
+
|
453
|
+
@pulumi.input_type
|
454
|
+
class ClusterAutoscalingSettingsAutoscalingPolicyStorageThresholdsArgs:
|
455
|
+
def __init__(__self__, *,
|
456
|
+
scale_in: pulumi.Input[int],
|
457
|
+
scale_out: pulumi.Input[int]):
|
458
|
+
"""
|
459
|
+
:param pulumi.Input[int] scale_in: The utilization triggering the scale-in operation in percent.
|
460
|
+
:param pulumi.Input[int] scale_out: The utilization triggering the scale-out operation in percent.
|
461
|
+
"""
|
462
|
+
pulumi.set(__self__, "scale_in", scale_in)
|
463
|
+
pulumi.set(__self__, "scale_out", scale_out)
|
464
|
+
|
465
|
+
@property
|
466
|
+
@pulumi.getter(name="scaleIn")
|
467
|
+
def scale_in(self) -> pulumi.Input[int]:
|
468
|
+
"""
|
469
|
+
The utilization triggering the scale-in operation in percent.
|
470
|
+
"""
|
471
|
+
return pulumi.get(self, "scale_in")
|
472
|
+
|
473
|
+
@scale_in.setter
|
474
|
+
def scale_in(self, value: pulumi.Input[int]):
|
475
|
+
pulumi.set(self, "scale_in", value)
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="scaleOut")
|
479
|
+
def scale_out(self) -> pulumi.Input[int]:
|
480
|
+
"""
|
481
|
+
The utilization triggering the scale-out operation in percent.
|
482
|
+
"""
|
483
|
+
return pulumi.get(self, "scale_out")
|
484
|
+
|
485
|
+
@scale_out.setter
|
486
|
+
def scale_out(self, value: pulumi.Input[int]):
|
487
|
+
pulumi.set(self, "scale_out", value)
|
488
|
+
|
489
|
+
|
50
490
|
if not MYPY:
|
51
491
|
class ClusterNodeTypeConfigArgsDict(TypedDict):
|
52
492
|
node_count: pulumi.Input[int]
|