pulumi-gcp 8.22.0a1741790977__py3-none-any.whl → 8.23.0a1742001198__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.0a1742001198.dist-info}/METADATA +1 -1
  73. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1742001198.dist-info}/RECORD +75 -70
  74. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1742001198.dist-info}/WHEEL +0 -0
  75. {pulumi_gcp-8.22.0a1741790977.dist-info → pulumi_gcp-8.23.0a1742001198.dist-info}/top_level.txt +0 -0
@@ -23,23 +23,26 @@ class MirroringDeploymentArgs:
23
23
  location: pulumi.Input[str],
24
24
  mirroring_deployment_group: pulumi.Input[str],
25
25
  mirroring_deployment_id: 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 MirroringDeployment resource.
30
- :param pulumi.Input[str] forwarding_rule: Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
31
- to. Format is:
32
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
33
- :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/MirroringDeployment`.
34
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
35
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
36
- :param pulumi.Input[str] mirroring_deployment_id: Required. Id of the requesting object
37
- If auto-generating Id server-side, remove this field and
38
- mirroring_deployment_id from the method_signature of Create RPC
31
+ :param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the mirroring collectors, for
32
+ example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
33
+ See https://google.aip.dev/124.
34
+ :param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
35
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this deployment is a part of, for example:
36
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
37
+ See https://google.aip.dev/124.
38
+ :param pulumi.Input[str] mirroring_deployment_id: The ID to use for the new deployment, which will become the final
39
+ component of the deployment's resource name.
39
40
 
40
41
 
41
42
  - - -
42
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
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 MirroringDeploymentArgs:
49
52
  pulumi.set(__self__, "location", location)
50
53
  pulumi.set(__self__, "mirroring_deployment_group", mirroring_deployment_group)
51
54
  pulumi.set(__self__, "mirroring_deployment_id", mirroring_deployment_id)
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 MirroringDeploymentArgs:
58
63
  @pulumi.getter(name="forwardingRule")
59
64
  def forwarding_rule(self) -> pulumi.Input[str]:
60
65
  """
61
- Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
62
- to. Format is:
63
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
66
+ The regional forwarding rule that fronts the mirroring collectors, for
67
+ example: `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,7 +77,7 @@ class MirroringDeploymentArgs:
72
77
  @pulumi.getter
73
78
  def location(self) -> pulumi.Input[str]:
74
79
  """
75
- 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/MirroringDeployment`.
80
+ The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
76
81
  """
77
82
  return pulumi.get(self, "location")
78
83
 
@@ -84,8 +89,9 @@ class MirroringDeploymentArgs:
84
89
  @pulumi.getter(name="mirroringDeploymentGroup")
85
90
  def mirroring_deployment_group(self) -> pulumi.Input[str]:
86
91
  """
87
- Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
88
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
92
+ The deployment group that this deployment is a part of, for example:
93
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
94
+ See https://google.aip.dev/124.
89
95
  """
90
96
  return pulumi.get(self, "mirroring_deployment_group")
91
97
 
@@ -97,9 +103,8 @@ class MirroringDeploymentArgs:
97
103
  @pulumi.getter(name="mirroringDeploymentId")
98
104
  def mirroring_deployment_id(self) -> pulumi.Input[str]:
99
105
  """
100
- Required. Id of the requesting object
101
- If auto-generating Id server-side, remove this field and
102
- mirroring_deployment_id from the method_signature of Create RPC
106
+ The ID to use for the new deployment, which will become the final
107
+ component of the deployment's resource name.
103
108
 
104
109
 
105
110
  - - -
@@ -110,11 +115,24 @@ class MirroringDeploymentArgs:
110
115
  def mirroring_deployment_id(self, value: pulumi.Input[str]):
111
116
  pulumi.set(self, "mirroring_deployment_id", 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
- Optional. Labels as key value pairs
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 MirroringDeploymentArgs:
142
160
  class _MirroringDeploymentState:
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
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -156,31 +175,39 @@ class _MirroringDeploymentState:
156
175
  update_time: Optional[pulumi.Input[str]] = None):
157
176
  """
158
177
  Input properties used for looking up and filtering MirroringDeployment resources.
159
- :param pulumi.Input[str] create_time: Output only. [Output only] Create time stamp
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: Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
162
- to. Format is:
163
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
164
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
183
+ :param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the mirroring collectors, for
184
+ example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
185
+ See https://google.aip.dev/124.
186
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
165
187
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
166
188
  Please refer to the field `effective_labels` for all of the labels present on the resource.
