pulumi-gcp 7.3.0a1702567892__py3-none-any.whl → 7.3.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +129 -0
  2. pulumi_gcp/artifactregistry/_inputs.py +88 -0
  3. pulumi_gcp/artifactregistry/outputs.py +148 -0
  4. pulumi_gcp/artifactregistry/repository.py +116 -16
  5. pulumi_gcp/bigquery/_inputs.py +110 -0
  6. pulumi_gcp/bigquery/connection.py +123 -3
  7. pulumi_gcp/bigquery/outputs.py +145 -0
  8. pulumi_gcp/cloudbuild/_inputs.py +241 -1
  9. pulumi_gcp/cloudbuild/outputs.py +353 -2
  10. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -2
  11. pulumi_gcp/cloudfunctionsv2/outputs.py +6 -2
  12. pulumi_gcp/cloudidentity/_inputs.py +54 -5
  13. pulumi_gcp/cloudidentity/group_membership.py +0 -8
  14. pulumi_gcp/cloudidentity/outputs.py +99 -4
  15. pulumi_gcp/cloudrunv2/_inputs.py +8 -4
  16. pulumi_gcp/cloudrunv2/job.py +44 -0
  17. pulumi_gcp/cloudrunv2/outputs.py +8 -4
  18. pulumi_gcp/cloudrunv2/service.py +42 -0
  19. pulumi_gcp/cloudtasks/queue.py +0 -10
  20. pulumi_gcp/composer/_inputs.py +17 -4
  21. pulumi_gcp/composer/outputs.py +20 -4
  22. pulumi_gcp/compute/_inputs.py +46 -0
  23. pulumi_gcp/compute/get_global_forwarding_rule.py +11 -1
  24. pulumi_gcp/compute/global_forwarding_rule.py +69 -0
  25. pulumi_gcp/compute/outputs.py +75 -0
  26. pulumi_gcp/config/__init__.pyi +6 -0
  27. pulumi_gcp/config/vars.py +12 -0
  28. pulumi_gcp/container/_inputs.py +58 -0
  29. pulumi_gcp/container/node_pool.py +68 -14
  30. pulumi_gcp/container/outputs.py +68 -0
  31. pulumi_gcp/dataform/__init__.py +4 -0
  32. pulumi_gcp/dataform/_inputs.py +80 -0
  33. pulumi_gcp/dataform/get_repository_iam_policy.py +144 -0
  34. pulumi_gcp/dataform/outputs.py +56 -0
  35. pulumi_gcp/dataform/repository_iam_binding.py +325 -0
  36. pulumi_gcp/dataform/repository_iam_member.py +325 -0
  37. pulumi_gcp/dataform/repository_iam_policy.py +254 -0
  38. pulumi_gcp/dataloss/_inputs.py +29 -26
  39. pulumi_gcp/dataloss/outputs.py +28 -25
  40. pulumi_gcp/dataloss/prevention_job_trigger.py +78 -0
  41. pulumi_gcp/datastream/connection_profile.py +82 -4
  42. pulumi_gcp/datastream/stream.py +32 -22
  43. pulumi_gcp/firestore/database.py +146 -28
  44. pulumi_gcp/gkehub/_inputs.py +821 -3
  45. pulumi_gcp/gkehub/feature.py +176 -0
  46. pulumi_gcp/gkehub/feature_membership.py +105 -59
  47. pulumi_gcp/gkehub/fleet.py +70 -2
  48. pulumi_gcp/gkehub/outputs.py +819 -3
  49. pulumi_gcp/gkehub/scope.py +2 -2
  50. pulumi_gcp/iam/_inputs.py +72 -0
  51. pulumi_gcp/iam/outputs.py +79 -0
  52. pulumi_gcp/iam/workforce_pool.py +75 -0
  53. pulumi_gcp/identityplatform/project_default_config.py +4 -0
  54. pulumi_gcp/logging/__init__.py +3 -0
  55. pulumi_gcp/logging/get_folder_settings.py +197 -0
  56. pulumi_gcp/logging/get_organization_settings.py +197 -0
  57. pulumi_gcp/logging/get_project_settings.py +197 -0
  58. pulumi_gcp/migrationcenter/__init__.py +8 -0
  59. pulumi_gcp/migrationcenter/group.py +652 -0
  60. pulumi_gcp/netapp/__init__.py +8 -0
  61. pulumi_gcp/netapp/storage_pool.py +970 -0
  62. pulumi_gcp/projects/iam_custom_role.py +7 -7
  63. pulumi_gcp/provider.py +60 -0
  64. pulumi_gcp/securesourcemanager/__init__.py +14 -0
  65. pulumi_gcp/securesourcemanager/_inputs.py +94 -0
  66. pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +168 -0
  67. pulumi_gcp/securesourcemanager/instance.py +607 -0
  68. pulumi_gcp/securesourcemanager/instance_iam_binding.py +325 -0
  69. pulumi_gcp/securesourcemanager/instance_iam_member.py +325 -0
  70. pulumi_gcp/securesourcemanager/instance_iam_policy.py +254 -0
  71. pulumi_gcp/securesourcemanager/outputs.py +70 -0
  72. pulumi_gcp/securitycenter/__init__.py +1 -0
  73. pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +528 -0
  74. pulumi_gcp/sql/_inputs.py +2 -2
  75. pulumi_gcp/sql/database_instance.py +4 -4
  76. pulumi_gcp/sql/outputs.py +2 -2
  77. pulumi_gcp/storage/_inputs.py +16 -0
  78. pulumi_gcp/storage/outputs.py +21 -0
  79. pulumi_gcp/vertex/__init__.py +4 -0
  80. pulumi_gcp/vertex/_inputs.py +80 -0
  81. pulumi_gcp/vertex/ai_endpoint_iam_binding.py +325 -0
  82. pulumi_gcp/vertex/ai_endpoint_iam_member.py +325 -0
  83. pulumi_gcp/vertex/ai_endpoint_iam_policy.py +254 -0
  84. pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +140 -0
  85. pulumi_gcp/vertex/outputs.py +56 -0
  86. pulumi_gcp/vmwareengine/__init__.py +5 -0
  87. pulumi_gcp/vmwareengine/_inputs.py +104 -2
  88. pulumi_gcp/vmwareengine/get_network.py +14 -4
  89. pulumi_gcp/vmwareengine/get_network_peering.py +260 -0
  90. pulumi_gcp/vmwareengine/get_network_policy.py +228 -0
  91. pulumi_gcp/vmwareengine/get_nsx_credentials.py +133 -0
  92. pulumi_gcp/vmwareengine/get_private_cloud.py +14 -4
  93. pulumi_gcp/vmwareengine/network.py +41 -7
  94. pulumi_gcp/vmwareengine/network_peering.py +959 -0
  95. pulumi_gcp/vmwareengine/network_policy.py +836 -0
  96. pulumi_gcp/vmwareengine/outputs.py +133 -2
  97. pulumi_gcp/vmwareengine/private_cloud.py +20 -68
  98. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/RECORD +101 -72
  100. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/top_level.txt +0 -0
