pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731584999__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 (52) hide show
  1. pulumi_gcp/__init__.py +0 -24
  2. pulumi_gcp/accesscontextmanager/__init__.py +0 -1
  3. pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
  4. pulumi_gcp/accesscontextmanager/outputs.py +36 -60
  5. pulumi_gcp/artifactregistry/_inputs.py +0 -56
  6. pulumi_gcp/artifactregistry/outputs.py +0 -65
  7. pulumi_gcp/artifactregistry/repository.py +0 -48
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
  9. pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
  11. pulumi_gcp/certificateauthority/authority.py +138 -28
  12. pulumi_gcp/cloudrun/service.py +10 -0
  13. pulumi_gcp/cloudrunv2/get_service.py +4 -15
  14. pulumi_gcp/cloudrunv2/service.py +2 -30
  15. pulumi_gcp/compute/_inputs.py +12 -12
  16. pulumi_gcp/compute/outputs.py +10 -10
  17. pulumi_gcp/dataproc/__init__.py +0 -1
  18. pulumi_gcp/dataproc/_inputs.py +0 -490
  19. pulumi_gcp/dataproc/outputs.py +0 -385
  20. pulumi_gcp/filestore/_inputs.py +0 -152
  21. pulumi_gcp/filestore/get_instance.py +1 -12
  22. pulumi_gcp/filestore/instance.py +0 -47
  23. pulumi_gcp/filestore/outputs.py +0 -229
  24. pulumi_gcp/iam/__init__.py +0 -2
  25. pulumi_gcp/iam/_inputs.py +0 -274
  26. pulumi_gcp/iam/outputs.py +0 -198
  27. pulumi_gcp/managedkafka/cluster.py +0 -4
  28. pulumi_gcp/managedkafka/topic.py +0 -4
  29. pulumi_gcp/pubsub/subscription.py +8 -8
  30. pulumi_gcp/pulumi-plugin.json +1 -1
  31. pulumi_gcp/redis/_inputs.py +0 -213
  32. pulumi_gcp/redis/cluster.py +0 -289
  33. pulumi_gcp/redis/outputs.py +0 -185
  34. pulumi_gcp/securesourcemanager/_inputs.py +0 -33
  35. pulumi_gcp/securesourcemanager/instance.py +3 -90
  36. pulumi_gcp/securesourcemanager/outputs.py +0 -19
  37. pulumi_gcp/spanner/database.py +14 -14
  38. pulumi_gcp/sql/_inputs.py +0 -73
  39. pulumi_gcp/sql/database_instance.py +0 -60
  40. pulumi_gcp/sql/outputs.py +0 -146
  41. pulumi_gcp/sql/user.py +2 -2
  42. pulumi_gcp/tags/location_tag_binding.py +8 -8
  43. pulumi_gcp/vertex/ai_endpoint.py +29 -22
  44. {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/METADATA +5 -5
  45. {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/RECORD +47 -52
  46. {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/WHEEL +1 -1
  47. pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
  48. pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
  49. pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
  50. pulumi_gcp/iam/folders_policy_binding.py +0 -917
  51. pulumi_gcp/iam/organizations_policy_binding.py +0 -901
  52. {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731584999.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,6 @@ __all__ = [
26
26
  'RepositoryRemoteRepositoryConfig',
27
27
  'RepositoryRemoteRepositoryConfigAptRepository',
28
28
  'RepositoryRemoteRepositoryConfigAptRepositoryPublicRepository',
29
- 'RepositoryRemoteRepositoryConfigCommonRepository',
30
29
  'RepositoryRemoteRepositoryConfigDockerRepository',
31
30
  'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepository',
32
31
  'RepositoryRemoteRepositoryConfigMavenRepository',
@@ -49,7 +48,6 @@ __all__ = [
49
48
  'GetRepositoryRemoteRepositoryConfigResult',
50
49
  'GetRepositoryRemoteRepositoryConfigAptRepositoryResult',
51
50
  'GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult',
52
- 'GetRepositoryRemoteRepositoryConfigCommonRepositoryResult',
53
51
  'GetRepositoryRemoteRepositoryConfigDockerRepositoryResult',
54
52
  'GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryResult',
55
53
  'GetRepositoryRemoteRepositoryConfigMavenRepositoryResult',
@@ -458,8 +456,6 @@ class RepositoryRemoteRepositoryConfig(dict):
458
456
  suggest = None
459
457
  if key == "aptRepository":
460
458
  suggest = "apt_repository"
461
- elif key == "commonRepository":
462
- suggest = "common_repository"
463
459
  elif key == "disableUpstreamValidation":
464
460
  suggest = "disable_upstream_validation"
465
461
  elif key == "dockerRepository":
@@ -488,7 +484,6 @@ class RepositoryRemoteRepositoryConfig(dict):
488
484
 
489
485
  def __init__(__self__, *,
490
486
  apt_repository: Optional['outputs.RepositoryRemoteRepositoryConfigAptRepository'] = None,
491
- common_repository: Optional['outputs.RepositoryRemoteRepositoryConfigCommonRepository'] = None,
492
487
  description: Optional[str] = None,
493
488
  disable_upstream_validation: Optional[bool] = None,
494
489
  docker_repository: Optional['outputs.RepositoryRemoteRepositoryConfigDockerRepository'] = None,
@@ -500,8 +495,6 @@ class RepositoryRemoteRepositoryConfig(dict):
500
495
  """
501
496
  :param 'RepositoryRemoteRepositoryConfigAptRepositoryArgs' apt_repository: Specific settings for an Apt remote repository.
502
497
  Structure is documented below.
503
- :param 'RepositoryRemoteRepositoryConfigCommonRepositoryArgs' common_repository: Specific settings for an Artifact Registory remote repository.
504
- Structure is documented below.
505
498
  :param str description: The description of the remote source.
506
499
  :param bool disable_upstream_validation: If true, the remote repository upstream and upstream credentials will
507
500
  not be validated.
@@ -520,8 +513,6 @@ class RepositoryRemoteRepositoryConfig(dict):
520
513
  """
521
514
  if apt_repository is not None:
522
515
  pulumi.set(__self__, "apt_repository", apt_repository)
523
- if common_repository is not None:
524
- pulumi.set(__self__, "common_repository", common_repository)
525
516
  if description is not None:
526
517
  pulumi.set(__self__, "description", description)
527
518
  if disable_upstream_validation is not None:
@@ -548,15 +539,6 @@ class RepositoryRemoteRepositoryConfig(dict):
548
539
  """
549
540
  return pulumi.get(self, "apt_repository")
550
541
 
551
- @property
552
- @pulumi.getter(name="commonRepository")
553
- def common_repository(self) -> Optional['outputs.RepositoryRemoteRepositoryConfigCommonRepository']:
554
- """
555
- Specific settings for an Artifact Registory remote repository.
556
- Structure is documented below.
557
- """
558
- return pulumi.get(self, "common_repository")
559
-
560
542
  @property
561
543
  @pulumi.getter
562
544
  def description(self) -> Optional[str]:
@@ -717,24 +699,6 @@ class RepositoryRemoteRepositoryConfigAptRepositoryPublicRepository(dict):
717
699
  return pulumi.get(self, "repository_path")
718
700
 
719
701
 
720
- @pulumi.output_type
721
- class RepositoryRemoteRepositoryConfigCommonRepository(dict):
722
- def __init__(__self__, *,
723
- uri: str):
724
- """
725
- :param str uri: Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
726
- """
727
- pulumi.set(__self__, "uri", uri)
728
-
729
- @property
730
- @pulumi.getter
731
- def uri(self) -> str:
732
- """
733
- Specific uri to the Artifact Registory repository, e.g. `projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY`
734
- """
735
- return pulumi.get(self, "uri")
736
-
737
-
738
702
  @pulumi.output_type
739
703
  class RepositoryRemoteRepositoryConfigDockerRepository(dict):
740
704
  @staticmethod
@@ -1502,7 +1466,6 @@ class GetRepositoryMavenConfigResult(dict):
1502
1466
  class GetRepositoryRemoteRepositoryConfigResult(dict):
1503
1467
  def __init__(__self__, *,
1504
1468
  apt_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigAptRepositoryResult'],
1505
- common_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigCommonRepositoryResult'],
1506
1469
  description: str,
1507
1470
  disable_upstream_validation: bool,
1508
1471
  docker_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigDockerRepositoryResult'],
@@ -1513,7 +1476,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1513
1476
  yum_repositories: Sequence['outputs.GetRepositoryRemoteRepositoryConfigYumRepositoryResult']):
1514
1477
  """
1515
1478
  :param Sequence['GetRepositoryRemoteRepositoryConfigAptRepositoryArgs'] apt_repositories: Specific settings for an Apt remote repository.
1516
- :param Sequence['GetRepositoryRemoteRepositoryConfigCommonRepositoryArgs'] common_repositories: Specific settings for an Artifact Registory remote repository.
1517
1479
  :param str description: The description of the remote source.
1518
1480
  :param bool disable_upstream_validation: If true, the remote repository upstream and upstream credentials will
1519
1481
  not be validated.
@@ -1525,7 +1487,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1525
1487
  :param Sequence['GetRepositoryRemoteRepositoryConfigYumRepositoryArgs'] yum_repositories: Specific settings for an Yum remote repository.
1526
1488
  """
1527
1489
  pulumi.set(__self__, "apt_repositories", apt_repositories)
1528
- pulumi.set(__self__, "common_repositories", common_repositories)
1529
1490
  pulumi.set(__self__, "description", description)
1530
1491
  pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
1531
1492
  pulumi.set(__self__, "docker_repositories", docker_repositories)
@@ -1543,14 +1504,6 @@ class GetRepositoryRemoteRepositoryConfigResult(dict):
1543
1504
  """
1544
1505
  return pulumi.get(self, "apt_repositories")
1545
1506
 
1546
- @property
1547
- @pulumi.getter(name="commonRepositories")
1548
- def common_repositories(self) -> Sequence['outputs.GetRepositoryRemoteRepositoryConfigCommonRepositoryResult']:
1549
- """
1550
- Specific settings for an Artifact Registory remote repository.
1551
- """
1552
- return pulumi.get(self, "common_repositories")
1553
-
1554
1507
  @property
1555
1508
  @pulumi.getter
1556
1509
  def description(self) -> str:
@@ -1664,24 +1617,6 @@ class GetRepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryResult(dic
1664
1617
  return pulumi.get(self, "repository_path")
1665
1618
 
1666
1619
 
1667
- @pulumi.output_type
1668
- class GetRepositoryRemoteRepositoryConfigCommonRepositoryResult(dict):
1669
- def __init__(__self__, *,
1670
- uri: str):
1671
- """
1672
- :param str uri: Specific uri to the Artifact Registory repository, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1673
- """
1674
- pulumi.set(__self__, "uri", uri)
1675
-
1676
- @property
1677
- @pulumi.getter
1678
- def uri(self) -> str:
1679
- """
1680
- Specific uri to the Artifact Registory repository, e.g. 'projects/UPSTREAM_PROJECT_ID/locations/REGION/repositories/UPSTREAM_REPOSITORY'
1681
- """
1682
- return pulumi.get(self, "uri")
1683
-
1684
-
1685
1620
  @pulumi.output_type
1686
1621
  class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
1687
1622
  def __init__(__self__, *,
@@ -1119,30 +1119,6 @@ class Repository(pulumi.CustomResource):
1119
1119
  },
1120
1120
  })
1121
1121
  ```
1122
- ### Artifact Registry Repository Remote Common Repository With Docker
1123
-
1124
- ```python
1125
- import pulumi
1126
- import pulumi_gcp as gcp
1127
-
1128
- upstream_repo = gcp.artifactregistry.Repository("upstream_repo",
1129
- location="us-central1",
1130
- repository_id="example-upstream-repo",
1131
- description="example upstream repository",
1132
- format="DOCKER")
1133
- my_repo = gcp.artifactregistry.Repository("my-repo",
1134
- location="us-central1",
1135
- repository_id="example-common-remote",
1136
- description="example remote common repository with docker upstream",
1137
- format="DOCKER",
1138
- mode="REMOTE_REPOSITORY",
1139
- remote_repository_config={
1140
- "description": "pull-through cache of another Artifact Registry repository",
1141
- "common_repository": {
1142
- "uri": upstream_repo.id,
1143
- },
1144
- })
1145
- ```
1146
1122
 
1147
1123
  ## Import
1148
1124
 
@@ -1639,30 +1615,6 @@ class Repository(pulumi.CustomResource):
1639
1615
  },
1640
1616
  })
1641
1617
  ```
1642
- ### Artifact Registry Repository Remote Common Repository With Docker
1643
-
1644
- ```python
1645
- import pulumi
1646
- import pulumi_gcp as gcp
1647
-
1648
- upstream_repo = gcp.artifactregistry.Repository("upstream_repo",
1649
- location="us-central1",
1650
- repository_id="example-upstream-repo",
1651
- description="example upstream repository",
1652
- format="DOCKER")
1653
- my_repo = gcp.artifactregistry.Repository("my-repo",
1654
- location="us-central1",
1655
- repository_id="example-common-remote",
1656
- description="example remote common repository with docker upstream",
1657
- format="DOCKER",
1658
- mode="REMOTE_REPOSITORY",
1659
- remote_repository_config={
1660
- "description": "pull-through cache of another Artifact Registry repository",
1661
- "common_repository": {
1662
- "uri": upstream_repo.id,
1663
- },
1664
- })
1665
- ```
1666
1618
 
1667
1619
  ## Import
1668
1620
 
@@ -10,7 +10,6 @@ from .backup_plan_association import *
10
10
  from .backup_vault import *
11
11
  from .get_backup_plan import *
12
12
  from .get_backup_plan_association import *
13
- from .get_data_source import *
14
13
  from .get_management_server import *
15
14
  from .management_server import *
16
15
  from ._inputs import *
@@ -22,7 +22,6 @@ class BackupVaultArgs:
22
22
  backup_minimum_enforced_retention_duration: pulumi.Input[str],
23
23
  backup_vault_id: pulumi.Input[str],
24
24
  location: pulumi.Input[str],
25
- access_restriction: Optional[pulumi.Input[str]] = None,
26
25
  allow_missing: Optional[pulumi.Input[bool]] = None,
27
26
  annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
27
  description: Optional[pulumi.Input[str]] = None,
@@ -41,9 +40,6 @@ class BackupVaultArgs:
41
40
 
42
41
  - - -
43
42
  :param pulumi.Input[str] location: The GCP location for the backup vault.
44
- :param pulumi.Input[str] access_restriction: Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
45
- Default value is `WITHIN_ORGANIZATION`.
46
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
47
43
  :param pulumi.Input[bool] allow_missing: Allow idempotent deletion of backup vault. The request will still succeed in case the backup vault does not exist.
48
44
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. User annotations. See https://google.aip.dev/128#annotations
49
45
  Stores small amounts of arbitrary data.
@@ -74,8 +70,6 @@ class BackupVaultArgs:
74
70
  pulumi.set(__self__, "backup_minimum_enforced_retention_duration", backup_minimum_enforced_retention_duration)
75
71
  pulumi.set(__self__, "backup_vault_id", backup_vault_id)
76
72
  pulumi.set(__self__, "location", location)
77
- if access_restriction is not None:
78
- pulumi.set(__self__, "access_restriction", access_restriction)
79
73
  if allow_missing is not None:
80
74
  pulumi.set(__self__, "allow_missing", allow_missing)
81
75
  if annotations is not None:
@@ -139,20 +133,6 @@ class BackupVaultArgs:
139
133
  def location(self, value: pulumi.Input[str]):
140
134
  pulumi.set(self, "location", value)
141
135
 
142
- @property
143
- @pulumi.getter(name="accessRestriction")
144
- def access_restriction(self) -> Optional[pulumi.Input[str]]:
145
- """
146
- Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
147
- Default value is `WITHIN_ORGANIZATION`.
148
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
149
- """
150
- return pulumi.get(self, "access_restriction")
151
-
152
- @access_restriction.setter
153
- def access_restriction(self, value: Optional[pulumi.Input[str]]):
154
- pulumi.set(self, "access_restriction", value)
155
-
156
136
  @property
157
137
  @pulumi.getter(name="allowMissing")
158
138
  def allow_missing(self) -> Optional[pulumi.Input[bool]]:
@@ -294,7 +274,6 @@ class BackupVaultArgs:
294
274
  @pulumi.input_type
295
275
  class _BackupVaultState:
296
276
  def __init__(__self__, *,
297
- access_restriction: Optional[pulumi.Input[str]] = None,
298
277
  allow_missing: Optional[pulumi.Input[bool]] = None,
299
278
  annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
300
279
  backup_count: Optional[pulumi.Input[str]] = None,
@@ -323,9 +302,6 @@ class _BackupVaultState:
323
302
  update_time: Optional[pulumi.Input[str]] = None):
324
303
  """
325
304
  Input properties used for looking up and filtering BackupVault resources.
326
- :param pulumi.Input[str] access_restriction: Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
327
- Default value is `WITHIN_ORGANIZATION`.
328
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
329
305
  :param pulumi.Input[bool] allow_missing: Allow idempotent deletion of backup vault. The request will still succeed in case the backup vault does not exist.
330
306
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. User annotations. See https://google.aip.dev/128#annotations
331
307
  Stores small amounts of arbitrary data.
@@ -378,8 +354,6 @@ class _BackupVaultState:
378
354
  :param pulumi.Input[str] uid: Output only. Output only Immutable after resource creation until resource deletion.
379
355
  :param pulumi.Input[str] update_time: Output only. The time when the instance was updated.
380
356
  """
381
- if access_restriction is not None:
382
- pulumi.set(__self__, "access_restriction", access_restriction)
383
357
  if allow_missing is not None:
384
358
  pulumi.set(__self__, "allow_missing", allow_missing)
385
359
  if annotations is not None:
@@ -436,20 +410,6 @@ class _BackupVaultState:
436
410
  if update_time is not None:
437
411
  pulumi.set(__self__, "update_time", update_time)
438
412
 
439
- @property
440
- @pulumi.getter(name="accessRestriction")
441
- def access_restriction(self) -> Optional[pulumi.Input[str]]:
442
- """
443
- Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
444
- Default value is `WITHIN_ORGANIZATION`.
445
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
446
- """
447
- return pulumi.get(self, "access_restriction")
448
-
449
- @access_restriction.setter
450
- def access_restriction(self, value: Optional[pulumi.Input[str]]):
451
- pulumi.set(self, "access_restriction", value)
452
-
453
413
  @property
454
414
  @pulumi.getter(name="allowMissing")
455
415
  def allow_missing(self) -> Optional[pulumi.Input[bool]]:
@@ -792,7 +752,6 @@ class BackupVault(pulumi.CustomResource):
792
752
  def __init__(__self__,
793
753
  resource_name: str,
794
754
  opts: Optional[pulumi.ResourceOptions] = None,
795
- access_restriction: Optional[pulumi.Input[str]] = None,
796
755
  allow_missing: Optional[pulumi.Input[bool]] = None,
797
756
  annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
798
757
  backup_minimum_enforced_retention_duration: Optional[pulumi.Input[str]] = None,
@@ -830,7 +789,6 @@ class BackupVault(pulumi.CustomResource):
830
789
  "annotations2": "baz1",
831
790
  },
832
791
  force_update=True,
833
- access_restriction="WITHIN_ORGANIZATION",
834
792
  ignore_inactive_datasources=True,
835
793
  ignore_backup_plan_references=True,
836
794
  allow_missing=True)
@@ -862,9 +820,6 @@ class BackupVault(pulumi.CustomResource):
862
820
 
863
821
  :param str resource_name: The name of the resource.
864
822
  :param pulumi.ResourceOptions opts: Options for the resource.
865
- :param pulumi.Input[str] access_restriction: Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
866
- Default value is `WITHIN_ORGANIZATION`.
867
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
868
823
  :param pulumi.Input[bool] allow_missing: Allow idempotent deletion of backup vault. The request will still succeed in case the backup vault does not exist.
869
824
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. User annotations. See https://google.aip.dev/128#annotations
870
825
  Stores small amounts of arbitrary data.
@@ -927,7 +882,6 @@ class BackupVault(pulumi.CustomResource):
927
882
  "annotations2": "baz1",
928
883
  },
929
884
  force_update=True,
930
- access_restriction="WITHIN_ORGANIZATION",
931
885
  ignore_inactive_datasources=True,
932
886
  ignore_backup_plan_references=True,
933
887
  allow_missing=True)
@@ -972,7 +926,6 @@ class BackupVault(pulumi.CustomResource):
972
926
  def _internal_init(__self__,
973
927
  resource_name: str,
974
928
  opts: Optional[pulumi.ResourceOptions] = None,
975
- access_restriction: Optional[pulumi.Input[str]] = None,
976
929
  allow_missing: Optional[pulumi.Input[bool]] = None,
977
930
  annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
978
931
  backup_minimum_enforced_retention_duration: Optional[pulumi.Input[str]] = None,
@@ -995,7 +948,6 @@ class BackupVault(pulumi.CustomResource):
995
948
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
996
949
  __props__ = BackupVaultArgs.__new__(BackupVaultArgs)
997
950
 
998
- __props__.__dict__["access_restriction"] = access_restriction
999
951
  __props__.__dict__["allow_missing"] = allow_missing
1000
952
  __props__.__dict__["annotations"] = annotations
1001
953
  if backup_minimum_enforced_retention_duration is None and not opts.urn:
@@ -1040,7 +992,6 @@ class BackupVault(pulumi.CustomResource):
1040
992
  def get(resource_name: str,
1041
993
  id: pulumi.Input[str],
1042
994
  opts: Optional[pulumi.ResourceOptions] = None,
1043
- access_restriction: Optional[pulumi.Input[str]] = None,
1044
995
  allow_missing: Optional[pulumi.Input[bool]] = None,
1045
996
  annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1046
997
  backup_count: Optional[pulumi.Input[str]] = None,
@@ -1074,9 +1025,6 @@ class BackupVault(pulumi.CustomResource):
1074
1025
  :param str resource_name: The unique name of the resulting resource.
1075
1026
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1076
1027
  :param pulumi.ResourceOptions opts: Options for the resource.
1077
- :param pulumi.Input[str] access_restriction: Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
1078
- Default value is `WITHIN_ORGANIZATION`.
1079
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
1080
1028
  :param pulumi.Input[bool] allow_missing: Allow idempotent deletion of backup vault. The request will still succeed in case the backup vault does not exist.
1081
1029
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. User annotations. See https://google.aip.dev/128#annotations
1082
1030
  Stores small amounts of arbitrary data.
@@ -1133,7 +1081,6 @@ class BackupVault(pulumi.CustomResource):
1133
1081
 
1134
1082
  __props__ = _BackupVaultState.__new__(_BackupVaultState)
1135
1083
 
1136
- __props__.__dict__["access_restriction"] = access_restriction
1137
1084
  __props__.__dict__["allow_missing"] = allow_missing
1138
1085
  __props__.__dict__["annotations"] = annotations
1139
1086
  __props__.__dict__["backup_count"] = backup_count
@@ -1162,16 +1109,6 @@ class BackupVault(pulumi.CustomResource):
1162
1109
  __props__.__dict__["update_time"] = update_time
1163
1110
  return BackupVault(resource_name, opts=opts, __props__=__props__)
1164
1111
 
1165
- @property
1166
- @pulumi.getter(name="accessRestriction")
1167
- def access_restriction(self) -> pulumi.Output[Optional[str]]:
1168
- """
1169
- Access restriction for the backup vault. Default value is `WITHIN_ORGANIZATION` if not provided during creation.
1170
- Default value is `WITHIN_ORGANIZATION`.
1171
- Possible values are: `ACCESS_RESTRICTION_UNSPECIFIED`, `WITHIN_PROJECT`, `WITHIN_ORGANIZATION`, `UNRESTRICTED`, `WITHIN_ORG_BUT_UNRESTRICTED_FOR_BA`.
1172
- """
1173
- return pulumi.get(self, "access_restriction")
1174
-
1175
1112
  @property
1176
1113
  @pulumi.getter(name="allowMissing")
1177
1114
  def allow_missing(self) -> pulumi.Output[Optional[bool]]: