pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.0a1743489606__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 (55) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/bigquery/_inputs.py +158 -0
  3. pulumi_gcp/bigquery/outputs.py +115 -0
  4. pulumi_gcp/bigquery/reservation.py +189 -1
  5. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  6. pulumi_gcp/chronicle/data_access_label.py +16 -0
  7. pulumi_gcp/cloudrunv2/service.py +14 -14
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +616 -18
  10. pulumi_gcp/compute/get_images.py +172 -0
  11. pulumi_gcp/compute/get_resource_policy.py +15 -4
  12. pulumi_gcp/compute/image.py +54 -0
  13. pulumi_gcp/compute/interconnect.py +14 -7
  14. pulumi_gcp/compute/outputs.py +710 -18
  15. pulumi_gcp/compute/resource_policy.py +169 -3
  16. pulumi_gcp/compute/router_route_policy.py +16 -0
  17. pulumi_gcp/config/__init__.pyi +6 -0
  18. pulumi_gcp/config/vars.py +12 -0
  19. pulumi_gcp/container/_inputs.py +262 -1
  20. pulumi_gcp/container/cluster.py +54 -0
  21. pulumi_gcp/container/get_cluster.py +12 -1
  22. pulumi_gcp/container/outputs.py +297 -2
  23. pulumi_gcp/dataproc/_inputs.py +23 -0
  24. pulumi_gcp/dataproc/outputs.py +27 -0
  25. pulumi_gcp/lustre/__init__.py +8 -0
  26. pulumi_gcp/lustre/instance.py +983 -0
  27. pulumi_gcp/memorystore/_inputs.py +419 -0
  28. pulumi_gcp/memorystore/get_instance.py +23 -1
  29. pulumi_gcp/memorystore/instance.py +137 -7
  30. pulumi_gcp/memorystore/outputs.py +544 -0
  31. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  32. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  33. pulumi_gcp/networkmanagement/outputs.py +280 -61
  34. pulumi_gcp/networksecurity/_inputs.py +392 -0
  35. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  36. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  37. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  38. pulumi_gcp/networksecurity/outputs.py +240 -0
  39. pulumi_gcp/organizations/__init__.py +1 -0
  40. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  41. pulumi_gcp/osconfig/__init__.py +1 -0
  42. pulumi_gcp/osconfig/_inputs.py +5413 -0
  43. pulumi_gcp/osconfig/outputs.py +3962 -0
  44. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  45. pulumi_gcp/provider.py +60 -0
  46. pulumi_gcp/pulumi-plugin.json +1 -1
  47. pulumi_gcp/storage/__init__.py +2 -0
  48. pulumi_gcp/storage/_inputs.py +726 -0
  49. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  50. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  51. pulumi_gcp/storage/outputs.py +716 -0
  52. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/RECORD +55 -48
  54. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/top_level.txt +0 -0