@@ -19,8 +19,11 @@ __all__ = [
19
19
  'TriggerBitbucketServerTriggerConfigPush',
20
20
  'TriggerBuild',
21
21
  'TriggerBuildArtifacts',
22
+ 'TriggerBuildArtifactsMavenArtifact',
23
+ 'TriggerBuildArtifactsNpmPackage',
22
24
  'TriggerBuildArtifactsObjects',
23
25
  'TriggerBuildArtifactsObjectsTiming',
26
+ 'TriggerBuildArtifactsPythonPackage',
24
27
  'TriggerBuildAvailableSecrets',
25
28
  'TriggerBuildAvailableSecretsSecretManager',
26
29
  'TriggerBuildOptions',
@@ -50,8 +53,11 @@ __all__ = [
50
53
  'GetTriggerBitbucketServerTriggerConfigPushResult',
51
54
  'GetTriggerBuildResult',
52
55
  'GetTriggerBuildArtifactResult',
56
+ 'GetTriggerBuildArtifactMavenArtifactResult',
57
+ 'GetTriggerBuildArtifactNpmPackageResult',
53
58
  'GetTriggerBuildArtifactObjectResult',
54
59
  'GetTriggerBuildArtifactObjectTimingResult',
60
+ 'GetTriggerBuildArtifactPythonPackageResult',
55
61
  'GetTriggerBuildAvailableSecretResult',
56
62
  'GetTriggerBuildAvailableSecretSecretManagerResult',
57
63
  'GetTriggerBuildOptionResult',
@@ -655,25 +661,67 @@ class TriggerBuild(dict):
655
661
 
656
662
  @pulumi.output_type
657
663
  class TriggerBuildArtifacts(dict):
664
+ @staticmethod
665
+ def __key_warning(key: str):
666
+ suggest = None
667
+ if key == "mavenArtifacts":
668
+ suggest = "maven_artifacts"
669
+ elif key == "npmPackages":
670
+ suggest = "npm_packages"
671
+ elif key == "pythonPackages":
672
+ suggest = "python_packages"
673
+
674
+ if suggest:
675
+ pulumi.log.warn(f"Key '{key}' not found in TriggerBuildArtifacts. Access the value via the '{suggest}' property getter instead.")
676
+
677
+ def __getitem__(self, key: str) -> Any:
678
+ TriggerBuildArtifacts.__key_warning(key)
679
+ return super().__getitem__(key)
680
+
681
+ def get(self, key: str, default = None) -> Any:
682
+ TriggerBuildArtifacts.__key_warning(key)
683
+ return super().get(key, default)
684
+
658
685
  def __init__(__self__, *,
659
686
  images: Optional[Sequence[str]] = None,
660
- objects: Optional['outputs.TriggerBuildArtifactsObjects'] = None):
687
+ maven_artifacts: Optional[Sequence['outputs.TriggerBuildArtifactsMavenArtifact']] = None,
688
+ npm_packages: Optional[Sequence['outputs.TriggerBuildArtifactsNpmPackage']] = None,
689
+ objects: Optional['outputs.TriggerBuildArtifactsObjects'] = None,
690
+ python_packages: Optional[Sequence['outputs.TriggerBuildArtifactsPythonPackage']] = None):
661
691
  """
662
692
  :param Sequence[str] images: A list of images to be pushed upon the successful completion of all build steps.
663
693
  The images will be pushed using the builder service account's credentials.
664
694
  The digests of the pushed images will be stored in the Build resource's results field.
665
695
  If any of the images fail to be pushed, the build is marked FAILURE.
696
+ :param Sequence['TriggerBuildArtifactsMavenArtifactArgs'] maven_artifacts: A Maven artifact to upload to Artifact Registry upon successful completion of all build steps.
697
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
698
+ If any objects fail to be pushed, the build is marked FAILURE.
699
+ Structure is documented below.
700
+ :param Sequence['TriggerBuildArtifactsNpmPackageArgs'] npm_packages: Npm package to upload to Artifact Registry upon successful completion of all build steps.
701
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
702
+ If any objects fail to be pushed, the build is marked FAILURE.
703
+ Structure is documented below.
666
704
  :param 'TriggerBuildArtifactsObjectsArgs' objects: A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps.
667
705
  Files in the workspace matching specified paths globs will be uploaded to the
668
706
  Cloud Storage location using the builder service account's credentials.
669
707
  The location and generation of the uploaded objects will be stored in the Build resource's results field.
670
708
  If any objects fail to be pushed, the build is marked FAILURE.
671
709
  Structure is documented below.
710
+ :param Sequence['TriggerBuildArtifactsPythonPackageArgs'] python_packages: Python package to upload to Artifact Registry upon successful completion of all build steps. A package can encapsulate multiple objects to be uploaded to a single repository.
711
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
712
+ If any objects fail to be pushed, the build is marked FAILURE.
713
+ Structure is documented below.
672
714
  """
673
715
  if images is not None:
674
716
  pulumi.set(__self__, "images", images)
717
+ if maven_artifacts is not None:
718
+ pulumi.set(__self__, "maven_artifacts", maven_artifacts)
719
+ if npm_packages is not None:
720
+ pulumi.set(__self__, "npm_packages", npm_packages)
675
721
  if objects is not None:
676
722
  pulumi.set(__self__, "objects", objects)
723
+ if python_packages is not None:
724
+ pulumi.set(__self__, "python_packages", python_packages)
677
725
 
678
726
  @property
679
727
  @pulumi.getter
@@ -686,6 +734,28 @@ class TriggerBuildArtifacts(dict):
686
734
  """
687
735
  return pulumi.get(self, "images")
688
736
 
737
+ @property
738
+ @pulumi.getter(name="mavenArtifacts")
739
+ def maven_artifacts(self) -> Optional[Sequence['outputs.TriggerBuildArtifactsMavenArtifact']]:
740
+ """
741
+ A Maven artifact to upload to Artifact Registry upon successful completion of all build steps.
742
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
743
+ If any objects fail to be pushed, the build is marked FAILURE.
744
+ Structure is documented below.
745
+ """
746
+ return pulumi.get(self, "maven_artifacts")
747
+
748
+ @property
749
+ @pulumi.getter(name="npmPackages")
750
+ def npm_packages(self) -> Optional[Sequence['outputs.TriggerBuildArtifactsNpmPackage']]:
751
+ """
752
+ Npm package to upload to Artifact Registry upon successful completion of all build steps.
753
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
754
+ If any objects fail to be pushed, the build is marked FAILURE.
755
+ Structure is documented below.
756
+ """
757
+ return pulumi.get(self, "npm_packages")
758
+
689
759
  @property
690
760
  @pulumi.getter
691
761
  def objects(self) -> Optional['outputs.TriggerBuildArtifactsObjects']:
@@ -699,6 +769,155 @@ class TriggerBuildArtifacts(dict):
699
769
  """
700
770
  return pulumi.get(self, "objects")
701
771
 
772
+ @property
773
+ @pulumi.getter(name="pythonPackages")
774
+ def python_packages(self) -> Optional[Sequence['outputs.TriggerBuildArtifactsPythonPackage']]:
775
+ """
776
+ Python package to upload to Artifact Registry upon successful completion of all build steps. A package can encapsulate multiple objects to be uploaded to a single repository.
777
+ The location and generation of the uploaded objects will be stored in the Build resource's results field.
778
+ If any objects fail to be pushed, the build is marked FAILURE.
779
+ Structure is documented below.
780
+ """
781
+ return pulumi.get(self, "python_packages")
782
+
783
+
784
+ @pulumi.output_type
785
+ class TriggerBuildArtifactsMavenArtifact(dict):
786
+ @staticmethod
787
+ def __key_warning(key: str):
788
+ suggest = None
789
+ if key == "artifactId":
790
+ suggest = "artifact_id"
791
+ elif key == "groupId":
792
+ suggest = "group_id"
793
+
794
+ if suggest:
795
+ pulumi.log.warn(f"Key '{key}' not found in TriggerBuildArtifactsMavenArtifact. Access the value via the '{suggest}' property getter instead.")
796
+
797
+ def __getitem__(self, key: str) -> Any:
798
+ TriggerBuildArtifactsMavenArtifact.__key_warning(key)
799
+ return super().__getitem__(key)
800
+
801
+ def get(self, key: str, default = None) -> Any:
802
+ TriggerBuildArtifactsMavenArtifact.__key_warning(key)
803
+ return super().get(key, default)
804
+
805
+ def __init__(__self__, *,
806
+ artifact_id: Optional[str] = None,
807
+ group_id: Optional[str] = None,
808
+ path: Optional[str] = None,
809
+ repository: Optional[str] = None,
810
+ version: Optional[str] = None):
811
+ """
812
+ :param str artifact_id: Maven artifactId value used when uploading the artifact to Artifact Registry.
813
+ :param str group_id: Maven groupId value used when uploading the artifact to Artifact Registry.
814
+ :param str path: Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
815
+ :param str repository: Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY"
816
+ Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
817
+ :param str version: Maven version value used when uploading the artifact to Artifact Registry.
818
+ """
819
+ if artifact_id is not None:
820
+ pulumi.set(__self__, "artifact_id", artifact_id)
821
+ if group_id is not None:
822
+ pulumi.set(__self__, "group_id", group_id)
823
+ if path is not None:
824
+ pulumi.set(__self__, "path", path)
825
+ if repository is not None:
826
+ pulumi.set(__self__, "repository", repository)
827
+ if version is not None:
828
+ pulumi.set(__self__, "version", version)
829
+
830
+ @property
831
+ @pulumi.getter(name="artifactId")
832
+ def artifact_id(self) -> Optional[str]:
833
+ """
834
+ Maven artifactId value used when uploading the artifact to Artifact Registry.
835
+ """
836
+ return pulumi.get(self, "artifact_id")
837
+
838
+ @property
839
+ @pulumi.getter(name="groupId")
840
+ def group_id(self) -> Optional[str]:
841
+ """
842
+ Maven groupId value used when uploading the artifact to Artifact Registry.
843
+ """
844
+ return pulumi.get(self, "group_id")
845
+
846
+ @property
847
+ @pulumi.getter
848
+ def path(self) -> Optional[str]:
849
+ """
850
+ Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.
851
+ """
852
+ return pulumi.get(self, "path")
853
+
854
+ @property
855
+ @pulumi.getter
856
+ def repository(self) -> Optional[str]:
857
+ """
858
+ Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY"
859
+ Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.
860
+ """
861
+ return pulumi.get(self, "repository")
862
+
863
+ @property
864
+ @pulumi.getter
865
+ def version(self) -> Optional[str]:
866
+ """
867
+ Maven version value used when uploading the artifact to Artifact Registry.
868
+ """
869
+ return pulumi.get(self, "version")
870
+
871
+
872
+ @pulumi.output_type
873
+ class TriggerBuildArtifactsNpmPackage(dict):
874
+ @staticmethod
875
+ def __key_warning(key: str):
876
+ suggest = None
877
+ if key == "packagePath":
878
+ suggest = "package_path"
879
+
880
+ if suggest:
881
+ pulumi.log.warn(f"Key '{key}' not found in TriggerBuildArtifactsNpmPackage. Access the value via the '{suggest}' property getter instead.")
882
+
883
+ def __getitem__(self, key: str) -> Any:
884
+ TriggerBuildArtifactsNpmPackage.__key_warning(key)
885
+ return super().__getitem__(key)
886
+
887
+ def get(self, key: str, default = None) -> Any:
888
+ TriggerBuildArtifactsNpmPackage.__key_warning(key)
889
+ return super().get(key, default)
890
+
891
+ def __init__(__self__, *,
892
+ package_path: Optional[str] = None,
893
+ repository: Optional[str] = None):
894
+ """
895
+ :param str package_path: Path to the package.json. e.g. workspace/path/to/package
896
+ :param str repository: Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY"
897
+ Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
898
+ """
899
+ if package_path is not None:
900
+ pulumi.set(__self__, "package_path", package_path)
901
+ if repository is not None:
902
+ pulumi.set(__self__, "repository", repository)
903
+
904
+ @property
905
+ @pulumi.getter(name="packagePath")
906
+ def package_path(self) -> Optional[str]:
907
+ """
908
+ Path to the package.json. e.g. workspace/path/to/package
909
+ """
910
+ return pulumi.get(self, "package_path")
911
+
912
+ @property
913
+ @pulumi.getter
914
+ def repository(self) -> Optional[str]:
915
+ """
916
+ Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY"
917
+ Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
918
+ """
919
+ return pulumi.get(self, "repository")
920
+
702
921
 
703
922
  @pulumi.output_type
704
923
  class TriggerBuildArtifactsObjects(dict):
@@ -815,6 +1034,39 @@ class TriggerBuildArtifactsObjectsTiming(dict):
815
1034
  return pulumi.get(self, "start_time")
816
1035
 
817
1036
 
1037
+ @pulumi.output_type
1038
+ class TriggerBuildArtifactsPythonPackage(dict):
1039
+ def __init__(__self__, *,
1040
+ paths: Optional[Sequence[str]] = None,
1041
+ repository: Optional[str] = None):
1042
+ """
1043
+ :param Sequence[str] paths: Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
1044
+ :param str repository: Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY"
1045
+ Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
1046
+ """
1047
+ if paths is not None:
1048
+ pulumi.set(__self__, "paths", paths)
1049
+ if repository is not None:
1050
+ pulumi.set(__self__, "repository", repository)
1051
+
1052
+ @property
1053
+ @pulumi.getter
1054
+ def paths(self) -> Optional[Sequence[str]]:
1055
+ """
1056
+ Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
1057
+ """
1058
+ return pulumi.get(self, "paths")
1059
+
1060
+ @property
1061
+ @pulumi.getter
1062
+ def repository(self) -> Optional[str]:
1063
+ """
1064
+ Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY"
1065
+ Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
1066
+ """
1067
+ return pulumi.get(self, "repository")
1068
+
1069
+
818
1070
  @pulumi.output_type
819
1071
  class TriggerBuildAvailableSecrets(dict):
820
1072
  @staticmethod
@@ -3008,20 +3260,100 @@ class GetTriggerBuildResult(dict):
3008
3260
  class GetTriggerBuildArtifactResult(dict):
3009
3261
  def __init__(__self__, *,
3010
3262
  images: Sequence[str],
3011
- objects: Sequence['outputs.GetTriggerBuildArtifactObjectResult']):
3263
+ maven_artifacts: Sequence['outputs.GetTriggerBuildArtifactMavenArtifactResult'],
3264
+ npm_packages: Sequence['outputs.GetTriggerBuildArtifactNpmPackageResult'],
3265
+ objects: Sequence['outputs.GetTriggerBuildArtifactObjectResult'],
3266
+ python_packages: Sequence['outputs.GetTriggerBuildArtifactPythonPackageResult']):
3012
3267
  pulumi.set(__self__, "images", images)