167
- :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/MirroringDeployment`.
168
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
169
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
170
- :param pulumi.Input[str] mirroring_deployment_id: Required. Id of the requesting object
171
- If auto-generating Id server-side, remove this field and
172
- mirroring_deployment_id from the method_signature of Create RPC
189
+ :param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
190
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this deployment is a part of, for example:
191
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
192
+ See https://google.aip.dev/124.
193
+ :param pulumi.Input[str] mirroring_deployment_id: The ID to use for the new deployment, which will become the final
194
+ component of the deployment's resource name.
173
195
 
174
196
 
175
197
  - - -
176
- :param pulumi.Input[str] name: Immutable. Identifier. The name of the MirroringDeployment.
198
+ :param pulumi.Input[str] name: The resource name of this deployment, for example:
199
+ `projects/123456789/locations/us-central1-a/mirroringDeployments/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: Output only. Whether reconciling is in progress, recommended per
182
- https://google.aip.dev/128.
183
- :param pulumi.Input[str] state: Output only. Current state of the deployment.
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 _MirroringDeploymentState:
188
215
  DELETING
189
216
  OUT_OF_SYNC
190
217
  DELETE_FAILED
191
- :param pulumi.Input[str] update_time: Output only. [Output only] Update time stamp
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 _MirroringDeploymentState:
221
251
  @pulumi.getter(name="createTime")
222
252
  def create_time(self) -> Optional[pulumi.Input[str]]:
223
253
  """
224
- Output only. [Output only] Create time stamp
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 _MirroringDeploymentState:
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 _MirroringDeploymentState:
245
289
  @pulumi.getter(name="forwardingRule")
246
290
  def forwarding_rule(self) -> Optional[pulumi.Input[str]]:
247
291
  """
248
- Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
249
- to. Format is:
250
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
292
+ The regional forwarding rule that fronts the mirroring collectors, for
293
+ example: `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,7 +303,7 @@ class _MirroringDeploymentState:
259
303
  @pulumi.getter
260
304
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
261
305
  """
262
- Optional. Labels as key value pairs
306
+ Labels are key/value pairs that help to organize and filter resources.
263
307
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
264
308
  Please refer to the field `effective_labels` for all of the labels present on the resource.
265
309
  """
@@ -273,7 +317,7 @@ class _MirroringDeploymentState:
273
317
  @pulumi.getter
274
318
  def location(self) -> Optional[pulumi.Input[str]]:
275
319
  """
276
- 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/MirroringDeployment`.
320
+ The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
277
321
  """
278
322
  return pulumi.get(self, "location")
279
323
 
@@ -285,8 +329,9 @@ class _MirroringDeploymentState:
285
329
  @pulumi.getter(name="mirroringDeploymentGroup")
286
330
  def mirroring_deployment_group(self) -> Optional[pulumi.Input[str]]:
287
331
  """
288
- Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
289
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
332
+ The deployment group that this deployment is a part of, for example:
333
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
334
+ See https://google.aip.dev/124.
290
335
  """
291
336
  return pulumi.get(self, "mirroring_deployment_group")
292
337
 
@@ -298,9 +343,8 @@ class _MirroringDeploymentState:
298
343
  @pulumi.getter(name="mirroringDeploymentId")
299
344
  def mirroring_deployment_id(self) -> Optional[pulumi.Input[str]]:
300
345
  """
301
- Required. Id of the requesting object
302
- If auto-generating Id server-side, remove this field and
303
- mirroring_deployment_id from the method_signature of Create RPC
346
+ The ID to use for the new deployment, which will become the final
347
+ component of the deployment's resource name.
304
348
 
305
349
 
306
350
  - - -
@@ -315,7 +359,9 @@ class _MirroringDeploymentState:
315
359
  @pulumi.getter
316
360
  def name(self) -> Optional[pulumi.Input[str]]:
317
361
  """
318
- Immutable. Identifier. The name of the MirroringDeployment.
362
+ The resource name of this deployment, for example:
363
+ `projects/123456789/locations/us-central1-a/mirroringDeployments/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 _MirroringDeploymentState:
353
399
  @pulumi.getter
354
400
  def reconciling(self) -> Optional[pulumi.Input[bool]]:
355
401
  """