@@ -99,8 +99,18 @@ __all__ = [
99
99
  'ClientTlsPolicyServerValidationCaGrpcEndpointArgsDict',
100
100
  'InterceptDeploymentGroupConnectedEndpointGroupArgs',
101
101
  'InterceptDeploymentGroupConnectedEndpointGroupArgsDict',
102
+ 'InterceptDeploymentGroupLocationArgs',
103
+ 'InterceptDeploymentGroupLocationArgsDict',
104
+ 'InterceptEndpointGroupAssociationArgs',
105
+ 'InterceptEndpointGroupAssociationArgsDict',
106
+ 'InterceptEndpointGroupAssociationLocationArgs',
107
+ 'InterceptEndpointGroupAssociationLocationArgsDict',
102
108
  'InterceptEndpointGroupAssociationLocationsDetailArgs',
103
109
  'InterceptEndpointGroupAssociationLocationsDetailArgsDict',
110
+ 'InterceptEndpointGroupConnectedDeploymentGroupArgs',
111
+ 'InterceptEndpointGroupConnectedDeploymentGroupArgsDict',
112
+ 'InterceptEndpointGroupConnectedDeploymentGroupLocationArgs',
113
+ 'InterceptEndpointGroupConnectedDeploymentGroupLocationArgsDict',
104
114
  'MirroringDeploymentGroupConnectedEndpointGroupArgs',
105
115
  'MirroringDeploymentGroupConnectedEndpointGroupArgsDict',
106
116
  'MirroringEndpointGroupAssociationLocationsDetailArgs',
@@ -3226,6 +3236,254 @@ class InterceptDeploymentGroupConnectedEndpointGroupArgs:
3226
3236
  pulumi.set(self, "name", value)
3227
3237
 
3228
3238
 
3239
+ if not MYPY:
3240
+ class InterceptDeploymentGroupLocationArgsDict(TypedDict):
3241
+ location: NotRequired[pulumi.Input[str]]
3242
+ """
3243
+ The cloud location of the deployment group, currently restricted to `global`.
3244
+ """
3245
+ state: NotRequired[pulumi.Input[str]]
3246
+ """
3247
+ (Output)
3248
+ The current state of the association in this location.
3249
+ Possible values:
3250
+ STATE_UNSPECIFIED
3251
+ ACTIVE
3252
+ OUT_OF_SYNC
3253
+ """
3254
+ elif False:
3255
+ InterceptDeploymentGroupLocationArgsDict: TypeAlias = Mapping[str, Any]
3256
+
3257
+ @pulumi.input_type
3258
+ class InterceptDeploymentGroupLocationArgs:
3259
+ def __init__(__self__, *,
3260
+ location: Optional[pulumi.Input[str]] = None,
3261
+ state: Optional[pulumi.Input[str]] = None):
3262
+ """
3263
+ :param pulumi.Input[str] location: The cloud location of the deployment group, currently restricted to `global`.
3264
+ :param pulumi.Input[str] state: (Output)
3265
+ The current state of the association in this location.
3266
+ Possible values:
3267
+ STATE_UNSPECIFIED
3268
+ ACTIVE
3269
+ OUT_OF_SYNC
3270
+ """
3271
+ if location is not None:
3272
+ pulumi.set(__self__, "location", location)
3273
+ if state is not None:
3274
+ pulumi.set(__self__, "state", state)
3275
+
3276
+ @property
3277
+ @pulumi.getter
3278
+ def location(self) -> Optional[pulumi.Input[str]]:
3279
+ """
3280
+ The cloud location of the deployment group, currently restricted to `global`.
3281
+ """
3282
+ return pulumi.get(self, "location")
3283
+
3284
+ @location.setter
3285
+ def location(self, value: Optional[pulumi.Input[str]]):
3286
+ pulumi.set(self, "location", value)
3287
+
3288
+ @property
3289
+ @pulumi.getter
3290
+ def state(self) -> Optional[pulumi.Input[str]]:
3291
+ """
3292
+ (Output)
3293
+ The current state of the association in this location.
3294
+ Possible values:
3295
+ STATE_UNSPECIFIED
3296
+ ACTIVE
3297
+ OUT_OF_SYNC
3298
+ """
3299
+ return pulumi.get(self, "state")
3300
+
3301
+ @state.setter
3302
+ def state(self, value: Optional[pulumi.Input[str]]):
3303
+ pulumi.set(self, "state", value)
3304
+
3305
+
3306
+ if not MYPY:
3307
+ class InterceptEndpointGroupAssociationArgsDict(TypedDict):
3308
+ name: NotRequired[pulumi.Input[str]]
3309
+ """
3310
+ (Output)
3311
+ The connected deployment group's resource name, for example:
3312
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3313
+ See https://google.aip.dev/124.
3314
+ """
3315
+ network: NotRequired[pulumi.Input[str]]
3316
+ """
3317
+ (Output)
3318
+ The associated network, for example:
3319
+ projects/123456789/global/networks/my-network.
3320
+ See https://google.aip.dev/124.
3321
+ """
3322
+ state: NotRequired[pulumi.Input[str]]
3323
+ """
3324
+ (Output)
3325
+ The current state of the association in this location.
3326
+ Possible values:
3327
+ STATE_UNSPECIFIED
3328
+ ACTIVE
3329
+ OUT_OF_SYNC
3330
+ """
3331
+ elif False:
3332
+ InterceptEndpointGroupAssociationArgsDict: TypeAlias = Mapping[str, Any]
3333
+
3334
+ @pulumi.input_type
3335
+ class InterceptEndpointGroupAssociationArgs:
3336
+ def __init__(__self__, *,
3337
+ name: Optional[pulumi.Input[str]] = None,
3338
+ network: Optional[pulumi.Input[str]] = None,
3339
+ state: Optional[pulumi.Input[str]] = None):
3340
+ """
3341
+ :param pulumi.Input[str] name: (Output)
3342
+ The connected deployment group's resource name, for example:
3343
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3344
+ See https://google.aip.dev/124.
3345
+ :param pulumi.Input[str] network: (Output)
3346
+ The associated network, for example:
3347
+ projects/123456789/global/networks/my-network.
3348
+ See https://google.aip.dev/124.
3349
+ :param pulumi.Input[str] state: (Output)
3350
+ The current state of the association in this location.
3351
+ Possible values:
3352
+ STATE_UNSPECIFIED
3353
+ ACTIVE
3354
+ OUT_OF_SYNC
3355
+ """
3356
+ if name is not None:
3357
+ pulumi.set(__self__, "name", name)
3358
+ if network is not None:
3359
+ pulumi.set(__self__, "network", network)
3360
+ if state is not None:
3361
+ pulumi.set(__self__, "state", state)
3362
+
3363
+ @property
3364
+ @pulumi.getter
3365
+ def name(self) -> Optional[pulumi.Input[str]]:
3366
+ """
3367
+ (Output)
3368
+ The connected deployment group's resource name, for example:
3369
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3370
+ See https://google.aip.dev/124.
3371
+ """
3372
+ return pulumi.get(self, "name")
3373
+
3374
+ @name.setter
3375
+ def name(self, value: Optional[pulumi.Input[str]]):
3376
+ pulumi.set(self, "name", value)
3377
+
3378
+ @property
3379
+ @pulumi.getter
3380
+ def network(self) -> Optional[pulumi.Input[str]]:
3381
+ """
3382
+ (Output)
3383
+ The associated network, for example:
3384
+ projects/123456789/global/networks/my-network.
3385
+ See https://google.aip.dev/124.
3386
+ """
3387
+ return pulumi.get(self, "network")
3388
+
3389
+ @network.setter
3390
+ def network(self, value: Optional[pulumi.Input[str]]):
3391
+ pulumi.set(self, "network", value)
3392
+
3393
+ @property
3394
+ @pulumi.getter
3395
+ def state(self) -> Optional[pulumi.Input[str]]:
3396
+ """
3397
+ (Output)
3398
+ The current state of the association in this location.
3399
+ Possible values:
3400
+ STATE_UNSPECIFIED
3401
+ ACTIVE
3402
+ OUT_OF_SYNC
3403
+ """
3404
+ return pulumi.get(self, "state")
3405
+
3406
+ @state.setter
3407
+ def state(self, value: Optional[pulumi.Input[str]]):
3408
+ pulumi.set(self, "state", value)
3409
+
3410
+
3411
+ if not MYPY:
3412
+ class InterceptEndpointGroupAssociationLocationArgsDict(TypedDict):
3413
+ location: NotRequired[pulumi.Input[str]]
3414
+ """
3415
+ The cloud location of the association, currently restricted to `global`.
3416
+
3417
+
3418
+ - - -
3419
+ """
3420
+ state: NotRequired[pulumi.Input[str]]
3421
+ """
3422
+ (Output)
3423
+ The current state of the association in this location.
3424
+ Possible values:
3425
+ STATE_UNSPECIFIED
3426
+ ACTIVE
3427
+ OUT_OF_SYNC
3428
+ """
3429
+ elif False:
3430
+ InterceptEndpointGroupAssociationLocationArgsDict: TypeAlias = Mapping[str, Any]
3431
+
3432
+ @pulumi.input_type
3433
+ class InterceptEndpointGroupAssociationLocationArgs:
3434
+ def __init__(__self__, *,
3435
+ location: Optional[pulumi.Input[str]] = None,
3436
+ state: Optional[pulumi.Input[str]] = None):
3437
+ """
3438
+ :param pulumi.Input[str] location: The cloud location of the association, currently restricted to `global`.
3439
+
3440
+
3441
+ - - -
3442
+ :param pulumi.Input[str] state: (Output)
3443
+ The current state of the association in this location.
3444
+ Possible values:
3445
+ STATE_UNSPECIFIED
3446
+ ACTIVE
3447
+ OUT_OF_SYNC
3448
+ """
3449
+ if location is not None:
3450
+ pulumi.set(__self__, "location", location)
3451
+ if state is not None:
3452
+ pulumi.set(__self__, "state", state)
3453
+
3454
+ @property
3455
+ @pulumi.getter
3456
+ def location(self) -> Optional[pulumi.Input[str]]:
3457
+ """
3458
+ The cloud location of the association, currently restricted to `global`.
3459
+
3460
+
3461
+ - - -
3462
+ """
3463
+ return pulumi.get(self, "location")
3464
+
3465
+ @location.setter
3466
+ def location(self, value: Optional[pulumi.Input[str]]):
3467
+ pulumi.set(self, "location", value)
3468
+
3469
+ @property
3470
+ @pulumi.getter
3471
+ def state(self) -> Optional[pulumi.Input[str]]:
3472
+ """
3473
+ (Output)
3474
+ The current state of the association in this location.
3475
+ Possible values:
3476
+ STATE_UNSPECIFIED
3477
+ ACTIVE
3478
+ OUT_OF_SYNC
3479
+ """
3480
+ return pulumi.get(self, "state")
3481
+
3482
+ @state.setter
3483
+ def state(self, value: Optional[pulumi.Input[str]]):
3484
+ pulumi.set(self, "state", value)
3485
+
3486
+
3229
3487
  if not MYPY:
3230
3488
  class InterceptEndpointGroupAssociationLocationsDetailArgsDict(TypedDict):
3231
3489
  location: NotRequired[pulumi.Input[str]]
@@ -3302,6 +3560,140 @@ class InterceptEndpointGroupAssociationLocationsDetailArgs:
3302
3560
  pulumi.set(self, "state", value)
3303
3561
 
3304
3562
 
3563
+ if not MYPY:
3564
+ class InterceptEndpointGroupConnectedDeploymentGroupArgsDict(TypedDict):
3565
+ locations: NotRequired[pulumi.Input[Sequence[pulumi.Input['InterceptEndpointGroupConnectedDeploymentGroupLocationArgsDict']]]]
3566
+ """
3567
+ (Output)
3568
+ The list of locations where the deployment group is present.
3569
+ Structure is documented below.
3570
+ """
3571
+ name: NotRequired[pulumi.Input[str]]
3572
+ """
3573
+ (Output)
3574
+ The connected deployment group's resource name, for example:
3575
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3576
+ See https://google.aip.dev/124.
3577
+ """
3578
+ elif False:
3579
+ InterceptEndpointGroupConnectedDeploymentGroupArgsDict: TypeAlias = Mapping[str, Any]
3580
+
3581
+ @pulumi.input_type
3582
+ class InterceptEndpointGroupConnectedDeploymentGroupArgs:
3583
+ def __init__(__self__, *,
3584
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input['InterceptEndpointGroupConnectedDeploymentGroupLocationArgs']]]] = None,
3585
+ name: Optional[pulumi.Input[str]] = None):
3586
+ """
3587
+ :param pulumi.Input[Sequence[pulumi.Input['InterceptEndpointGroupConnectedDeploymentGroupLocationArgs']]] locations: (Output)
3588
+ The list of locations where the deployment group is present.
3589
+ Structure is documented below.
3590
+ :param pulumi.Input[str] name: (Output)
3591
+ The connected deployment group's resource name, for example:
3592
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3593
+ See https://google.aip.dev/124.
3594
+ """
3595
+ if locations is not None:
3596
+ pulumi.set(__self__, "locations", locations)
3597
+ if name is not None:
3598
+ pulumi.set(__self__, "name", name)
3599
+
3600
+ @property
3601
+ @pulumi.getter
3602
+ def locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InterceptEndpointGroupConnectedDeploymentGroupLocationArgs']]]]:
3603
+ """
3604
+ (Output)
3605
+ The list of locations where the deployment group is present.
3606
+ Structure is documented below.
3607
+ """
3608
+ return pulumi.get(self, "locations")
3609
+
3610
+ @locations.setter
3611
+ def locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InterceptEndpointGroupConnectedDeploymentGroupLocationArgs']]]]):
3612
+ pulumi.set(self, "locations", value)
3613
+
3614
+ @property
3615
+ @pulumi.getter
3616
+ def name(self) -> Optional[pulumi.Input[str]]:
3617
+ """
3618
+ (Output)
3619
+ The connected deployment group's resource name, for example:
3620
+ `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`.
3621
+ See https://google.aip.dev/124.
3622
+ """
3623
+ return pulumi.get(self, "name")
3624
+
3625
+ @name.setter
3626
+ def name(self, value: Optional[pulumi.Input[str]]):
3627
+ pulumi.set(self, "name", value)
3628
+
3629
+
3630
+ if not MYPY:
3631
+ class InterceptEndpointGroupConnectedDeploymentGroupLocationArgsDict(TypedDict):
3632
+ location: NotRequired[pulumi.Input[str]]
3633
+ """
3634
+ The cloud location of the endpoint group, currently restricted to `global`.
3635
+ """
3636
+ state: NotRequired[pulumi.Input[str]]
3637
+ """
3638
+ (Output)
3639
+ The current state of the association in this location.
3640
+ Possible values:
3641
+ STATE_UNSPECIFIED
3642
+ ACTIVE
3643
+ OUT_OF_SYNC
3644
+ """
3645
+ elif False:
3646
+ InterceptEndpointGroupConnectedDeploymentGroupLocationArgsDict: TypeAlias = Mapping[str, Any]
3647
+
3648
+ @pulumi.input_type
3649
+ class InterceptEndpointGroupConnectedDeploymentGroupLocationArgs:
3650
+ def __init__(__self__, *,
3651
+ location: Optional[pulumi.Input[str]] = None,
3652
+ state: Optional[pulumi.Input[str]] = None):
3653
+ """
3654
+ :param pulumi.Input[str] location: The cloud location of the endpoint group, currently restricted to `global`.
3655
+ :param pulumi.Input[str] state: (Output)
3656
+ The current state of the association in this location.
3657
+ Possible values:
3658
+ STATE_UNSPECIFIED
3659
+ ACTIVE
3660
+ OUT_OF_SYNC
3661
+ """
3662
+ if location is not None:
3663
+ pulumi.set(__self__, "location", location)
3664
+ if state is not None:
3665
+ pulumi.set(__self__, "state", state)
3666
+
3667
+ @property
3668
+ @pulumi.getter
3669
+ def location(self) -> Optional[pulumi.Input[str]]:
3670
+ """
3671
+ The cloud location of the endpoint group, currently restricted to `global`.
3672
+ """
3673
+ return pulumi.get(self, "location")
3674
+
3675
+ @location.setter
3676
+ def location(self, value: Optional[pulumi.Input[str]]):
3677
+ pulumi.set(self, "location", value)
3678
+
3679
+ @property
3680
+ @pulumi.getter
3681
+ def state(self) -> Optional[pulumi.Input[str]]:
3682
+ """
3683
+ (Output)
3684
+ The current state of the association in this location.
3685
+ Possible values:
3686
+ STATE_UNSPECIFIED
3687
+ ACTIVE
3688
+ OUT_OF_SYNC
3689
+ """
3690
+ return pulumi.get(self, "state")
3691
+
3692
+ @state.setter
3693
+ def state(self, value: Optional[pulumi.Input[str]]):
3694
+ pulumi.set(self, "state", value)
3695
+
3696
+
3305
3697
  if not MYPY:
3306
3698
  class MirroringDeploymentGroupConnectedEndpointGroupArgsDict(TypedDict):
3307
3699
  name: NotRequired[pulumi.Input[str]]
@@ -149,6 +149,7 @@ class _InterceptDeploymentGroupState:
149
149
  intercept_deployment_group_id: Optional[pulumi.Input[str]] = None,
150
150
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
151
151
  location: Optional[pulumi.Input[str]] = None,
152
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input['InterceptDeploymentGroupLocationArgs']]]] = None,
152
153
  name: Optional[pulumi.Input[str]] = None,
153
154
  network: Optional[pulumi.Input[str]] = None,
154
155
  project: Optional[pulumi.Input[str]] = None,
@@ -174,6 +175,8 @@ class _InterceptDeploymentGroupState:
174
175
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
175
176
  Please refer to the field `effective_labels` for all of the labels present on the resource.
176
177
  :param pulumi.Input[str] location: The cloud location of the deployment group, currently restricted to `global`.
178
+ :param pulumi.Input[Sequence[pulumi.Input['InterceptDeploymentGroupLocationArgs']]] locations: The list of locations where the deployment group is present.
179
+ Structure is documented below.
177
180
  :param pulumi.Input[str] name: (Output)
178
181
  The connected endpoint group's resource name, for example:
179
182
  `projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
@@ -189,13 +192,12 @@ class _InterceptDeploymentGroupState:
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
  """
@@ -213,6 +215,8 @@ class _InterceptDeploymentGroupState:
213
215
  pulumi.set(__self__, "labels", labels)
214
216
  if location is not None:
215
217
  pulumi.set(__self__, "location", location)
218
+ if locations is not None:
219
+ pulumi.set(__self__, "locations", locations)
216
220
  if name is not None:
217
221
  pulumi.set(__self__, "name", name)
218
222
  if network is not None:
@@ -321,6 +325,19 @@ class _InterceptDeploymentGroupState:
321
325
  def location(self, value: Optional[pulumi.Input[str]]):
322
326
  pulumi.set(self, "location", value)
323
327
 
328
+ @property
329
+ @pulumi.getter
330
+ def locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InterceptDeploymentGroupLocationArgs']]]]:
331
+ """
332
+ The list of locations where the deployment group is present.
333
+ Structure is documented below.
334
+ """
335
+ return pulumi.get(self, "locations")
336
+
337
+ @locations.setter
338
+ def locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InterceptDeploymentGroupLocationArgs']]]]):
339
+ pulumi.set(self, "locations", value)
340
+
324
341
  @property
325
342
  @pulumi.getter
326
343
  def name(self) -> Optional[pulumi.Input[str]]:
@@ -395,13 +412,12 @@ class _InterceptDeploymentGroupState:
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
 
@@ -597,6 +613,7 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
597
613
  __props__.__dict__["connected_endpoint_groups"] = None
598
614
  __props__.__dict__["create_time"] = None
599
615
  __props__.__dict__["effective_labels"] = None
616
+ __props__.__dict__["locations"] = None
600
617
  __props__.__dict__["name"] = None
601
618
  __props__.__dict__["pulumi_labels"] = None
602
619
  __props__.__dict__["reconciling"] = None
@@ -621,6 +638,7 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
621
638
  intercept_deployment_group_id: Optional[pulumi.Input[str]] = None,
622
639
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
623
640
  location: Optional[pulumi.Input[str]] = None,
641
+ locations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InterceptDeploymentGroupLocationArgs', 'InterceptDeploymentGroupLocationArgsDict']]]]] = None,
624
642
  name: Optional[pulumi.Input[str]] = None,
625
643
  network: Optional[pulumi.Input[str]] = None,
626
644
  project: Optional[pulumi.Input[str]] = None,
@@ -651,6 +669,8 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
651
669
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
652
670
  Please refer to the field `effective_labels` for all of the labels present on the resource.
653
671
  :param pulumi.Input[str] location: The cloud location of the deployment group, currently restricted to `global`.
672
+ :param pulumi.Input[Sequence[pulumi.Input[Union['InterceptDeploymentGroupLocationArgs', 'InterceptDeploymentGroupLocationArgsDict']]]] locations: The list of locations where the deployment group is present.
673
+ Structure is documented below.
654
674
  :param pulumi.Input[str] name: (Output)
655
675
  The connected endpoint group's resource name, for example:
656
676
  `projects/123456789/locations/global/interceptEndpointGroups/my-eg`.
@@ -666,13 +686,12 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
666
686
  and the system is working to reconcile them. This is part of the normal
667
687
  operation (e.g. adding a new deployment to the group)
668
688
  See https://google.aip.dev/128.
669
- :param pulumi.Input[str] state: The current state of the deployment group.
670
- See https://google.aip.dev/216.
689
+ :param pulumi.Input[str] state: (Output)
690
+ The current state of the association in this location.
671
691
  Possible values:
672
692
  STATE_UNSPECIFIED
673
693
  ACTIVE
674
- CREATING
675
- DELETING
694
+ OUT_OF_SYNC
676
695
  :param pulumi.Input[str] update_time: The timestamp when the resource was most recently updated.
677
696
  See https://google.aip.dev/148#timestamps.
678
697
  """
@@ -687,6 +706,7 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
687
706
  __props__.__dict__["intercept_deployment_group_id"] = intercept_deployment_group_id
688
707
  __props__.__dict__["labels"] = labels
689
708
  __props__.__dict__["location"] = location
709
+ __props__.__dict__["locations"] = locations
690
710
  __props__.__dict__["name"] = name
691
711
  __props__.__dict__["network"] = network
692
712
  __props__.__dict__["project"] = project
@@ -761,6 +781,15 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
761
781
  """
762
782
  return pulumi.get(self, "location")
763
783
 
784
+ @property
785
+ @pulumi.getter
786
+ def locations(self) -> pulumi.Output[Sequence['outputs.InterceptDeploymentGroupLocation']]:
787
+ """
788
+ The list of locations where the deployment group is present.
789
+ Structure is documented below.
790
+ """
791
+ return pulumi.get(self, "locations")
792
+
764
793
  @property
765
794
  @pulumi.getter
766
795
  def name(self) -> pulumi.Output[str]:
@@ -815,13 +844,12 @@ class InterceptDeploymentGroup(pulumi.CustomResource):
815
844
  @pulumi.getter
816
845
  def state(self) -> pulumi.Output[str]:
817
846
  """
818
- The current state of the deployment group.
819
- See https://google.aip.dev/216.
847
+ (Output)
848
+ The current state of the association in this location.
820
849
  Possible values:
821
850
  STATE_UNSPECIFIED
822
851
  ACTIVE
823
- CREATING
824
- DELETING
852
+ OUT_OF_SYNC
825
853
  """
826
854
  return pulumi.get(self, "state")
827
855