3268
+ pulumi.set(__self__, "maven_artifacts", maven_artifacts)
3269
+ pulumi.set(__self__, "npm_packages", npm_packages)
3013
3270
  pulumi.set(__self__, "objects", objects)
3271
+ pulumi.set(__self__, "python_packages", python_packages)
3014
3272
 
3015
3273
  @property
3016
3274
  @pulumi.getter
3017
3275
  def images(self) -> Sequence[str]:
3018
3276
  return pulumi.get(self, "images")
3019
3277
 
3278
+ @property
3279
+ @pulumi.getter(name="mavenArtifacts")
3280
+ def maven_artifacts(self) -> Sequence['outputs.GetTriggerBuildArtifactMavenArtifactResult']:
3281
+ return pulumi.get(self, "maven_artifacts")
3282
+
3283
+ @property
3284
+ @pulumi.getter(name="npmPackages")
3285
+ def npm_packages(self) -> Sequence['outputs.GetTriggerBuildArtifactNpmPackageResult']:
3286
+ return pulumi.get(self, "npm_packages")
3287
+
3020
3288
  @property
3021
3289
  @pulumi.getter
3022
3290
  def objects(self) -> Sequence['outputs.GetTriggerBuildArtifactObjectResult']:
3023
3291
  return pulumi.get(self, "objects")
