pulumi-gcp 8.9.3a1731934815__py3-none-any.whl → 8.10.0__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 +24 -0
- pulumi_gcp/accesscontextmanager/__init__.py +1 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +90 -54
- pulumi_gcp/accesscontextmanager/get_access_policy.py +158 -0
- pulumi_gcp/accesscontextmanager/outputs.py +60 -36
- pulumi_gcp/artifactregistry/_inputs.py +56 -0
- pulumi_gcp/artifactregistry/outputs.py +65 -0
- pulumi_gcp/artifactregistry/repository.py +48 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +63 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +263 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +402 -0
- pulumi_gcp/certificateauthority/authority.py +28 -138
- pulumi_gcp/cloudrun/service.py +0 -10
- pulumi_gcp/cloudrunv2/get_service.py +15 -4
- pulumi_gcp/cloudrunv2/service.py +30 -2
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +490 -0
- pulumi_gcp/dataproc/gdc_spark_application.py +1658 -0
- pulumi_gcp/dataproc/outputs.py +385 -0
- pulumi_gcp/filestore/_inputs.py +152 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +47 -0
- pulumi_gcp/filestore/outputs.py +229 -0
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +274 -0
- pulumi_gcp/iam/folders_policy_binding.py +917 -0
- pulumi_gcp/iam/organizations_policy_binding.py +901 -0
- pulumi_gcp/iam/outputs.py +198 -0
- pulumi_gcp/managedkafka/cluster.py +4 -0
- pulumi_gcp/managedkafka/topic.py +4 -0
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +213 -0
- pulumi_gcp/redis/cluster.py +289 -0
- pulumi_gcp/redis/outputs.py +185 -0
- pulumi_gcp/securesourcemanager/_inputs.py +33 -0
- pulumi_gcp/securesourcemanager/instance.py +90 -3
- pulumi_gcp/securesourcemanager/outputs.py +19 -0
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +73 -0
- pulumi_gcp/sql/database_instance.py +60 -0
- pulumi_gcp/sql/outputs.py +146 -0
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/RECORD +51 -46
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.9.3a1731934815.dist-info → pulumi_gcp-8.10.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/outputs.py
CHANGED
@@ -33,6 +33,7 @@ __all__ = [
|
|
33
33
|
'DatabaseInstanceSettingsIpConfiguration',
|
34
34
|
'DatabaseInstanceSettingsIpConfigurationAuthorizedNetwork',
|
35
35
|
'DatabaseInstanceSettingsIpConfigurationPscConfig',
|
36
|
+
'DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection',
|
36
37
|
'DatabaseInstanceSettingsLocationPreference',
|
37
38
|
'DatabaseInstanceSettingsMaintenanceWindow',
|
38
39
|
'DatabaseInstanceSettingsPasswordValidationPolicy',
|
@@ -58,6 +59,7 @@ __all__ = [
|
|
58
59
|
'GetDatabaseInstanceSettingIpConfigurationResult',
|
59
60
|
'GetDatabaseInstanceSettingIpConfigurationAuthorizedNetworkResult',
|
60
61
|
'GetDatabaseInstanceSettingIpConfigurationPscConfigResult',
|
62
|
+
'GetDatabaseInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult',
|
61
63
|
'GetDatabaseInstanceSettingLocationPreferenceResult',
|
62
64
|
'GetDatabaseInstanceSettingMaintenanceWindowResult',
|
63
65
|
'GetDatabaseInstanceSettingPasswordValidationPolicyResult',
|
@@ -80,6 +82,7 @@ __all__ = [
|
|
80
82
|
'GetDatabaseInstancesInstanceSettingIpConfigurationResult',
|
81
83
|
'GetDatabaseInstancesInstanceSettingIpConfigurationAuthorizedNetworkResult',
|
82
84
|
'GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult',
|
85
|
+
'GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult',
|
83
86
|
'GetDatabaseInstancesInstanceSettingLocationPreferenceResult',
|
84
87
|
'GetDatabaseInstancesInstanceSettingMaintenanceWindowResult',
|
85
88
|
'GetDatabaseInstancesInstanceSettingPasswordValidationPolicyResult',
|
@@ -1672,6 +1675,8 @@ class DatabaseInstanceSettingsIpConfigurationPscConfig(dict):
|
|
1672
1675
|
suggest = None
|
1673
1676
|
if key == "allowedConsumerProjects":
|
1674
1677
|
suggest = "allowed_consumer_projects"
|
1678
|
+
elif key == "pscAutoConnections":
|
1679
|
+
suggest = "psc_auto_connections"
|
1675
1680
|
elif key == "pscEnabled":
|
1676
1681
|
suggest = "psc_enabled"
|
1677
1682
|
|
@@ -1688,13 +1693,17 @@ class DatabaseInstanceSettingsIpConfigurationPscConfig(dict):
|
|
1688
1693
|
|
1689
1694
|
def __init__(__self__, *,
|
1690
1695
|
allowed_consumer_projects: Optional[Sequence[str]] = None,
|
1696
|
+
psc_auto_connections: Optional[Sequence['outputs.DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection']] = None,
|
1691
1697
|
psc_enabled: Optional[bool] = None):
|
1692
1698
|
"""
|
1693
1699
|
:param Sequence[str] allowed_consumer_projects: List of consumer projects that are allow-listed for PSC connections to this instance. This instance can be connected to with PSC from any network in these projects. Each consumer project in this list may be represented by a project number (numeric) or by a project id (alphanumeric).
|
1700
|
+
:param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnectionArgs'] psc_auto_connections: A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
1694
1701
|
:param bool psc_enabled: Whether PSC connectivity is enabled for this instance.
|
1695
1702
|
"""
|
1696
1703
|
if allowed_consumer_projects is not None:
|
1697
1704
|
pulumi.set(__self__, "allowed_consumer_projects", allowed_consumer_projects)
|
1705
|
+
if psc_auto_connections is not None:
|
1706
|
+
pulumi.set(__self__, "psc_auto_connections", psc_auto_connections)
|
1698
1707
|
if psc_enabled is not None:
|
1699
1708
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
1700
1709
|
|
@@ -1706,6 +1715,14 @@ class DatabaseInstanceSettingsIpConfigurationPscConfig(dict):
|
|
1706
1715
|
"""
|
1707
1716
|
return pulumi.get(self, "allowed_consumer_projects")
|
1708
1717
|
|
1718
|
+
@property
|
1719
|
+
@pulumi.getter(name="pscAutoConnections")
|
1720
|
+
def psc_auto_connections(self) -> Optional[Sequence['outputs.DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection']]:
|
1721
|
+
"""
|
1722
|
+
A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
1723
|
+
"""
|
1724
|
+
return pulumi.get(self, "psc_auto_connections")
|
1725
|
+
|
1709
1726
|
@property
|
1710
1727
|
@pulumi.getter(name="pscEnabled")
|
1711
1728
|
def psc_enabled(self) -> Optional[bool]:
|
@@ -1715,6 +1732,55 @@ class DatabaseInstanceSettingsIpConfigurationPscConfig(dict):
|
|
1715
1732
|
return pulumi.get(self, "psc_enabled")
|
1716
1733
|
|
1717
1734
|
|
1735
|
+
@pulumi.output_type
|
1736
|
+
class DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection(dict):
|
1737
|
+
@staticmethod
|
1738
|
+
def __key_warning(key: str):
|
1739
|
+
suggest = None
|
1740
|
+
if key == "consumerNetwork":
|
1741
|
+
suggest = "consumer_network"
|
1742
|
+
elif key == "consumerServiceProjectId":
|
1743
|
+
suggest = "consumer_service_project_id"
|
1744
|
+
|
1745
|
+
if suggest:
|
1746
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection. Access the value via the '{suggest}' property getter instead.")
|
1747
|
+
|
1748
|
+
def __getitem__(self, key: str) -> Any:
|
1749
|
+
DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection.__key_warning(key)
|
1750
|
+
return super().__getitem__(key)
|
1751
|
+
|
1752
|
+
def get(self, key: str, default = None) -> Any:
|
1753
|
+
DatabaseInstanceSettingsIpConfigurationPscConfigPscAutoConnection.__key_warning(key)
|
1754
|
+
return super().get(key, default)
|
1755
|
+
|
1756
|
+
def __init__(__self__, *,
|
1757
|
+
consumer_network: str,
|
1758
|
+
consumer_service_project_id: Optional[str] = None):
|
1759
|
+
"""
|
1760
|
+
:param str consumer_network: "The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. For example, `projects/project1/global/networks/network1`. The consumer host project of this network might be different from the consumer service project."
|
1761
|
+
:param str consumer_service_project_id: The project ID of consumer service project of this consumer endpoint.
|
1762
|
+
"""
|
1763
|
+
pulumi.set(__self__, "consumer_network", consumer_network)
|
1764
|
+
if consumer_service_project_id is not None:
|
1765
|
+
pulumi.set(__self__, "consumer_service_project_id", consumer_service_project_id)
|
1766
|
+
|
1767
|
+
@property
|
1768
|
+
@pulumi.getter(name="consumerNetwork")
|
1769
|
+
def consumer_network(self) -> str:
|
1770
|
+
"""
|
1771
|
+
"The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. For example, `projects/project1/global/networks/network1`. The consumer host project of this network might be different from the consumer service project."
|
1772
|
+
"""
|
1773
|
+
return pulumi.get(self, "consumer_network")
|
1774
|
+
|
1775
|
+
@property
|
1776
|
+
@pulumi.getter(name="consumerServiceProjectId")
|
1777
|
+
def consumer_service_project_id(self) -> Optional[str]:
|
1778
|
+
"""
|
1779
|
+
The project ID of consumer service project of this consumer endpoint.
|
1780
|
+
"""
|
1781
|
+
return pulumi.get(self, "consumer_service_project_id")
|
1782
|
+
|
1783
|
+
|
1718
1784
|
@pulumi.output_type
|
1719
1785
|
class DatabaseInstanceSettingsLocationPreference(dict):
|
1720
1786
|
@staticmethod
|
@@ -3300,12 +3366,15 @@ class GetDatabaseInstanceSettingIpConfigurationAuthorizedNetworkResult(dict):
|
|
3300
3366
|
class GetDatabaseInstanceSettingIpConfigurationPscConfigResult(dict):
|
3301
3367
|
def __init__(__self__, *,
|
3302
3368
|
allowed_consumer_projects: Sequence[str],
|
3369
|
+
psc_auto_connections: Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult'],
|
3303
3370
|
psc_enabled: bool):
|
3304
3371
|
"""
|
3305
3372
|
:param Sequence[str] allowed_consumer_projects: List of consumer projects that are allow-listed for PSC connections to this instance. This instance can be connected to with PSC from any network in these projects. Each consumer project in this list may be represented by a project number (numeric) or by a project id (alphanumeric).
|
3373
|
+
:param Sequence['GetDatabaseInstanceSettingIpConfigurationPscConfigPscAutoConnectionArgs'] psc_auto_connections: A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
3306
3374
|
:param bool psc_enabled: Whether PSC connectivity is enabled for this instance.
|
3307
3375
|
"""
|
3308
3376
|
pulumi.set(__self__, "allowed_consumer_projects", allowed_consumer_projects)
|
3377
|
+
pulumi.set(__self__, "psc_auto_connections", psc_auto_connections)
|
3309
3378
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
3310
3379
|
|
3311
3380
|
@property
|
@@ -3316,6 +3385,14 @@ class GetDatabaseInstanceSettingIpConfigurationPscConfigResult(dict):
|
|
3316
3385
|
"""
|
3317
3386
|
return pulumi.get(self, "allowed_consumer_projects")
|
3318
3387
|
|
3388
|
+
@property
|
3389
|
+
@pulumi.getter(name="pscAutoConnections")
|
3390
|
+
def psc_auto_connections(self) -> Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult']:
|
3391
|
+
"""
|
3392
|
+
A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
3393
|
+
"""
|
3394
|
+
return pulumi.get(self, "psc_auto_connections")
|
3395
|
+
|
3319
3396
|
@property
|
3320
3397
|
@pulumi.getter(name="pscEnabled")
|
3321
3398
|
def psc_enabled(self) -> bool:
|
@@ -3325,6 +3402,35 @@ class GetDatabaseInstanceSettingIpConfigurationPscConfigResult(dict):
|
|
3325
3402
|
return pulumi.get(self, "psc_enabled")
|
3326
3403
|
|
3327
3404
|
|
3405
|
+
@pulumi.output_type
|
3406
|
+
class GetDatabaseInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult(dict):
|
3407
|
+
def __init__(__self__, *,
|
3408
|
+
consumer_network: str,
|
3409
|
+
consumer_service_project_id: str):
|
3410
|
+
"""
|
3411
|
+
:param str consumer_network: The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. The consumer host project of this network might be different from the consumer service project.
|
3412
|
+
:param str consumer_service_project_id: The project ID of consumer service project of this consumer endpoint.
|
3413
|
+
"""
|
3414
|
+
pulumi.set(__self__, "consumer_network", consumer_network)
|
3415
|
+
pulumi.set(__self__, "consumer_service_project_id", consumer_service_project_id)
|
3416
|
+
|
3417
|
+
@property
|
3418
|
+
@pulumi.getter(name="consumerNetwork")
|
3419
|
+
def consumer_network(self) -> str:
|
3420
|
+
"""
|
3421
|
+
The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. The consumer host project of this network might be different from the consumer service project.
|
3422
|
+
"""
|
3423
|
+
return pulumi.get(self, "consumer_network")
|
3424
|
+
|
3425
|
+
@property
|
3426
|
+
@pulumi.getter(name="consumerServiceProjectId")
|
3427
|
+
def consumer_service_project_id(self) -> str:
|
3428
|
+
"""
|
3429
|
+
The project ID of consumer service project of this consumer endpoint.
|
3430
|
+
"""
|
3431
|
+
return pulumi.get(self, "consumer_service_project_id")
|
3432
|
+
|
3433
|
+
|
3328
3434
|
@pulumi.output_type
|
3329
3435
|
class GetDatabaseInstanceSettingLocationPreferenceResult(dict):
|
3330
3436
|
def __init__(__self__, *,
|
@@ -4819,12 +4925,15 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationAuthorizedNetworkResult(
|
|
4819
4925
|
class GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult(dict):
|
4820
4926
|
def __init__(__self__, *,
|
4821
4927
|
allowed_consumer_projects: Sequence[str],
|
4928
|
+
psc_auto_connections: Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult'],
|
4822
4929
|
psc_enabled: bool):
|
4823
4930
|
"""
|
4824
4931
|
:param Sequence[str] allowed_consumer_projects: List of consumer projects that are allow-listed for PSC connections to this instance. This instance can be connected to with PSC from any network in these projects. Each consumer project in this list may be represented by a project number (numeric) or by a project id (alphanumeric).
|
4932
|
+
:param Sequence['GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigPscAutoConnectionArgs'] psc_auto_connections: A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
4825
4933
|
:param bool psc_enabled: Whether PSC connectivity is enabled for this instance.
|
4826
4934
|
"""
|
4827
4935
|
pulumi.set(__self__, "allowed_consumer_projects", allowed_consumer_projects)
|
4936
|
+
pulumi.set(__self__, "psc_auto_connections", psc_auto_connections)
|
4828
4937
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
4829
4938
|
|
4830
4939
|
@property
|
@@ -4835,6 +4944,14 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult(dict):
|
|
4835
4944
|
"""
|
4836
4945
|
return pulumi.get(self, "allowed_consumer_projects")
|
4837
4946
|
|
4947
|
+
@property
|
4948
|
+
@pulumi.getter(name="pscAutoConnections")
|
4949
|
+
def psc_auto_connections(self) -> Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult']:
|
4950
|
+
"""
|
4951
|
+
A comma-separated list of networks or a comma-separated list of network-project pairs. Each project in this list is represented by a project number (numeric) or by a project ID (alphanumeric). This allows Private Service Connect connections to be created automatically for the specified networks.
|
4952
|
+
"""
|
4953
|
+
return pulumi.get(self, "psc_auto_connections")
|
4954
|
+
|
4838
4955
|
@property
|
4839
4956
|
@pulumi.getter(name="pscEnabled")
|
4840
4957
|
def psc_enabled(self) -> bool:
|
@@ -4844,6 +4961,35 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult(dict):
|
|
4844
4961
|
return pulumi.get(self, "psc_enabled")
|
4845
4962
|
|
4846
4963
|
|
4964
|
+
@pulumi.output_type
|
4965
|
+
class GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigPscAutoConnectionResult(dict):
|
4966
|
+
def __init__(__self__, *,
|
4967
|
+
consumer_network: str,
|
4968
|
+
consumer_service_project_id: str):
|
4969
|
+
"""
|
4970
|
+
:param str consumer_network: The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. The consumer host project of this network might be different from the consumer service project.
|
4971
|
+
:param str consumer_service_project_id: The project ID of consumer service project of this consumer endpoint.
|
4972
|
+
"""
|
4973
|
+
pulumi.set(__self__, "consumer_network", consumer_network)
|
4974
|
+
pulumi.set(__self__, "consumer_service_project_id", consumer_service_project_id)
|
4975
|
+
|
4976
|
+
@property
|
4977
|
+
@pulumi.getter(name="consumerNetwork")
|
4978
|
+
def consumer_network(self) -> str:
|
4979
|
+
"""
|
4980
|
+
The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. The consumer host project of this network might be different from the consumer service project.
|
4981
|
+
"""
|
4982
|
+
return pulumi.get(self, "consumer_network")
|
4983
|
+
|
4984
|
+
@property
|
4985
|
+
@pulumi.getter(name="consumerServiceProjectId")
|
4986
|
+
def consumer_service_project_id(self) -> str:
|
4987
|
+
"""
|
4988
|
+
The project ID of consumer service project of this consumer endpoint.
|
4989
|
+
"""
|
4990
|
+
return pulumi.get(self, "consumer_service_project_id")
|
4991
|
+
|
4992
|
+
|
4847
4993
|
@pulumi.output_type
|
4848
4994
|
class GetDatabaseInstancesInstanceSettingLocationPreferenceResult(dict):
|
4849
4995
|
def __init__(__self__, *,
|
pulumi_gcp/sql/user.py
CHANGED
@@ -424,7 +424,7 @@ class User(pulumi.CustomResource):
|
|
424
424
|
settings={
|
425
425
|
"tier": "db-f1-micro",
|
426
426
|
"database_flags": [{
|
427
|
-
"name": "
|
427
|
+
"name": "cloudsql.iam_authentication",
|
428
428
|
"value": "on",
|
429
429
|
}],
|
430
430
|
})
|
@@ -563,7 +563,7 @@ class User(pulumi.CustomResource):
|
|
563
563
|
settings={
|
564
564
|
"tier": "db-f1-micro",
|
565
565
|
"database_flags": [{
|
566
|
-
"name": "
|
566
|
+
"name": "cloudsql.iam_authentication",
|
567
567
|
"value": "on",
|
568
568
|
}],
|
569
569
|
})
|
@@ -187,12 +187,12 @@ class LocationTagBinding(pulumi.CustomResource):
|
|
187
187
|
short_name="keyname",
|
188
188
|
description="For keyname resources.")
|
189
189
|
value = gcp.tags.TagValue("value",
|
190
|
-
parent=key.
|
190
|
+
parent=key.id,
|
191
191
|
short_name="valuename",
|
192
192
|
description="For valuename resources.")
|
193
193
|
binding = gcp.tags.LocationTagBinding("binding",
|
194
194
|
parent=f"//run.googleapis.com/projects/{project_google_project['number']}/locations/{default['location']}/services/{default['name']}",
|
195
|
-
tag_value=value.
|
195
|
+
tag_value=value.id,
|
196
196
|
location="us-central1")
|
197
197
|
```
|
198
198
|
|
@@ -211,12 +211,12 @@ class LocationTagBinding(pulumi.CustomResource):
|
|
211
211
|
short_name="keyname",
|
212
212
|
description="For keyname resources.")
|
213
213
|
value = gcp.tags.TagValue("value",
|
214
|
-
parent=key.
|
214
|
+
parent=key.id,
|
215
215
|
short_name="valuename",
|
216
216
|
description="For valuename resources.")
|
217
217
|
binding = gcp.tags.LocationTagBinding("binding",
|
218
218
|
parent=project.number.apply(lambda number: f"//compute.googleapis.com/projects/{number}/zones/us-central1-a/instances/{instance['instanceId']}"),
|
219
|
-
tag_value=value.
|
219
|
+
tag_value=value.id,
|
220
220
|
location="us-central1-a")
|
221
221
|
```
|
222
222
|
|
@@ -274,12 +274,12 @@ class LocationTagBinding(pulumi.CustomResource):
|
|
274
274
|
short_name="keyname",
|
275
275
|
description="For keyname resources.")
|
276
276
|
value = gcp.tags.TagValue("value",
|
277
|
-
parent=key.
|
277
|
+
parent=key.id,
|
278
278
|
short_name="valuename",
|
279
279
|
description="For valuename resources.")
|
280
280
|
binding = gcp.tags.LocationTagBinding("binding",
|
281
281
|
parent=f"//run.googleapis.com/projects/{project_google_project['number']}/locations/{default['location']}/services/{default['name']}",
|
282
|
-
tag_value=value.
|
282
|
+
tag_value=value.id,
|
283
283
|
location="us-central1")
|
284
284
|
```
|
285
285
|
|
@@ -298,12 +298,12 @@ class LocationTagBinding(pulumi.CustomResource):
|
|
298
298
|
short_name="keyname",
|
299
299
|
description="For keyname resources.")
|
300
300
|
value = gcp.tags.TagValue("value",
|
301
|
-
parent=key.
|
301
|
+
parent=key.id,
|
302
302
|
short_name="valuename",
|
303
303
|
description="For valuename resources.")
|
304
304
|
binding = gcp.tags.LocationTagBinding("binding",
|
305
305
|
parent=project.number.apply(lambda number: f"//compute.googleapis.com/projects/{number}/zones/us-central1-a/instances/{instance['instanceId']}"),
|
306
|
-
tag_value=value.
|
306
|
+
tag_value=value.id,
|
307
307
|
location="us-central1-a")
|
308
308
|
```
|
309
309
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_gcp
|
3
|
-
Version: 8.
|
3
|
+
Version: 8.10.0
|
4
4
|
Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-gcp
|
|
8
8
|
Keywords: pulumi,gcp
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
|
-
Requires-Dist: parver
|
12
|
-
Requires-Dist: pulumi
|
13
|
-
Requires-Dist: semver
|
14
|
-
Requires-Dist: typing-extensions
|
11
|
+
Requires-Dist: parver>=0.2.1
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.136.0
|
13
|
+
Requires-Dist: semver>=2.8.1
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
15
15
|
|
16
16
|
[](https://github.com/pulumi/pulumi-gcp/actions)
|
17
17
|
[](https://slack.pulumi.com)
|