356
- Output only. Whether reconciling is in progress, recommended per
357
- https://google.aip.dev/128.
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 _MirroringDeploymentState:
366
414
  @pulumi.getter
367
415
  def state(self) -> Optional[pulumi.Input[str]]:
368
416
  """
369
- Output only. Current state of the deployment.
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 _MirroringDeploymentState:
385
434
  @pulumi.getter(name="updateTime")
386
435
  def update_time(self) -> Optional[pulumi.Input[str]]:
387
436
  """
388
- Output only. [Output only] Update time stamp
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 MirroringDeployment(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
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
404
455
  location: Optional[pulumi.Input[str]] = None,
@@ -454,6 +505,7 @@ class MirroringDeployment(pulumi.CustomResource):
454
505
  location="us-central1-a",
455
506
  forwarding_rule=forwarding_rule.id,
456
507
  mirroring_deployment_group=deployment_group.id,
508
+ description="some description",
457
509
  labels={
458
510
  "foo": "bar",
459
511
  })
@@ -485,18 +537,20 @@ class MirroringDeployment(pulumi.CustomResource):
485
537
 
486
538
  :param str resource_name: The name of the resource.
487
539
  :param pulumi.ResourceOptions opts: Options for the resource.
488
- :param pulumi.Input[str] forwarding_rule: Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
489
- to. Format is:
490
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
491
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
540
+ :param pulumi.Input[str] description: User-provided description of the deployment.
541
+ Used as additional context for the deployment.
542
+ :param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the mirroring collectors, for
543
+ example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
544
+ See https://google.aip.dev/124.
545
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
492
546
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
493
547
  Please refer to the field `effective_labels` for all of the labels present on the resource.
494
- :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/MirroringDeployment`.
495
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
496
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
497
- :param pulumi.Input[str] mirroring_deployment_id: Required. Id of the requesting object
498
- If auto-generating Id server-side, remove this field and
499
- mirroring_deployment_id from the method_signature of Create RPC
548
+ :param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
549
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this deployment is a part of, for example:
550
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
551
+ See https://google.aip.dev/124.
552
+ :param pulumi.Input[str] mirroring_deployment_id: The ID to use for the new deployment, which will become the final
553
+ component of the deployment's resource name.
500
554
 
501
555
 
502
556
  - - -
@@ -557,6 +611,7 @@ class MirroringDeployment(pulumi.CustomResource):
557
611
  location="us-central1-a",
558
612
  forwarding_rule=forwarding_rule.id,
559
613
  mirroring_deployment_group=deployment_group.id,
614
+ description="some description",
560
615
  labels={
561
616
  "foo": "bar",
562
617
  })
@@ -601,6 +656,7 @@ class MirroringDeployment(pulumi.CustomResource):
601
656
  def _internal_init(__self__,
602
657
  resource_name: str,
603
658
  opts: Optional[pulumi.ResourceOptions] = None,
659
+ description: Optional[pulumi.Input[str]] = None,
604
660
  forwarding_rule: Optional[pulumi.Input[str]] = None,
605
661
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
606
662
  location: Optional[pulumi.Input[str]] = None,
@@ -616,6 +672,7 @@ class MirroringDeployment(pulumi.CustomResource):
616
672
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
617
673
  __props__ = MirroringDeploymentArgs.__new__(MirroringDeploymentArgs)
618
674
 
675
+ __props__.__dict__["description"] = description
619
676
  if forwarding_rule is None and not opts.urn:
620
677
  raise TypeError("Missing required property 'forwarding_rule'")
621
678
  __props__.__dict__["forwarding_rule"] = forwarding_rule
@@ -650,6 +707,7 @@ class MirroringDeployment(pulumi.CustomResource):
650
707
  id: pulumi.Input[str],
651
708
  opts: Optional[pulumi.ResourceOptions] = None,
652
709
  create_time: Optional[pulumi.Input[str]] = None,
710
+ description: Optional[pulumi.Input[str]] = None,
653
711
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
654
712
  forwarding_rule: Optional[pulumi.Input[str]] = None,
655
713
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -669,31 +727,39 @@ class MirroringDeployment(pulumi.CustomResource):
669
727
  :param str resource_name: The unique name of the resulting resource.
670
728
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
671
729
  :param pulumi.ResourceOptions opts: Options for the resource.
672
- :param pulumi.Input[str] create_time: Output only. [Output only] Create time stamp
730
+ :param pulumi.Input[str] create_time: The timestamp when the resource was created.
731
+ See https://google.aip.dev/148#timestamps.
732
+ :param pulumi.Input[str] description: User-provided description of the deployment.
733
+ Used as additional context for the deployment.
673
734
  :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.
674
- :param pulumi.Input[str] forwarding_rule: Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
675
- to. Format is:
676
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
677
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels as key value pairs
735
+ :param pulumi.Input[str] forwarding_rule: The regional forwarding rule that fronts the mirroring collectors, for
736
+ example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
737
+ See https://google.aip.dev/124.
738
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are key/value pairs that help to organize and filter resources.
678
739
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
679
740
  Please refer to the field `effective_labels` for all of the labels present on the resource.
680
- :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/MirroringDeployment`.
681
- :param pulumi.Input[str] mirroring_deployment_group: Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
682
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
683
- :param pulumi.Input[str] mirroring_deployment_id: Required. Id of the requesting object
684
- If auto-generating Id server-side, remove this field and
685
- mirroring_deployment_id from the method_signature of Create RPC
741
+ :param pulumi.Input[str] location: The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
742
+ :param pulumi.Input[str] mirroring_deployment_group: The deployment group that this deployment is a part of, for example:
743
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
744
+ See https://google.aip.dev/124.
745
+ :param pulumi.Input[str] mirroring_deployment_id: The ID to use for the new deployment, which will become the final
746
+ component of the deployment's resource name.
686
747
 