3024
3292
 
3293
+ @property
3294
+ @pulumi.getter(name="pythonPackages")
3295
+ def python_packages(self) -> Sequence['outputs.GetTriggerBuildArtifactPythonPackageResult']:
3296
+ return pulumi.get(self, "python_packages")
3297
+
3298
+
3299
+ @pulumi.output_type
3300
+ class GetTriggerBuildArtifactMavenArtifactResult(dict):
3301
+ def __init__(__self__, *,
3302
+ artifact_id: str,
3303
+ group_id: str,
3304
+ path: str,
3305
+ repository: str,
3306
+ version: str):
3307
+ pulumi.set(__self__, "artifact_id", artifact_id)
3308
+ pulumi.set(__self__, "group_id", group_id)
3309
+ pulumi.set(__self__, "path", path)
3310
+ pulumi.set(__self__, "repository", repository)
3311
+ pulumi.set(__self__, "version", version)
3312
+
3313
+ @property
3314
+ @pulumi.getter(name="artifactId")
3315
+ def artifact_id(self) -> str:
3316
+ return pulumi.get(self, "artifact_id")
3317
+
3318
+ @property
3319
+ @pulumi.getter(name="groupId")
3320
+ def group_id(self) -> str:
3321
+ return pulumi.get(self, "group_id")
3322
+
3323
+ @property
3324
+ @pulumi.getter
3325
+ def path(self) -> str:
3326
+ return pulumi.get(self, "path")
3327
+
3328
+ @property
3329
+ @pulumi.getter
3330
+ def repository(self) -> str:
3331
+ return pulumi.get(self, "repository")
3332
+
3333
+ @property
3334
+ @pulumi.getter
3335
+ def version(self) -> str:
3336
+ return pulumi.get(self, "version")
3337
+
3338
+
3339
+ @pulumi.output_type
3340
+ class GetTriggerBuildArtifactNpmPackageResult(dict):
3341
+ def __init__(__self__, *,
3342
+ package_path: str,
3343
+ repository: str):
3344
+ pulumi.set(__self__, "package_path", package_path)
3345
+ pulumi.set(__self__, "repository", repository)
3346
+
3347
+ @property
3348
+ @pulumi.getter(name="packagePath")
3349
+ def package_path(self) -> str:
3350
+ return pulumi.get(self, "package_path")
3351
+
3352
+ @property
3353
+ @pulumi.getter
3354
+ def repository(self) -> str:
3355
+ return pulumi.get(self, "repository")
3356
+
3025
3357
 
