pulumi-gcp 8.22.0a1741790977__py3-none-any.whl → 8.22.0a1741888019__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 +32 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +600 -17
- pulumi_gcp/compute/backend_service.py +195 -7
- pulumi_gcp/compute/disk.py +108 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +23 -1
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/outputs.py +623 -23
- pulumi_gcp/compute/region_backend_service.py +193 -7
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +40 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/outputs.py +41 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +51 -18
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +34 -12
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +12 -0
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/RECORD +75 -70
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/top_level.txt +0 -0
@@ -23,23 +23,26 @@ class InterceptDeploymentArgs:
|
|
23
23
|
intercept_deployment_group: pulumi.Input[str],
|
24
24
|
intercept_deployment_id: pulumi.Input[str],
|
25
25
|
location: pulumi.Input[str],
|
26
|
+
description: Optional[pulumi.Input[str]] = None,
|
26
27
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
28
|
project: Optional[pulumi.Input[str]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a InterceptDeployment resource.
|
30
|
-
:param pulumi.Input[str] forwarding_rule:
|
31
|
-
|
32
|
-
|
33
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
34
|
-
`projects/
|
35
|
-
|
36
|
-
|
37
|
-
|
31
|
+
:param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the interceptors, for example:
|
32
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
33
|
+
See https://google.aip.dev/124.
|
34
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this deployment is a part of, for example:
|
35
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
36
|
+
See https://google.aip.dev/124.
|
37
|
+
:param pulumi.Input[str] intercept_deployment_id: The ID to use for the new deployment, which will become the final
|
38
|
+
component of the deployment's resource name.
|
38
39
|
|
39
40
|
|
40
41
|
- - -
|
41
|
-
:param pulumi.Input[str] location:
|
42
|
-
:param pulumi.Input[
|
42
|
+
:param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
43
|
+
:param pulumi.Input[str] description: User-provided description of the deployment.
|
44
|
+
Used as additional context for the deployment.
|
45
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
43
46
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
44
47
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
45
48
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -49,6 +52,8 @@ class InterceptDeploymentArgs:
|
|
49
52
|
pulumi.set(__self__, "intercept_deployment_group", intercept_deployment_group)
|
50
53
|
pulumi.set(__self__, "intercept_deployment_id", intercept_deployment_id)
|
51
54
|
pulumi.set(__self__, "location", location)
|
55
|
+
if description is not None:
|
56
|
+
pulumi.set(__self__, "description", description)
|
52
57
|
if labels is not None:
|
53
58
|
pulumi.set(__self__, "labels", labels)
|
54
59
|
if project is not None:
|
@@ -58,9 +63,9 @@ class InterceptDeploymentArgs:
|
|
58
63
|
@pulumi.getter(name="forwardingRule")
|
59
64
|
def forwarding_rule(self) -> pulumi.Input[str]:
|
60
65
|
"""
|
61
|
-
|
62
|
-
|
63
|
-
|
66
|
+
The regional forwarding rule that fronts the interceptors, for example:
|
67
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
68
|
+
See https://google.aip.dev/124.
|
64
69
|
"""
|
65
70
|
return pulumi.get(self, "forwarding_rule")
|
66
71
|
|
@@ -72,8 +77,9 @@ class InterceptDeploymentArgs:
|
|
72
77
|
@pulumi.getter(name="interceptDeploymentGroup")
|
73
78
|
def intercept_deployment_group(self) -> pulumi.Input[str]:
|
74
79
|
"""
|
75
|
-
|
76
|
-
`projects/
|
80
|
+
The deployment group that this deployment is a part of, for example:
|
81
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
82
|
+
See https://google.aip.dev/124.
|
77
83
|
"""
|
78
84
|
return pulumi.get(self, "intercept_deployment_group")
|
79
85
|
|
@@ -85,9 +91,8 @@ class InterceptDeploymentArgs:
|
|
85
91
|
@pulumi.getter(name="interceptDeploymentId")
|
86
92
|
def intercept_deployment_id(self) -> pulumi.Input[str]:
|
87
93
|
"""
|
88
|
-
|
89
|
-
|
90
|
-
intercept_deployment_id from the method_signature of Create RPC
|
94
|
+
The ID to use for the new deployment, which will become the final
|
95
|
+
component of the deployment's resource name.
|
91
96
|
|
92
97
|
|
93
98
|
- - -
|
@@ -102,7 +107,7 @@ class InterceptDeploymentArgs:
|
|
102
107
|
@pulumi.getter
|
103
108
|
def location(self) -> pulumi.Input[str]:
|
104
109
|
"""
|
105
|
-
|
110
|
+
The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
106
111
|
"""
|
107
112
|
return pulumi.get(self, "location")
|
108
113
|
|
@@ -110,11 +115,24 @@ class InterceptDeploymentArgs:
|
|
110
115
|
def location(self, value: pulumi.Input[str]):
|
111
116
|
pulumi.set(self, "location", value)
|
112
117
|
|
118
|
+
@property
|
119
|
+
@pulumi.getter
|
120
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
121
|
+
"""
|
122
|
+
User-provided description of the deployment.
|
123
|
+
Used as additional context for the deployment.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "description")
|
126
|
+
|
127
|
+
@description.setter
|
128
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
129
|
+
pulumi.set(self, "description", value)
|
130
|
+
|
113
131
|
@property
|
114
132
|
@pulumi.getter
|
115
133
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
116
134
|
"""
|
117
|
-
|
135
|
+
Labels are key/value pairs that help to organize and filter resources.
|
118
136
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
119
137
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
120
138
|
"""
|
@@ -142,6 +160,7 @@ class InterceptDeploymentArgs:
|
|
142
160
|
class _InterceptDeploymentState:
|
143
161
|
def __init__(__self__, *,
|
144
162
|
create_time: Optional[pulumi.Input[str]] = None,
|
163
|
+
description: Optional[pulumi.Input[str]] = None,
|
145
164
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
146
165
|
forwarding_rule: Optional[pulumi.Input[str]] = None,
|
147
166
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
@@ -156,31 +175,39 @@ class _InterceptDeploymentState:
|
|
156
175
|
update_time: Optional[pulumi.Input[str]] = None):
|
157
176
|
"""
|
158
177
|
Input properties used for looking up and filtering InterceptDeployment resources.
|
159
|
-
:param pulumi.Input[str] create_time:
|
178
|
+
:param pulumi.Input[str] create_time: The timestamp when the resource was created.
|
179
|
+
See https://google.aip.dev/148#timestamps.
|
180
|
+
:param pulumi.Input[str] description: User-provided description of the deployment.
|
181
|
+
Used as additional context for the deployment.
|
160
182
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
161
|
-
:param pulumi.Input[str] forwarding_rule:
|
162
|
-
|
163
|
-
|
164
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
165
|
-
`projects/
|
166
|
-
|
167
|
-
|
168
|
-
|
183
|
+
:param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the interceptors, for example:
|
184
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
185
|
+
See https://google.aip.dev/124.
|
186
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this deployment is a part of, for example:
|
187
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
188
|
+
See https://google.aip.dev/124.
|
189
|
+
:param pulumi.Input[str] intercept_deployment_id: The ID to use for the new deployment, which will become the final
|
190
|
+
component of the deployment's resource name.
|
169
191
|
|
170
192
|
|
171
193
|
- - -
|
172
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
194
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
173
195
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
174
196
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
175
|
-
:param pulumi.Input[str] location:
|
176
|
-
:param pulumi.Input[str] name:
|
197
|
+
:param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
198
|
+
:param pulumi.Input[str] name: The resource name of this deployment, for example:
|
199
|
+
`projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`.
|
200
|
+
See https://google.aip.dev/122 for more details.
|
177
201
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
178
202
|
If it is not provided, the provider project is used.
|
179
203
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
180
204
|
and default labels configured on the provider.
|
181
|
-
:param pulumi.Input[bool] reconciling:
|
182
|
-
|
183
|
-
|
205
|
+
:param pulumi.Input[bool] reconciling: The current state of the resource does not match the user's intended state,
|
206
|
+
and the system is working to reconcile them. This part of the normal
|
207
|
+
operation (e.g. linking a new association to the parent group).
|
208
|
+
See https://google.aip.dev/128.
|
209
|
+
:param pulumi.Input[str] state: The current state of the deployment.
|
210
|
+
See https://google.aip.dev/216.
|
184
211
|
Possible values:
|
185
212
|
STATE_UNSPECIFIED
|
186
213
|
ACTIVE
|
@@ -188,10 +215,13 @@ class _InterceptDeploymentState:
|
|
188
215
|
DELETING
|
189
216
|
OUT_OF_SYNC
|
190
217
|
DELETE_FAILED
|
191
|
-
:param pulumi.Input[str] update_time:
|
218
|
+
:param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
|
219
|
+
See https://google.aip.dev/148#timestamps.
|
192
220
|
"""
|
193
221
|
if create_time is not None:
|
194
222
|
pulumi.set(__self__, "create_time", create_time)
|
223
|
+
if description is not None:
|
224
|
+
pulumi.set(__self__, "description", description)
|
195
225
|
if effective_labels is not None:
|
196
226
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
197
227
|
if forwarding_rule is not None:
|
@@ -221,7 +251,8 @@ class _InterceptDeploymentState:
|
|
221
251
|
@pulumi.getter(name="createTime")
|
222
252
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
223
253
|
"""
|
224
|
-
|
254
|
+
The timestamp when the resource was created.
|
255
|
+
See https://google.aip.dev/148#timestamps.
|
225
256
|
"""
|
226
257
|
return pulumi.get(self, "create_time")
|
227
258
|
|
@@ -229,6 +260,19 @@ class _InterceptDeploymentState:
|
|
229
260
|
def create_time(self, value: Optional[pulumi.Input[str]]):
|
230
261
|
pulumi.set(self, "create_time", value)
|
231
262
|
|
263
|
+
@property
|
264
|
+
@pulumi.getter
|
265
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
266
|
+
"""
|
267
|
+
User-provided description of the deployment.
|
268
|
+
Used as additional context for the deployment.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "description")
|
271
|
+
|
272
|
+
@description.setter
|
273
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
274
|
+
pulumi.set(self, "description", value)
|
275
|
+
|
232
276
|
@property
|
233
277
|
@pulumi.getter(name="effectiveLabels")
|
234
278
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -245,9 +289,9 @@ class _InterceptDeploymentState:
|
|
245
289
|
@pulumi.getter(name="forwardingRule")
|
246
290
|
def forwarding_rule(self) -> Optional[pulumi.Input[str]]:
|
247
291
|
"""
|
248
|
-
|
249
|
-
|
250
|
-
|
292
|
+
The regional forwarding rule that fronts the interceptors, for example:
|
293
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
294
|
+
See https://google.aip.dev/124.
|
251
295
|
"""
|
252
296
|
return pulumi.get(self, "forwarding_rule")
|
253
297
|
|
@@ -259,8 +303,9 @@ class _InterceptDeploymentState:
|
|
259
303
|
@pulumi.getter(name="interceptDeploymentGroup")
|
260
304
|
def intercept_deployment_group(self) -> Optional[pulumi.Input[str]]:
|
261
305
|
"""
|
262
|
-
|
263
|
-
`projects/
|
306
|
+
The deployment group that this deployment is a part of, for example:
|
307
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
308
|
+
See https://google.aip.dev/124.
|
264
309
|
"""
|
265
310
|
return pulumi.get(self, "intercept_deployment_group")
|
266
311
|
|
@@ -272,9 +317,8 @@ class _InterceptDeploymentState:
|
|
272
317
|
@pulumi.getter(name="interceptDeploymentId")
|
273
318
|
def intercept_deployment_id(self) -> Optional[pulumi.Input[str]]:
|
274
319
|
"""
|
275
|
-
|
276
|
-
|
277
|
-
intercept_deployment_id from the method_signature of Create RPC
|
320
|
+
The ID to use for the new deployment, which will become the final
|
321
|
+
component of the deployment's resource name.
|
278
322
|
|
279
323
|
|
280
324
|
- - -
|
@@ -289,7 +333,7 @@ class _InterceptDeploymentState:
|
|
289
333
|
@pulumi.getter
|
290
334
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
291
335
|
"""
|
292
|
-
|
336
|
+
Labels are key/value pairs that help to organize and filter resources.
|
293
337
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
294
338
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
295
339
|
"""
|
@@ -303,7 +347,7 @@ class _InterceptDeploymentState:
|
|
303
347
|
@pulumi.getter
|
304
348
|
def location(self) -> Optional[pulumi.Input[str]]:
|
305
349
|
"""
|
306
|
-
|
350
|
+
The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
307
351
|
"""
|
308
352
|
return pulumi.get(self, "location")
|
309
353
|
|
@@ -315,7 +359,9 @@ class _InterceptDeploymentState:
|
|
315
359
|
@pulumi.getter
|
316
360
|
def name(self) -> Optional[pulumi.Input[str]]:
|
317
361
|
"""
|
318
|
-
|
362
|
+
The resource name of this deployment, for example:
|
363
|
+
`projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`.
|
364
|
+
See https://google.aip.dev/122 for more details.
|
319
365
|
"""
|
320
366
|
return pulumi.get(self, "name")
|
321
367
|
|
@@ -353,8 +399,10 @@ class _InterceptDeploymentState:
|
|
353
399
|
@pulumi.getter
|
354
400
|
def reconciling(self) -> Optional[pulumi.Input[bool]]:
|
355
401
|
"""
|
356
|
-
|
357
|
-
|
402
|
+
The current state of the resource does not match the user's intended state,
|
403
|
+
and the system is working to reconcile them. This part of the normal
|
404
|
+
operation (e.g. linking a new association to the parent group).
|
405
|
+
See https://google.aip.dev/128.
|
358
406
|
"""
|
359
407
|
return pulumi.get(self, "reconciling")
|
360
408
|
|
@@ -366,7 +414,8 @@ class _InterceptDeploymentState:
|
|
366
414
|
@pulumi.getter
|
367
415
|
def state(self) -> Optional[pulumi.Input[str]]:
|
368
416
|
"""
|
369
|
-
|
417
|
+
The current state of the deployment.
|
418
|
+
See https://google.aip.dev/216.
|
370
419
|
Possible values:
|
371
420
|
STATE_UNSPECIFIED
|
372
421
|
ACTIVE
|
@@ -385,7 +434,8 @@ class _InterceptDeploymentState:
|
|
385
434
|
@pulumi.getter(name="updateTime")
|
386
435
|
def update_time(self) -> Optional[pulumi.Input[str]]:
|
387
436
|
"""
|
388
|
-
|
437
|
+
The timestamp when the resource was most recently updated.
|
438
|
+
See https://google.aip.dev/148#timestamps.
|
389
439
|
"""
|
390
440
|
return pulumi.get(self, "update_time")
|
391
441
|
|
@@ -399,6 +449,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
399
449
|
def __init__(__self__,
|
400
450
|
resource_name: str,
|
401
451
|
opts: Optional[pulumi.ResourceOptions] = None,
|
452
|
+
description: Optional[pulumi.Input[str]] = None,
|
402
453
|
forwarding_rule: Optional[pulumi.Input[str]] = None,
|
403
454
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
404
455
|
intercept_deployment_id: Optional[pulumi.Input[str]] = None,
|
@@ -453,6 +504,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
453
504
|
location="us-central1-a",
|
454
505
|
forwarding_rule=forwarding_rule.id,
|
455
506
|
intercept_deployment_group=deployment_group.id,
|
507
|
+
description="some description",
|
456
508
|
labels={
|
457
509
|
"foo": "bar",
|
458
510
|
})
|
@@ -484,21 +536,23 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
484
536
|
|
485
537
|
:param str resource_name: The name of the resource.
|
486
538
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
487
|
-
:param pulumi.Input[str]
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
:param pulumi.Input[str]
|
493
|
-
|
494
|
-
|
539
|
+
:param pulumi.Input[str] description: User-provided description of the deployment.
|
540
|
+
Used as additional context for the deployment.
|
541
|
+
:param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the interceptors, for example:
|
542
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
543
|
+
See https://google.aip.dev/124.
|
544
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this deployment is a part of, for example:
|
545
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
546
|
+
See https://google.aip.dev/124.
|
547
|
+
:param pulumi.Input[str] intercept_deployment_id: The ID to use for the new deployment, which will become the final
|
548
|
+
component of the deployment's resource name.
|
495
549
|
|
496
550
|
|
497
551
|
- - -
|
498
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
552
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
499
553
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
500
554
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
501
|
-
:param pulumi.Input[str] location:
|
555
|
+
:param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
502
556
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
503
557
|
If it is not provided, the provider project is used.
|
504
558
|
"""
|
@@ -555,6 +609,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
555
609
|
location="us-central1-a",
|
556
610
|
forwarding_rule=forwarding_rule.id,
|
557
611
|
intercept_deployment_group=deployment_group.id,
|
612
|
+
description="some description",
|
558
613
|
labels={
|
559
614
|
"foo": "bar",
|
560
615
|
})
|
@@ -599,6 +654,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
599
654
|
def _internal_init(__self__,
|
600
655
|
resource_name: str,
|
601
656
|
opts: Optional[pulumi.ResourceOptions] = None,
|
657
|
+
description: Optional[pulumi.Input[str]] = None,
|
602
658
|
forwarding_rule: Optional[pulumi.Input[str]] = None,
|
603
659
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
604
660
|
intercept_deployment_id: Optional[pulumi.Input[str]] = None,
|
@@ -614,6 +670,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
614
670
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
615
671
|
__props__ = InterceptDeploymentArgs.__new__(InterceptDeploymentArgs)
|
616
672
|
|
673
|
+
__props__.__dict__["description"] = description
|
617
674
|
if forwarding_rule is None and not opts.urn:
|
618
675
|
raise TypeError("Missing required property 'forwarding_rule'")
|
619
676
|
__props__.__dict__["forwarding_rule"] = forwarding_rule
|
@@ -648,6 +705,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
648
705
|
id: pulumi.Input[str],
|
649
706
|
opts: Optional[pulumi.ResourceOptions] = None,
|
650
707
|
create_time: Optional[pulumi.Input[str]] = None,
|
708
|
+
description: Optional[pulumi.Input[str]] = None,
|
651
709
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
652
710
|
forwarding_rule: Optional[pulumi.Input[str]] = None,
|
653
711
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
@@ -667,31 +725,39 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
667
725
|
:param str resource_name: The unique name of the resulting resource.
|
668
726
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
669
727
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
670
|
-
:param pulumi.Input[str] create_time:
|
728
|
+
:param pulumi.Input[str] create_time: The timestamp when the resource was created.
|
729
|
+
See https://google.aip.dev/148#timestamps.
|
730
|
+
:param pulumi.Input[str] description: User-provided description of the deployment.
|
731
|
+
Used as additional context for the deployment.
|
671
732
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
672
|
-
:param pulumi.Input[str] forwarding_rule:
|
673
|
-
|
674
|
-
|
675
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
676
|
-
`projects/
|
677
|
-
|
678
|
-
|
679
|
-
|
733
|
+
:param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the interceptors, for example:
|
734
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
735
|
+
See https://google.aip.dev/124.
|
736
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this deployment is a part of, for example:
|
737
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
738
|
+
See https://google.aip.dev/124.
|
739
|
+
:param pulumi.Input[str] intercept_deployment_id: The ID to use for the new deployment, which will become the final
|
740
|
+
component of the deployment's resource name.
|
680
741
|
|
681
742
|
|
682
743
|
- - -
|
683
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
744
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
684
745
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
685
746
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
686
|
-
:param pulumi.Input[str] location:
|
687
|
-
:param pulumi.Input[str] name:
|
747
|
+
:param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
748
|
+
:param pulumi.Input[str] name: The resource name of this deployment, for example:
|
749
|
+
`projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`.
|
750
|
+
See https://google.aip.dev/122 for more details.
|
688
751
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
689
752
|
If it is not provided, the provider project is used.
|
690
753
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
691
754
|
and default labels configured on the provider.
|
692
|
-
:param pulumi.Input[bool] reconciling:
|
693
|
-
|
694
|
-
|
755
|
+
:param pulumi.Input[bool] reconciling: The current state of the resource does not match the user's intended state,
|
756
|
+
and the system is working to reconcile them. This part of the normal
|
757
|
+
operation (e.g. linking a new association to the parent group).
|
758
|
+
See https://google.aip.dev/128.
|
759
|
+
:param pulumi.Input[str] state: The current state of the deployment.
|
760
|
+
See https://google.aip.dev/216.
|
695
761
|
Possible values:
|
696
762
|
STATE_UNSPECIFIED
|
697
763
|
ACTIVE
|
@@ -699,13 +765,15 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
699
765
|
DELETING
|
700
766
|
OUT_OF_SYNC
|
701
767
|
DELETE_FAILED
|
702
|
-
:param pulumi.Input[str] update_time:
|
768
|
+
:param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
|
769
|
+
See https://google.aip.dev/148#timestamps.
|
703
770
|
"""
|
704
771
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
705
772
|
|
706
773
|
__props__ = _InterceptDeploymentState.__new__(_InterceptDeploymentState)
|
707
774
|
|
708
775
|
__props__.__dict__["create_time"] = create_time
|
776
|
+
__props__.__dict__["description"] = description
|
709
777
|
__props__.__dict__["effective_labels"] = effective_labels
|
710
778
|
__props__.__dict__["forwarding_rule"] = forwarding_rule
|
711
779
|
__props__.__dict__["intercept_deployment_group"] = intercept_deployment_group
|
@@ -724,10 +792,20 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
724
792
|
@pulumi.getter(name="createTime")
|
725
793
|
def create_time(self) -> pulumi.Output[str]:
|
726
794
|
"""
|
727
|
-
|
795
|
+
The timestamp when the resource was created.
|
796
|
+
See https://google.aip.dev/148#timestamps.
|
728
797
|
"""
|
729
798
|
return pulumi.get(self, "create_time")
|
730
799
|
|
800
|
+
@property
|
801
|
+
@pulumi.getter
|
802
|
+
def description(self) -> pulumi.Output[Optional[str]]:
|
803
|
+
"""
|
804
|
+
User-provided description of the deployment.
|
805
|
+
Used as additional context for the deployment.
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "description")
|
808
|
+
|
731
809
|
@property
|
732
810
|
@pulumi.getter(name="effectiveLabels")
|
733
811
|
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -740,9 +818,9 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
740
818
|
@pulumi.getter(name="forwardingRule")
|
741
819
|
def forwarding_rule(self) -> pulumi.Output[str]:
|
742
820
|
"""
|
743
|
-
|
744
|
-
|
745
|
-
|
821
|
+
The regional forwarding rule that fronts the interceptors, for example:
|
822
|
+
`projects/123456789/regions/us-central1/forwardingRules/my-rule`.
|
823
|
+
See https://google.aip.dev/124.
|
746
824
|
"""
|
747
825
|
return pulumi.get(self, "forwarding_rule")
|
748
826
|
|
@@ -750,8 +828,9 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
750
828
|
@pulumi.getter(name="interceptDeploymentGroup")
|
751
829
|
def intercept_deployment_group(self) -> pulumi.Output[str]:
|
752
830
|
"""
|
753
|
-
|
754
|
-
`projects/
|
831
|
+
The deployment group that this deployment is a part of, for example:
|
832
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
833
|
+
See https://google.aip.dev/124.
|
755
834
|
"""
|
756
835
|
return pulumi.get(self, "intercept_deployment_group")
|
757
836
|
|
@@ -759,9 +838,8 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
759
838
|
@pulumi.getter(name="interceptDeploymentId")
|
760
839
|
def intercept_deployment_id(self) -> pulumi.Output[str]:
|
761
840
|
"""
|
762
|
-
|
763
|
-
|
764
|
-
intercept_deployment_id from the method_signature of Create RPC
|
841
|
+
The ID to use for the new deployment, which will become the final
|
842
|
+
component of the deployment's resource name.
|
765
843
|
|
766
844
|
|
767
845
|
- - -
|
@@ -772,7 +850,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
772
850
|
@pulumi.getter
|
773
851
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
774
852
|
"""
|
775
|
-
|
853
|
+
Labels are key/value pairs that help to organize and filter resources.
|
776
854
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
777
855
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
778
856
|
"""
|
@@ -782,7 +860,7 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
782
860
|
@pulumi.getter
|
783
861
|
def location(self) -> pulumi.Output[str]:
|
784
862
|
"""
|
785
|
-
|
863
|
+
The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
|
786
864
|
"""
|
787
865
|
return pulumi.get(self, "location")
|
788
866
|
|
@@ -790,7 +868,9 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
790
868
|
@pulumi.getter
|
791
869
|
def name(self) -> pulumi.Output[str]:
|
792
870
|
"""
|
793
|
-
|
871
|
+
The resource name of this deployment, for example:
|
872
|
+
`projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`.
|
873
|
+
See https://google.aip.dev/122 for more details.
|
794
874
|
"""
|
795
875
|
return pulumi.get(self, "name")
|
796
876
|
|
@@ -816,8 +896,10 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
816
896
|
@pulumi.getter
|
817
897
|
def reconciling(self) -> pulumi.Output[bool]:
|
818
898
|
"""
|
819
|
-
|
820
|
-
|
899
|
+
The current state of the resource does not match the user's intended state,
|
900
|
+
and the system is working to reconcile them. This part of the normal
|
901
|
+
operation (e.g. linking a new association to the parent group).
|
902
|
+
See https://google.aip.dev/128.
|
821
903
|
"""
|
822
904
|
return pulumi.get(self, "reconciling")
|
823
905
|
|
@@ -825,7 +907,8 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
825
907
|
@pulumi.getter
|
826
908
|
def state(self) -> pulumi.Output[str]:
|
827
909
|
"""
|
828
|
-
|
910
|
+
The current state of the deployment.
|
911
|
+
See https://google.aip.dev/216.
|
829
912
|
Possible values:
|
830
913
|
STATE_UNSPECIFIED
|
831
914
|
ACTIVE
|
@@ -840,7 +923,8 @@ class InterceptDeployment(pulumi.CustomResource):
|
|
840
923
|
@pulumi.getter(name="updateTime")
|
841
924
|
def update_time(self) -> pulumi.Output[str]:
|
842
925
|
"""
|
843
|
-
|
926
|
+
The timestamp when the resource was most recently updated.
|
927
|
+
See https://google.aip.dev/148#timestamps.
|
844
928
|
"""
|
845
929
|
return pulumi.get(self, "update_time")
|
846
930
|
|