pulumi-gcp 8.21.0a1741183435__py3-none-any.whl → 8.22.0__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 (75) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/alloydb/_inputs.py +66 -0
  3. pulumi_gcp/alloydb/outputs.py +95 -0
  4. pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
  5. pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
  6. pulumi_gcp/certificatemanager/certificate.py +53 -7
  7. pulumi_gcp/certificatemanager/outputs.py +8 -2
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +600 -17
  10. pulumi_gcp/compute/backend_service.py +195 -7
  11. pulumi_gcp/compute/disk.py +108 -0
  12. pulumi_gcp/compute/firewall_policy_association.py +28 -2
  13. pulumi_gcp/compute/get_backend_service.py +12 -1
  14. pulumi_gcp/compute/get_disk.py +23 -1
  15. pulumi_gcp/compute/get_region_disk.py +23 -1
  16. pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
  17. pulumi_gcp/compute/outputs.py +623 -23
  18. pulumi_gcp/compute/region_backend_service.py +193 -7
  19. pulumi_gcp/compute/region_disk.py +114 -0
  20. pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
  21. pulumi_gcp/compute/subnetwork.py +147 -0
  22. pulumi_gcp/container/_inputs.py +3 -3
  23. pulumi_gcp/container/outputs.py +4 -4
  24. pulumi_gcp/datastream/_inputs.py +273 -0
  25. pulumi_gcp/datastream/connection_profile.py +54 -2
  26. pulumi_gcp/datastream/outputs.py +224 -0
  27. pulumi_gcp/eventarc/__init__.py +1 -0
  28. pulumi_gcp/eventarc/_inputs.py +40 -0
  29. pulumi_gcp/eventarc/channel.py +85 -93
  30. pulumi_gcp/eventarc/google_api_source.py +997 -0
  31. pulumi_gcp/eventarc/outputs.py +41 -0
  32. pulumi_gcp/firebase/data_connect_service.py +40 -2
  33. pulumi_gcp/iam/__init__.py +2 -0
  34. pulumi_gcp/iam/_inputs.py +51 -18
  35. pulumi_gcp/iam/folders_policy_binding.py +10 -26
  36. pulumi_gcp/iam/oauth_client.py +979 -0
  37. pulumi_gcp/iam/oauth_client_credential.py +641 -0
  38. pulumi_gcp/iam/organizations_policy_binding.py +8 -24
  39. pulumi_gcp/iam/outputs.py +34 -12
  40. pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
  41. pulumi_gcp/iam/projects_policy_binding.py +8 -24
  42. pulumi_gcp/kms/crypto_key_version.py +14 -7
  43. pulumi_gcp/monitoring/_inputs.py +15 -18
  44. pulumi_gcp/monitoring/alert_policy.py +46 -0
  45. pulumi_gcp/monitoring/outputs.py +10 -12
  46. pulumi_gcp/networksecurity/__init__.py +1 -0
  47. pulumi_gcp/networksecurity/_inputs.py +30 -18
  48. pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
  49. pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
  50. pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
  51. pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
  52. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
  53. pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
  54. pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
  55. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
  56. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
  57. pulumi_gcp/networksecurity/outputs.py +20 -12
  58. pulumi_gcp/networkservices/endpoint_policy.py +12 -0
  59. pulumi_gcp/networkservices/grpc_route.py +12 -0
  60. pulumi_gcp/networkservices/http_route.py +16 -0
  61. pulumi_gcp/networkservices/mesh.py +16 -0
  62. pulumi_gcp/networkservices/service_binding.py +14 -0
  63. pulumi_gcp/networkservices/tcp_route.py +16 -0
  64. pulumi_gcp/networkservices/tls_route.py +12 -0
  65. pulumi_gcp/pulumi-plugin.json +1 -1
  66. pulumi_gcp/tpu/_inputs.py +21 -1
  67. pulumi_gcp/tpu/outputs.py +13 -1
  68. pulumi_gcp/tpu/v2_vm.py +2 -0
  69. pulumi_gcp/vmwareengine/_inputs.py +6 -0
  70. pulumi_gcp/vmwareengine/outputs.py +8 -0
  71. pulumi_gcp/workstations/workstation_cluster.py +137 -1
  72. {pulumi_gcp-8.21.0a1741183435.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
  73. {pulumi_gcp-8.21.0a1741183435.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +75 -70
  74. {pulumi_gcp-8.21.0a1741183435.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
  75. {pulumi_gcp-8.21.0a1741183435.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,9 @@ __all__ = [
24
24
  'ConnectionProfileOracleProfile',
25
25
  'ConnectionProfilePostgresqlProfile',
26
26
  'ConnectionProfilePrivateConnectivity',
27
+ 'ConnectionProfileSalesforceProfile',
28
+ 'ConnectionProfileSalesforceProfileOauth2ClientCredentials',
29
+ 'ConnectionProfileSalesforceProfileUserCredentials',
27
30
  'ConnectionProfileSqlServerProfile',
28
31
  'PrivateConnectionError',
29
32
  'PrivateConnectionVpcPeeringConfig',
@@ -650,6 +653,227 @@ class ConnectionProfilePrivateConnectivity(dict):
650
653
  return pulumi.get(self, "private_connection")
651
654
 
652
655
 
656
+ @pulumi.output_type
657
+ class ConnectionProfileSalesforceProfile(dict):
658
+ @staticmethod
659
+ def __key_warning(key: str):
660
+ suggest = None
661
+ if key == "oauth2ClientCredentials":
662
+ suggest = "oauth2_client_credentials"
663
+ elif key == "userCredentials":
664
+ suggest = "user_credentials"
665
+
666
+ if suggest:
667
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfile. Access the value via the '{suggest}' property getter instead.")
668
+
669
+ def __getitem__(self, key: str) -> Any:
670
+ ConnectionProfileSalesforceProfile.__key_warning(key)
671
+ return super().__getitem__(key)
672
+
673
+ def get(self, key: str, default = None) -> Any:
674
+ ConnectionProfileSalesforceProfile.__key_warning(key)
675
+ return super().get(key, default)
676
+
677
+ def __init__(__self__, *,
678
+ domain: str,
679
+ oauth2_client_credentials: Optional['outputs.ConnectionProfileSalesforceProfileOauth2ClientCredentials'] = None,
680
+ user_credentials: Optional['outputs.ConnectionProfileSalesforceProfileUserCredentials'] = None):
681
+ """
682
+ :param str domain: Domain for the Salesforce Org.
683
+ :param 'ConnectionProfileSalesforceProfileOauth2ClientCredentialsArgs' oauth2_client_credentials: OAuth credentials to use for Salesforce authentication.
684
+ Structure is documented below.
685
+ :param 'ConnectionProfileSalesforceProfileUserCredentialsArgs' user_credentials: User credentials to use for Salesforce authentication.
686
+ Structure is documented below.
687
+ """
688
+ pulumi.set(__self__, "domain", domain)
689
+ if oauth2_client_credentials is not None:
690
+ pulumi.set(__self__, "oauth2_client_credentials", oauth2_client_credentials)
691
+ if user_credentials is not None:
692
+ pulumi.set(__self__, "user_credentials", user_credentials)
693
+
694
+ @property
695
+ @pulumi.getter
696
+ def domain(self) -> str:
697
+ """
698
+ Domain for the Salesforce Org.
699
+ """
700
+ return pulumi.get(self, "domain")
701
+
702
+ @property
703
+ @pulumi.getter(name="oauth2ClientCredentials")
704
+ def oauth2_client_credentials(self) -> Optional['outputs.ConnectionProfileSalesforceProfileOauth2ClientCredentials']:
705
+ """
706
+ OAuth credentials to use for Salesforce authentication.
707
+ Structure is documented below.
708
+ """
709
+ return pulumi.get(self, "oauth2_client_credentials")
710
+
711
+ @property
712
+ @pulumi.getter(name="userCredentials")
713
+ def user_credentials(self) -> Optional['outputs.ConnectionProfileSalesforceProfileUserCredentials']:
714
+ """
715
+ User credentials to use for Salesforce authentication.
716
+ Structure is documented below.
717
+ """
718
+ return pulumi.get(self, "user_credentials")
719
+
720
+
721
+ @pulumi.output_type
722
+ class ConnectionProfileSalesforceProfileOauth2ClientCredentials(dict):
723
+ @staticmethod
724
+ def __key_warning(key: str):
725
+ suggest = None
726
+ if key == "clientId":
727
+ suggest = "client_id"
728
+ elif key == "clientSecret":
729
+ suggest = "client_secret"
730
+ elif key == "secretManagerStoredClientSecret":
731
+ suggest = "secret_manager_stored_client_secret"
732
+
733
+ if suggest:
734
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfileOauth2ClientCredentials. Access the value via the '{suggest}' property getter instead.")
735
+
736
+ def __getitem__(self, key: str) -> Any:
737
+ ConnectionProfileSalesforceProfileOauth2ClientCredentials.__key_warning(key)
738
+ return super().__getitem__(key)
739
+
740
+ def get(self, key: str, default = None) -> Any:
741
+ ConnectionProfileSalesforceProfileOauth2ClientCredentials.__key_warning(key)
742
+ return super().get(key, default)
743
+
744
+ def __init__(__self__, *,
745
+ client_id: Optional[str] = None,
746
+ client_secret: Optional[str] = None,
747
+ secret_manager_stored_client_secret: Optional[str] = None):
748
+ """
749
+ :param str client_id: Client ID to use for authentication.
750
+ :param str client_secret: Client secret to use for authentication.
751
+ :param str secret_manager_stored_client_secret: A reference to a Secret Manager resource name storing the client secret.
752
+ """
753
+ if client_id is not None:
754
+ pulumi.set(__self__, "client_id", client_id)
755
+ if client_secret is not None:
756
+ pulumi.set(__self__, "client_secret", client_secret)
757
+ if secret_manager_stored_client_secret is not None:
758
+ pulumi.set(__self__, "secret_manager_stored_client_secret", secret_manager_stored_client_secret)
759
+
760
+ @property
761
+ @pulumi.getter(name="clientId")
762
+ def client_id(self) -> Optional[str]:
763
+ """
764
+ Client ID to use for authentication.
765
+ """
766
+ return pulumi.get(self, "client_id")
767
+
768
+ @property
769
+ @pulumi.getter(name="clientSecret")
770
+ def client_secret(self) -> Optional[str]:
771
+ """
772
+ Client secret to use for authentication.
773
+ """
774
+ return pulumi.get(self, "client_secret")
775
+
776
+ @property
777
+ @pulumi.getter(name="secretManagerStoredClientSecret")
778
+ def secret_manager_stored_client_secret(self) -> Optional[str]:
779
+ """
780
+ A reference to a Secret Manager resource name storing the client secret.
781
+ """
782
+ return pulumi.get(self, "secret_manager_stored_client_secret")
783
+
784
+
785
+ @pulumi.output_type
786
+ class ConnectionProfileSalesforceProfileUserCredentials(dict):
787
+ @staticmethod
788
+ def __key_warning(key: str):
789
+ suggest = None
790
+ if key == "secretManagerStoredPassword":
791
+ suggest = "secret_manager_stored_password"
792
+ elif key == "secretManagerStoredSecurityToken":
793
+ suggest = "secret_manager_stored_security_token"
794
+ elif key == "securityToken":
795
+ suggest = "security_token"
796
+
797
+ if suggest:
798
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfileUserCredentials. Access the value via the '{suggest}' property getter instead.")
799
+
800
+ def __getitem__(self, key: str) -> Any:
801
+ ConnectionProfileSalesforceProfileUserCredentials.__key_warning(key)
802
+ return super().__getitem__(key)
803
+
804
+ def get(self, key: str, default = None) -> Any:
805
+ ConnectionProfileSalesforceProfileUserCredentials.__key_warning(key)
806
+ return super().get(key, default)
807
+
808
+ def __init__(__self__, *,
809
+ password: Optional[str] = None,
810
+ secret_manager_stored_password: Optional[str] = None,
811
+ secret_manager_stored_security_token: Optional[str] = None,
812
+ security_token: Optional[str] = None,
813
+ username: Optional[str] = None):
814
+ """
815
+ :param str password: Password of the user.
816
+ :param str secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
817
+ :param str secret_manager_stored_security_token: A reference to a Secret Manager resource name storing the user's security token.
818
+
819
+ <a name="nested_salesforce_profile_oauth2_client_credentials"></a>The `oauth2_client_credentials` block supports:
820
+ :param str security_token: Security token of the user.
821
+ :param str username: Username to use for authentication.
822
+ """
823
+ if password is not None:
824
+ pulumi.set(__self__, "password", password)
825
+ if secret_manager_stored_password is not None:
826
+ pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
827
+ if secret_manager_stored_security_token is not None:
828
+ pulumi.set(__self__, "secret_manager_stored_security_token", secret_manager_stored_security_token)
829
+ if security_token is not None:
830
+ pulumi.set(__self__, "security_token", security_token)
831
+ if username is not None:
832
+ pulumi.set(__self__, "username", username)
833
+
834
+ @property
835
+ @pulumi.getter
836
+ def password(self) -> Optional[str]:
837
+ """
838
+ Password of the user.
839
+ """
840
+ return pulumi.get(self, "password")
841
+
842
+ @property
843
+ @pulumi.getter(name="secretManagerStoredPassword")
844
+ def secret_manager_stored_password(self) -> Optional[str]:
845
+ """
846
+ A reference to a Secret Manager resource name storing the user's password.
847
+ """
848
+ return pulumi.get(self, "secret_manager_stored_password")
849
+
850
+ @property
851
+ @pulumi.getter(name="secretManagerStoredSecurityToken")
852
+ def secret_manager_stored_security_token(self) -> Optional[str]:
853
+ """
854
+ A reference to a Secret Manager resource name storing the user's security token.
855
+
856
+ <a name="nested_salesforce_profile_oauth2_client_credentials"></a>The `oauth2_client_credentials` block supports:
857
+ """
858
+ return pulumi.get(self, "secret_manager_stored_security_token")
859
+
860
+ @property
861
+ @pulumi.getter(name="securityToken")
862
+ def security_token(self) -> Optional[str]:
863
+ """
864
+ Security token of the user.
865
+ """
866
+ return pulumi.get(self, "security_token")
867
+
868
+ @property
869
+ @pulumi.getter
870
+ def username(self) -> Optional[str]:
871
+ """
872
+ Username to use for authentication.
873
+ """
874
+ return pulumi.get(self, "username")
875
+
876
+
653
877
  @pulumi.output_type
654
878
  class ConnectionProfileSqlServerProfile(dict):
655
879
  def __init__(__self__, *,
@@ -6,6 +6,7 @@ from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .channel import *
9
+ from .google_api_source import *
9
10
  from .google_channel_config import *
10
11
  from .message_bus import *
11
12
  from .trigger import *
@@ -15,6 +15,8 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'GoogleApiSourceLoggingConfigArgs',
19
+ 'GoogleApiSourceLoggingConfigArgsDict',
18
20
  'MessageBusLoggingConfigArgs',
19
21
  'MessageBusLoggingConfigArgsDict',
20
22
  'TriggerDestinationArgs',
@@ -37,6 +39,44 @@ __all__ = [
37
39
 
38
40
  MYPY = False
39
41
 
42
+ if not MYPY:
43
+ class GoogleApiSourceLoggingConfigArgsDict(TypedDict):
44
+ log_severity: NotRequired[pulumi.Input[str]]
45
+ """
46
+ The minimum severity of logs that will be sent to Stackdriver/Platform
47
+ Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
48
+ Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
49
+ """
50
+ elif False:
51
+ GoogleApiSourceLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
52
+
53
+ @pulumi.input_type
54
+ class GoogleApiSourceLoggingConfigArgs:
55
+ def __init__(__self__, *,
56
+ log_severity: Optional[pulumi.Input[str]] = None):
57
+ """
58
+ :param pulumi.Input[str] log_severity: The minimum severity of logs that will be sent to Stackdriver/Platform
59
+ Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
60
+ Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
61
+ """
62
+ if log_severity is not None:
63
+ pulumi.set(__self__, "log_severity", log_severity)
64
+
65
+ @property
66
+ @pulumi.getter(name="logSeverity")
67
+ def log_severity(self) -> Optional[pulumi.Input[str]]:
68
+ """
69
+ The minimum severity of logs that will be sent to Stackdriver/Platform
70
+ Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
71
+ Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
72
+ """
73
+ return pulumi.get(self, "log_severity")
74
+
75
+ @log_severity.setter
76
+ def log_severity(self, value: Optional[pulumi.Input[str]]):
77
+ pulumi.set(self, "log_severity", value)
78
+
79
+
40
80
  if not MYPY:
41
81
  class MessageBusLoggingConfigArgsDict(TypedDict):
42
82
  log_severity: NotRequired[pulumi.Input[str]]