3026
3358
  @pulumi.output_type
3027
3359
  class GetTriggerBuildArtifactObjectResult(dict):
@@ -3078,6 +3410,25 @@ class GetTriggerBuildArtifactObjectTimingResult(dict):
3078
3410
  return pulumi.get(self, "start_time")
3079
3411
 
3080
3412
 
3413
+ @pulumi.output_type
3414
+ class GetTriggerBuildArtifactPythonPackageResult(dict):
3415
+ def __init__(__self__, *,
3416
+ paths: Sequence[str],
3417
+ repository: str):
3418
+ pulumi.set(__self__, "paths", paths)
3419
+ pulumi.set(__self__, "repository", repository)
3420
+
3421
+ @property
3422
+ @pulumi.getter
3423
+ def paths(self) -> Sequence[str]:
3424
+ return pulumi.get(self, "paths")
3425
+
3426
+ @property
3427
+ @pulumi.getter
3428
+ def repository(self) -> str:
3429
+ return pulumi.get(self, "repository")
3430
+
3431
+
3081
3432
  @pulumi.output_type
3082
3433
  class GetTriggerBuildAvailableSecretResult(dict):
3083
3434
  def __init__(__self__, *,
@@ -401,7 +401,9 @@ class FunctionEventTriggerArgs:
401
401
  :param pulumi.Input[str] retry_policy: Describes the retry policy in case of function's execution failure.
402
402
  Retried execution is charged as any other execution.
403
403
  Possible values are: `RETRY_POLICY_UNSPECIFIED`, `RETRY_POLICY_DO_NOT_RETRY`, `RETRY_POLICY_RETRY`.
404
- :param pulumi.Input[str] service_account_email: The email of the service account for this function.
404
+ :param pulumi.Input[str] service_account_email: Optional. The email of the trigger's service account. The service account
405
+ must have permission to invoke Cloud Run services. If empty, defaults to the
406
+ Compute Engine default service account: {project_number}-compute@developer.gserviceaccount.com.
405
407
  :param pulumi.Input[str] trigger: (Output)
406
408
  Output only. The resource name of the Eventarc trigger.
407
409
  :param pulumi.Input[str] trigger_region: The region that the trigger will be in. The trigger will only receive
@@ -480,7 +482,9 @@ class FunctionEventTriggerArgs:
480
482
  @pulumi.getter(name="serviceAccountEmail")
481
483
  def service_account_email(self) -> Optional[pulumi.Input[str]]:
482
484
  """
483
- The email of the service account for this function.
485
+ Optional. The email of the trigger's service account. The service account
486
+ must have permission to invoke Cloud Run services. If empty, defaults to the
487
+ Compute Engine default service account: {project_number}-compute@developer.gserviceaccount.com.
484
488
  """
485
489
  return pulumi.get(self, "service_account_email")
486
490
 
@@ -432,7 +432,9 @@ class FunctionEventTrigger(dict):
432
432
  :param str retry_policy: Describes the retry policy in case of function's execution failure.
433
433
  Retried execution is charged as any other execution.
434
434
  Possible values are: `RETRY_POLICY_UNSPECIFIED`, `RETRY_POLICY_DO_NOT_RETRY`, `RETRY_POLICY_RETRY`.
435
- :param str service_account_email: The email of the service account for this function.
435
+ :param str service_account_email: Optional. The email of the trigger's service account. The service account
436
+ must have permission to invoke Cloud Run services. If empty, defaults to the
437
+ Compute Engine default service account: {project_number}-compute@developer.gserviceaccount.com.
436
438
  :param str trigger: (Output)
437
439
  Output only. The resource name of the Eventarc trigger.
438
440
  :param str trigger_region: The region that the trigger will be in. The trigger will only receive
@@ -495,7 +497,9 @@ class FunctionEventTrigger(dict):
495
497
  @pulumi.getter(name="serviceAccountEmail")
496
498
  def service_account_email(self) -> Optional[str]:
497
499
  """
498
- The email of the service account for this function.
500
+ Optional. The email of the trigger's service account. The service account
501
+ must have permission to invoke Cloud Run services. If empty, defaults to the
502
+ Compute Engine default service account: {project_number}-compute@developer.gserviceaccount.com.
499
503
  """
500
504
  return pulumi.get(self, "service_account_email")
501
505
 
@@ -15,6 +15,7 @@ __all__ = [
15
15
  'GroupMembershipMemberKeyArgs',
16
16
  'GroupMembershipPreferredMemberKeyArgs',
17
17
  'GroupMembershipRoleArgs',
18
+ 'GroupMembershipRoleExpiryDetailArgs',
18
19
  'GetGroupLookupGroupKeyArgs',
19
20
  ]
20
21
 
@@ -262,14 +263,18 @@ class GroupMembershipPreferredMemberKeyArgs:
262
263
  @pulumi.input_type
263
264
  class GroupMembershipRoleArgs:
264
265
  def __init__(__self__, *,
265
- name: pulumi.Input[str]):
266
+ name: pulumi.Input[str],
267
+ expiry_detail: Optional[pulumi.Input['GroupMembershipRoleExpiryDetailArgs']] = None):
266
268
  """
267
269
  :param pulumi.Input[str] name: The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
268
270
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
269
-
270
- - - -
271
+ :param pulumi.Input['GroupMembershipRoleExpiryDetailArgs'] expiry_detail: The MembershipRole expiry details, only supported for MEMBER role.
272
+ Other roles cannot be accompanied with MEMBER role having expiry.
273
+ Structure is documented below.
271
274
  """
