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.
Files changed (75) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/alloydb/_inputs.py +66 -0
  3. pulumi_gcp/alloydb/outputs.py +95 -0
  4. pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
  5. pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
  6. pulumi_gcp/certificatemanager/certificate.py +53 -7
  7. pulumi_gcp/certificatemanager/outputs.py +8 -2
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +600 -17
  10. pulumi_gcp/compute/backend_service.py +195 -7
  11. pulumi_gcp/compute/disk.py +108 -0
  12. pulumi_gcp/compute/firewall_policy_association.py +28 -2
  13. pulumi_gcp/compute/get_backend_service.py +12 -1
  14. pulumi_gcp/compute/get_disk.py +23 -1
  15. pulumi_gcp/compute/get_region_disk.py +23 -1
  16. pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
  17. pulumi_gcp/compute/outputs.py +623 -23
  18. pulumi_gcp/compute/region_backend_service.py +193 -7
  19. pulumi_gcp/compute/region_disk.py +114 -0
  20. pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
  21. pulumi_gcp/compute/subnetwork.py +147 -0
  22. pulumi_gcp/container/_inputs.py +3 -3
  23. pulumi_gcp/container/outputs.py +4 -4
  24. pulumi_gcp/datastream/_inputs.py +273 -0
  25. pulumi_gcp/datastream/connection_profile.py +54 -2
  26. pulumi_gcp/datastream/outputs.py +224 -0
  27. pulumi_gcp/eventarc/__init__.py +1 -0
  28. pulumi_gcp/eventarc/_inputs.py +40 -0
  29. pulumi_gcp/eventarc/channel.py +85 -93
  30. pulumi_gcp/eventarc/google_api_source.py +997 -0
  31. pulumi_gcp/eventarc/outputs.py +41 -0
  32. pulumi_gcp/firebase/data_connect_service.py +40 -2
  33. pulumi_gcp/iam/__init__.py +2 -0
  34. pulumi_gcp/iam/_inputs.py +51 -18
  35. pulumi_gcp/iam/folders_policy_binding.py +10 -26
  36. pulumi_gcp/iam/oauth_client.py +979 -0
  37. pulumi_gcp/iam/oauth_client_credential.py +641 -0
  38. pulumi_gcp/iam/organizations_policy_binding.py +8 -24
  39. pulumi_gcp/iam/outputs.py +34 -12
  40. pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
  41. pulumi_gcp/iam/projects_policy_binding.py +8 -24
  42. pulumi_gcp/kms/crypto_key_version.py +14 -7
  43. pulumi_gcp/monitoring/_inputs.py +15 -18
  44. pulumi_gcp/monitoring/alert_policy.py +46 -0
  45. pulumi_gcp/monitoring/outputs.py +10 -12
  46. pulumi_gcp/networksecurity/__init__.py +1 -0
  47. pulumi_gcp/networksecurity/_inputs.py +30 -18
  48. pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
  49. pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
  50. pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
  51. pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
  52. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
  53. pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
  54. pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
  55. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
  56. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
  57. pulumi_gcp/networksecurity/outputs.py +20 -12
  58. pulumi_gcp/networkservices/endpoint_policy.py +12 -0
  59. pulumi_gcp/networkservices/grpc_route.py +12 -0
  60. pulumi_gcp/networkservices/http_route.py +16 -0
  61. pulumi_gcp/networkservices/mesh.py +16 -0
  62. pulumi_gcp/networkservices/service_binding.py +14 -0
  63. pulumi_gcp/networkservices/tcp_route.py +16 -0
  64. pulumi_gcp/networkservices/tls_route.py +12 -0
  65. pulumi_gcp/pulumi-plugin.json +1 -1
  66. pulumi_gcp/tpu/_inputs.py +21 -1
  67. pulumi_gcp/tpu/outputs.py +13 -1
  68. pulumi_gcp/tpu/v2_vm.py +2 -0
  69. pulumi_gcp/vmwareengine/_inputs.py +6 -0
  70. pulumi_gcp/vmwareengine/outputs.py +8 -0
  71. pulumi_gcp/workstations/workstation_cluster.py +137 -1
  72. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/METADATA +1 -1
  73. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/RECORD +75 -70
  74. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/WHEEL +0 -0
  75. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1741934088.dist-info}/top_level.txt +0 -0
