pulumi-gcp 8.25.0a1743575622__py3-none-any.whl → 8.25.0a1743706148__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 (126) hide show
  1. pulumi_gcp/__init__.py +104 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  11. pulumi_gcp/bigtable/table.py +8 -8
  12. pulumi_gcp/chronicle/data_access_label.py +2 -2
  13. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  14. pulumi_gcp/chronicle/reference_list.py +16 -0
  15. pulumi_gcp/chronicle/retrohunt.py +16 -0
  16. pulumi_gcp/chronicle/rule.py +16 -0
  17. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  18. pulumi_gcp/chronicle/watchlist.py +16 -0
  19. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  20. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  21. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  22. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  23. pulumi_gcp/compute/__init__.py +1 -0
  24. pulumi_gcp/compute/_inputs.py +2011 -43
  25. pulumi_gcp/compute/backend_service.py +121 -3
  26. pulumi_gcp/compute/get_backend_service.py +15 -4
  27. pulumi_gcp/compute/get_instance.py +12 -1
  28. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  29. pulumi_gcp/compute/get_router.py +12 -1
  30. pulumi_gcp/compute/get_subnetwork.py +43 -1
  31. pulumi_gcp/compute/instance.py +47 -0
  32. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  33. pulumi_gcp/compute/instance_from_template.py +47 -0
  34. pulumi_gcp/compute/outputs.py +3578 -139
  35. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  36. pulumi_gcp/compute/router.py +54 -0
  37. pulumi_gcp/compute/subnetwork.py +35 -5
  38. pulumi_gcp/config/__init__.pyi +2 -0
  39. pulumi_gcp/config/outputs.py +27 -0
  40. pulumi_gcp/config/vars.py +4 -0
  41. pulumi_gcp/container/_inputs.py +12 -12
  42. pulumi_gcp/container/cluster.py +47 -0
  43. pulumi_gcp/container/get_cluster.py +12 -1
  44. pulumi_gcp/container/get_registry_image.py +4 -0
  45. pulumi_gcp/container/get_registry_repository.py +4 -0
  46. pulumi_gcp/container/outputs.py +8 -8
  47. pulumi_gcp/container/registry.py +4 -0
  48. pulumi_gcp/datafusion/instance.py +68 -0
  49. pulumi_gcp/dataproc/__init__.py +8 -0
  50. pulumi_gcp/dataproc/_inputs.py +196 -0
  51. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  52. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  53. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  54. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  55. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  56. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  57. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  58. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  59. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  60. pulumi_gcp/dataproc/outputs.py +112 -0
  61. pulumi_gcp/datastream/_inputs.py +311 -94
  62. pulumi_gcp/datastream/connection_profile.py +40 -0
  63. pulumi_gcp/datastream/outputs.py +244 -51
  64. pulumi_gcp/datastream/stream.py +216 -0
  65. pulumi_gcp/discoveryengine/__init__.py +1 -0
  66. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  67. pulumi_gcp/eventarc/__init__.py +1 -0
  68. pulumi_gcp/eventarc/enrollment.py +980 -0
  69. pulumi_gcp/firebase/__init__.py +1 -0
  70. pulumi_gcp/firebase/_inputs.py +484 -0
  71. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  72. pulumi_gcp/firebase/outputs.py +333 -0
  73. pulumi_gcp/identityplatform/_inputs.py +91 -0
  74. pulumi_gcp/identityplatform/outputs.py +73 -0
  75. pulumi_gcp/identityplatform/tenant.py +56 -0
  76. pulumi_gcp/managedkafka/cluster.py +2 -2
  77. pulumi_gcp/memorystore/__init__.py +1 -0
  78. pulumi_gcp/memorystore/_inputs.py +826 -0
  79. pulumi_gcp/memorystore/get_instance.py +23 -1
  80. pulumi_gcp/memorystore/instance.py +344 -23
  81. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  82. pulumi_gcp/memorystore/outputs.py +889 -8
  83. pulumi_gcp/networksecurity/_inputs.py +473 -0
  84. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  85. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  86. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  87. pulumi_gcp/networksecurity/outputs.py +291 -1
  88. pulumi_gcp/networksecurity/security_profile.py +8 -0
  89. pulumi_gcp/organizations/__init__.py +1 -0
  90. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/organizations/outputs.py +96 -0
  92. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  93. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  94. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  95. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  96. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  97. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  98. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  99. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  100. pulumi_gcp/parametermanager/outputs.py +11 -0
  101. pulumi_gcp/parametermanager/parameter.py +88 -0
  102. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  103. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  104. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  105. pulumi_gcp/provider.py +15 -0
  106. pulumi_gcp/pulumi-plugin.json +1 -1
  107. pulumi_gcp/redis/_inputs.py +136 -0
  108. pulumi_gcp/redis/cluster.py +54 -0
  109. pulumi_gcp/redis/outputs.py +114 -0
  110. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  111. pulumi_gcp/storage/__init__.py +4 -0
  112. pulumi_gcp/storage/_inputs.py +596 -0
  113. pulumi_gcp/storage/bucket.py +7 -7
  114. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  115. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  116. pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
  117. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  118. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  119. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  120. pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
  121. pulumi_gcp/storage/outputs.py +2132 -1312
  122. pulumi_gcp/workbench/instance.py +14 -2
  123. {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
  124. {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
  125. {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
  126. {pulumi_gcp-8.25.0a1743575622.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
@@ -148,6 +148,7 @@ class _MirroringDeploymentGroupState:
148
148
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
149
149
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
150
150
  location: Optional[pulumi.Input[str]] = None,
151
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringDeploymentGroupLocationArgs']]]] = None,
151
152
  mirroring_deployment_group_id: Optional[pulumi.Input[str]] = None,
152
153
  name: Optional[pulumi.Input[str]] = None,
153
154
  network: Optional[pulumi.Input[str]] = None,
@@ -169,6 +170,8 @@ class _MirroringDeploymentGroupState:
169
170
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
170
171
  Please refer to the field `effective_labels` for all of the labels present on the resource.
171
172
  :param pulumi.Input[str] location: The cloud location of the deployment group, currently restricted to `global`.
173
+ :param pulumi.Input[Sequence[pulumi.Input['MirroringDeploymentGroupLocationArgs']]] locations: The list of locations where the deployment group is present.
174
+ Structure is documented below.
172
175
  :param pulumi.Input[str] mirroring_deployment_group_id: The ID to use for the new deployment group, which will become the final
173
176
  component of the deployment group's resource name.
174
177
 
@@ -189,13 +192,12 @@ class _MirroringDeploymentGroupState:
189
192
  and the system is working to reconcile them. This is part of the normal
190
193
  operation (e.g. adding a new deployment to the group)
191
194
  See https://google.aip.dev/128.
192
- :param pulumi.Input[str] state: The current state of the deployment group.
193
- See https://google.aip.dev/216.
195
+ :param pulumi.Input[str] state: (Output)
196
+ The current state of the association in this location.
194
197
  Possible values:
195
198
  STATE_UNSPECIFIED
196
199
  ACTIVE
197
- CREATING
198
- DELETING
200
+ OUT_OF_SYNC
199
201
  :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
200
202
  See https://google.aip.dev/148#timestamps.
201
203
  """
@@ -211,6 +213,8 @@ class _MirroringDeploymentGroupState:
211
213
  pulumi.set(__self__, "labels", labels)
212
214
  if location is not None:
213
215
  pulumi.set(__self__, "location", location)
216
+ if locations is not None:
217
+ pulumi.set(__self__, "locations", locations)
214
218
  if mirroring_deployment_group_id is not None:
215
219
  pulumi.set(__self__, "mirroring_deployment_group_id", mirroring_deployment_group_id)
216
220
  if name is not None:
@@ -305,6 +309,19 @@ class _MirroringDeploymentGroupState:
305
309
  def location(self, value: Optional[pulumi.Input[str]]):
306
310
  pulumi.set(self, "location", value)
307
311
 
312
+ @property
313
+ @pulumi.getter
314
+ def locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MirroringDeploymentGroupLocationArgs']]]]:
315
+ """
316
+ The list of locations where the deployment group is present.
317
+ Structure is documented below.
318
+ """
319
+ return pulumi.get(self, "locations")
320
+
321
+ @locations.setter
322
+ def locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringDeploymentGroupLocationArgs']]]]):
323
+ pulumi.set(self, "locations", value)
324
+
308
325
  @property
309
326
  @pulumi.getter(name="mirroringDeploymentGroupId")
310
327
  def mirroring_deployment_group_id(self) -> Optional[pulumi.Input[str]]:
@@ -395,13 +412,12 @@ class _MirroringDeploymentGroupState:
395
412
  @pulumi.getter
396
413
  def state(self) -> Optional[pulumi.Input[str]]:
397
414
  """
398
- The current state of the deployment group.
399
- See https://google.aip.dev/216.
415
+ (Output)
416
+ The current state of the association in this location.
400
417
  Possible values:
401
418
  STATE_UNSPECIFIED
402
419
  ACTIVE
403
- CREATING
404
- DELETING
420
+ OUT_OF_SYNC
405
421
  """
406
422
  return pulumi.get(self, "state")
407
423
 
@@ -617,6 +633,7 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
617
633
  __props__.__dict__["connected_endpoint_groups"] = None
618
634
  __props__.__dict__["create_time"] = None
619
635
  __props__.__dict__["effective_labels"] = None
636
+ __props__.__dict__["locations"] = None
620
637
  __props__.__dict__["name"] = None
621
638
  __props__.__dict__["pulumi_labels"] = None
622
639
  __props__.__dict__["reconciling"] = None
@@ -640,6 +657,7 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
640
657
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
641
658
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
642
659
  location: Optional[pulumi.Input[str]] = None,
660
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MirroringDeploymentGroupLocationArgs', 'MirroringDeploymentGroupLocationArgsDict']]]]] = None,
643
661
  mirroring_deployment_group_id: Optional[pulumi.Input[str]] = None,
644
662
  name: Optional[pulumi.Input[str]] = None,
645
663
  network: Optional[pulumi.Input[str]] = None,
@@ -666,6 +684,8 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
666
684
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
667
685
  Please refer to the field `effective_labels` for all of the labels present on the resource.
668
686
  :param pulumi.Input[str] location: The cloud location of the deployment group, currently restricted to `global`.
687
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringDeploymentGroupLocationArgs', 'MirroringDeploymentGroupLocationArgsDict']]]] locations: The list of locations where the deployment group is present.
688
+ Structure is documented below.
669
689
  :param pulumi.Input[str] mirroring_deployment_group_id: The ID to use for the new deployment group, which will become the final
670
690
  component of the deployment group's resource name.
671
691
 
@@ -686,13 +706,12 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
686
706
  and the system is working to reconcile them. This is part of the normal
687
707
  operation (e.g. adding a new deployment to the group)
688
708
  See https://google.aip.dev/128.
689
- :param pulumi.Input[str] state: The current state of the deployment group.
690
- See https://google.aip.dev/216.
709
+ :param pulumi.Input[str] state: (Output)
710
+ The current state of the association in this location.
691
711
  Possible values:
692
712
  STATE_UNSPECIFIED
693
713
  ACTIVE
694
- CREATING
695
- DELETING
714
+ OUT_OF_SYNC
696
715
  :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
697
716
  See https://google.aip.dev/148#timestamps.
698
717
  """
@@ -706,6 +725,7 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
706
725
  __props__.__dict__["effective_labels"] = effective_labels
707
726
  __props__.__dict__["labels"] = labels
708
727
  __props__.__dict__["location"] = location
728
+ __props__.__dict__["locations"] = locations
709
729
  __props__.__dict__["mirroring_deployment_group_id"] = mirroring_deployment_group_id
710
730
  __props__.__dict__["name"] = name
711
731
  __props__.__dict__["network"] = network
@@ -769,6 +789,15 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
769
789
  """
770
790
  return pulumi.get(self, "location")
771
791
 
792
+ @property
793
+ @pulumi.getter
794
+ def locations(self) -> pulumi.Output[Sequence['outputs.MirroringDeploymentGroupLocation']]:
795
+ """
796
+ The list of locations where the deployment group is present.
797
+ Structure is documented below.
798
+ """
799
+ return pulumi.get(self, "locations")
800
+
772
801
  @property
773
802
  @pulumi.getter(name="mirroringDeploymentGroupId")
774
803
  def mirroring_deployment_group_id(self) -> pulumi.Output[str]:
@@ -835,13 +864,12 @@ class MirroringDeploymentGroup(pulumi.CustomResource):
835
864
  @pulumi.getter
836
865
  def state(self) -> pulumi.Output[str]:
837
866
  """
838
- The current state of the deployment group.
839
- See https://google.aip.dev/216.
867
+ (Output)
868
+ The current state of the association in this location.
840
869
  Possible values:
841
870
  STATE_UNSPECIFIED
842
871
  ACTIVE
843
- CREATING
844
- DELETING
872
+ OUT_OF_SYNC
845
873
  """
846
874
  return pulumi.get(self, "state")
847
875
 
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
16
18
 
17
19
  __all__ = ['MirroringEndpointGroupArgs', 'MirroringEndpointGroup']
18
20
 
@@ -140,6 +142,8 @@ class MirroringEndpointGroupArgs:
140
142
  @pulumi.input_type
141
143
  class _MirroringEndpointGroupState:
142
144
  def __init__(__self__, *,
145
+ associations: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationArgs']]]] = None,
146
+ connected_deployment_groups: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupConnectedDeploymentGroupArgs']]]] = None,
143
147
  create_time: Optional[pulumi.Input[str]] = None,
144
148
  description: Optional[pulumi.Input[str]] = None,
145
149
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -155,6 +159,11 @@ class _MirroringEndpointGroupState:
155
159
  update_time: Optional[pulumi.Input[str]] = None):
156
160
  """
157
161
  Input properties used for looking up and filtering MirroringEndpointGroup resources.
162
+ :param pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationArgs']]] associations: List of associations to this endpoint group.
163
+ Structure is documented below.
164
+ :param pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupConnectedDeploymentGroupArgs']]] connected_deployment_groups: List of details about the connected deployment groups to this endpoint
165
+ group.
166
+ Structure is documented below.
158
167
  :param pulumi.Input[str] create_time: The timestamp when the resource was created.
159
168
  See https://google.aip.dev/148#timestamps.
160
169
  :param pulumi.Input[str] description: User-provided description of the endpoint group.
@@ -172,9 +181,10 @@ class _MirroringEndpointGroupState:
172
181
 
173
182
 
174
183
  - - -
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.
184
+ :param pulumi.Input[str] name: (Output)
185
+ The connected deployment group's resource name, for example:
186
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
187
+ See https://google.aip.dev/124.
178
188
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
179
189
  If it is not provided, the provider project is used.
180
190
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -183,19 +193,19 @@ class _MirroringEndpointGroupState:
183
193
  and the system is working to reconcile them. This is part of the normal
184
194
  operation (e.g. adding a new association to the group).
185
195
  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.
196
+ :param pulumi.Input[str] state: (Output)
197
+ The current state of the association in this location.
188
198
  Possible values:
189
199
  STATE_UNSPECIFIED
190
200
  ACTIVE
191
- CLOSED
192
- CREATING
193
- DELETING
194
201
  OUT_OF_SYNC
195
- DELETE_FAILED
196
202
  :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
197
203
  See https://google.aip.dev/148#timestamps.
198
204
  """
205
+ if associations is not None:
206
+ pulumi.set(__self__, "associations", associations)
207
+ if connected_deployment_groups is not None:
208
+ pulumi.set(__self__, "connected_deployment_groups", connected_deployment_groups)
199
209
  if create_time is not None:
200
210
  pulumi.set(__self__, "create_time", create_time)
201
211
  if description is not None:
@@ -223,6 +233,33 @@ class _MirroringEndpointGroupState:
223
233
  if update_time is not None:
224
234
  pulumi.set(__self__, "update_time", update_time)
225
235
 
236
+ @property
237
+ @pulumi.getter
238
+ def associations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationArgs']]]]:
239
+ """
240
+ List of associations to this endpoint group.
241
+ Structure is documented below.
242
+ """
243
+ return pulumi.get(self, "associations")
244
+
245
+ @associations.setter
246
+ def associations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationArgs']]]]):
247
+ pulumi.set(self, "associations", value)
248
+
249
+ @property
250
+ @pulumi.getter(name="connectedDeploymentGroups")
251
+ def connected_deployment_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupConnectedDeploymentGroupArgs']]]]:
252
+ """
253
+ List of details about the connected deployment groups to this endpoint
254
+ group.
255
+ Structure is documented below.
256
+ """
257
+ return pulumi.get(self, "connected_deployment_groups")
258
+
259
+ @connected_deployment_groups.setter
260
+ def connected_deployment_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupConnectedDeploymentGroupArgs']]]]):
261
+ pulumi.set(self, "connected_deployment_groups", value)
262
+
226
263
  @property
227
264
  @pulumi.getter(name="createTime")
228
265
  def create_time(self) -> Optional[pulumi.Input[str]]:
@@ -321,9 +358,10 @@ class _MirroringEndpointGroupState:
321
358
  @pulumi.getter
322
359
  def name(self) -> Optional[pulumi.Input[str]]:
323
360
  """
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.
361
+ (Output)
362
+ The connected deployment group's resource name, for example:
363
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
364
+ See https://google.aip.dev/124.
327
365
  """
328
366
  return pulumi.get(self, "name")
329
367
 
@@ -376,16 +414,12 @@ class _MirroringEndpointGroupState:
376
414
  @pulumi.getter
377
415
  def state(self) -> Optional[pulumi.Input[str]]:
378
416
  """
379
- The current state of the endpoint group.
380
- See https://google.aip.dev/216.
417
+ (Output)
418
+ The current state of the association in this location.
381
419
  Possible values:
382
420
  STATE_UNSPECIFIED
383
421
  ACTIVE
384
- CLOSED
385
- CREATING
386
- DELETING
387
422
  OUT_OF_SYNC
388
- DELETE_FAILED
389
423
  """
390
424
  return pulumi.get(self, "state")
391
425
 
@@ -610,6 +644,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
610
644
  raise TypeError("Missing required property 'mirroring_endpoint_group_id'")
611
645
  __props__.__dict__["mirroring_endpoint_group_id"] = mirroring_endpoint_group_id
612
646
  __props__.__dict__["project"] = project
647
+ __props__.__dict__["associations"] = None
648
+ __props__.__dict__["connected_deployment_groups"] = None
613
649
  __props__.__dict__["create_time"] = None
614
650
  __props__.__dict__["effective_labels"] = None
615
651
  __props__.__dict__["name"] = None
@@ -629,6 +665,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
629
665
  def get(resource_name: str,
630
666
  id: pulumi.Input[str],
631
667
  opts: Optional[pulumi.ResourceOptions] = None,
668
+ associations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationArgs', 'MirroringEndpointGroupAssociationArgsDict']]]]] = None,
669
+ connected_deployment_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupConnectedDeploymentGroupArgs', 'MirroringEndpointGroupConnectedDeploymentGroupArgsDict']]]]] = None,
632
670
  create_time: Optional[pulumi.Input[str]] = None,
633
671
  description: Optional[pulumi.Input[str]] = None,
634
672
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -649,6 +687,11 @@ class MirroringEndpointGroup(pulumi.CustomResource):
649
687
  :param str resource_name: The unique name of the resulting resource.
650
688
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
651
689
  :param pulumi.ResourceOptions opts: Options for the resource.
690
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationArgs', 'MirroringEndpointGroupAssociationArgsDict']]]] associations: List of associations to this endpoint group.
691
+ Structure is documented below.
692
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupConnectedDeploymentGroupArgs', 'MirroringEndpointGroupConnectedDeploymentGroupArgsDict']]]] connected_deployment_groups: List of details about the connected deployment groups to this endpoint
693
+ group.
694
+ Structure is documented below.
652
695
  :param pulumi.Input[str] create_time: The timestamp when the resource was created.
653
696
  See https://google.aip.dev/148#timestamps.
654
697
  :param pulumi.Input[str] description: User-provided description of the endpoint group.
@@ -666,9 +709,10 @@ class MirroringEndpointGroup(pulumi.CustomResource):
666
709
 
667
710
 
668
711
  - - -
669
- :param pulumi.Input[str] name: The resource name of this endpoint group, for example:
670
- `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
671
- See https://google.aip.dev/122 for more details.
712
+ :param pulumi.Input[str] name: (Output)
713
+ The connected deployment group's resource name, for example:
714
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
715
+ See https://google.aip.dev/124.
672
716
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
673
717
  If it is not provided, the provider project is used.
674
718
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
@@ -677,16 +721,12 @@ class MirroringEndpointGroup(pulumi.CustomResource):
677
721
  and the system is working to reconcile them. This is part of the normal
678
722
  operation (e.g. adding a new association to the group).
679
723
  See https://google.aip.dev/128.
680
- :param pulumi.Input[str] state: The current state of the endpoint group.
681
- See https://google.aip.dev/216.
724
+ :param pulumi.Input[str] state: (Output)
725
+ The current state of the association in this location.
682
726
  Possible values:
683
727
  STATE_UNSPECIFIED
684
728
  ACTIVE
685
- CLOSED
686
- CREATING
687
- DELETING
688
729
  OUT_OF_SYNC
689
- DELETE_FAILED
690
730
  :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
691
731
  See https://google.aip.dev/148#timestamps.
692
732
  """
@@ -694,6 +734,8 @@ class MirroringEndpointGroup(pulumi.CustomResource):
694
734
 
695
735
  __props__ = _MirroringEndpointGroupState.__new__(_MirroringEndpointGroupState)
696
736
 
737
+ __props__.__dict__["associations"] = associations
738
+ __props__.__dict__["connected_deployment_groups"] = connected_deployment_groups
697
739
  __props__.__dict__["create_time"] = create_time
698
740
  __props__.__dict__["description"] = description
699
741
  __props__.__dict__["effective_labels"] = effective_labels
@@ -709,6 +751,25 @@ class MirroringEndpointGroup(pulumi.CustomResource):
709
751
  __props__.__dict__["update_time"] = update_time
710
752
  return MirroringEndpointGroup(resource_name, opts=opts, __props__=__props__)
711
753
 
754
+ @property
755
+ @pulumi.getter
756
+ def associations(self) -> pulumi.Output[Sequence['outputs.MirroringEndpointGroupAssociation']]:
757
+ """
758
+ List of associations to this endpoint group.
759
+ Structure is documented below.
760
+ """
761
+ return pulumi.get(self, "associations")
762
+
763
+ @property
764
+ @pulumi.getter(name="connectedDeploymentGroups")
765
+ def connected_deployment_groups(self) -> pulumi.Output[Sequence['outputs.MirroringEndpointGroupConnectedDeploymentGroup']]:
766
+ """
767
+ List of details about the connected deployment groups to this endpoint
768
+ group.
769
+ Structure is documented below.
770
+ """
771
+ return pulumi.get(self, "connected_deployment_groups")
772
+
712
773
  @property
713
774
  @pulumi.getter(name="createTime")
714
775
  def create_time(self) -> pulumi.Output[str]:
@@ -779,9 +840,10 @@ class MirroringEndpointGroup(pulumi.CustomResource):
779
840
  @pulumi.getter
780
841
  def name(self) -> pulumi.Output[str]:
781
842
  """
782
- The resource name of this endpoint group, for example:
783
- `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`.
784
- See https://google.aip.dev/122 for more details.
843
+ (Output)
844
+ The connected deployment group's resource name, for example:
845
+ `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
846
+ See https://google.aip.dev/124.
785
847
  """
786
848
  return pulumi.get(self, "name")
787
849
 
@@ -818,16 +880,12 @@ class MirroringEndpointGroup(pulumi.CustomResource):
818
880
  @pulumi.getter
819
881
  def state(self) -> pulumi.Output[str]:
820
882
  """
821
- The current state of the endpoint group.
822
- See https://google.aip.dev/216.
883
+ (Output)
884
+ The current state of the association in this location.
823
885
  Possible values:
824
886
  STATE_UNSPECIFIED
825
887
  ACTIVE
826
- CLOSED
827
- CREATING
828
- DELETING
829
888
  OUT_OF_SYNC
830
- DELETE_FAILED
831
889
  """
832
890
  return pulumi.get(self, "state")
833
891
 
@@ -16,10 +16,10 @@ from .. import _utilities
16
16
  from . import outputs
17
17
  from ._inputs import *
18
18
 
19
- __all__ = ['MirroringEndpointGroupAssociationArgs', 'MirroringEndpointGroupAssociation']
19
+ __all__ = ['MirroringEndpointGroupAssociationInitArgs', 'MirroringEndpointGroupAssociation']
20
20
 
21
21
  @pulumi.input_type
22
- class MirroringEndpointGroupAssociationArgs:
22
+ class MirroringEndpointGroupAssociationInitArgs:
23
23
  def __init__(__self__, *,
24
24
  location: pulumi.Input[str],
25
25
  mirroring_endpoint_group: pulumi.Input[str],
@@ -150,6 +150,7 @@ class _MirroringEndpointGroupAssociationState:
150
150
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
151
151
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
152
152
  location: Optional[pulumi.Input[str]] = None,
153
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationArgs']]]] = None,
153
154
  locations_details: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationsDetailArgs']]]] = None,
154
155
  mirroring_endpoint_group: Optional[pulumi.Input[str]] = None,
155
156
  mirroring_endpoint_group_association_id: Optional[pulumi.Input[str]] = None,
@@ -172,7 +173,11 @@ class _MirroringEndpointGroupAssociationState:
172
173
 
173
174
 
174
175
  - - -
175
- :param pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationsDetailArgs']]] locations_details: The list of locations where the association is present. This information
176
+ :param pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationArgs']]] locations: The list of locations where the association is configured. This information
177
+ is retrieved from the linked endpoint group.
178
+ Structure is documented below.
179
+ :param pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationsDetailArgs']]] locations_details: (Deprecated)
180
+ The list of locations where the association is present. This information
176
181
  is retrieved from the linked endpoint group, and not configured as part
177
182
  of the association itself.
178
183
  Structure is documented below.
@@ -213,6 +218,11 @@ class _MirroringEndpointGroupAssociationState:
213
218
  pulumi.set(__self__, "labels", labels)
214
219
  if location is not None:
215
220
  pulumi.set(__self__, "location", location)
221
+ if locations is not None:
222
+ pulumi.set(__self__, "locations", locations)
223
+ if locations_details is not None:
224
+ warnings.warn("""`locationsDetails` is deprecated and will be removed in a future major release. Use `locations` instead.""", DeprecationWarning)
225
+ pulumi.log.warn("""locations_details is deprecated: `locationsDetails` is deprecated and will be removed in a future major release. Use `locations` instead.""")
216
226
  if locations_details is not None:
217
227
  pulumi.set(__self__, "locations_details", locations_details)
218
228
  if mirroring_endpoint_group is not None:
@@ -288,10 +298,26 @@ class _MirroringEndpointGroupAssociationState:
288
298
  def location(self, value: Optional[pulumi.Input[str]]):
289
299
  pulumi.set(self, "location", value)
290
300
 
301
+ @property
302
+ @pulumi.getter
303
+ def locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationArgs']]]]:
304
+ """
305
+ The list of locations where the association is configured. This information
306
+ is retrieved from the linked endpoint group.
307
+ Structure is documented below.
308
+ """
309
+ return pulumi.get(self, "locations")
310
+
311
+ @locations.setter
312
+ def locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationArgs']]]]):
313
+ pulumi.set(self, "locations", value)
314
+
291
315
  @property
292
316
  @pulumi.getter(name="locationsDetails")
317
+ @_utilities.deprecated("""`locationsDetails` is deprecated and will be removed in a future major release. Use `locations` instead.""")
293
318
  def locations_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MirroringEndpointGroupAssociationLocationsDetailArgs']]]]:
294
319
  """
320
+ (Deprecated)
295
321
  The list of locations where the association is present. This information
296
322
  is retrieved from the linked endpoint group, and not configured as part
297
323
  of the association itself.
@@ -539,7 +565,7 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
539
565
  @overload
540
566
  def __init__(__self__,
541
567
  resource_name: str,
542
- args: MirroringEndpointGroupAssociationArgs,
568
+ args: MirroringEndpointGroupAssociationInitArgs,
543
569
  opts: Optional[pulumi.ResourceOptions] = None):
544
570
  """
545
571
  An endpoint group association represents a link between a network and an
@@ -613,12 +639,12 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
613
639
  ```
614
640
 
615
641
  :param str resource_name: The name of the resource.
616
- :param MirroringEndpointGroupAssociationArgs args: The arguments to use to populate this resource's properties.
642
+ :param MirroringEndpointGroupAssociationInitArgs args: The arguments to use to populate this resource's properties.
617
643
  :param pulumi.ResourceOptions opts: Options for the resource.
618
644
  """
619
645
  ...
620
646
  def __init__(__self__, resource_name: str, *args, **kwargs):
621
- resource_args, opts = _utilities.get_resource_args_opts(MirroringEndpointGroupAssociationArgs, pulumi.ResourceOptions, *args, **kwargs)
647
+ resource_args, opts = _utilities.get_resource_args_opts(MirroringEndpointGroupAssociationInitArgs, pulumi.ResourceOptions, *args, **kwargs)
622
648
  if resource_args is not None:
623
649
  __self__._internal_init(resource_name, opts, **resource_args.__dict__)
624
650
  else:
@@ -640,7 +666,7 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
640
666
  if opts.id is None:
641
667
  if __props__ is not None:
642
668
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
643
- __props__ = MirroringEndpointGroupAssociationArgs.__new__(MirroringEndpointGroupAssociationArgs)
669
+ __props__ = MirroringEndpointGroupAssociationInitArgs.__new__(MirroringEndpointGroupAssociationInitArgs)
644
670
 
645
671
  __props__.__dict__["labels"] = labels
646
672
  if location is None and not opts.urn:
@@ -656,6 +682,7 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
656
682
  __props__.__dict__["project"] = project
657
683
  __props__.__dict__["create_time"] = None
658
684
  __props__.__dict__["effective_labels"] = None
685
+ __props__.__dict__["locations"] = None
659
686
  __props__.__dict__["locations_details"] = None
660
687
  __props__.__dict__["name"] = None
661
688
  __props__.__dict__["pulumi_labels"] = None
@@ -678,6 +705,7 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
678
705
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
679
706
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
680
707
  location: Optional[pulumi.Input[str]] = None,
708
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationLocationArgs', 'MirroringEndpointGroupAssociationLocationArgsDict']]]]] = None,
681
709
  locations_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationLocationsDetailArgs', 'MirroringEndpointGroupAssociationLocationsDetailArgsDict']]]]] = None,
682
710
  mirroring_endpoint_group: Optional[pulumi.Input[str]] = None,
683
711
  mirroring_endpoint_group_association_id: Optional[pulumi.Input[str]] = None,
@@ -705,7 +733,11 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
705
733
 
706
734
 
707
735
  - - -
708
- :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationLocationsDetailArgs', 'MirroringEndpointGroupAssociationLocationsDetailArgsDict']]]] locations_details: The list of locations where the association is present. This information
736
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationLocationArgs', 'MirroringEndpointGroupAssociationLocationArgsDict']]]] locations: The list of locations where the association is configured. This information
737
+ is retrieved from the linked endpoint group.
738
+ Structure is documented below.
739
+ :param pulumi.Input[Sequence[pulumi.Input[Union['MirroringEndpointGroupAssociationLocationsDetailArgs', 'MirroringEndpointGroupAssociationLocationsDetailArgsDict']]]] locations_details: (Deprecated)
740
+ The list of locations where the association is present. This information
709
741
  is retrieved from the linked endpoint group, and not configured as part
710
742
  of the association itself.
711
743
  Structure is documented below.
@@ -746,6 +778,7 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
746
778
  __props__.__dict__["effective_labels"] = effective_labels
747
779
  __props__.__dict__["labels"] = labels
748
780
  __props__.__dict__["location"] = location
781
+ __props__.__dict__["locations"] = locations
749
782
  __props__.__dict__["locations_details"] = locations_details
750
783
  __props__.__dict__["mirroring_endpoint_group"] = mirroring_endpoint_group
751
784
  __props__.__dict__["mirroring_endpoint_group_association_id"] = mirroring_endpoint_group_association_id
@@ -796,10 +829,22 @@ class MirroringEndpointGroupAssociation(pulumi.CustomResource):
796
829
  """
797
830
  return pulumi.get(self, "location")
798
831
 
832
+ @property
833
+ @pulumi.getter
834
+ def locations(self) -> pulumi.Output[Sequence['outputs.MirroringEndpointGroupAssociationLocation']]:
835
+ """
836
+ The list of locations where the association is configured. This information
837
+ is retrieved from the linked endpoint group.
838
+ Structure is documented below.
839
+ """
840
+ return pulumi.get(self, "locations")
841
+
799
842
  @property
800
843
  @pulumi.getter(name="locationsDetails")
844
+ @_utilities.deprecated("""`locationsDetails` is deprecated and will be removed in a future major release. Use `locations` instead.""")
801
845
  def locations_details(self) -> pulumi.Output[Sequence['outputs.MirroringEndpointGroupAssociationLocationsDetail']]:
802
846
  """
847
+ (Deprecated)
803
848
  The list of locations where the association is present. This information
804
849
  is retrieved from the linked endpoint group, and not configured as part
805
850
  of the association itself.