272
275
  pulumi.set(__self__, "name", name)
276
+ if expiry_detail is not None:
277
+ pulumi.set(__self__, "expiry_detail", expiry_detail)
273
278
 
274
279
  @property
275
280
  @pulumi.getter
@@ -277,8 +282,6 @@ class GroupMembershipRoleArgs:
277
282
  """
278
283
  The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
279
284
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
280
-
281
- - - -
282
285
  """
283
286
  return pulumi.get(self, "name")
284
287
 
@@ -286,6 +289,52 @@ class GroupMembershipRoleArgs:
286
289
  def name(self, value: pulumi.Input[str]):
287
290
  pulumi.set(self, "name", value)
288
291
 
292
+ @property
293
+ @pulumi.getter(name="expiryDetail")
294
+ def expiry_detail(self) -> Optional[pulumi.Input['GroupMembershipRoleExpiryDetailArgs']]:
295
+ """
296
+ The MembershipRole expiry details, only supported for MEMBER role.
297
+ Other roles cannot be accompanied with MEMBER role having expiry.
298
+ Structure is documented below.
299
+ """
300
+ return pulumi.get(self, "expiry_detail")
301
+
302
+ @expiry_detail.setter
303
+ def expiry_detail(self, value: Optional[pulumi.Input['GroupMembershipRoleExpiryDetailArgs']]):
304
+ pulumi.set(self, "expiry_detail", value)
305
+
306
+
307
+ @pulumi.input_type
308
+ class GroupMembershipRoleExpiryDetailArgs:
309
+ def __init__(__self__, *,
310
+ expire_time: pulumi.Input[str]):
311
+ """
312
+ :param pulumi.Input[str] expire_time: The time at which the MembershipRole will expire.
313
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
314
+ resolution and up to nine fractional digits.
315
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
316
+
317
+ - - -
318
+ """
319
+ pulumi.set(__self__, "expire_time", expire_time)
320
+
321
+ @property
322
+ @pulumi.getter(name="expireTime")
323
+ def expire_time(self) -> pulumi.Input[str]:
324
+ """
325
+ The time at which the MembershipRole will expire.
326
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
327
+ resolution and up to nine fractional digits.
328
+ Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
329
+
330
+ - - -
331
+ """
332
+ return pulumi.get(self, "expire_time")
333
+
334
+ @expire_time.setter
335
+ def expire_time(self, value: pulumi.Input[str]):
336
+ pulumi.set(self, "expire_time", value)
337
+
289
338
 