687
748
 
688
749
  - - -
689
- :param pulumi.Input[str] name: Immutable. Identifier. The name of the MirroringDeployment.
750
+ :param pulumi.Input[str] name: The resource name of this deployment, for example:
751
+ `projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`.
752
+ See https://google.aip.dev/122 for more details.
690
753
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
691
754
  If it is not provided, the provider project is used.
692
755
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
693
756
  and default labels configured on the provider.
694
- :param pulumi.Input[bool] reconciling: Output only. Whether reconciling is in progress, recommended per
695
- https://google.aip.dev/128.
696
- :param pulumi.Input[str] state: Output only. Current state of the deployment.
757
+ :param pulumi.Input[bool] reconciling: The current state of the resource does not match the user's intended state,
758
+ and the system is working to reconcile them. This part of the normal
759
+ operation (e.g. linking a new association to the parent group).
760
+ See https://google.aip.dev/128.
761
+ :param pulumi.Input[str] state: The current state of the deployment.
762
+ See https://google.aip.dev/216.
697
763
  Possible values:
698
764
  STATE_UNSPECIFIED
699
765
  ACTIVE
@@ -701,13 +767,15 @@ class MirroringDeployment(pulumi.CustomResource):
701
767
  DELETING
702
768
  OUT_OF_SYNC
703
769
  DELETE_FAILED
704
- :param pulumi.Input[str] update_time: Output only. [Output only] Update time stamp
770
+ :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
771
+ See https://google.aip.dev/148#timestamps.
705
772
  """
706
773
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
707
774
 
708
775
  __props__ = _MirroringDeploymentState.__new__(_MirroringDeploymentState)
709
776
 
710
777
  __props__.__dict__["create_time"] = create_time
778
+ __props__.__dict__["description"] = description
711
779
  __props__.__dict__["effective_labels"] = effective_labels
712
780
  __props__.__dict__["forwarding_rule"] = forwarding_rule
713
781
  __props__.__dict__["labels"] = labels
@@ -726,10 +794,20 @@ class MirroringDeployment(pulumi.CustomResource):
726
794
  @pulumi.getter(name="createTime")
727
795
  def create_time(self) -> pulumi.Output[str]:
728
796
  """
729
- Output only. [Output only] Create time stamp
797
+ The timestamp when the resource was created.
798
+ See https://google.aip.dev/148#timestamps.
730
799
  """
731
800
  return pulumi.get(self, "create_time")
732
801
 
802
+ @property
803
+ @pulumi.getter
804
+ def description(self) -> pulumi.Output[Optional[str]]:
805
+ """
806
+ User-provided description of the deployment.
807
+ Used as additional context for the deployment.
808
+ """
809
+ return pulumi.get(self, "description")
810
+
733
811
  @property
734
812
  @pulumi.getter(name="effectiveLabels")
735
813
  def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
@@ -742,9 +820,9 @@ class MirroringDeployment(pulumi.CustomResource):
742
820
  @pulumi.getter(name="forwardingRule")
743
821
  def forwarding_rule(self) -> pulumi.Output[str]:
744
822
  """
