pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731739693__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.
- pulumi_gcp/__init__.py +0 -24
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
- pulumi_gcp/accesscontextmanager/outputs.py +36 -60
- pulumi_gcp/artifactregistry/_inputs.py +0 -56
- pulumi_gcp/artifactregistry/outputs.py +0 -65
- pulumi_gcp/artifactregistry/repository.py +0 -48
- pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
- pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
- pulumi_gcp/certificateauthority/authority.py +138 -28
- pulumi_gcp/cloudrun/service.py +10 -0
- pulumi_gcp/cloudrunv2/get_service.py +4 -15
- pulumi_gcp/cloudrunv2/service.py +2 -30
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -490
- pulumi_gcp/dataproc/outputs.py +0 -385
- pulumi_gcp/filestore/_inputs.py +0 -152
- pulumi_gcp/filestore/get_instance.py +1 -12
- pulumi_gcp/filestore/instance.py +0 -47
- pulumi_gcp/filestore/outputs.py +0 -229
- pulumi_gcp/iam/__init__.py +0 -2
- pulumi_gcp/iam/_inputs.py +0 -274
- pulumi_gcp/iam/outputs.py +0 -198
- pulumi_gcp/managedkafka/cluster.py +0 -4
- pulumi_gcp/managedkafka/topic.py +0 -4
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +0 -213
- pulumi_gcp/redis/cluster.py +0 -289
- pulumi_gcp/redis/outputs.py +0 -185
- pulumi_gcp/securesourcemanager/_inputs.py +0 -33
- pulumi_gcp/securesourcemanager/instance.py +3 -90
- pulumi_gcp/securesourcemanager/outputs.py +0 -19
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +0 -73
- pulumi_gcp/sql/database_instance.py +0 -60
- pulumi_gcp/sql/outputs.py +0 -146
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- pulumi_gcp/vertex/ai_endpoint.py +29 -22
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/RECORD +47 -52
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/WHEEL +1 -1
- pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
- pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
- pulumi_gcp/iam/folders_policy_binding.py +0 -917
- pulumi_gcp/iam/organizations_policy_binding.py +0 -901
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/top_level.txt +0 -0
pulumi_gcp/iam/_inputs.py
CHANGED
@@ -27,14 +27,6 @@ __all__ = [
|
|
27
27
|
'DenyPolicyRuleDenyRuleArgsDict',
|
28
28
|
'DenyPolicyRuleDenyRuleDenialConditionArgs',
|
29
29
|
'DenyPolicyRuleDenyRuleDenialConditionArgsDict',
|
30
|
-
'FoldersPolicyBindingConditionArgs',
|
31
|
-
'FoldersPolicyBindingConditionArgsDict',
|
32
|
-
'FoldersPolicyBindingTargetArgs',
|
33
|
-
'FoldersPolicyBindingTargetArgsDict',
|
34
|
-
'OrganizationsPolicyBindingConditionArgs',
|
35
|
-
'OrganizationsPolicyBindingConditionArgsDict',
|
36
|
-
'OrganizationsPolicyBindingTargetArgs',
|
37
|
-
'OrganizationsPolicyBindingTargetArgsDict',
|
38
30
|
'PrincipalAccessBoundaryPolicyDetailsArgs',
|
39
31
|
'PrincipalAccessBoundaryPolicyDetailsArgsDict',
|
40
32
|
'PrincipalAccessBoundaryPolicyDetailsRuleArgs',
|
@@ -603,272 +595,6 @@ class DenyPolicyRuleDenyRuleDenialConditionArgs:
|
|
603
595
|
pulumi.set(self, "title", value)
|
604
596
|
|
605
597
|
|
606
|
-
if not MYPY:
|
607
|
-
class FoldersPolicyBindingConditionArgsDict(TypedDict):
|
608
|
-
description: NotRequired[pulumi.Input[str]]
|
609
|
-
"""
|
610
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
611
|
-
"""
|
612
|
-
expression: NotRequired[pulumi.Input[str]]
|
613
|
-
"""
|
614
|
-
Textual representation of an expression in Common Expression Language syntax.
|
615
|
-
"""
|
616
|
-
location: NotRequired[pulumi.Input[str]]
|
617
|
-
"""
|
618
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
619
|
-
"""
|
620
|
-
title: NotRequired[pulumi.Input[str]]
|
621
|
-
"""
|
622
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
623
|
-
"""
|
624
|
-
elif False:
|
625
|
-
FoldersPolicyBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
626
|
-
|
627
|
-
@pulumi.input_type
|
628
|
-
class FoldersPolicyBindingConditionArgs:
|
629
|
-
def __init__(__self__, *,
|
630
|
-
description: Optional[pulumi.Input[str]] = None,
|
631
|
-
expression: Optional[pulumi.Input[str]] = None,
|
632
|
-
location: Optional[pulumi.Input[str]] = None,
|
633
|
-
title: Optional[pulumi.Input[str]] = None):
|
634
|
-
"""
|
635
|
-
:param pulumi.Input[str] description: Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
636
|
-
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
637
|
-
:param pulumi.Input[str] location: Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
638
|
-
:param pulumi.Input[str] title: Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
639
|
-
"""
|
640
|
-
if description is not None:
|
641
|
-
pulumi.set(__self__, "description", description)
|
642
|
-
if expression is not None:
|
643
|
-
pulumi.set(__self__, "expression", expression)
|
644
|
-
if location is not None:
|
645
|
-
pulumi.set(__self__, "location", location)
|
646
|
-
if title is not None:
|
647
|
-
pulumi.set(__self__, "title", title)
|
648
|
-
|
649
|
-
@property
|
650
|
-
@pulumi.getter
|
651
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
652
|
-
"""
|
653
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
654
|
-
"""
|
655
|
-
return pulumi.get(self, "description")
|
656
|
-
|
657
|
-
@description.setter
|
658
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
659
|
-
pulumi.set(self, "description", value)
|
660
|
-
|
661
|
-
@property
|
662
|
-
@pulumi.getter
|
663
|
-
def expression(self) -> Optional[pulumi.Input[str]]:
|
664
|
-
"""
|
665
|
-
Textual representation of an expression in Common Expression Language syntax.
|
666
|
-
"""
|
667
|
-
return pulumi.get(self, "expression")
|
668
|
-
|
669
|
-
@expression.setter
|
670
|
-
def expression(self, value: Optional[pulumi.Input[str]]):
|
671
|
-
pulumi.set(self, "expression", value)
|
672
|
-
|
673
|
-
@property
|
674
|
-
@pulumi.getter
|
675
|
-
def location(self) -> Optional[pulumi.Input[str]]:
|
676
|
-
"""
|
677
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
678
|
-
"""
|
679
|
-
return pulumi.get(self, "location")
|
680
|
-
|
681
|
-
@location.setter
|
682
|
-
def location(self, value: Optional[pulumi.Input[str]]):
|
683
|
-
pulumi.set(self, "location", value)
|
684
|
-
|
685
|
-
@property
|
686
|
-
@pulumi.getter
|
687
|
-
def title(self) -> Optional[pulumi.Input[str]]:
|
688
|
-
"""
|
689
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
690
|
-
"""
|
691
|
-
return pulumi.get(self, "title")
|
692
|
-
|
693
|
-
@title.setter
|
694
|
-
def title(self, value: Optional[pulumi.Input[str]]):
|
695
|
-
pulumi.set(self, "title", value)
|
696
|
-
|
697
|
-
|
698
|
-
if not MYPY:
|
699
|
-
class FoldersPolicyBindingTargetArgsDict(TypedDict):
|
700
|
-
principal_set: NotRequired[pulumi.Input[str]]
|
701
|
-
"""
|
702
|
-
Required. Immutable. The resource name of the policy to be bound.
|
703
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
704
|
-
|
705
|
-
- - -
|
706
|
-
"""
|
707
|
-
elif False:
|
708
|
-
FoldersPolicyBindingTargetArgsDict: TypeAlias = Mapping[str, Any]
|
709
|
-
|
710
|
-
@pulumi.input_type
|
711
|
-
class FoldersPolicyBindingTargetArgs:
|
712
|
-
def __init__(__self__, *,
|
713
|
-
principal_set: Optional[pulumi.Input[str]] = None):
|
714
|
-
"""
|
715
|
-
:param pulumi.Input[str] principal_set: Required. Immutable. The resource name of the policy to be bound.
|
716
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
717
|
-
|
718
|
-
- - -
|
719
|
-
"""
|
720
|
-
if principal_set is not None:
|
721
|
-
pulumi.set(__self__, "principal_set", principal_set)
|
722
|
-
|
723
|
-
@property
|
724
|
-
@pulumi.getter(name="principalSet")
|
725
|
-
def principal_set(self) -> Optional[pulumi.Input[str]]:
|
726
|
-
"""
|
727
|
-
Required. Immutable. The resource name of the policy to be bound.
|
728
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
729
|
-
|
730
|
-
- - -
|
731
|
-
"""
|
732
|
-
return pulumi.get(self, "principal_set")
|
733
|
-
|
734
|
-
@principal_set.setter
|
735
|
-
def principal_set(self, value: Optional[pulumi.Input[str]]):
|
736
|
-
pulumi.set(self, "principal_set", value)
|
737
|
-
|
738
|
-
|
739
|
-
if not MYPY:
|
740
|
-
class OrganizationsPolicyBindingConditionArgsDict(TypedDict):
|
741
|
-
description: NotRequired[pulumi.Input[str]]
|
742
|
-
"""
|
743
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
744
|
-
"""
|
745
|
-
expression: NotRequired[pulumi.Input[str]]
|
746
|
-
"""
|
747
|
-
Textual representation of an expression in Common Expression Language syntax.
|
748
|
-
"""
|
749
|
-
location: NotRequired[pulumi.Input[str]]
|
750
|
-
"""
|
751
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
752
|
-
"""
|
753
|
-
title: NotRequired[pulumi.Input[str]]
|
754
|
-
"""
|
755
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
756
|
-
"""
|
757
|
-
elif False:
|
758
|
-
OrganizationsPolicyBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
759
|
-
|
760
|
-
@pulumi.input_type
|
761
|
-
class OrganizationsPolicyBindingConditionArgs:
|
762
|
-
def __init__(__self__, *,
|
763
|
-
description: Optional[pulumi.Input[str]] = None,
|
764
|
-
expression: Optional[pulumi.Input[str]] = None,
|
765
|
-
location: Optional[pulumi.Input[str]] = None,
|
766
|
-
title: Optional[pulumi.Input[str]] = None):
|
767
|
-
"""
|
768
|
-
:param pulumi.Input[str] description: Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
769
|
-
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
770
|
-
:param pulumi.Input[str] location: Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
771
|
-
:param pulumi.Input[str] title: Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
772
|
-
"""
|
773
|
-
if description is not None:
|
774
|
-
pulumi.set(__self__, "description", description)
|
775
|
-
if expression is not None:
|
776
|
-
pulumi.set(__self__, "expression", expression)
|
777
|
-
if location is not None:
|
778
|
-
pulumi.set(__self__, "location", location)
|
779
|
-
if title is not None:
|
780
|
-
pulumi.set(__self__, "title", title)
|
781
|
-
|
782
|
-
@property
|
783
|
-
@pulumi.getter
|
784
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
785
|
-
"""
|
786
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
787
|
-
"""
|
788
|
-
return pulumi.get(self, "description")
|
789
|
-
|
790
|
-
@description.setter
|
791
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
792
|
-
pulumi.set(self, "description", value)
|
793
|
-
|
794
|
-
@property
|
795
|
-
@pulumi.getter
|
796
|
-
def expression(self) -> Optional[pulumi.Input[str]]:
|
797
|
-
"""
|
798
|
-
Textual representation of an expression in Common Expression Language syntax.
|
799
|
-
"""
|
800
|
-
return pulumi.get(self, "expression")
|
801
|
-
|
802
|
-
@expression.setter
|
803
|
-
def expression(self, value: Optional[pulumi.Input[str]]):
|
804
|
-
pulumi.set(self, "expression", value)
|
805
|
-
|
806
|
-
@property
|
807
|
-
@pulumi.getter
|
808
|
-
def location(self) -> Optional[pulumi.Input[str]]:
|
809
|
-
"""
|
810
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
811
|
-
"""
|
812
|
-
return pulumi.get(self, "location")
|
813
|
-
|
814
|
-
@location.setter
|
815
|
-
def location(self, value: Optional[pulumi.Input[str]]):
|
816
|
-
pulumi.set(self, "location", value)
|
817
|
-
|
818
|
-
@property
|
819
|
-
@pulumi.getter
|
820
|
-
def title(self) -> Optional[pulumi.Input[str]]:
|
821
|
-
"""
|
822
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
823
|
-
"""
|
824
|
-
return pulumi.get(self, "title")
|
825
|
-
|
826
|
-
@title.setter
|
827
|
-
def title(self, value: Optional[pulumi.Input[str]]):
|
828
|
-
pulumi.set(self, "title", value)
|
829
|
-
|
830
|
-
|
831
|
-
if not MYPY:
|
832
|
-
class OrganizationsPolicyBindingTargetArgsDict(TypedDict):
|
833
|
-
principal_set: NotRequired[pulumi.Input[str]]
|
834
|
-
"""
|
835
|
-
Required. Immutable. The resource name of the policy to be bound.
|
836
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
837
|
-
|
838
|
-
- - -
|
839
|
-
"""
|
840
|
-
elif False:
|
841
|
-
OrganizationsPolicyBindingTargetArgsDict: TypeAlias = Mapping[str, Any]
|
842
|
-
|
843
|
-
@pulumi.input_type
|
844
|
-
class OrganizationsPolicyBindingTargetArgs:
|
845
|
-
def __init__(__self__, *,
|
846
|
-
principal_set: Optional[pulumi.Input[str]] = None):
|
847
|
-
"""
|
848
|
-
:param pulumi.Input[str] principal_set: Required. Immutable. The resource name of the policy to be bound.
|
849
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
850
|
-
|
851
|
-
- - -
|
852
|
-
"""
|
853
|
-
if principal_set is not None:
|
854
|
-
pulumi.set(__self__, "principal_set", principal_set)
|
855
|
-
|
856
|
-
@property
|
857
|
-
@pulumi.getter(name="principalSet")
|
858
|
-
def principal_set(self) -> Optional[pulumi.Input[str]]:
|
859
|
-
"""
|
860
|
-
Required. Immutable. The resource name of the policy to be bound.
|
861
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
862
|
-
|
863
|
-
- - -
|
864
|
-
"""
|
865
|
-
return pulumi.get(self, "principal_set")
|
866
|
-
|
867
|
-
@principal_set.setter
|
868
|
-
def principal_set(self, value: Optional[pulumi.Input[str]]):
|
869
|
-
pulumi.set(self, "principal_set", value)
|
870
|
-
|
871
|
-
|
872
598
|
if not MYPY:
|
873
599
|
class PrincipalAccessBoundaryPolicyDetailsArgsDict(TypedDict):
|
874
600
|
rules: pulumi.Input[Sequence[pulumi.Input['PrincipalAccessBoundaryPolicyDetailsRuleArgsDict']]]
|
pulumi_gcp/iam/outputs.py
CHANGED
@@ -22,10 +22,6 @@ __all__ = [
|
|
22
22
|
'DenyPolicyRule',
|
23
23
|
'DenyPolicyRuleDenyRule',
|
24
24
|
'DenyPolicyRuleDenyRuleDenialCondition',
|
25
|
-
'FoldersPolicyBindingCondition',
|
26
|
-
'FoldersPolicyBindingTarget',
|
27
|
-
'OrganizationsPolicyBindingCondition',
|
28
|
-
'OrganizationsPolicyBindingTarget',
|
29
25
|
'PrincipalAccessBoundaryPolicyDetails',
|
30
26
|
'PrincipalAccessBoundaryPolicyDetailsRule',
|
31
27
|
'WorkforcePoolAccessRestrictions',
|
@@ -452,200 +448,6 @@ class DenyPolicyRuleDenyRuleDenialCondition(dict):
|
|
452
448
|
return pulumi.get(self, "title")
|
453
449
|
|
454
450
|
|
455
|
-
@pulumi.output_type
|
456
|
-
class FoldersPolicyBindingCondition(dict):
|
457
|
-
def __init__(__self__, *,
|
458
|
-
description: Optional[str] = None,
|
459
|
-
expression: Optional[str] = None,
|
460
|
-
location: Optional[str] = None,
|
461
|
-
title: Optional[str] = None):
|
462
|
-
"""
|
463
|
-
:param str description: Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
464
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
465
|
-
:param str location: Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
466
|
-
:param str title: Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
467
|
-
"""
|
468
|
-
if description is not None:
|
469
|
-
pulumi.set(__self__, "description", description)
|
470
|
-
if expression is not None:
|
471
|
-
pulumi.set(__self__, "expression", expression)
|
472
|
-
if location is not None:
|
473
|
-
pulumi.set(__self__, "location", location)
|
474
|
-
if title is not None:
|
475
|
-
pulumi.set(__self__, "title", title)
|
476
|
-
|
477
|
-
@property
|
478
|
-
@pulumi.getter
|
479
|
-
def description(self) -> Optional[str]:
|
480
|
-
"""
|
481
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
482
|
-
"""
|
483
|
-
return pulumi.get(self, "description")
|
484
|
-
|
485
|
-
@property
|
486
|
-
@pulumi.getter
|
487
|
-
def expression(self) -> Optional[str]:
|
488
|
-
"""
|
489
|
-
Textual representation of an expression in Common Expression Language syntax.
|
490
|
-
"""
|
491
|
-
return pulumi.get(self, "expression")
|
492
|
-
|
493
|
-
@property
|
494
|
-
@pulumi.getter
|
495
|
-
def location(self) -> Optional[str]:
|
496
|
-
"""
|
497
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
498
|
-
"""
|
499
|
-
return pulumi.get(self, "location")
|
500
|
-
|
501
|
-
@property
|
502
|
-
@pulumi.getter
|
503
|
-
def title(self) -> Optional[str]:
|
504
|
-
"""
|
505
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
506
|
-
"""
|
507
|
-
return pulumi.get(self, "title")
|
508
|
-
|
509
|
-
|
510
|
-
@pulumi.output_type
|
511
|
-
class FoldersPolicyBindingTarget(dict):
|
512
|
-
@staticmethod
|
513
|
-
def __key_warning(key: str):
|
514
|
-
suggest = None
|
515
|
-
if key == "principalSet":
|
516
|
-
suggest = "principal_set"
|
517
|
-
|
518
|
-
if suggest:
|
519
|
-
pulumi.log.warn(f"Key '{key}' not found in FoldersPolicyBindingTarget. Access the value via the '{suggest}' property getter instead.")
|
520
|
-
|
521
|
-
def __getitem__(self, key: str) -> Any:
|
522
|
-
FoldersPolicyBindingTarget.__key_warning(key)
|
523
|
-
return super().__getitem__(key)
|
524
|
-
|
525
|
-
def get(self, key: str, default = None) -> Any:
|
526
|
-
FoldersPolicyBindingTarget.__key_warning(key)
|
527
|
-
return super().get(key, default)
|
528
|
-
|
529
|
-
def __init__(__self__, *,
|
530
|
-
principal_set: Optional[str] = None):
|
531
|
-
"""
|
532
|
-
:param str principal_set: Required. Immutable. The resource name of the policy to be bound.
|
533
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
534
|
-
|
535
|
-
- - -
|
536
|
-
"""
|
537
|
-
if principal_set is not None:
|
538
|
-
pulumi.set(__self__, "principal_set", principal_set)
|
539
|
-
|
540
|
-
@property
|
541
|
-
@pulumi.getter(name="principalSet")
|
542
|
-
def principal_set(self) -> Optional[str]:
|
543
|
-
"""
|
544
|
-
Required. Immutable. The resource name of the policy to be bound.
|
545
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
546
|
-
|
547
|
-
- - -
|
548
|
-
"""
|
549
|
-
return pulumi.get(self, "principal_set")
|
550
|
-
|
551
|
-
|
552
|
-
@pulumi.output_type
|
553
|
-
class OrganizationsPolicyBindingCondition(dict):
|
554
|
-
def __init__(__self__, *,
|
555
|
-
description: Optional[str] = None,
|
556
|
-
expression: Optional[str] = None,
|
557
|
-
location: Optional[str] = None,
|
558
|
-
title: Optional[str] = None):
|
559
|
-
"""
|
560
|
-
:param str description: Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
561
|
-
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
562
|
-
:param str location: Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
563
|
-
:param str title: Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
564
|
-
"""
|
565
|
-
if description is not None:
|
566
|
-
pulumi.set(__self__, "description", description)
|
567
|
-
if expression is not None:
|
568
|
-
pulumi.set(__self__, "expression", expression)
|
569
|
-
if location is not None:
|
570
|
-
pulumi.set(__self__, "location", location)
|
571
|
-
if title is not None:
|
572
|
-
pulumi.set(__self__, "title", title)
|
573
|
-
|
574
|
-
@property
|
575
|
-
@pulumi.getter
|
576
|
-
def description(self) -> Optional[str]:
|
577
|
-
"""
|
578
|
-
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
579
|
-
"""
|
580
|
-
return pulumi.get(self, "description")
|
581
|
-
|
582
|
-
@property
|
583
|
-
@pulumi.getter
|
584
|
-
def expression(self) -> Optional[str]:
|
585
|
-
"""
|
586
|
-
Textual representation of an expression in Common Expression Language syntax.
|
587
|
-
"""
|
588
|
-
return pulumi.get(self, "expression")
|
589
|
-
|
590
|
-
@property
|
591
|
-
@pulumi.getter
|
592
|
-
def location(self) -> Optional[str]:
|
593
|
-
"""
|
594
|
-
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
|
595
|
-
"""
|
596
|
-
return pulumi.get(self, "location")
|
597
|
-
|
598
|
-
@property
|
599
|
-
@pulumi.getter
|
600
|
-
def title(self) -> Optional[str]:
|
601
|
-
"""
|
602
|
-
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
|
603
|
-
"""
|
604
|
-
return pulumi.get(self, "title")
|
605
|
-
|
606
|
-
|
607
|
-
@pulumi.output_type
|
608
|
-
class OrganizationsPolicyBindingTarget(dict):
|
609
|
-
@staticmethod
|
610
|
-
def __key_warning(key: str):
|
611
|
-
suggest = None
|
612
|
-
if key == "principalSet":
|
613
|
-
suggest = "principal_set"
|
614
|
-
|
615
|
-
if suggest:
|
616
|
-
pulumi.log.warn(f"Key '{key}' not found in OrganizationsPolicyBindingTarget. Access the value via the '{suggest}' property getter instead.")
|
617
|
-
|
618
|
-
def __getitem__(self, key: str) -> Any:
|
619
|
-
OrganizationsPolicyBindingTarget.__key_warning(key)
|
620
|
-
return super().__getitem__(key)
|
621
|
-
|
622
|
-
def get(self, key: str, default = None) -> Any:
|
623
|
-
OrganizationsPolicyBindingTarget.__key_warning(key)
|
624
|
-
return super().get(key, default)
|
625
|
-
|
626
|
-
def __init__(__self__, *,
|
627
|
-
principal_set: Optional[str] = None):
|
628
|
-
"""
|
629
|
-
:param str principal_set: Required. Immutable. The resource name of the policy to be bound.
|
630
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
631
|
-
|
632
|
-
- - -
|
633
|
-
"""
|
634
|
-
if principal_set is not None:
|
635
|
-
pulumi.set(__self__, "principal_set", principal_set)
|
636
|
-
|
637
|
-
@property
|
638
|
-
@pulumi.getter(name="principalSet")
|
639
|
-
def principal_set(self) -> Optional[str]:
|
640
|
-
"""
|
641
|
-
Required. Immutable. The resource name of the policy to be bound.
|
642
|
-
The binding parent and policy must belong to the same Organization (or Project).
|
643
|
-
|
644
|
-
- - -
|
645
|
-
"""
|
646
|
-
return pulumi.get(self, "principal_set")
|
647
|
-
|
648
|
-
|
649
451
|
@pulumi.output_type
|
650
452
|
class PrincipalAccessBoundaryPolicyDetails(dict):
|
651
453
|
@staticmethod
|
@@ -378,8 +378,6 @@ class Cluster(pulumi.CustomResource):
|
|
378
378
|
rebalance_config: Optional[pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']]] = None,
|
379
379
|
__props__=None):
|
380
380
|
"""
|
381
|
-
A Managed Service for Apache Kafka cluster. Apache Kafka is a trademark owned by the Apache Software Foundation.
|
382
|
-
|
383
381
|
## Example Usage
|
384
382
|
|
385
383
|
### Managedkafka Cluster Basic
|
@@ -492,8 +490,6 @@ class Cluster(pulumi.CustomResource):
|
|
492
490
|
args: ClusterArgs,
|
493
491
|
opts: Optional[pulumi.ResourceOptions] = None):
|
494
492
|
"""
|
495
|
-
A Managed Service for Apache Kafka cluster. Apache Kafka is a trademark owned by the Apache Software Foundation.
|
496
|
-
|
497
493
|
## Example Usage
|
498
494
|
|
499
495
|
### Managedkafka Cluster Basic
|
pulumi_gcp/managedkafka/topic.py
CHANGED
@@ -298,8 +298,6 @@ class Topic(pulumi.CustomResource):
|
|
298
298
|
topic_id: Optional[pulumi.Input[str]] = None,
|
299
299
|
__props__=None):
|
300
300
|
"""
|
301
|
-
A Managed Service for Apache Kafka topic. Apache Kafka is a trademark owned by the Apache Software Foundation.
|
302
|
-
|
303
301
|
## Example Usage
|
304
302
|
|
305
303
|
### Managedkafka Topic Basic
|
@@ -379,8 +377,6 @@ class Topic(pulumi.CustomResource):
|
|
379
377
|
args: TopicArgs,
|
380
378
|
opts: Optional[pulumi.ResourceOptions] = None):
|
381
379
|
"""
|
382
|
-
A Managed Service for Apache Kafka topic. Apache Kafka is a trademark owned by the Apache Software Foundation.
|
383
|
-
|
384
380
|
## Example Usage
|
385
381
|
|
386
382
|
### Managedkafka Topic Basic
|
@@ -1051,11 +1051,11 @@ class Subscription(pulumi.CustomResource):
|
|
1051
1051
|
account_id="example-bqw",
|
1052
1052
|
display_name="BQ Write Service Account")
|
1053
1053
|
project = gcp.organizations.get_project()
|
1054
|
-
|
1054
|
+
viewer = gcp.projects.IAMMember("viewer",
|
1055
1055
|
project=project.project_id,
|
1056
1056
|
role="roles/bigquery.metadataViewer",
|
1057
1057
|
member=bq_write_service_account.email.apply(lambda email: f"serviceAccount:{email}"))
|
1058
|
-
|
1058
|
+
editor = gcp.projects.IAMMember("editor",
|
1059
1059
|
project=project.project_id,
|
1060
1060
|
role="roles/bigquery.dataEditor",
|
1061
1061
|
member=bq_write_service_account.email.apply(lambda email: f"serviceAccount:{email}"))
|
@@ -1087,8 +1087,8 @@ class Subscription(pulumi.CustomResource):
|
|
1087
1087
|
},
|
1088
1088
|
opts = pulumi.ResourceOptions(depends_on=[
|
1089
1089
|
bq_write_service_account,
|
1090
|
-
|
1091
|
-
|
1090
|
+
viewer,
|
1091
|
+
editor,
|
1092
1092
|
]))
|
1093
1093
|
```
|
1094
1094
|
### Pubsub Subscription Push Cloudstorage
|
@@ -1491,11 +1491,11 @@ class Subscription(pulumi.CustomResource):
|
|
1491
1491
|
account_id="example-bqw",
|
1492
1492
|
display_name="BQ Write Service Account")
|
1493
1493
|
project = gcp.organizations.get_project()
|
1494
|
-
|
1494
|
+
viewer = gcp.projects.IAMMember("viewer",
|
1495
1495
|
project=project.project_id,
|
1496
1496
|
role="roles/bigquery.metadataViewer",
|
1497
1497
|
member=bq_write_service_account.email.apply(lambda email: f"serviceAccount:{email}"))
|
1498
|
-
|
1498
|
+
editor = gcp.projects.IAMMember("editor",
|
1499
1499
|
project=project.project_id,
|
1500
1500
|
role="roles/bigquery.dataEditor",
|
1501
1501
|
member=bq_write_service_account.email.apply(lambda email: f"serviceAccount:{email}"))
|
@@ -1527,8 +1527,8 @@ class Subscription(pulumi.CustomResource):
|
|
1527
1527
|
},
|
1528
1528
|
opts = pulumi.ResourceOptions(depends_on=[
|
1529
1529
|
bq_write_service_account,
|
1530
|
-
|
1531
|
-
|
1530
|
+
viewer,
|
1531
|
+
editor,
|
1532
1532
|
]))
|
1533
1533
|
```
|
1534
1534
|
### Pubsub Subscription Push Cloudstorage
|
pulumi_gcp/pulumi-plugin.json
CHANGED