pulumi-gcp 7.34.0a1722421695__py3-none-any.whl → 7.34.0a1722604983__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.
Potentially problematic release.
This version of pulumi-gcp might be problematic. Click here for more details.
- pulumi_gcp/__init__.py +40 -0
- pulumi_gcp/alloydb/_inputs.py +174 -0
- pulumi_gcp/alloydb/instance.py +54 -0
- pulumi_gcp/alloydb/outputs.py +133 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/environment_keyvaluemaps.py +370 -0
- pulumi_gcp/apigee/environment_keyvaluemaps_entries.py +440 -0
- pulumi_gcp/apigee/instance.py +2 -2
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +4 -4
- pulumi_gcp/apphub/service_project_attachment.py +11 -11
- pulumi_gcp/bigquery/_inputs.py +36 -0
- pulumi_gcp/bigquery/app_profile.py +54 -0
- pulumi_gcp/bigquery/outputs.py +38 -0
- pulumi_gcp/bigquery/reservation.py +34 -4
- pulumi_gcp/bigquery/table.py +65 -21
- pulumi_gcp/bigtable/table.py +27 -26
- pulumi_gcp/certificateauthority/authority.py +4 -4
- pulumi_gcp/cloudfunctions/function.py +47 -0
- pulumi_gcp/cloudfunctions/get_function.py +11 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +24 -21
- pulumi_gcp/cloudrun/outputs.py +20 -24
- pulumi_gcp/cloudrunv2/_inputs.py +3 -0
- pulumi_gcp/cloudrunv2/outputs.py +4 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +2334 -329
- pulumi_gcp/compute/backend_service.py +6 -0
- pulumi_gcp/compute/outputs.py +1466 -7
- pulumi_gcp/compute/public_advertised_prefix.py +30 -2
- pulumi_gcp/compute/resize_request.py +782 -0
- pulumi_gcp/compute/router_peer.py +437 -0
- pulumi_gcp/compute/router_route_policy.py +616 -0
- pulumi_gcp/compute/service_attachment.py +7 -14
- pulumi_gcp/container/_inputs.py +215 -18
- pulumi_gcp/container/node_pool.py +0 -14
- pulumi_gcp/container/outputs.py +226 -12
- pulumi_gcp/databasemigrationservice/private_connection.py +10 -6
- pulumi_gcp/dataloss/_inputs.py +707 -21
- pulumi_gcp/dataloss/outputs.py +588 -14
- pulumi_gcp/datastore/data_store_index.py +24 -12
- pulumi_gcp/datastream/_inputs.py +83 -3
- pulumi_gcp/datastream/outputs.py +51 -3
- pulumi_gcp/datastream/stream.py +170 -0
- pulumi_gcp/firebase/database_instance.py +8 -8
- pulumi_gcp/firebase/hosting_site.py +8 -8
- pulumi_gcp/firestore/index.py +10 -10
- pulumi_gcp/gkeonprem/_inputs.py +78 -78
- pulumi_gcp/gkeonprem/outputs.py +52 -52
- pulumi_gcp/iap/client.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +30 -30
- pulumi_gcp/integrationconnectors/outputs.py +20 -20
- pulumi_gcp/netapp/volume.py +1 -1
- pulumi_gcp/networkconnectivity/_inputs.py +3 -6
- pulumi_gcp/networkconnectivity/hub.py +60 -49
- pulumi_gcp/networkconnectivity/outputs.py +2 -4
- pulumi_gcp/networkconnectivity/spoke.py +159 -104
- pulumi_gcp/networksecurity/tls_inspection_policy.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +4 -4
- pulumi_gcp/projects/get_project_service.py +11 -1
- pulumi_gcp/projects/service.py +68 -0
- pulumi_gcp/projects/service_identity.py +30 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +528 -4
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/v2_organization_mute_config.py +673 -0
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/private_cloud.py +121 -2
- pulumi_gcp/workbench/_inputs.py +77 -0
- pulumi_gcp/workbench/instance.py +18 -4
- pulumi_gcp/workbench/outputs.py +67 -1
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/RECORD +78 -73
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/outputs.py
CHANGED
@@ -96,6 +96,9 @@ __all__ = [
|
|
96
96
|
'ClusterAddonsConfigIstioConfig',
|
97
97
|
'ClusterAddonsConfigKalmConfig',
|
98
98
|
'ClusterAddonsConfigNetworkPolicyConfig',
|
99
|
+
'ClusterAddonsConfigRayOperatorConfig',
|
100
|
+
'ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfig',
|
101
|
+
'ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfig',
|
99
102
|
'ClusterAddonsConfigStatefulHaConfig',
|
100
103
|
'ClusterAuthenticatorGroupsConfig',
|
101
104
|
'ClusterBinaryAuthorization',
|
@@ -285,6 +288,9 @@ __all__ = [
|
|
285
288
|
'GetClusterAddonsConfigIstioConfigResult',
|
286
289
|
'GetClusterAddonsConfigKalmConfigResult',
|
287
290
|
'GetClusterAddonsConfigNetworkPolicyConfigResult',
|
291
|
+
'GetClusterAddonsConfigRayOperatorConfigResult',
|
292
|
+
'GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigResult',
|
293
|
+
'GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigResult',
|
288
294
|
'GetClusterAddonsConfigStatefulHaConfigResult',
|
289
295
|
'GetClusterAuthenticatorGroupsConfigResult',
|
290
296
|
'GetClusterBinaryAuthorizationResult',
|
@@ -3762,6 +3768,8 @@ class ClusterAddonsConfig(dict):
|
|
3762
3768
|
suggest = "kalm_config"
|
3763
3769
|
elif key == "networkPolicyConfig":
|
3764
3770
|
suggest = "network_policy_config"
|
3771
|
+
elif key == "rayOperatorConfigs":
|
3772
|
+
suggest = "ray_operator_configs"
|
3765
3773
|
elif key == "statefulHaConfig":
|
3766
3774
|
suggest = "stateful_ha_config"
|
3767
3775
|
|
@@ -3789,6 +3797,7 @@ class ClusterAddonsConfig(dict):
|
|
3789
3797
|
istio_config: Optional['outputs.ClusterAddonsConfigIstioConfig'] = None,
|
3790
3798
|
kalm_config: Optional['outputs.ClusterAddonsConfigKalmConfig'] = None,
|
3791
3799
|
network_policy_config: Optional['outputs.ClusterAddonsConfigNetworkPolicyConfig'] = None,
|
3800
|
+
ray_operator_configs: Optional[Sequence['outputs.ClusterAddonsConfigRayOperatorConfig']] = None,
|
3792
3801
|
stateful_ha_config: Optional['outputs.ClusterAddonsConfigStatefulHaConfig'] = None):
|
3793
3802
|
"""
|
3794
3803
|
:param 'ClusterAddonsConfigCloudrunConfigArgs' cloudrun_config: . Structure is documented below.
|
@@ -3832,11 +3841,24 @@ class ClusterAddonsConfig(dict):
|
|
3832
3841
|
otherwise nothing will happen.
|
3833
3842
|
It can only be disabled if the nodes already do not have network policies enabled.
|
3834
3843
|
Defaults to disabled; set `disabled = false` to enable.
|
3844
|
+
:param Sequence['ClusterAddonsConfigRayOperatorConfigArgs'] ray_operator_configs: . The status of the [Ray Operator
|
3845
|
+
addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
|
3846
|
+
It is disabled by default. Set `enabled = true` to enable. The minimum
|
3847
|
+
cluster version to enable Ray is 1.30.0-gke.1747000.
|
3848
|
+
|
3849
|
+
Ray Operator config has optional subfields
|
3850
|
+
`ray_cluster_logging_config.enabled` and
|
3851
|
+
`ray_cluster_monitoring_config.enabled` which control Ray Cluster logging
|
3852
|
+
and monitoring respectively. See [Collect and view logs and metrics for Ray
|
3853
|
+
clusters on
|
3854
|
+
GKE](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/how-to/collect-view-logs-metrics)
|
3855
|
+
for more information.
|
3856
|
+
|
3857
|
+
|
3858
|
+
This example `addons_config` disables two addons:
|
3835
3859
|
:param 'ClusterAddonsConfigStatefulHaConfigArgs' stateful_ha_config: .
|
3836
3860
|
The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
|
3837
3861
|
It is disabled by default for Standard clusters. Set `enabled = true` to enable.
|
3838
|
-
|
3839
|
-
This example `addons_config` disables two addons:
|
3840
3862
|
"""
|
3841
3863
|
if cloudrun_config is not None:
|
3842
3864
|
pulumi.set(__self__, "cloudrun_config", cloudrun_config)
|
@@ -3862,6 +3884,8 @@ class ClusterAddonsConfig(dict):
|
|
3862
3884
|
pulumi.set(__self__, "kalm_config", kalm_config)
|
3863
3885
|
if network_policy_config is not None:
|
3864
3886
|
pulumi.set(__self__, "network_policy_config", network_policy_config)
|
3887
|
+
if ray_operator_configs is not None:
|
3888
|
+
pulumi.set(__self__, "ray_operator_configs", ray_operator_configs)
|
3865
3889
|
if stateful_ha_config is not None:
|
3866
3890
|
pulumi.set(__self__, "stateful_ha_config", stateful_ha_config)
|
3867
3891
|
|
@@ -3990,6 +4014,28 @@ class ClusterAddonsConfig(dict):
|
|
3990
4014
|
"""
|
3991
4015
|
return pulumi.get(self, "network_policy_config")
|
3992
4016
|
|
4017
|
+
@property
|
4018
|
+
@pulumi.getter(name="rayOperatorConfigs")
|
4019
|
+
def ray_operator_configs(self) -> Optional[Sequence['outputs.ClusterAddonsConfigRayOperatorConfig']]:
|
4020
|
+
"""
|
4021
|
+
. The status of the [Ray Operator
|
4022
|
+
addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
|
4023
|
+
It is disabled by default. Set `enabled = true` to enable. The minimum
|
4024
|
+
cluster version to enable Ray is 1.30.0-gke.1747000.
|
4025
|
+
|
4026
|
+
Ray Operator config has optional subfields
|
4027
|
+
`ray_cluster_logging_config.enabled` and
|
4028
|
+
`ray_cluster_monitoring_config.enabled` which control Ray Cluster logging
|
4029
|
+
and monitoring respectively. See [Collect and view logs and metrics for Ray
|
4030
|
+
clusters on
|
4031
|
+
GKE](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/how-to/collect-view-logs-metrics)
|
4032
|
+
for more information.
|
4033
|
+
|
4034
|
+
|
4035
|
+
This example `addons_config` disables two addons:
|
4036
|
+
"""
|
4037
|
+
return pulumi.get(self, "ray_operator_configs")
|
4038
|
+
|
3993
4039
|
@property
|
3994
4040
|
@pulumi.getter(name="statefulHaConfig")
|
3995
4041
|
def stateful_ha_config(self) -> Optional['outputs.ClusterAddonsConfigStatefulHaConfig']:
|
@@ -3997,8 +4043,6 @@ class ClusterAddonsConfig(dict):
|
|
3997
4043
|
.
|
3998
4044
|
The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
|
3999
4045
|
It is disabled by default for Standard clusters. Set `enabled = true` to enable.
|
4000
|
-
|
4001
|
-
This example `addons_config` disables two addons:
|
4002
4046
|
"""
|
4003
4047
|
return pulumi.get(self, "stateful_ha_config")
|
4004
4048
|
|
@@ -4234,6 +4278,87 @@ class ClusterAddonsConfigNetworkPolicyConfig(dict):
|
|
4234
4278
|
return pulumi.get(self, "disabled")
|
4235
4279
|
|
4236
4280
|
|
4281
|
+
@pulumi.output_type
|
4282
|
+
class ClusterAddonsConfigRayOperatorConfig(dict):
|
4283
|
+
@staticmethod
|
4284
|
+
def __key_warning(key: str):
|
4285
|
+
suggest = None
|
4286
|
+
if key == "rayClusterLoggingConfig":
|
4287
|
+
suggest = "ray_cluster_logging_config"
|
4288
|
+
elif key == "rayClusterMonitoringConfig":
|
4289
|
+
suggest = "ray_cluster_monitoring_config"
|
4290
|
+
|
4291
|
+
if suggest:
|
4292
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterAddonsConfigRayOperatorConfig. Access the value via the '{suggest}' property getter instead.")
|
4293
|
+
|
4294
|
+
def __getitem__(self, key: str) -> Any:
|
4295
|
+
ClusterAddonsConfigRayOperatorConfig.__key_warning(key)
|
4296
|
+
return super().__getitem__(key)
|
4297
|
+
|
4298
|
+
def get(self, key: str, default = None) -> Any:
|
4299
|
+
ClusterAddonsConfigRayOperatorConfig.__key_warning(key)
|
4300
|
+
return super().get(key, default)
|
4301
|
+
|
4302
|
+
def __init__(__self__, *,
|
4303
|
+
enabled: bool,
|
4304
|
+
ray_cluster_logging_config: Optional['outputs.ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfig'] = None,
|
4305
|
+
ray_cluster_monitoring_config: Optional['outputs.ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfig'] = None):
|
4306
|
+
"""
|
4307
|
+
:param 'ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs' ray_cluster_logging_config: The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
|
4308
|
+
:param 'ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs' ray_cluster_monitoring_config: The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
|
4309
|
+
"""
|
4310
|
+
pulumi.set(__self__, "enabled", enabled)
|
4311
|
+
if ray_cluster_logging_config is not None:
|
4312
|
+
pulumi.set(__self__, "ray_cluster_logging_config", ray_cluster_logging_config)
|
4313
|
+
if ray_cluster_monitoring_config is not None:
|
4314
|
+
pulumi.set(__self__, "ray_cluster_monitoring_config", ray_cluster_monitoring_config)
|
4315
|
+
|
4316
|
+
@property
|
4317
|
+
@pulumi.getter
|
4318
|
+
def enabled(self) -> bool:
|
4319
|
+
return pulumi.get(self, "enabled")
|
4320
|
+
|
4321
|
+
@property
|
4322
|
+
@pulumi.getter(name="rayClusterLoggingConfig")
|
4323
|
+
def ray_cluster_logging_config(self) -> Optional['outputs.ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfig']:
|
4324
|
+
"""
|
4325
|
+
The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
|
4326
|
+
"""
|
4327
|
+
return pulumi.get(self, "ray_cluster_logging_config")
|
4328
|
+
|
4329
|
+
@property
|
4330
|
+
@pulumi.getter(name="rayClusterMonitoringConfig")
|
4331
|
+
def ray_cluster_monitoring_config(self) -> Optional['outputs.ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfig']:
|
4332
|
+
"""
|
4333
|
+
The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
|
4334
|
+
"""
|
4335
|
+
return pulumi.get(self, "ray_cluster_monitoring_config")
|
4336
|
+
|
4337
|
+
|
4338
|
+
@pulumi.output_type
|
4339
|
+
class ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfig(dict):
|
4340
|
+
def __init__(__self__, *,
|
4341
|
+
enabled: bool):
|
4342
|
+
pulumi.set(__self__, "enabled", enabled)
|
4343
|
+
|
4344
|
+
@property
|
4345
|
+
@pulumi.getter
|
4346
|
+
def enabled(self) -> bool:
|
4347
|
+
return pulumi.get(self, "enabled")
|
4348
|
+
|
4349
|
+
|
4350
|
+
@pulumi.output_type
|
4351
|
+
class ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfig(dict):
|
4352
|
+
def __init__(__self__, *,
|
4353
|
+
enabled: bool):
|
4354
|
+
pulumi.set(__self__, "enabled", enabled)
|
4355
|
+
|
4356
|
+
@property
|
4357
|
+
@pulumi.getter
|
4358
|
+
def enabled(self) -> bool:
|
4359
|
+
return pulumi.get(self, "enabled")
|
4360
|
+
|
4361
|
+
|
4237
4362
|
@pulumi.output_type
|
4238
4363
|
class ClusterAddonsConfigStatefulHaConfig(dict):
|
4239
4364
|
def __init__(__self__, *,
|
@@ -12855,7 +12980,10 @@ class NodePoolNodeConfig(dict):
|
|
12855
12980
|
:param str node_group: Setting this field will assign instances of this pool to run on the specified node group. This is useful for running workloads on sole tenant nodes.
|
12856
12981
|
:param Sequence[str] oauth_scopes: The set of Google API scopes to be made available on all of the node VMs.
|
12857
12982
|
:param bool preemptible: Whether the nodes are created as preemptible VM instances.
|
12858
|
-
:param 'NodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The reservation
|
12983
|
+
:param 'NodePoolNodeConfigReservationAffinityArgs' reservation_affinity: The configuration of the desired reservation which instances could take capacity from.
|
12984
|
+
Structure is documented below.
|
12985
|
+
|
12986
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
12859
12987
|
:param Mapping[str, str] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
12860
12988
|
:param Mapping[str, Any] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
12861
12989
|
:param 'NodePoolNodeConfigSandboxConfigArgs' sandbox_config: Sandbox configuration for this node.
|
@@ -13177,7 +13305,10 @@ class NodePoolNodeConfig(dict):
|
|
13177
13305
|
@pulumi.getter(name="reservationAffinity")
|
13178
13306
|
def reservation_affinity(self) -> Optional['outputs.NodePoolNodeConfigReservationAffinity']:
|
13179
13307
|
"""
|
13180
|
-
The reservation
|
13308
|
+
The configuration of the desired reservation which instances could take capacity from.
|
13309
|
+
Structure is documented below.
|
13310
|
+
|
13311
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
13181
13312
|
"""
|
13182
13313
|
return pulumi.get(self, "reservation_affinity")
|
13183
13314
|
|
@@ -14058,9 +14189,15 @@ class NodePoolNodeConfigReservationAffinity(dict):
|
|
14058
14189
|
key: Optional[str] = None,
|
14059
14190
|
values: Optional[Sequence[str]] = None):
|
14060
14191
|
"""
|
14061
|
-
:param str consume_reservation_type:
|
14062
|
-
|
14063
|
-
|
14192
|
+
:param str consume_reservation_type: The type of reservation consumption
|
14193
|
+
Accepted values are:
|
14194
|
+
|
14195
|
+
* `"UNSPECIFIED"`: Default value. This should not be used.
|
14196
|
+
* `"NO_RESERVATION"`: Do not consume from any reserved capacity.
|
14197
|
+
* `"ANY_RESERVATION"`: Consume any reservation available.
|
14198
|
+
* `"SPECIFIC_RESERVATION"`: Must consume from a specific reservation. Must specify key value fields for specifying the reservations.
|
14199
|
+
:param str key: The label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name" as the key and specify the name of your reservation as its value.
|
14200
|
+
:param Sequence[str] values: The list of label values of reservation resources. For example: the name of the specific reservation when using a key of "compute.googleapis.com/reservation-name"
|
14064
14201
|
"""
|
14065
14202
|
pulumi.set(__self__, "consume_reservation_type", consume_reservation_type)
|
14066
14203
|
if key is not None:
|
@@ -14072,7 +14209,13 @@ class NodePoolNodeConfigReservationAffinity(dict):
|
|
14072
14209
|
@pulumi.getter(name="consumeReservationType")
|
14073
14210
|
def consume_reservation_type(self) -> str:
|
14074
14211
|
"""
|
14075
|
-
|
14212
|
+
The type of reservation consumption
|
14213
|
+
Accepted values are:
|
14214
|
+
|
14215
|
+
* `"UNSPECIFIED"`: Default value. This should not be used.
|
14216
|
+
* `"NO_RESERVATION"`: Do not consume from any reserved capacity.
|
14217
|
+
* `"ANY_RESERVATION"`: Consume any reservation available.
|
14218
|
+
* `"SPECIFIC_RESERVATION"`: Must consume from a specific reservation. Must specify key value fields for specifying the reservations.
|
14076
14219
|
"""
|
14077
14220
|
return pulumi.get(self, "consume_reservation_type")
|
14078
14221
|
|
@@ -14080,7 +14223,7 @@ class NodePoolNodeConfigReservationAffinity(dict):
|
|
14080
14223
|
@pulumi.getter
|
14081
14224
|
def key(self) -> Optional[str]:
|
14082
14225
|
"""
|
14083
|
-
The label key of a reservation resource.
|
14226
|
+
The label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name" as the key and specify the name of your reservation as its value.
|
14084
14227
|
"""
|
14085
14228
|
return pulumi.get(self, "key")
|
14086
14229
|
|
@@ -14088,7 +14231,7 @@ class NodePoolNodeConfigReservationAffinity(dict):
|
|
14088
14231
|
@pulumi.getter
|
14089
14232
|
def values(self) -> Optional[Sequence[str]]:
|
14090
14233
|
"""
|
14091
|
-
The label values of the reservation
|
14234
|
+
The list of label values of reservation resources. For example: the name of the specific reservation when using a key of "compute.googleapis.com/reservation-name"
|
14092
14235
|
"""
|
14093
14236
|
return pulumi.get(self, "values")
|
14094
14237
|
|
@@ -14665,6 +14808,7 @@ class GetClusterAddonsConfigResult(dict):
|
|
14665
14808
|
istio_configs: Sequence['outputs.GetClusterAddonsConfigIstioConfigResult'],
|
14666
14809
|
kalm_configs: Sequence['outputs.GetClusterAddonsConfigKalmConfigResult'],
|
14667
14810
|
network_policy_configs: Sequence['outputs.GetClusterAddonsConfigNetworkPolicyConfigResult'],
|
14811
|
+
ray_operator_configs: Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigResult'],
|
14668
14812
|
stateful_ha_configs: Sequence['outputs.GetClusterAddonsConfigStatefulHaConfigResult']):
|
14669
14813
|
"""
|
14670
14814
|
:param Sequence['GetClusterAddonsConfigCloudrunConfigArgs'] cloudrun_configs: The status of the CloudRun addon. It is disabled by default. Set disabled = false to enable.
|
@@ -14679,6 +14823,7 @@ class GetClusterAddonsConfigResult(dict):
|
|
14679
14823
|
:param Sequence['GetClusterAddonsConfigIstioConfigArgs'] istio_configs: The status of the Istio addon.
|
14680
14824
|
:param Sequence['GetClusterAddonsConfigKalmConfigArgs'] kalm_configs: Configuration for the KALM addon, which manages the lifecycle of k8s. It is disabled by default; Set enabled = true to enable.
|
14681
14825
|
:param Sequence['GetClusterAddonsConfigNetworkPolicyConfigArgs'] network_policy_configs: Whether we should enable the network policy addon for the master. This must be enabled in order to enable network policy for the nodes. To enable this, you must also define a network_policy block, otherwise nothing will happen. It can only be disabled if the nodes already do not have network policies enabled. Defaults to disabled; set disabled = false to enable.
|
14826
|
+
:param Sequence['GetClusterAddonsConfigRayOperatorConfigArgs'] ray_operator_configs: The status of the Ray Operator addon, which enabled management of Ray AI/ML jobs on GKE. Defaults to disabled; set enabled = true to enable.
|
14682
14827
|
:param Sequence['GetClusterAddonsConfigStatefulHaConfigArgs'] stateful_ha_configs: The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications. Defaults to disabled; set enabled = true to enable.
|
14683
14828
|
"""
|
14684
14829
|
pulumi.set(__self__, "cloudrun_configs", cloudrun_configs)
|
@@ -14693,6 +14838,7 @@ class GetClusterAddonsConfigResult(dict):
|
|
14693
14838
|
pulumi.set(__self__, "istio_configs", istio_configs)
|
14694
14839
|
pulumi.set(__self__, "kalm_configs", kalm_configs)
|
14695
14840
|
pulumi.set(__self__, "network_policy_configs", network_policy_configs)
|
14841
|
+
pulumi.set(__self__, "ray_operator_configs", ray_operator_configs)
|
14696
14842
|
pulumi.set(__self__, "stateful_ha_configs", stateful_ha_configs)
|
14697
14843
|
|
14698
14844
|
@property
|
@@ -14791,6 +14937,14 @@ class GetClusterAddonsConfigResult(dict):
|
|
14791
14937
|
"""
|
14792
14938
|
return pulumi.get(self, "network_policy_configs")
|
14793
14939
|
|
14940
|
+
@property
|
14941
|
+
@pulumi.getter(name="rayOperatorConfigs")
|
14942
|
+
def ray_operator_configs(self) -> Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigResult']:
|
14943
|
+
"""
|
14944
|
+
The status of the Ray Operator addon, which enabled management of Ray AI/ML jobs on GKE. Defaults to disabled; set enabled = true to enable.
|
14945
|
+
"""
|
14946
|
+
return pulumi.get(self, "ray_operator_configs")
|
14947
|
+
|
14794
14948
|
@property
|
14795
14949
|
@pulumi.getter(name="statefulHaConfigs")
|
14796
14950
|
def stateful_ha_configs(self) -> Sequence['outputs.GetClusterAddonsConfigStatefulHaConfigResult']:
|
@@ -14968,6 +15122,66 @@ class GetClusterAddonsConfigNetworkPolicyConfigResult(dict):
|
|
14968
15122
|
return pulumi.get(self, "disabled")
|
14969
15123
|
|
14970
15124
|
|
15125
|
+
@pulumi.output_type
|
15126
|
+
class GetClusterAddonsConfigRayOperatorConfigResult(dict):
|
15127
|
+
def __init__(__self__, *,
|
15128
|
+
enabled: bool,
|
15129
|
+
ray_cluster_logging_configs: Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigResult'],
|
15130
|
+
ray_cluster_monitoring_configs: Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigResult']):
|
15131
|
+
"""
|
15132
|
+
:param Sequence['GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs'] ray_cluster_logging_configs: The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
|
15133
|
+
:param Sequence['GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs'] ray_cluster_monitoring_configs: The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
|
15134
|
+
"""
|
15135
|
+
pulumi.set(__self__, "enabled", enabled)
|
15136
|
+
pulumi.set(__self__, "ray_cluster_logging_configs", ray_cluster_logging_configs)
|
15137
|
+
pulumi.set(__self__, "ray_cluster_monitoring_configs", ray_cluster_monitoring_configs)
|
15138
|
+
|
15139
|
+
@property
|
15140
|
+
@pulumi.getter
|
15141
|
+
def enabled(self) -> bool:
|
15142
|
+
return pulumi.get(self, "enabled")
|
15143
|
+
|
15144
|
+
@property
|
15145
|
+
@pulumi.getter(name="rayClusterLoggingConfigs")
|
15146
|
+
def ray_cluster_logging_configs(self) -> Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigResult']:
|
15147
|
+
"""
|
15148
|
+
The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
|
15149
|
+
"""
|
15150
|
+
return pulumi.get(self, "ray_cluster_logging_configs")
|
15151
|
+
|
15152
|
+
@property
|
15153
|
+
@pulumi.getter(name="rayClusterMonitoringConfigs")
|
15154
|
+
def ray_cluster_monitoring_configs(self) -> Sequence['outputs.GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigResult']:
|
15155
|
+
"""
|
15156
|
+
The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
|
15157
|
+
"""
|
15158
|
+
return pulumi.get(self, "ray_cluster_monitoring_configs")
|
15159
|
+
|
15160
|
+
|
15161
|
+
@pulumi.output_type
|
15162
|
+
class GetClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigResult(dict):
|
15163
|
+
def __init__(__self__, *,
|
15164
|
+
enabled: bool):
|
15165
|
+
pulumi.set(__self__, "enabled", enabled)
|
15166
|
+
|
15167
|
+
@property
|
15168
|
+
@pulumi.getter
|
15169
|
+
def enabled(self) -> bool:
|
15170
|
+
return pulumi.get(self, "enabled")
|
15171
|
+
|
15172
|
+
|
15173
|
+
@pulumi.output_type
|
15174
|
+
class GetClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigResult(dict):
|
15175
|
+
def __init__(__self__, *,
|
15176
|
+
enabled: bool):
|
15177
|
+
pulumi.set(__self__, "enabled", enabled)
|
15178
|
+
|
15179
|
+
@property
|
15180
|
+
@pulumi.getter
|
15181
|
+
def enabled(self) -> bool:
|
15182
|
+
return pulumi.get(self, "enabled")
|
15183
|
+
|
15184
|
+
|
14971
15185
|
@pulumi.output_type
|
14972
15186
|
class GetClusterAddonsConfigStatefulHaConfigResult(dict):
|
14973
15187
|
def __init__(__self__, *,
|
@@ -340,8 +340,7 @@ class PrivateConnection(pulumi.CustomResource):
|
|
340
340
|
import pulumi
|
341
341
|
import pulumi_gcp as gcp
|
342
342
|
|
343
|
-
default = gcp.
|
344
|
-
default_private_connection = gcp.databasemigrationservice.PrivateConnection("default",
|
343
|
+
default = gcp.databasemigrationservice.PrivateConnection("default",
|
345
344
|
display_name="dbms_pc",
|
346
345
|
location="us-central1",
|
347
346
|
private_connection_id="my-connection",
|
@@ -349,9 +348,12 @@ class PrivateConnection(pulumi.CustomResource):
|
|
349
348
|
"key": "value",
|
350
349
|
},
|
351
350
|
vpc_peering_config={
|
352
|
-
"vpc_name": default
|
351
|
+
"vpc_name": google_compute_network["default"]["id"],
|
353
352
|
"subnet": "10.0.0.0/29",
|
354
353
|
})
|
354
|
+
default_network = gcp.compute.Network("default",
|
355
|
+
name="my-network",
|
356
|
+
auto_create_subnetworks=False)
|
355
357
|
```
|
356
358
|
|
357
359
|
## Import
|
@@ -412,8 +414,7 @@ class PrivateConnection(pulumi.CustomResource):
|
|
412
414
|
import pulumi
|
413
415
|
import pulumi_gcp as gcp
|
414
416
|
|
415
|
-
default = gcp.
|
416
|
-
default_private_connection = gcp.databasemigrationservice.PrivateConnection("default",
|
417
|
+
default = gcp.databasemigrationservice.PrivateConnection("default",
|
417
418
|
display_name="dbms_pc",
|
418
419
|
location="us-central1",
|
419
420
|
private_connection_id="my-connection",
|
@@ -421,9 +422,12 @@ class PrivateConnection(pulumi.CustomResource):
|
|
421
422
|
"key": "value",
|
422
423
|
},
|
423
424
|
vpc_peering_config={
|
424
|
-
"vpc_name": default
|
425
|
+
"vpc_name": google_compute_network["default"]["id"],
|
425
426
|
"subnet": "10.0.0.0/29",
|
426
427
|
})
|
428
|
+
default_network = gcp.compute.Network("default",
|
429
|
+
name="my-network",
|
430
|
+
auto_create_subnetworks=False)
|
427
431
|
```
|
428
432
|
|
429
433
|
## Import
|