745
- Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded
746
- to. Format is:
747
- projects/{project}/regions/{region}/forwardingRules/{forwardingRule}
823
+ The regional forwarding rule that fronts the mirroring collectors, for
824
+ example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`.
825
+ See https://google.aip.dev/124.
748
826
  """
749
827
  return pulumi.get(self, "forwarding_rule")
750
828
 
@@ -752,7 +830,7 @@ class MirroringDeployment(pulumi.CustomResource):
752
830
  @pulumi.getter
753
831
  def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
754
832
  """
755
- Optional. Labels as key value pairs
833
+ Labels are key/value pairs that help to organize and filter resources.
756
834
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
757
835
  Please refer to the field `effective_labels` for all of the labels present on the resource.
758
836
  """
@@ -762,7 +840,7 @@ class MirroringDeployment(pulumi.CustomResource):
762
840
  @pulumi.getter
763
841
  def location(self) -> pulumi.Output[str]:
764
842
  """
765
- 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/MirroringDeployment`.
843
+ The cloud location of the deployment, e.g. `us-central1-a` or `asia-south1-b`.
766
844
  """
767
845
  return pulumi.get(self, "location")
768
846
 
@@ -770,8 +848,9 @@ class MirroringDeployment(pulumi.CustomResource):
770
848
  @pulumi.getter(name="mirroringDeploymentGroup")
771
849
  def mirroring_deployment_group(self) -> pulumi.Output[str]:
772
850
  """
773
- Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is:
774
- `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}`
851
+ The deployment group that this deployment is a part of, for example:
852
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
853
+ See https://google.aip.dev/124.
775
854
  """
776
855
  return pulumi.get(self, "mirroring_deployment_group")
777
856
 
@@ -779,9 +858,8 @@ class MirroringDeployment(pulumi.CustomResource):
779
858
  @pulumi.getter(name="mirroringDeploymentId")
780
859
  def mirroring_deployment_id(self) -> pulumi.Output[str]:
781
860
  """
782
- Required. Id of the requesting object
783
- If auto-generating Id server-side, remove this field and
784
- mirroring_deployment_id from the method_signature of Create RPC
861
+ The ID to use for the new deployment, which will become the final
862
+ component of the deployment's resource name.
785
863
 
786
864
 
787
865
  - - -
@@ -792,7 +870,9 @@ class MirroringDeployment(pulumi.CustomResource):
792
870
  @pulumi.getter
793
871
  def name(self) -> pulumi.Output[str]:
794
872
  """
795
- Immutable. Identifier. The name of the MirroringDeployment.
873
+ The resource name of this deployment, for example:
874
+ `projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`.
875
+ See https://google.aip.dev/122 for more details.
796
876
  """
797
877
  return pulumi.get(self, "name")
798
878
 
@@ -818,8 +898,10 @@ class MirroringDeployment(pulumi.CustomResource):
818
898
  @pulumi.getter
819
899
  def reconciling(self) -> pulumi.Output[bool]:
820
900
  """
821
- Output only. Whether reconciling is in progress, recommended per
822
- https://google.aip.dev/128.
901
+ The current state of the resource does not match the user's intended state,
902
+ and the system is working to reconcile them. This part of the normal
903
+ operation (e.g. linking a new association to the parent group).
904
+ See https://google.aip.dev/128.
823
905
  """
824
906
  return pulumi.get(self, "reconciling")
825
907
 
@@ -827,7 +909,8 @@ class MirroringDeployment(pulumi.CustomResource):
827
909
  @pulumi.getter
828
910
  def state(self) -> pulumi.Output[str]:
829
911
  """
830
- Output only. Current state of the deployment.
912
+ The current state of the deployment.
913
+ See https://google.aip.dev/216.
831
914
  Possible values:
832
915
  STATE_UNSPECIFIED
833
916
  ACTIVE
@@ -842,7 +925,8 @@ class MirroringDeployment(pulumi.CustomResource):
842
925
  @pulumi.getter(name="updateTime")
843
926
  def update_time(self) -> pulumi.Output[str]:
844
927
  """
845
- Output only. [Output only] Update time stamp
928
+ The timestamp when the resource was most recently updated.
929
+ See https://google.aip.dev/148#timestamps.
846
930
  """
847
931
  return pulumi.get(self, "update_time")
848
932