290
339
  @pulumi.input_type
291
340
  class GetGroupLookupGroupKeyArgs:
@@ -110,8 +110,6 @@ class _GroupMembershipState:
110
110
  Structure is documented below.
111
111
  :param pulumi.Input[str] name: The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
112
112
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
113
-
114
- - - -
115
113
  :param pulumi.Input['GroupMembershipPreferredMemberKeyArgs'] preferred_member_key: EntityKey of the member.
116
114
  Structure is documented below.
117
115
  :param pulumi.Input[Sequence[pulumi.Input['GroupMembershipRoleArgs']]] roles: The MembershipRoles that apply to the Membership.
@@ -180,8 +178,6 @@ class _GroupMembershipState:
180
178
  """
181
179
  The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
182
180
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
183
-
184
- - - -
185
181
  """
186
182
  return pulumi.get(self, "name")
187
183
 
@@ -529,8 +525,6 @@ class GroupMembership(pulumi.CustomResource):
529
525
  Structure is documented below.
530
526
  :param pulumi.Input[str] name: The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
531
527
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
532
-
533
- - - -
534
528
  :param pulumi.Input[pulumi.InputType['GroupMembershipPreferredMemberKeyArgs']] preferred_member_key: EntityKey of the member.
535
529
  Structure is documented below.
536
530
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GroupMembershipRoleArgs']]]] roles: The MembershipRoles that apply to the Membership.
@@ -584,8 +578,6 @@ class GroupMembership(pulumi.CustomResource):
584
578
  """
585
579
  The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
586
580
  Possible values are: `OWNER`, `MANAGER`, `MEMBER`.
587
-
588
- - - -
589
581
  """
590
582
  return pulumi.get(self, "name")
591
583