@@ -22,21 +22,23 @@ class MirroringEndpointGroupArgs:
22
22
  location: pulumi.Input[str],
23
23
  mirroring_deployment_group: pulumi.Input[str],
24
24
  mirroring_endpoint_group_id: 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 MirroringEndpointGroup resource.
29
- :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
30
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
31
- is:
32
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
33
- :param pulumi.Input[str] mirroring_endpoint_group_id: Required. Id of the requesting object
34
- If auto-generating Id server-side, remove this field and
35
- mirroring_endpoint_group_id from the method_signature of Create RPC
30
+ :param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
31
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this DIRECT endpoint group is connected to, for example:
32
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
33
+ See https://google.aip.dev/124.
34
+ :param pulumi.Input[str] mirroring_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
35
+ of the endpoint group's resource name.
36
36
 
37
37
 
38
38
  - - -
39
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
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.
40
42
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
41
43
  Please refer to the field `effective_labels` for all of the labels present on the resource.
42
44
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -45,6 +47,8 @@ class MirroringEndpointGroupArgs:
45
47
  pulumi.set(__self__, "location", location)
46
48
  pulumi.set(__self__, "mirroring_deployment_group", mirroring_deployment_group)
47
49
  pulumi.set(__self__, "mirroring_endpoint_group_id", mirroring_endpoint_group_id)
50
+ if description is not None:
51
+ pulumi.set(__self__, "description", description)
48
52
  if labels is not None:
49
53
  pulumi.set(__self__, "labels", labels)
50
54
  if project is not None:
@@ -54,7 +58,7 @@ class MirroringEndpointGroupArgs:
54
58
  @pulumi.getter
55
59
  def location(self) -> pulumi.Input[str]:
56
60
  """
57
- Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
61
+ The cloud location of the endpoint group, currently restricted to `global`.
58
62
  """
59
63
  return pulumi.get(self, "location")
60
64
 
@@ -66,9 +70,9 @@ class MirroringEndpointGroupArgs:
66
70
  @pulumi.getter(name="mirroringDeploymentGroup")
67
71
  def mirroring_deployment_group(self) -> pulumi.Input[str]:
68
72
  """
69
- Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
70
- is:
71
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
73
+ The deployment group that this DIRECT endpoint group is connected to, for example:
74
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
75
+ See https://google.aip.dev/124.
72
76
  """
73
77
  return pulumi.get(self, "mirroring_deployment_group")
74
78
 
@@ -80,9 +84,8 @@ class MirroringEndpointGroupArgs:
80
84
  @pulumi.getter(name="mirroringEndpointGroupId")
81
85
  def mirroring_endpoint_group_id(self) -> pulumi.Input[str]:
82
86
  """
83
- Required. Id of the requesting object
84
- If auto-generating Id server-side, remove this field and
85
- mirroring_endpoint_group_id from the method_signature of Create RPC
87
+ The ID to use for the endpoint group, which will become the final component
88
+ of the endpoint group's resource name.
86
89
 
87
90
 
88
91
  - - -
@@ -93,11 +96,24 @@ class MirroringEndpointGroupArgs:
93
96
  def mirroring_endpoint_group_id(self, value: pulumi.Input[str]):
94
97
  pulumi.set(self, "mirroring_endpoint_group_id", value)
95
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
+
96
112
  @property
97
113
  @pulumi.getter
98
114
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
99
115
  """
100
- Optional. Labels as key value pairs
116
+ Labels are key/value pairs that help to organize and filter resources.
101
117
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
102
118
  Please refer to the field `effective_labels` for all of the labels present on the resource.
103
119
  """
@@ -125,6 +141,7 @@ class MirroringEndpointGroupArgs:
125
141
  class _MirroringEndpointGroupState:
126
142
  def __init__(__self__, *,
127
143
  create_time: Optional[pulumi.Input[str]] = None,
144
+ description: Optional[pulumi.Input[str]] = None,
128
145
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
129
146
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
130
147
  location: Optional[pulumi.Input[str]] = None,
@@ -138,29 +155,36 @@ class _MirroringEndpointGroupState:
138
155
  update_time: Optional[pulumi.Input[str]] = None):
139
156
  """
140
157
  Input properties used for looking up and filtering MirroringEndpointGroup resources.
141
- :param pulumi.Input[str] create_time: Output only. [Output only] Create time stamp
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.
142
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.
143
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
163
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
144
164
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
145
165
  Please refer to the field `effective_labels` for all of the labels present on the resource.
146
- :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
147
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
148
- is:
149
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
150
- :param pulumi.Input[str] mirroring_endpoint_group_id: Required. Id of the requesting object
151
- If auto-generating Id server-side, remove this field and
152
- mirroring_endpoint_group_id from the method_signature of Create RPC
166
+ :param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
167
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this DIRECT endpoint group is connected to, for example:
168
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
169
+ See https://google.aip.dev/124.
170
+ :param pulumi.Input[str] mirroring_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
171
+ of the endpoint group's resource name.
153
172
 
154
173
 
155
174
  - - -
156
- :param pulumi.Input[str] name: Immutable. Identifier. The name of the MirroringEndpointGroup.
175
+ :param pulumi.Input[str] name: The resource name of this endpoint group, for example:
176
+ `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
177
+ See https://google.aip.dev/122 for more details.
157
178
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
158
179
  If it is not provided, the provider project is used.
159
180
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
160
181
  and default labels configured on the provider.
161
- :param pulumi.Input[bool] reconciling: Output only. Whether reconciling is in progress, recommended per
162
- https://google.aip.dev/128.
163
- :param pulumi.Input[str] state: Output only. Current state of the endpoint group.
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.
164
188
  Possible values:
165
189
  STATE_UNSPECIFIED
166
190
  ACTIVE
@@ -168,10 +192,14 @@ class _MirroringEndpointGroupState:
168
192
  CREATING
169
193
  DELETING
170
194
  OUT_OF_SYNC
171
- :param pulumi.Input[str] update_time: Output only. [Output only] Update time stamp
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.
172
198
  """
173
199
  if create_time is not None:
174
200
  pulumi.set(__self__, "create_time", create_time)
201
+ if description is not None:
202
+ pulumi.set(__self__, "description", description)
175
203
  if effective_labels is not None:
176
204
  pulumi.set(__self__, "effective_labels", effective_labels)
177
205
  if labels is not None:
@@ -199,7 +227,8 @@ class _MirroringEndpointGroupState:
199
227
  @pulumi.getter(name="createTime")
200
228
  def create_time(self) -> Optional[pulumi.Input[str]]:
201
229
  """
202
- Output only. [Output only] Create time stamp
230
+ The timestamp when the resource was created.
231
+ See https://google.aip.dev/148#timestamps.
203
232
  """
204
233
  return pulumi.get(self, "create_time")
205
234
 
@@ -207,6 +236,19 @@ class _MirroringEndpointGroupState:
207
236
  def create_time(self, value: Optional[pulumi.Input[str]]):
208
237
  pulumi.set(self, "create_time", value)
209
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
+
210
252
  @property
211
253
  @pulumi.getter(name="effectiveLabels")
212
254
  def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -223,7 +265,7 @@ class _MirroringEndpointGroupState:
223
265
  @pulumi.getter
224
266
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
225
267
  """
226
- Optional. Labels as key value pairs
268
+ Labels are key/value pairs that help to organize and filter resources.
227
269
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
228
270
  Please refer to the field `effective_labels` for all of the labels present on the resource.
229
271
  """
@@ -237,7 +279,7 @@ class _MirroringEndpointGroupState:
237
279
  @pulumi.getter
238
280
  def location(self) -> Optional[pulumi.Input[str]]:
239
281
  """
240
- Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
282
+ The cloud location of the endpoint group, currently restricted to `global`.
241
283
  """
242
284
  return pulumi.get(self, "location")
243
285
 
@@ -249,9 +291,9 @@ class _MirroringEndpointGroupState:
249
291
  @pulumi.getter(name="mirroringDeploymentGroup")
250
292
  def mirroring_deployment_group(self) -> Optional[pulumi.Input[str]]:
251
293
  """
252
- Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
253
- is:
254
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
294
+ The deployment group that this DIRECT endpoint group is connected to, for example:
295
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
296
+ See https://google.aip.dev/124.
255
297
  """
256
298
  return pulumi.get(self, "mirroring_deployment_group")
257
299
 
@@ -263,9 +305,8 @@ class _MirroringEndpointGroupState:
263
305
  @pulumi.getter(name="mirroringEndpointGroupId")
264
306
  def mirroring_endpoint_group_id(self) -> Optional[pulumi.Input[str]]:
265
307
  """
266
- Required. Id of the requesting object
267
- If auto-generating Id server-side, remove this field and
268
- mirroring_endpoint_group_id from the method_signature of Create RPC
308
+ The ID to use for the endpoint group, which will become the final component
309
+ of the endpoint group's resource name.
269
310
 
270
311
 
271
312
  - - -
@@ -280,7 +321,9 @@ class _MirroringEndpointGroupState:
280
321
  @pulumi.getter
281
322
  def name(self) -> Optional[pulumi.Input[str]]:
282
323
  """
283
- Immutable. Identifier. The name of the MirroringEndpointGroup.
324
+ The resource name of this endpoint group, for example:
325
+ `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
326
+ See https://google.aip.dev/122 for more details.
284
327
  """
285
328
  return pulumi.get(self, "name")
286
329
 
@@ -318,8 +361,10 @@ class _MirroringEndpointGroupState:
318
361
  @pulumi.getter
319
362
  def reconciling(self) -> Optional[pulumi.Input[bool]]:
320
363
  """
