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
@@ -26,10 +26,13 @@ class GetRegionalSecretVersionAccessResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getRegionalSecretVersionAccess.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, id=None, location=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
29
|
+
def __init__(__self__, id=None, is_secret_data_base64=None, location=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
30
30
|
if id and not isinstance(id, str):
|
31
31
|
raise TypeError("Expected argument 'id' to be a str")
|
32
32
|
pulumi.set(__self__, "id", id)
|
33
|
+
if is_secret_data_base64 and not isinstance(is_secret_data_base64, bool):
|
34
|
+
raise TypeError("Expected argument 'is_secret_data_base64' to be a bool")
|
35
|
+
pulumi.set(__self__, "is_secret_data_base64", is_secret_data_base64)
|
33
36
|
if location and not isinstance(location, str):
|
34
37
|
raise TypeError("Expected argument 'location' to be a str")
|
35
38
|
pulumi.set(__self__, "location", location)
|
@@ -57,6 +60,11 @@ class GetRegionalSecretVersionAccessResult:
|
|
57
60
|
"""
|
58
61
|
return pulumi.get(self, "id")
|
59
62
|
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="isSecretDataBase64")
|
65
|
+
def is_secret_data_base64(self) -> Optional[bool]:
|
66
|
+
return pulumi.get(self, "is_secret_data_base64")
|
67
|
+
|
60
68
|
@property
|
61
69
|
@pulumi.getter
|
62
70
|
def location(self) -> str:
|
@@ -102,6 +110,7 @@ class AwaitableGetRegionalSecretVersionAccessResult(GetRegionalSecretVersionAcce
|
|
102
110
|
yield self
|
103
111
|
return GetRegionalSecretVersionAccessResult(
|
104
112
|
id=self.id,
|
113
|
+
is_secret_data_base64=self.is_secret_data_base64,
|
105
114
|
location=self.location,
|
106
115
|
name=self.name,
|
107
116
|
project=self.project,
|
@@ -110,13 +119,14 @@ class AwaitableGetRegionalSecretVersionAccessResult(GetRegionalSecretVersionAcce
|
|
110
119
|
version=self.version)
|
111
120
|
|
112
121
|
|
113
|
-
def get_regional_secret_version_access(
|
122
|
+
def get_regional_secret_version_access(is_secret_data_base64: Optional[bool] = None,
|
123
|
+
location: Optional[str] = None,
|
114
124
|
project: Optional[str] = None,
|
115
125
|
secret: Optional[str] = None,
|
116
126
|
version: Optional[str] = None,
|
117
127
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegionalSecretVersionAccessResult:
|
118
128
|
"""
|
119
|
-
Get the value from a Secret Manager regional secret version. This is similar to the secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
129
|
+
Get the value from a Secret Manager regional secret version. This is similar to the secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets.versions/access).
|
120
130
|
|
121
131
|
## Example Usage
|
122
132
|
|
@@ -129,6 +139,8 @@ def get_regional_secret_version_access(location: Optional[str] = None,
|
|
129
139
|
```
|
130
140
|
|
131
141
|
|
142
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
143
|
+
expected to be base64-encoded string.
|
132
144
|
:param str location: Location of Secret Manager regional secret resource.
|
133
145
|
It must be provided when the `secret` field provided consists of only the name of the regional secret.
|
134
146
|
:param str project: The project to get the secret version for. If it
|
@@ -139,6 +151,7 @@ def get_regional_secret_version_access(location: Optional[str] = None,
|
|
139
151
|
is not provided, the latest version is retrieved.
|
140
152
|
"""
|
141
153
|
__args__ = dict()
|
154
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
142
155
|
__args__['location'] = location
|
143
156
|
__args__['project'] = project
|
144
157
|
__args__['secret'] = secret
|
@@ -148,19 +161,21 @@ def get_regional_secret_version_access(location: Optional[str] = None,
|
|
148
161
|
|
149
162
|
return AwaitableGetRegionalSecretVersionAccessResult(
|
150
163
|
id=pulumi.get(__ret__, 'id'),
|
164
|
+
is_secret_data_base64=pulumi.get(__ret__, 'is_secret_data_base64'),
|
151
165
|
location=pulumi.get(__ret__, 'location'),
|
152
166
|
name=pulumi.get(__ret__, 'name'),
|
153
167
|
project=pulumi.get(__ret__, 'project'),
|
154
168
|
secret=pulumi.get(__ret__, 'secret'),
|
155
169
|
secret_data=pulumi.get(__ret__, 'secret_data'),
|
156
170
|
version=pulumi.get(__ret__, 'version'))
|
157
|
-
def get_regional_secret_version_access_output(
|
171
|
+
def get_regional_secret_version_access_output(is_secret_data_base64: Optional[pulumi.Input[Optional[bool]]] = None,
|
172
|
+
location: Optional[pulumi.Input[Optional[str]]] = None,
|
158
173
|
project: Optional[pulumi.Input[Optional[str]]] = None,
|
159
174
|
secret: Optional[pulumi.Input[str]] = None,
|
160
175
|
version: Optional[pulumi.Input[Optional[str]]] = None,
|
161
176
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRegionalSecretVersionAccessResult]:
|
162
177
|
"""
|
163
|
-
Get the value from a Secret Manager regional secret version. This is similar to the secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
178
|
+
Get the value from a Secret Manager regional secret version. This is similar to the secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets.versions/access).
|
164
179
|
|
165
180
|
## Example Usage
|
166
181
|
|
@@ -173,6 +188,8 @@ def get_regional_secret_version_access_output(location: Optional[pulumi.Input[Op
|
|
173
188
|
```
|
174
189
|
|
175
190
|
|
191
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
192
|
+
expected to be base64-encoded string.
|
176
193
|
:param str location: Location of Secret Manager regional secret resource.
|
177
194
|
It must be provided when the `secret` field provided consists of only the name of the regional secret.
|
178
195
|
:param str project: The project to get the secret version for. If it
|
@@ -183,6 +200,7 @@ def get_regional_secret_version_access_output(location: Optional[pulumi.Input[Op
|
|
183
200
|
is not provided, the latest version is retrieved.
|
184
201
|
"""
|
185
202
|
__args__ = dict()
|
203
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
186
204
|
__args__['location'] = location
|
187
205
|
__args__['project'] = project
|
188
206
|
__args__['secret'] = secret
|
@@ -191,6 +209,7 @@ def get_regional_secret_version_access_output(location: Optional[pulumi.Input[Op
|
|
191
209
|
__ret__ = pulumi.runtime.invoke_output('gcp:secretmanager/getRegionalSecretVersionAccess:getRegionalSecretVersionAccess', __args__, opts=opts, typ=GetRegionalSecretVersionAccessResult)
|
192
210
|
return __ret__.apply(lambda __response__: GetRegionalSecretVersionAccessResult(
|
193
211
|
id=pulumi.get(__response__, 'id'),
|
212
|
+
is_secret_data_base64=pulumi.get(__response__, 'is_secret_data_base64'),
|
194
213
|
location=pulumi.get(__response__, 'location'),
|
195
214
|
name=pulumi.get(__response__, 'name'),
|
196
215
|
project=pulumi.get(__response__, 'project'),
|
@@ -26,7 +26,7 @@ class GetSecretVersionResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getSecretVersion.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, create_time=None, destroy_time=None, enabled=None, id=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
29
|
+
def __init__(__self__, create_time=None, destroy_time=None, enabled=None, id=None, is_secret_data_base64=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
30
30
|
if create_time and not isinstance(create_time, str):
|
31
31
|
raise TypeError("Expected argument 'create_time' to be a str")
|
32
32
|
pulumi.set(__self__, "create_time", create_time)
|
@@ -39,6 +39,9 @@ class GetSecretVersionResult:
|
|
39
39
|
if id and not isinstance(id, str):
|
40
40
|
raise TypeError("Expected argument 'id' to be a str")
|
41
41
|
pulumi.set(__self__, "id", id)
|
42
|
+
if is_secret_data_base64 and not isinstance(is_secret_data_base64, bool):
|
43
|
+
raise TypeError("Expected argument 'is_secret_data_base64' to be a bool")
|
44
|
+
pulumi.set(__self__, "is_secret_data_base64", is_secret_data_base64)
|
42
45
|
if name and not isinstance(name, str):
|
43
46
|
raise TypeError("Expected argument 'name' to be a str")
|
44
47
|
pulumi.set(__self__, "name", name)
|
@@ -87,6 +90,11 @@ class GetSecretVersionResult:
|
|
87
90
|
"""
|
88
91
|
return pulumi.get(self, "id")
|
89
92
|
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="isSecretDataBase64")
|
95
|
+
def is_secret_data_base64(self) -> Optional[bool]:
|
96
|
+
return pulumi.get(self, "is_secret_data_base64")
|
97
|
+
|
90
98
|
@property
|
91
99
|
@pulumi.getter
|
92
100
|
def name(self) -> str:
|
@@ -130,6 +138,7 @@ class AwaitableGetSecretVersionResult(GetSecretVersionResult):
|
|
130
138
|
destroy_time=self.destroy_time,
|
131
139
|
enabled=self.enabled,
|
132
140
|
id=self.id,
|
141
|
+
is_secret_data_base64=self.is_secret_data_base64,
|
133
142
|
name=self.name,
|
134
143
|
project=self.project,
|
135
144
|
secret=self.secret,
|
@@ -137,7 +146,8 @@ class AwaitableGetSecretVersionResult(GetSecretVersionResult):
|
|
137
146
|
version=self.version)
|
138
147
|
|
139
148
|
|
140
|
-
def get_secret_version(
|
149
|
+
def get_secret_version(is_secret_data_base64: Optional[bool] = None,
|
150
|
+
project: Optional[str] = None,
|
141
151
|
secret: Optional[str] = None,
|
142
152
|
version: Optional[str] = None,
|
143
153
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretVersionResult:
|
@@ -154,6 +164,8 @@ def get_secret_version(project: Optional[str] = None,
|
|
154
164
|
```
|
155
165
|
|
156
166
|
|
167
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
168
|
+
expected to be base64-encoded string.
|
157
169
|
:param str project: The project to get the secret version for. If it
|
158
170
|
is not provided, the provider project is used.
|
159
171
|
:param str secret: The secret to get the secret version for.
|
@@ -161,6 +173,7 @@ def get_secret_version(project: Optional[str] = None,
|
|
161
173
|
is not provided, the latest version is retrieved.
|
162
174
|
"""
|
163
175
|
__args__ = dict()
|
176
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
164
177
|
__args__['project'] = project
|
165
178
|
__args__['secret'] = secret
|
166
179
|
__args__['version'] = version
|
@@ -172,12 +185,14 @@ def get_secret_version(project: Optional[str] = None,
|
|
172
185
|
destroy_time=pulumi.get(__ret__, 'destroy_time'),
|
173
186
|
enabled=pulumi.get(__ret__, 'enabled'),
|
174
187
|
id=pulumi.get(__ret__, 'id'),
|
188
|
+
is_secret_data_base64=pulumi.get(__ret__, 'is_secret_data_base64'),
|
175
189
|
name=pulumi.get(__ret__, 'name'),
|
176
190
|
project=pulumi.get(__ret__, 'project'),
|
177
191
|
secret=pulumi.get(__ret__, 'secret'),
|
178
192
|
secret_data=pulumi.get(__ret__, 'secret_data'),
|
179
193
|
version=pulumi.get(__ret__, 'version'))
|
180
|
-
def get_secret_version_output(
|
194
|
+
def get_secret_version_output(is_secret_data_base64: Optional[pulumi.Input[Optional[bool]]] = None,
|
195
|
+
project: Optional[pulumi.Input[Optional[str]]] = None,
|
181
196
|
secret: Optional[pulumi.Input[str]] = None,
|
182
197
|
version: Optional[pulumi.Input[Optional[str]]] = None,
|
183
198
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecretVersionResult]:
|
@@ -194,6 +209,8 @@ def get_secret_version_output(project: Optional[pulumi.Input[Optional[str]]] = N
|
|
194
209
|
```
|
195
210
|
|
196
211
|
|
212
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
213
|
+
expected to be base64-encoded string.
|
197
214
|
:param str project: The project to get the secret version for. If it
|
198
215
|
is not provided, the provider project is used.
|
199
216
|
:param str secret: The secret to get the secret version for.
|
@@ -201,6 +218,7 @@ def get_secret_version_output(project: Optional[pulumi.Input[Optional[str]]] = N
|
|
201
218
|
is not provided, the latest version is retrieved.
|
202
219
|
"""
|
203
220
|
__args__ = dict()
|
221
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
204
222
|
__args__['project'] = project
|
205
223
|
__args__['secret'] = secret
|
206
224
|
__args__['version'] = version
|
@@ -211,6 +229,7 @@ def get_secret_version_output(project: Optional[pulumi.Input[Optional[str]]] = N
|
|
211
229
|
destroy_time=pulumi.get(__response__, 'destroy_time'),
|
212
230
|
enabled=pulumi.get(__response__, 'enabled'),
|
213
231
|
id=pulumi.get(__response__, 'id'),
|
232
|
+
is_secret_data_base64=pulumi.get(__response__, 'is_secret_data_base64'),
|
214
233
|
name=pulumi.get(__response__, 'name'),
|
215
234
|
project=pulumi.get(__response__, 'project'),
|
216
235
|
secret=pulumi.get(__response__, 'secret'),
|
@@ -26,10 +26,13 @@ class GetSecretVersionAccessResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getSecretVersionAccess.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, id=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
29
|
+
def __init__(__self__, id=None, is_secret_data_base64=None, name=None, project=None, secret=None, secret_data=None, version=None):
|
30
30
|
if id and not isinstance(id, str):
|
31
31
|
raise TypeError("Expected argument 'id' to be a str")
|
32
32
|
pulumi.set(__self__, "id", id)
|
33
|
+
if is_secret_data_base64 and not isinstance(is_secret_data_base64, bool):
|
34
|
+
raise TypeError("Expected argument 'is_secret_data_base64' to be a bool")
|
35
|
+
pulumi.set(__self__, "is_secret_data_base64", is_secret_data_base64)
|
33
36
|
if name and not isinstance(name, str):
|
34
37
|
raise TypeError("Expected argument 'name' to be a str")
|
35
38
|
pulumi.set(__self__, "name", name)
|
@@ -54,6 +57,11 @@ class GetSecretVersionAccessResult:
|
|
54
57
|
"""
|
55
58
|
return pulumi.get(self, "id")
|
56
59
|
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="isSecretDataBase64")
|
62
|
+
def is_secret_data_base64(self) -> Optional[bool]:
|
63
|
+
return pulumi.get(self, "is_secret_data_base64")
|
64
|
+
|
57
65
|
@property
|
58
66
|
@pulumi.getter
|
59
67
|
def name(self) -> str:
|
@@ -94,6 +102,7 @@ class AwaitableGetSecretVersionAccessResult(GetSecretVersionAccessResult):
|
|
94
102
|
yield self
|
95
103
|
return GetSecretVersionAccessResult(
|
96
104
|
id=self.id,
|
105
|
+
is_secret_data_base64=self.is_secret_data_base64,
|
97
106
|
name=self.name,
|
98
107
|
project=self.project,
|
99
108
|
secret=self.secret,
|
@@ -101,7 +110,8 @@ class AwaitableGetSecretVersionAccessResult(GetSecretVersionAccessResult):
|
|
101
110
|
version=self.version)
|
102
111
|
|
103
112
|
|
104
|
-
def get_secret_version_access(
|
113
|
+
def get_secret_version_access(is_secret_data_base64: Optional[bool] = None,
|
114
|
+
project: Optional[str] = None,
|
105
115
|
secret: Optional[str] = None,
|
106
116
|
version: Optional[str] = None,
|
107
117
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecretVersionAccessResult:
|
@@ -118,6 +128,8 @@ def get_secret_version_access(project: Optional[str] = None,
|
|
118
128
|
```
|
119
129
|
|
120
130
|
|
131
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
132
|
+
expected to be base64-encoded string.
|
121
133
|
:param str project: The project to get the secret version for. If it
|
122
134
|
is not provided, the provider project is used.
|
123
135
|
:param str secret: The secret to get the secret version for.
|
@@ -125,6 +137,7 @@ def get_secret_version_access(project: Optional[str] = None,
|
|
125
137
|
is not provided, the latest version is retrieved.
|
126
138
|
"""
|
127
139
|
__args__ = dict()
|
140
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
128
141
|
__args__['project'] = project
|
129
142
|
__args__['secret'] = secret
|
130
143
|
__args__['version'] = version
|
@@ -133,12 +146,14 @@ def get_secret_version_access(project: Optional[str] = None,
|
|
133
146
|
|
134
147
|
return AwaitableGetSecretVersionAccessResult(
|
135
148
|
id=pulumi.get(__ret__, 'id'),
|
149
|
+
is_secret_data_base64=pulumi.get(__ret__, 'is_secret_data_base64'),
|
136
150
|
name=pulumi.get(__ret__, 'name'),
|
137
151
|
project=pulumi.get(__ret__, 'project'),
|
138
152
|
secret=pulumi.get(__ret__, 'secret'),
|
139
153
|
secret_data=pulumi.get(__ret__, 'secret_data'),
|
140
154
|
version=pulumi.get(__ret__, 'version'))
|
141
|
-
def get_secret_version_access_output(
|
155
|
+
def get_secret_version_access_output(is_secret_data_base64: Optional[pulumi.Input[Optional[bool]]] = None,
|
156
|
+
project: Optional[pulumi.Input[Optional[str]]] = None,
|
142
157
|
secret: Optional[pulumi.Input[str]] = None,
|
143
158
|
version: Optional[pulumi.Input[Optional[str]]] = None,
|
144
159
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSecretVersionAccessResult]:
|
@@ -155,6 +170,8 @@ def get_secret_version_access_output(project: Optional[pulumi.Input[Optional[str
|
|
155
170
|
```
|
156
171
|
|
157
172
|
|
173
|
+
:param bool is_secret_data_base64: If set to 'true', the secret data is
|
174
|
+
expected to be base64-encoded string.
|
158
175
|
:param str project: The project to get the secret version for. If it
|
159
176
|
is not provided, the provider project is used.
|
160
177
|
:param str secret: The secret to get the secret version for.
|
@@ -162,6 +179,7 @@ def get_secret_version_access_output(project: Optional[pulumi.Input[Optional[str
|
|
162
179
|
is not provided, the latest version is retrieved.
|
163
180
|
"""
|
164
181
|
__args__ = dict()
|
182
|
+
__args__['isSecretDataBase64'] = is_secret_data_base64
|
165
183
|
__args__['project'] = project
|
166
184
|
__args__['secret'] = secret
|
167
185
|
__args__['version'] = version
|
@@ -169,6 +187,7 @@ def get_secret_version_access_output(project: Optional[pulumi.Input[Optional[str
|
|
169
187
|
__ret__ = pulumi.runtime.invoke_output('gcp:secretmanager/getSecretVersionAccess:getSecretVersionAccess', __args__, opts=opts, typ=GetSecretVersionAccessResult)
|
170
188
|
return __ret__.apply(lambda __response__: GetSecretVersionAccessResult(
|
171
189
|
id=pulumi.get(__response__, 'id'),
|
190
|
+
is_secret_data_base64=pulumi.get(__response__, 'is_secret_data_base64'),
|
172
191
|
name=pulumi.get(__response__, 'name'),
|
173
192
|
project=pulumi.get(__response__, 'project'),
|
174
193
|
secret=pulumi.get(__response__, 'secret'),
|
@@ -703,7 +703,7 @@ class RegionalSecret(pulumi.CustomResource):
|
|
703
703
|
|
704
704
|
To get more information about RegionalSecret, see:
|
705
705
|
|
706
|
-
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets)
|
706
|
+
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets)
|
707
707
|
|
708
708
|
## Example Usage
|
709
709
|
|
@@ -922,7 +922,7 @@ class RegionalSecret(pulumi.CustomResource):
|
|
922
922
|
|
923
923
|
To get more information about RegionalSecret, see:
|
924
924
|
|
925
|
-
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets)
|
925
|
+
* [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.locations.secrets)
|
926
926
|
|
927
927
|
## Example Usage
|
928
928
|
|
@@ -93,14 +93,6 @@ def get_token(identifier: Optional[str] = None,
|
|
93
93
|
verification_method: Optional[str] = None,
|
94
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTokenResult:
|
95
95
|
"""
|
96
|
-
## subcategory: "Site Verification"
|
97
|
-
|
98
|
-
description: |-
|
99
|
-
A verification token is used to demonstrate ownership of a website or domain.
|
100
|
-
---
|
101
|
-
|
102
|
-
# siteverification_get_token
|
103
|
-
|
104
96
|
A verification token is used to demonstrate ownership of a website or domain.
|
105
97
|
|
106
98
|
To get more information about Token, see:
|
@@ -163,14 +155,6 @@ def get_token_output(identifier: Optional[pulumi.Input[str]] = None,
|
|
163
155
|
verification_method: Optional[pulumi.Input[str]] = None,
|
164
156
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTokenResult]:
|
165
157
|
"""
|
166
|
-
## subcategory: "Site Verification"
|
167
|
-
|
168
|
-
description: |-
|
169
|
-
A verification token is used to demonstrate ownership of a website or domain.
|
170
|
-
---
|
171
|
-
|
172
|
-
# siteverification_get_token
|
173
|
-
|
174
158
|
A verification token is used to demonstrate ownership of a website or domain.
|
175
159
|
|
176
160
|
To get more information about Token, see:
|
@@ -115,14 +115,6 @@ class Owner(pulumi.CustomResource):
|
|
115
115
|
web_resource_id: Optional[pulumi.Input[str]] = None,
|
116
116
|
__props__=None):
|
117
117
|
"""
|
118
|
-
## subcategory: "Site Verification"
|
119
|
-
|
120
|
-
description: |-
|
121
|
-
Manages additional owners on verified web resources.
|
122
|
-
---
|
123
|
-
|
124
|
-
# siteverification.Owner
|
125
|
-
|
126
118
|
An owner is an additional user that may manage a verified web site in the
|
127
119
|
[Google Search Console](https://www.google.com/webmasters/tools/). There
|
128
120
|
are two types of web resource owners:
|
@@ -221,14 +213,6 @@ class Owner(pulumi.CustomResource):
|
|
221
213
|
args: OwnerArgs,
|
222
214
|
opts: Optional[pulumi.ResourceOptions] = None):
|
223
215
|
"""
|
224
|
-
## subcategory: "Site Verification"
|
225
|
-
|
226
|
-
description: |-
|
227
|
-
Manages additional owners on verified web resources.
|
228
|
-
---
|
229
|
-
|
230
|
-
# siteverification.Owner
|
231
|
-
|
232
216
|
An owner is an additional user that may manage a verified web site in the
|
233
217
|
[Google Search Console](https://www.google.com/webmasters/tools/). There
|
234
218
|
are two types of web resource owners:
|
pulumi_gcp/spanner/_inputs.py
CHANGED
@@ -168,27 +168,38 @@ class BackupScheduleSpecCronSpecArgs:
|
|
168
168
|
|
169
169
|
if not MYPY:
|
170
170
|
class DatabaseEncryptionConfigArgsDict(TypedDict):
|
171
|
-
kms_key_name: pulumi.Input[str]
|
171
|
+
kms_key_name: NotRequired[pulumi.Input[str]]
|
172
172
|
"""
|
173
173
|
Fully qualified name of the KMS key to use to encrypt this database. This key must exist
|
174
174
|
in the same location as the Spanner Database.
|
175
175
|
"""
|
176
|
+
kms_key_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
177
|
+
"""
|
178
|
+
Fully qualified name of the KMS keys to use to encrypt this database. The keys must exist
|
179
|
+
in the same locations as the Spanner Database.
|
180
|
+
"""
|
176
181
|
elif False:
|
177
182
|
DatabaseEncryptionConfigArgsDict: TypeAlias = Mapping[str, Any]
|
178
183
|
|
179
184
|
@pulumi.input_type
|
180
185
|
class DatabaseEncryptionConfigArgs:
|
181
186
|
def __init__(__self__, *,
|
182
|
-
kms_key_name: pulumi.Input[str]
|
187
|
+
kms_key_name: Optional[pulumi.Input[str]] = None,
|
188
|
+
kms_key_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
183
189
|
"""
|
184
190
|
:param pulumi.Input[str] kms_key_name: Fully qualified name of the KMS key to use to encrypt this database. This key must exist
|
185
191
|
in the same location as the Spanner Database.
|
192
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] kms_key_names: Fully qualified name of the KMS keys to use to encrypt this database. The keys must exist
|
193
|
+
in the same locations as the Spanner Database.
|
186
194
|
"""
|
187
|
-
|
195
|
+
if kms_key_name is not None:
|
196
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
197
|
+
if kms_key_names is not None:
|
198
|
+
pulumi.set(__self__, "kms_key_names", kms_key_names)
|
188
199
|
|
189
200
|
@property
|
190
201
|
@pulumi.getter(name="kmsKeyName")
|
191
|
-
def kms_key_name(self) -> pulumi.Input[str]:
|
202
|
+
def kms_key_name(self) -> Optional[pulumi.Input[str]]:
|
192
203
|
"""
|
193
204
|
Fully qualified name of the KMS key to use to encrypt this database. This key must exist
|
194
205
|
in the same location as the Spanner Database.
|
@@ -196,9 +207,22 @@ class DatabaseEncryptionConfigArgs:
|
|
196
207
|
return pulumi.get(self, "kms_key_name")
|
197
208
|
|
198
209
|
@kms_key_name.setter
|
199
|
-
def kms_key_name(self, value: pulumi.Input[str]):
|
210
|
+
def kms_key_name(self, value: Optional[pulumi.Input[str]]):
|
200
211
|
pulumi.set(self, "kms_key_name", value)
|
201
212
|
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="kmsKeyNames")
|
215
|
+
def kms_key_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
216
|
+
"""
|
217
|
+
Fully qualified name of the KMS keys to use to encrypt this database. The keys must exist
|
218
|
+
in the same locations as the Spanner Database.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "kms_key_names")
|
221
|
+
|
222
|
+
@kms_key_names.setter
|
223
|
+
def kms_key_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
224
|
+
pulumi.set(self, "kms_key_names", value)
|
225
|
+
|
202
226
|
|
203
227
|
if not MYPY:
|
204
228
|
class DatabaseIAMBindingConditionArgsDict(TypedDict):
|
pulumi_gcp/spanner/outputs.py
CHANGED
@@ -130,6 +130,8 @@ class DatabaseEncryptionConfig(dict):
|
|
130
130
|
suggest = None
|
131
131
|
if key == "kmsKeyName":
|
132
132
|
suggest = "kms_key_name"
|
133
|
+
elif key == "kmsKeyNames":
|
134
|
+
suggest = "kms_key_names"
|
133
135
|
|
134
136
|
if suggest:
|
135
137
|
pulumi.log.warn(f"Key '{key}' not found in DatabaseEncryptionConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -143,22 +145,37 @@ class DatabaseEncryptionConfig(dict):
|
|
143
145
|
return super().get(key, default)
|
144
146
|
|
145
147
|
def __init__(__self__, *,
|
146
|
-
kms_key_name: str
|
148
|
+
kms_key_name: Optional[str] = None,
|
149
|
+
kms_key_names: Optional[Sequence[str]] = None):
|
147
150
|
"""
|
148
151
|
:param str kms_key_name: Fully qualified name of the KMS key to use to encrypt this database. This key must exist
|
149
152
|
in the same location as the Spanner Database.
|
153
|
+
:param Sequence[str] kms_key_names: Fully qualified name of the KMS keys to use to encrypt this database. The keys must exist
|
154
|
+
in the same locations as the Spanner Database.
|
150
155
|
"""
|
151
|
-
|
156
|
+
if kms_key_name is not None:
|
157
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
158
|
+
if kms_key_names is not None:
|
159
|
+
pulumi.set(__self__, "kms_key_names", kms_key_names)
|
152
160
|
|
153
161
|
@property
|
154
162
|
@pulumi.getter(name="kmsKeyName")
|
155
|
-
def kms_key_name(self) -> str:
|
163
|
+
def kms_key_name(self) -> Optional[str]:
|
156
164
|
"""
|
157
165
|
Fully qualified name of the KMS key to use to encrypt this database. This key must exist
|
158
166
|
in the same location as the Spanner Database.
|
159
167
|
"""
|
160
168
|
return pulumi.get(self, "kms_key_name")
|
161
169
|
|
170
|
+
@property
|
171
|
+
@pulumi.getter(name="kmsKeyNames")
|
172
|
+
def kms_key_names(self) -> Optional[Sequence[str]]:
|
173
|
+
"""
|
174
|
+
Fully qualified name of the KMS keys to use to encrypt this database. The keys must exist
|
175
|
+
in the same locations as the Spanner Database.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "kms_key_names")
|
178
|
+
|
162
179
|
|
163
180
|
@pulumi.output_type
|
164
181
|
class DatabaseIAMBindingCondition(dict):
|
pulumi_gcp/sql/_inputs.py
CHANGED
@@ -1837,11 +1837,11 @@ if not MYPY:
|
|
1837
1837
|
"""
|
1838
1838
|
server_ca_mode: NotRequired[pulumi.Input[str]]
|
1839
1839
|
"""
|
1840
|
-
Specify how the server certificate's Certificate Authority is hosted. Supported
|
1840
|
+
Specify how the server certificate's Certificate Authority is hosted. Supported values are `GOOGLE_MANAGED_INTERNAL_CA` and `GOOGLE_MANAGED_CAS_CA`.
|
1841
1841
|
"""
|
1842
1842
|
ssl_mode: NotRequired[pulumi.Input[str]]
|
1843
1843
|
"""
|
1844
|
-
Specify how SSL connection should be enforced in DB connections.
|
1844
|
+
Specify how SSL connection should be enforced in DB connections. Supported values are `ALLOW_UNENCRYPTED_AND_ENCRYPTED`, `ENCRYPTED_ONLY`, and `TRUSTED_CLIENT_CERTIFICATE_REQUIRED` (not supported for SQL Server). See [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1/instances#ipconfiguration) for details.
|
1845
1845
|
"""
|
1846
1846
|
elif False:
|
1847
1847
|
DatabaseInstanceSettingsIpConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1869,8 +1869,8 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
|
|
1869
1869
|
At least `ipv4_enabled` must be enabled or a `private_network` must be configured.
|
1870
1870
|
This setting can be updated, but it cannot be removed after it is set.
|
1871
1871
|
:param pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationPscConfigArgs']]] psc_configs: PSC settings for a Cloud SQL instance.
|
1872
|
-
:param pulumi.Input[str] server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported
|
1873
|
-
:param pulumi.Input[str] ssl_mode: Specify how SSL connection should be enforced in DB connections.
|
1872
|
+
:param pulumi.Input[str] server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported values are `GOOGLE_MANAGED_INTERNAL_CA` and `GOOGLE_MANAGED_CAS_CA`.
|
1873
|
+
:param pulumi.Input[str] ssl_mode: Specify how SSL connection should be enforced in DB connections. Supported values are `ALLOW_UNENCRYPTED_AND_ENCRYPTED`, `ENCRYPTED_ONLY`, and `TRUSTED_CLIENT_CERTIFICATE_REQUIRED` (not supported for SQL Server). See [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1/instances#ipconfiguration) for details.
|
1874
1874
|
"""
|
1875
1875
|
if allocated_ip_range is not None:
|
1876
1876
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
@@ -1968,7 +1968,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
|
|
1968
1968
|
@pulumi.getter(name="serverCaMode")
|
1969
1969
|
def server_ca_mode(self) -> Optional[pulumi.Input[str]]:
|
1970
1970
|
"""
|
1971
|
-
Specify how the server certificate's Certificate Authority is hosted. Supported
|
1971
|
+
Specify how the server certificate's Certificate Authority is hosted. Supported values are `GOOGLE_MANAGED_INTERNAL_CA` and `GOOGLE_MANAGED_CAS_CA`.
|
1972
1972
|
"""
|
1973
1973
|
return pulumi.get(self, "server_ca_mode")
|
1974
1974
|
|
@@ -1980,7 +1980,7 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
|
|
1980
1980
|
@pulumi.getter(name="sslMode")
|
1981
1981
|
def ssl_mode(self) -> Optional[pulumi.Input[str]]:
|
1982
1982
|
"""
|
1983
|
-
Specify how SSL connection should be enforced in DB connections.
|
1983
|
+
Specify how SSL connection should be enforced in DB connections. Supported values are `ALLOW_UNENCRYPTED_AND_ENCRYPTED`, `ENCRYPTED_ONLY`, and `TRUSTED_CLIENT_CERTIFICATE_REQUIRED` (not supported for SQL Server). See [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1/instances#ipconfiguration) for details.
|
1984
1984
|
"""
|
1985
1985
|
return pulumi.get(self, "ssl_mode")
|
1986
1986
|
|
pulumi_gcp/sql/outputs.py
CHANGED
@@ -1492,8 +1492,8 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1492
1492
|
At least `ipv4_enabled` must be enabled or a `private_network` must be configured.
|
1493
1493
|
This setting can be updated, but it cannot be removed after it is set.
|
1494
1494
|
:param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
1495
|
-
:param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported
|
1496
|
-
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections.
|
1495
|
+
:param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported values are `GOOGLE_MANAGED_INTERNAL_CA` and `GOOGLE_MANAGED_CAS_CA`.
|
1496
|
+
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. Supported values are `ALLOW_UNENCRYPTED_AND_ENCRYPTED`, `ENCRYPTED_ONLY`, and `TRUSTED_CLIENT_CERTIFICATE_REQUIRED` (not supported for SQL Server). See [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1/instances#ipconfiguration) for details.
|
1497
1497
|
"""
|
1498
1498
|
if allocated_ip_range is not None:
|
1499
1499
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
@@ -1567,7 +1567,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1567
1567
|
@pulumi.getter(name="serverCaMode")
|
1568
1568
|
def server_ca_mode(self) -> Optional[str]:
|
1569
1569
|
"""
|
1570
|
-
Specify how the server certificate's Certificate Authority is hosted. Supported
|
1570
|
+
Specify how the server certificate's Certificate Authority is hosted. Supported values are `GOOGLE_MANAGED_INTERNAL_CA` and `GOOGLE_MANAGED_CAS_CA`.
|
1571
1571
|
"""
|
1572
1572
|
return pulumi.get(self, "server_ca_mode")
|
1573
1573
|
|
@@ -1575,7 +1575,7 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1575
1575
|
@pulumi.getter(name="sslMode")
|
1576
1576
|
def ssl_mode(self) -> Optional[str]:
|
1577
1577
|
"""
|
1578
|
-
Specify how SSL connection should be enforced in DB connections.
|
1578
|
+
Specify how SSL connection should be enforced in DB connections. Supported values are `ALLOW_UNENCRYPTED_AND_ENCRYPTED`, `ENCRYPTED_ONLY`, and `TRUSTED_CLIENT_CERTIFICATE_REQUIRED` (not supported for SQL Server). See [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1/instances#ipconfiguration) for details.
|
1579
1579
|
"""
|
1580
1580
|
return pulumi.get(self, "ssl_mode")
|
1581
1581
|
|