pulumi-gcp 8.22.0a1741790977__py3-none-any.whl → 8.23.0a1741934088__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.23.0a1741934088.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/RECORD +75 -70
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/top_level.txt +0 -0
@@ -22,19 +22,23 @@ class InterceptEndpointGroupArgs:
|
|
22
22
|
intercept_deployment_group: pulumi.Input[str],
|
23
23
|
intercept_endpoint_group_id: pulumi.Input[str],
|
24
24
|
location: pulumi.Input[str],
|
25
|
+
description: Optional[pulumi.Input[str]] = None,
|
25
26
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
27
|
project: Optional[pulumi.Input[str]] = None):
|
27
28
|
"""
|
28
29
|
The set of arguments for constructing a InterceptEndpointGroup resource.
|
29
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
30
|
-
|
31
|
-
|
32
|
-
:param pulumi.Input[str] intercept_endpoint_group_id: ID
|
30
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this endpoint group is connected to, for example:
|
31
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
32
|
+
See https://google.aip.dev/124.
|
33
|
+
:param pulumi.Input[str] intercept_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
|
34
|
+
of the endpoint group's resource name.
|
33
35
|
|
34
36
|
|
35
37
|
- - -
|
36
|
-
:param pulumi.Input[str] location: The location of the
|
37
|
-
:param pulumi.Input[
|
38
|
+
:param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
|
39
|
+
:param pulumi.Input[str] description: User-provided description of the endpoint group.
|
40
|
+
Used as additional context for the endpoint group.
|
41
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
38
42
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
39
43
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
40
44
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -43,6 +47,8 @@ class InterceptEndpointGroupArgs:
|
|
43
47
|
pulumi.set(__self__, "intercept_deployment_group", intercept_deployment_group)
|
44
48
|
pulumi.set(__self__, "intercept_endpoint_group_id", intercept_endpoint_group_id)
|
45
49
|
pulumi.set(__self__, "location", location)
|
50
|
+
if description is not None:
|
51
|
+
pulumi.set(__self__, "description", description)
|
46
52
|
if labels is not None:
|
47
53
|
pulumi.set(__self__, "labels", labels)
|
48
54
|
if project is not None:
|
@@ -52,9 +58,9 @@ class InterceptEndpointGroupArgs:
|
|
52
58
|
@pulumi.getter(name="interceptDeploymentGroup")
|
53
59
|
def intercept_deployment_group(self) -> pulumi.Input[str]:
|
54
60
|
"""
|
55
|
-
|
56
|
-
|
57
|
-
|
61
|
+
The deployment group that this endpoint group is connected to, for example:
|
62
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
63
|
+
See https://google.aip.dev/124.
|
58
64
|
"""
|
59
65
|
return pulumi.get(self, "intercept_deployment_group")
|
60
66
|
|
@@ -66,7 +72,8 @@ class InterceptEndpointGroupArgs:
|
|
66
72
|
@pulumi.getter(name="interceptEndpointGroupId")
|
67
73
|
def intercept_endpoint_group_id(self) -> pulumi.Input[str]:
|
68
74
|
"""
|
69
|
-
ID
|
75
|
+
The ID to use for the endpoint group, which will become the final component
|
76
|
+
of the endpoint group's resource name.
|
70
77
|
|
71
78
|
|
72
79
|
- - -
|
@@ -81,7 +88,7 @@ class InterceptEndpointGroupArgs:
|
|
81
88
|
@pulumi.getter
|
82
89
|
def location(self) -> pulumi.Input[str]:
|
83
90
|
"""
|
84
|
-
The location of the
|
91
|
+
The cloud location of the endpoint group, currently restricted to `global`.
|
85
92
|
"""
|
86
93
|
return pulumi.get(self, "location")
|
87
94
|
|
@@ -89,11 +96,24 @@ class InterceptEndpointGroupArgs:
|
|
89
96
|
def location(self, value: pulumi.Input[str]):
|
90
97
|
pulumi.set(self, "location", value)
|
91
98
|
|
99
|
+
@property
|
100
|
+
@pulumi.getter
|
101
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
102
|
+
"""
|
103
|
+
User-provided description of the endpoint group.
|
104
|
+
Used as additional context for the endpoint group.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "description")
|
107
|
+
|
108
|
+
@description.setter
|
109
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
110
|
+
pulumi.set(self, "description", value)
|
111
|
+
|
92
112
|
@property
|
93
113
|
@pulumi.getter
|
94
114
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
95
115
|
"""
|
96
|
-
|
116
|
+
Labels are key/value pairs that help to organize and filter resources.
|
97
117
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
98
118
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
99
119
|
"""
|
@@ -121,6 +141,7 @@ class InterceptEndpointGroupArgs:
|
|
121
141
|
class _InterceptEndpointGroupState:
|
122
142
|
def __init__(__self__, *,
|
123
143
|
create_time: Optional[pulumi.Input[str]] = None,
|
144
|
+
description: Optional[pulumi.Input[str]] = None,
|
124
145
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
125
146
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
126
147
|
intercept_endpoint_group_id: Optional[pulumi.Input[str]] = None,
|
@@ -134,27 +155,36 @@ class _InterceptEndpointGroupState:
|
|
134
155
|
update_time: Optional[pulumi.Input[str]] = None):
|
135
156
|
"""
|
136
157
|
Input properties used for looking up and filtering InterceptEndpointGroup resources.
|
137
|
-
:param pulumi.Input[str] create_time:
|
158
|
+
:param pulumi.Input[str] create_time: The timestamp when the resource was created.
|
159
|
+
See https://google.aip.dev/148#timestamps.
|
160
|
+
:param pulumi.Input[str] description: User-provided description of the endpoint group.
|
161
|
+
Used as additional context for the endpoint group.
|
138
162
|
: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.
|
139
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
140
|
-
|
141
|
-
|
142
|
-
:param pulumi.Input[str] intercept_endpoint_group_id: ID
|
163
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this endpoint group is connected to, for example:
|
164
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
165
|
+
See https://google.aip.dev/124.
|
166
|
+
:param pulumi.Input[str] intercept_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
|
167
|
+
of the endpoint group's resource name.
|
143
168
|
|
144
169
|
|
145
170
|
- - -
|
146
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
171
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
147
172
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
148
173
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
149
|
-
:param pulumi.Input[str] location: The location of the
|
150
|
-
:param pulumi.Input[str] name:
|
174
|
+
:param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
|
175
|
+
:param pulumi.Input[str] name: The resource name of this endpoint group, for example:
|
176
|
+
`projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
|
177
|
+
See https://google.aip.dev/122 for more details.
|
151
178
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
152
179
|
If it is not provided, the provider project is used.
|
153
180
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
154
181
|
and default labels configured on the provider.
|
155
|
-
:param pulumi.Input[bool] reconciling:
|
156
|
-
|
157
|
-
|
182
|
+
:param pulumi.Input[bool] reconciling: The current state of the resource does not match the user's intended state,
|
183
|
+
and the system is working to reconcile them. This is part of the normal
|
184
|
+
operation (e.g. adding a new association to the group).
|
185
|
+
See https://google.aip.dev/128.
|
186
|
+
:param pulumi.Input[str] state: The current state of the endpoint group.
|
187
|
+
See https://google.aip.dev/216.
|
158
188
|
Possible values:
|
159
189
|
STATE_UNSPECIFIED
|
160
190
|
ACTIVE
|
@@ -162,10 +192,14 @@ class _InterceptEndpointGroupState:
|
|
162
192
|
CREATING
|
163
193
|
DELETING
|
164
194
|
OUT_OF_SYNC
|
165
|
-
|
195
|
+
DELETE_FAILED
|
196
|
+
:param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
|
197
|
+
See https://google.aip.dev/148#timestamps.
|
166
198
|
"""
|
167
199
|
if create_time is not None:
|
168
200
|
pulumi.set(__self__, "create_time", create_time)
|
201
|
+
if description is not None:
|
202
|
+
pulumi.set(__self__, "description", description)
|
169
203
|
if effective_labels is not None:
|
170
204
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
171
205
|
if intercept_deployment_group is not None:
|
@@ -193,7 +227,8 @@ class _InterceptEndpointGroupState:
|
|
193
227
|
@pulumi.getter(name="createTime")
|
194
228
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
195
229
|
"""
|
196
|
-
|
230
|
+
The timestamp when the resource was created.
|
231
|
+
See https://google.aip.dev/148#timestamps.
|
197
232
|
"""
|
198
233
|
return pulumi.get(self, "create_time")
|
199
234
|
|
@@ -201,6 +236,19 @@ class _InterceptEndpointGroupState:
|
|
201
236
|
def create_time(self, value: Optional[pulumi.Input[str]]):
|
202
237
|
pulumi.set(self, "create_time", value)
|
203
238
|
|
239
|
+
@property
|
240
|
+
@pulumi.getter
|
241
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
242
|
+
"""
|
243
|
+
User-provided description of the endpoint group.
|
244
|
+
Used as additional context for the endpoint group.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "description")
|
247
|
+
|
248
|
+
@description.setter
|
249
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
250
|
+
pulumi.set(self, "description", value)
|
251
|
+
|
204
252
|
@property
|
205
253
|
@pulumi.getter(name="effectiveLabels")
|
206
254
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -217,9 +265,9 @@ class _InterceptEndpointGroupState:
|
|
217
265
|
@pulumi.getter(name="interceptDeploymentGroup")
|
218
266
|
def intercept_deployment_group(self) -> Optional[pulumi.Input[str]]:
|
219
267
|
"""
|
220
|
-
|
221
|
-
|
222
|
-
|
268
|
+
The deployment group that this endpoint group is connected to, for example:
|
269
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
270
|
+
See https://google.aip.dev/124.
|
223
271
|
"""
|
224
272
|
return pulumi.get(self, "intercept_deployment_group")
|
225
273
|
|
@@ -231,7 +279,8 @@ class _InterceptEndpointGroupState:
|
|
231
279
|
@pulumi.getter(name="interceptEndpointGroupId")
|
232
280
|
def intercept_endpoint_group_id(self) -> Optional[pulumi.Input[str]]:
|
233
281
|
"""
|
234
|
-
ID
|
282
|
+
The ID to use for the endpoint group, which will become the final component
|
283
|
+
of the endpoint group's resource name.
|
235
284
|
|
236
285
|
|
237
286
|
- - -
|
@@ -246,7 +295,7 @@ class _InterceptEndpointGroupState:
|
|
246
295
|
@pulumi.getter
|
247
296
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
248
297
|
"""
|
249
|
-
|
298
|
+
Labels are key/value pairs that help to organize and filter resources.
|
250
299
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
251
300
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
252
301
|
"""
|
@@ -260,7 +309,7 @@ class _InterceptEndpointGroupState:
|
|
260
309
|
@pulumi.getter
|
261
310
|
def location(self) -> Optional[pulumi.Input[str]]:
|
262
311
|
"""
|
263
|
-
The location of the
|
312
|
+
The cloud location of the endpoint group, currently restricted to `global`.
|
264
313
|
"""
|
265
314
|
return pulumi.get(self, "location")
|
266
315
|
|
@@ -272,7 +321,9 @@ class _InterceptEndpointGroupState:
|
|
272
321
|
@pulumi.getter
|
273
322
|
def name(self) -> Optional[pulumi.Input[str]]:
|
274
323
|
"""
|
275
|
-
|
324
|
+
The resource name of this endpoint group, for example:
|
325
|
+
`projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
|
326
|
+
See https://google.aip.dev/122 for more details.
|
276
327
|
"""
|
277
328
|
return pulumi.get(self, "name")
|
278
329
|
|
@@ -310,8 +361,10 @@ class _InterceptEndpointGroupState:
|
|
310
361
|
@pulumi.getter
|
311
362
|
def reconciling(self) -> Optional[pulumi.Input[bool]]:
|
312
363
|
"""
|
313
|
-
|
314
|
-
|
364
|
+
The current state of the resource does not match the user's intended state,
|
365
|
+
and the system is working to reconcile them. This is part of the normal
|
366
|
+
operation (e.g. adding a new association to the group).
|
367
|
+
See https://google.aip.dev/128.
|
315
368
|
"""
|
316
369
|
return pulumi.get(self, "reconciling")
|
317
370
|
|
@@ -323,7 +376,8 @@ class _InterceptEndpointGroupState:
|
|
323
376
|
@pulumi.getter
|
324
377
|
def state(self) -> Optional[pulumi.Input[str]]:
|
325
378
|
"""
|
326
|
-
|
379
|
+
The current state of the endpoint group.
|
380
|
+
See https://google.aip.dev/216.
|
327
381
|
Possible values:
|
328
382
|
STATE_UNSPECIFIED
|
329
383
|
ACTIVE
|
@@ -331,6 +385,7 @@ class _InterceptEndpointGroupState:
|
|
331
385
|
CREATING
|
332
386
|
DELETING
|
333
387
|
OUT_OF_SYNC
|
388
|
+
DELETE_FAILED
|
334
389
|
"""
|
335
390
|
return pulumi.get(self, "state")
|
336
391
|
|
@@ -342,7 +397,8 @@ class _InterceptEndpointGroupState:
|
|
342
397
|
@pulumi.getter(name="updateTime")
|
343
398
|
def update_time(self) -> Optional[pulumi.Input[str]]:
|
344
399
|
"""
|
345
|
-
|
400
|
+
The timestamp when the resource was most recently updated.
|
401
|
+
See https://google.aip.dev/148#timestamps.
|
346
402
|
"""
|
347
403
|
return pulumi.get(self, "update_time")
|
348
404
|
|
@@ -356,6 +412,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
356
412
|
def __init__(__self__,
|
357
413
|
resource_name: str,
|
358
414
|
opts: Optional[pulumi.ResourceOptions] = None,
|
415
|
+
description: Optional[pulumi.Input[str]] = None,
|
359
416
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
360
417
|
intercept_endpoint_group_id: Optional[pulumi.Input[str]] = None,
|
361
418
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -382,6 +439,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
382
439
|
intercept_endpoint_group_id="example-eg",
|
383
440
|
location="global",
|
384
441
|
intercept_deployment_group=deployment_group.id,
|
442
|
+
description="some description",
|
385
443
|
labels={
|
386
444
|
"foo": "bar",
|
387
445
|
})
|
@@ -413,17 +471,20 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
413
471
|
|
414
472
|
:param str resource_name: The name of the resource.
|
415
473
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
416
|
-
:param pulumi.Input[str]
|
417
|
-
|
418
|
-
|
419
|
-
|
474
|
+
:param pulumi.Input[str] description: User-provided description of the endpoint group.
|
475
|
+
Used as additional context for the endpoint group.
|
476
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this endpoint group is connected to, for example:
|
477
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
478
|
+
See https://google.aip.dev/124.
|
479
|
+
:param pulumi.Input[str] intercept_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
|
480
|
+
of the endpoint group's resource name.
|
420
481
|
|
421
482
|
|
422
483
|
- - -
|
423
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
484
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
424
485
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
425
486
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
426
|
-
:param pulumi.Input[str] location: The location of the
|
487
|
+
:param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
|
427
488
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
428
489
|
If it is not provided, the provider project is used.
|
429
490
|
"""
|
@@ -453,6 +514,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
453
514
|
intercept_endpoint_group_id="example-eg",
|
454
515
|
location="global",
|
455
516
|
intercept_deployment_group=deployment_group.id,
|
517
|
+
description="some description",
|
456
518
|
labels={
|
457
519
|
"foo": "bar",
|
458
520
|
})
|
@@ -497,6 +559,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
497
559
|
def _internal_init(__self__,
|
498
560
|
resource_name: str,
|
499
561
|
opts: Optional[pulumi.ResourceOptions] = None,
|
562
|
+
description: Optional[pulumi.Input[str]] = None,
|
500
563
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
501
564
|
intercept_endpoint_group_id: Optional[pulumi.Input[str]] = None,
|
502
565
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -511,6 +574,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
511
574
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
512
575
|
__props__ = InterceptEndpointGroupArgs.__new__(InterceptEndpointGroupArgs)
|
513
576
|
|
577
|
+
__props__.__dict__["description"] = description
|
514
578
|
if intercept_deployment_group is None and not opts.urn:
|
515
579
|
raise TypeError("Missing required property 'intercept_deployment_group'")
|
516
580
|
__props__.__dict__["intercept_deployment_group"] = intercept_deployment_group
|
@@ -542,6 +606,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
542
606
|
id: pulumi.Input[str],
|
543
607
|
opts: Optional[pulumi.ResourceOptions] = None,
|
544
608
|
create_time: Optional[pulumi.Input[str]] = None,
|
609
|
+
description: Optional[pulumi.Input[str]] = None,
|
545
610
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
546
611
|
intercept_deployment_group: Optional[pulumi.Input[str]] = None,
|
547
612
|
intercept_endpoint_group_id: Optional[pulumi.Input[str]] = None,
|
@@ -560,27 +625,36 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
560
625
|
:param str resource_name: The unique name of the resulting resource.
|
561
626
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
562
627
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
563
|
-
:param pulumi.Input[str] create_time:
|
628
|
+
:param pulumi.Input[str] create_time: The timestamp when the resource was created.
|
629
|
+
See https://google.aip.dev/148#timestamps.
|
630
|
+
:param pulumi.Input[str] description: User-provided description of the endpoint group.
|
631
|
+
Used as additional context for the endpoint group.
|
564
632
|
: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.
|
565
|
-
:param pulumi.Input[str] intercept_deployment_group:
|
566
|
-
|
567
|
-
|
568
|
-
:param pulumi.Input[str] intercept_endpoint_group_id: ID
|
633
|
+
:param pulumi.Input[str] intercept_deployment_group: The deployment group that this endpoint group is connected to, for example:
|
634
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
635
|
+
See https://google.aip.dev/124.
|
636
|
+
:param pulumi.Input[str] intercept_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
|
637
|
+
of the endpoint group's resource name.
|
569
638
|
|
570
639
|
|
571
640
|
- - -
|
572
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels:
|
641
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
|
573
642
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
574
643
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
575
|
-
:param pulumi.Input[str] location: The location of the
|
576
|
-
:param pulumi.Input[str] name:
|
644
|
+
:param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
|
645
|
+
:param pulumi.Input[str] name: The resource name of this endpoint group, for example:
|
646
|
+
`projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
|
647
|
+
See https://google.aip.dev/122 for more details.
|
577
648
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
578
649
|
If it is not provided, the provider project is used.
|
579
650
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
580
651
|
and default labels configured on the provider.
|
581
|
-
:param pulumi.Input[bool] reconciling:
|
582
|
-
|
583
|
-
|
652
|
+
:param pulumi.Input[bool] reconciling: The current state of the resource does not match the user's intended state,
|
653
|
+
and the system is working to reconcile them. This is part of the normal
|
654
|
+
operation (e.g. adding a new association to the group).
|
655
|
+
See https://google.aip.dev/128.
|
656
|
+
:param pulumi.Input[str] state: The current state of the endpoint group.
|
657
|
+
See https://google.aip.dev/216.
|
584
658
|
Possible values:
|
585
659
|
STATE_UNSPECIFIED
|
586
660
|
ACTIVE
|
@@ -588,13 +662,16 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
588
662
|
CREATING
|
589
663
|
DELETING
|
590
664
|
OUT_OF_SYNC
|
591
|
-
|
665
|
+
DELETE_FAILED
|
666
|
+
:param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
|
667
|
+
See https://google.aip.dev/148#timestamps.
|
592
668
|
"""
|
593
669
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
594
670
|
|
595
671
|
__props__ = _InterceptEndpointGroupState.__new__(_InterceptEndpointGroupState)
|
596
672
|
|
597
673
|
__props__.__dict__["create_time"] = create_time
|
674
|
+
__props__.__dict__["description"] = description
|
598
675
|
__props__.__dict__["effective_labels"] = effective_labels
|
599
676
|
__props__.__dict__["intercept_deployment_group"] = intercept_deployment_group
|
600
677
|
__props__.__dict__["intercept_endpoint_group_id"] = intercept_endpoint_group_id
|
@@ -612,10 +689,20 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
612
689
|
@pulumi.getter(name="createTime")
|
613
690
|
def create_time(self) -> pulumi.Output[str]:
|
614
691
|
"""
|
615
|
-
|
692
|
+
The timestamp when the resource was created.
|
693
|
+
See https://google.aip.dev/148#timestamps.
|
616
694
|
"""
|
617
695
|
return pulumi.get(self, "create_time")
|
618
696
|
|
697
|
+
@property
|
698
|
+
@pulumi.getter
|
699
|
+
def description(self) -> pulumi.Output[Optional[str]]:
|
700
|
+
"""
|
701
|
+
User-provided description of the endpoint group.
|
702
|
+
Used as additional context for the endpoint group.
|
703
|
+
"""
|
704
|
+
return pulumi.get(self, "description")
|
705
|
+
|
619
706
|
@property
|
620
707
|
@pulumi.getter(name="effectiveLabels")
|
621
708
|
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -628,9 +715,9 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
628
715
|
@pulumi.getter(name="interceptDeploymentGroup")
|
629
716
|
def intercept_deployment_group(self) -> pulumi.Output[str]:
|
630
717
|
"""
|
631
|
-
|
632
|
-
|
633
|
-
|
718
|
+
The deployment group that this endpoint group is connected to, for example:
|
719
|
+
`projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
|
720
|
+
See https://google.aip.dev/124.
|
634
721
|
"""
|
635
722
|
return pulumi.get(self, "intercept_deployment_group")
|
636
723
|
|
@@ -638,7 +725,8 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
638
725
|
@pulumi.getter(name="interceptEndpointGroupId")
|
639
726
|
def intercept_endpoint_group_id(self) -> pulumi.Output[str]:
|
640
727
|
"""
|
641
|
-
ID
|
728
|
+
The ID to use for the endpoint group, which will become the final component
|
729
|
+
of the endpoint group's resource name.
|
642
730
|
|
643
731
|
|
644
732
|
- - -
|
@@ -649,7 +737,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
649
737
|
@pulumi.getter
|
650
738
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
651
739
|
"""
|
652
|
-
|
740
|
+
Labels are key/value pairs that help to organize and filter resources.
|
653
741
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
654
742
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
655
743
|
"""
|
@@ -659,7 +747,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
659
747
|
@pulumi.getter
|
660
748
|
def location(self) -> pulumi.Output[str]:
|
661
749
|
"""
|
662
|
-
The location of the
|
750
|
+
The cloud location of the endpoint group, currently restricted to `global`.
|
663
751
|
"""
|
664
752
|
return pulumi.get(self, "location")
|
665
753
|
|
@@ -667,7 +755,9 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
667
755
|
@pulumi.getter
|
668
756
|
def name(self) -> pulumi.Output[str]:
|
669
757
|
"""
|
670
|
-
|
758
|
+
The resource name of this endpoint group, for example:
|
759
|
+
`projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
|
760
|
+
See https://google.aip.dev/122 for more details.
|
671
761
|
"""
|
672
762
|
return pulumi.get(self, "name")
|
673
763
|
|
@@ -693,8 +783,10 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
693
783
|
@pulumi.getter
|
694
784
|
def reconciling(self) -> pulumi.Output[bool]:
|
695
785
|
"""
|
696
|
-
|
697
|
-
|
786
|
+
The current state of the resource does not match the user's intended state,
|
787
|
+
and the system is working to reconcile them. This is part of the normal
|
788
|
+
operation (e.g. adding a new association to the group).
|
789
|
+
See https://google.aip.dev/128.
|
698
790
|
"""
|
699
791
|
return pulumi.get(self, "reconciling")
|
700
792
|
|
@@ -702,7 +794,8 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
702
794
|
@pulumi.getter
|
703
795
|
def state(self) -> pulumi.Output[str]:
|
704
796
|
"""
|
705
|
-
|
797
|
+
The current state of the endpoint group.
|
798
|
+
See https://google.aip.dev/216.
|
706
799
|
Possible values:
|
707
800
|
STATE_UNSPECIFIED
|
708
801
|
ACTIVE
|
@@ -710,6 +803,7 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
710
803
|
CREATING
|
711
804
|
DELETING
|
712
805
|
OUT_OF_SYNC
|
806
|
+
DELETE_FAILED
|
713
807
|
"""
|
714
808
|
return pulumi.get(self, "state")
|
715
809
|
|
@@ -717,7 +811,8 @@ class InterceptEndpointGroup(pulumi.CustomResource):
|
|
717
811
|
@pulumi.getter(name="updateTime")
|
718
812
|
def update_time(self) -> pulumi.Output[str]:
|
719
813
|
"""
|
720
|
-
|
814
|
+
The timestamp when the resource was most recently updated.
|
815
|
+
See https://google.aip.dev/148#timestamps.
|
721
816
|
"""
|
722
817
|
return pulumi.get(self, "update_time")
|
723
818
|
|