321
- Output only. Whether reconciling is in progress, recommended per
322
- https://google.aip.dev/128.
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.
323
368
  """
324
369
  return pulumi.get(self, "reconciling")
325
370
 
@@ -331,7 +376,8 @@ class _MirroringEndpointGroupState:
331
376
  @pulumi.getter
332
377
  def state(self) -> Optional[pulumi.Input[str]]:
333
378
  """
334
- Output only. Current state of the endpoint group.
379
+ The current state of the endpoint group.
380
+ See https://google.aip.dev/216.
335
381
  Possible values:
336
382
  STATE_UNSPECIFIED
337
383
  ACTIVE
@@ -339,6 +385,7 @@ class _MirroringEndpointGroupState:
339
385
  CREATING
340
386
  DELETING
341
387
  OUT_OF_SYNC
388
+ DELETE_FAILED
342
389
  """
343
390
  return pulumi.get(self, "state")
344
391
 
@@ -350,7 +397,8 @@ class _MirroringEndpointGroupState:
350
397
  @pulumi.getter(name="updateTime")
351
398
  def update_time(self) -> Optional[pulumi.Input[str]]:
352
399
  """
353
- Output only. [Output only] Update time stamp
400
+ The timestamp when the resource was most recently updated.
401
+ See https://google.aip.dev/148#timestamps.
354
402
  """
355
403
  return pulumi.get(self, "update_time")
356
404
 
@@ -364,6 +412,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
364
412
  def __init__(__self__,
365
413
  resource_name: str,
366
414
  opts: Optional[pulumi.ResourceOptions] = None,
415
+ description: Optional[pulumi.Input[str]] = None,
367
416
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
368
417
  location: Optional[pulumi.Input[str]] = None,
369
418
  mirroring_deployment_group: Optional[pulumi.Input[str]] = None,
@@ -390,6 +439,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
390
439
  mirroring_endpoint_group_id="example-eg",
391
440
  location="global",
392
441
  mirroring_deployment_group=deployment_group.id,
442
+ description="some description",
393
443
  labels={
394
444
  "foo": "bar",
395
445
  })
@@ -421,16 +471,17 @@ class MirroringEndpointGroup(pulumi.CustomResource):
421
471
 
422
472
  :param str resource_name: The name of the resource.
423
473
  :param pulumi.ResourceOptions opts: Options for the resource.
424
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
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[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
425
477
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
426
478
  Please refer to the field `effective_labels` for all of the labels present on the resource.
427
- :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
428
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
429
- is:
430
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
431
- :param pulumi.Input[str] mirroring_endpoint_group_id: Required. Id of the requesting object
432
- If auto-generating Id server-side, remove this field and
433
- mirroring_endpoint_group_id from the method_signature of Create RPC
479
+ :param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
480
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this DIRECT endpoint group is connected to, for example:
481
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
482
+ See https://google.aip.dev/124.
483
+ :param pulumi.Input[str] mirroring_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
484
+ of the endpoint group's resource name.
434
485
 
435
486
 
436
487
  - - -
@@ -463,6 +514,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
463
514
  mirroring_endpoint_group_id="example-eg",
464
515
  location="global",
465
516
  mirroring_deployment_group=deployment_group.id,
517
+ description="some description",
466
518
  labels={
467
519
  "foo": "bar",
468
520
  })
@@ -507,6 +559,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
507
559
  def _internal_init(__self__,
508
560
  resource_name: str,
509
561
  opts: Optional[pulumi.ResourceOptions] = None,
562
+ description: Optional[pulumi.Input[str]] = None,
510
563
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
511
564
  location: Optional[pulumi.Input[str]] = None,
512
565
  mirroring_deployment_group: Optional[pulumi.Input[str]] = None,
@@ -521,6 +574,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
521
574
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
522
575
  __props__ = MirroringEndpointGroupArgs.__new__(MirroringEndpointGroupArgs)
523
576
 
577
+ __props__.__dict__["description"] = description
524
578
  __props__.__dict__["labels"] = labels
525
579
  if location is None and not opts.urn:
526
580
  raise TypeError("Missing required property 'location'")
@@ -552,6 +606,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
552
606
  id: pulumi.Input[str],
553
607
  opts: Optional[pulumi.ResourceOptions] = None,
554
608
  create_time: Optional[pulumi.Input[str]] = None,
609
+ description: Optional[pulumi.Input[str]] = None,
555
610
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
556
611
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
557
612
  location: Optional[pulumi.Input[str]] = None,
@@ -570,29 +625,36 @@ class MirroringEndpointGroup(pulumi.CustomResource):
570
625
  :param str resource_name: The unique name of the resulting resource.
571
626
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
572
627
  :param pulumi.ResourceOptions opts: Options for the resource.
573
- :param pulumi.Input[str] create_time: Output only. [Output only] Create time stamp
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.
574
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.
575
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
633
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
576
634
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
577
635
  Please refer to the field `effective_labels` for all of the labels present on the resource.
578
- :param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
579
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
580
- is:
581
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
582
- :param pulumi.Input[str] mirroring_endpoint_group_id: Required. Id of the requesting object
583
- If auto-generating Id server-side, remove this field and
584
- mirroring_endpoint_group_id from the method_signature of Create RPC
636
+ :param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
637
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this DIRECT endpoint group is connected to, for example:
638
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
639
+ See https://google.aip.dev/124.
640
+ :param pulumi.Input[str] mirroring_endpoint_group_id: The ID to use for the endpoint group, which will become the final component
641
+ of the endpoint group's resource name.
585
642
 
586
643
 
587
644
  - - -
588
- :param pulumi.Input[str] name: Immutable. Identifier. The name of the MirroringEndpointGroup.
645
+ :param pulumi.Input[str] name: The resource name of this endpoint group, for example:
646
+ `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
647
+ See https://google.aip.dev/122 for more details.
589
648
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
590
649
  If it is not provided, the provider project is used.
591
650
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
592
651
  and default labels configured on the provider.
593
- :param pulumi.Input[bool] reconciling: Output only. Whether reconciling is in progress, recommended per
594
- https://google.aip.dev/128.
595
- :param pulumi.Input[str] state: Output only. Current state of the endpoint group.
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.
596
658
  Possible values:
597
659
  STATE_UNSPECIFIED
598
660
  ACTIVE
@@ -600,13 +662,16 @@ class MirroringEndpointGroup(pulumi.CustomResource):
600
662
  CREATING
601
663
  DELETING
602
664
  OUT_OF_SYNC
603
- :param pulumi.Input[str] update_time: Output only. [Output only] Update time stamp
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.
604
668
  """
605
669
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
606
670
 
607
671
  __props__ = _MirroringEndpointGroupState.__new__(_MirroringEndpointGroupState)
608
672
 
609
673
  __props__.__dict__["create_time"] = create_time
674
+ __props__.__dict__["description"] = description
610
675
  __props__.__dict__["effective_labels"] = effective_labels
611
676
  __props__.__dict__["labels"] = labels
612
677
  __props__.__dict__["location"] = location
@@ -624,10 +689,20 @@ class MirroringEndpointGroup(pulumi.CustomResource):
624
689
  @pulumi.getter(name="createTime")
625
690
  def create_time(self) -> pulumi.Output[str]:
626
691
  """
627
- Output only. [Output only] Create time stamp
692
+ The timestamp when the resource was created.
693
+ See https://google.aip.dev/148#timestamps.
628
694
  """
629
695
  return pulumi.get(self, "create_time")
630
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
+
631
706
  @property
632
707
  @pulumi.getter(name="effectiveLabels")
633
708
  def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
@@ -640,7 +715,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
640
715
  @pulumi.getter
641
716
  def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
642
717
  """
643
- Optional. Labels as key value pairs
718
+ Labels are key/value pairs that help to organize and filter resources.
644
719
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
645
720
  Please refer to the field `effective_labels` for all of the labels present on the resource.
646
721
  """
@@ -650,7 +725,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
650
725
  @pulumi.getter
651
726
  def location(self) -> pulumi.Output[str]:
652
727
  """
653
- Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroup`.
728
+ The cloud location of the endpoint group, currently restricted to `global`.
654
729
  """
655
730
  return pulumi.get(self, "location")
656
731
 
@@ -658,9 +733,9 @@ class MirroringEndpointGroup(pulumi.CustomResource):
658
733
  @pulumi.getter(name="mirroringDeploymentGroup")
659
734
  def mirroring_deployment_group(self) -> pulumi.Output[str]:
660
735
  """
661
- Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format
662
- is:
663
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
736
+ The deployment group that this DIRECT endpoint group is connected to, for example:
737
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
738
+ See https://google.aip.dev/124.
664
739
  """
665
740
  return pulumi.get(self, "mirroring_deployment_group")
666
741
 
@@ -668,9 +743,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
668
743
  @pulumi.getter(name="mirroringEndpointGroupId")
669
744
  def mirroring_endpoint_group_id(self) -> pulumi.Output[str]:
670
745
  """
671
- Required. Id of the requesting object
672
- If auto-generating Id server-side, remove this field and
673
- mirroring_endpoint_group_id from the method_signature of Create RPC
746
+ The ID to use for the endpoint group, which will become the final component
747
+ of the endpoint group's resource name.
674
748
 
675
749
 
676
750
  - - -
@@ -681,7 +755,9 @@ class MirroringEndpointGroup(pulumi.CustomResource):
681
755
  @pulumi.getter
682
756
  def name(self) -> pulumi.Output[str]:
683
757
  """
684
- Immutable. Identifier. The name of the MirroringEndpointGroup.
758
+ The resource name of this endpoint group, for example:
759
+ `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
760
+ See https://google.aip.dev/122 for more details.
685
761
  """
686
762
  return pulumi.get(self, "name")
687
763
 
@@ -707,8 +783,10 @@ class MirroringEndpointGroup(pulumi.CustomResource):
707
783
  @pulumi.getter
708
784
  def reconciling(self) -> pulumi.Output[bool]:
709
785
  """
710
- Output only. Whether reconciling is in progress, recommended per
711
- https://google.aip.dev/128.
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.
712
790
  """
713
791
  return pulumi.get(self, "reconciling")
714
792
 
@@ -716,7 +794,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
716
794
  @pulumi.getter
717
795
  def state(self) -> pulumi.Output[str]:
718
796
  """
719
- Output only. Current state of the endpoint group.
797
+ The current state of the endpoint group.
798
+ See https://google.aip.dev/216.
720
799
  Possible values:
721
800
  STATE_UNSPECIFIED
722
801
  ACTIVE
@@ -724,6 +803,7 @@ class MirroringEndpointGroup(pulumi.CustomResource):
724
803
  CREATING
725
804
  DELETING
726
805
  OUT_OF_SYNC
806
+ DELETE_FAILED
727
807
  """
728
808
  return pulumi.get(self, "state")
729
809
 
@@ -731,7 +811,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
731
811
  @pulumi.getter(name="updateTime")
732
812
  def update_time(self) -> pulumi.Output[str]:
733
813
  """
734
- Output only. [Output only] Update time stamp
814
+ The timestamp when the resource was most recently updated.
815
+ See https://google.aip.dev/148#timestamps.
735
816
  """
736
817
  return pulumi.get(self, "update_time")
737
818