pulumi-gcp 8.6.0a1728595713__py3-none-any.whl → 8.7.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 (128) hide show
  1. pulumi_gcp/__init__.py +78 -0
  2. pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
  3. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
  4. pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
  5. pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
  6. pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
  7. pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
  8. pulumi_gcp/apigee/__init__.py +2 -0
  9. pulumi_gcp/apigee/_inputs.py +108 -0
  10. pulumi_gcp/apigee/app_group.py +811 -0
  11. pulumi_gcp/apigee/developer.py +757 -0
  12. pulumi_gcp/apigee/outputs.py +64 -0
  13. pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
  14. pulumi_gcp/bigquery/connection.py +12 -12
  15. pulumi_gcp/bigquery/job.py +6 -6
  16. pulumi_gcp/bigtable/_inputs.py +58 -0
  17. pulumi_gcp/bigtable/instance_iam_binding.py +13 -34
  18. pulumi_gcp/bigtable/instance_iam_member.py +13 -34
  19. pulumi_gcp/bigtable/instance_iam_policy.py +0 -47
  20. pulumi_gcp/bigtable/outputs.py +36 -0
  21. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  22. pulumi_gcp/cloudrunv2/service.py +92 -0
  23. pulumi_gcp/compute/_inputs.py +217 -119
  24. pulumi_gcp/compute/backend_service.py +76 -0
  25. pulumi_gcp/compute/get_backend_service.py +12 -1
  26. pulumi_gcp/compute/get_instance.py +29 -1
  27. pulumi_gcp/compute/get_instance_template.py +29 -1
  28. pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
  29. pulumi_gcp/compute/get_region_instance_template.py +29 -1
  30. pulumi_gcp/compute/instance.py +89 -0
  31. pulumi_gcp/compute/instance_from_machine_image.py +82 -0
  32. pulumi_gcp/compute/instance_from_template.py +82 -0
  33. pulumi_gcp/compute/instance_template.py +75 -0
  34. pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
  35. pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
  36. pulumi_gcp/compute/outputs.py +172 -82
  37. pulumi_gcp/compute/region_backend_service.py +94 -0
  38. pulumi_gcp/compute/region_instance_template.py +75 -0
  39. pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
  40. pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
  41. pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
  42. pulumi_gcp/config/__init__.pyi +4 -0
  43. pulumi_gcp/config/vars.py +8 -0
  44. pulumi_gcp/container/_inputs.py +12 -0
  45. pulumi_gcp/container/attached_cluster.py +9 -6
  46. pulumi_gcp/container/outputs.py +10 -2
  47. pulumi_gcp/datastream/stream.py +2 -2
  48. pulumi_gcp/diagflow/_inputs.py +472 -2
  49. pulumi_gcp/diagflow/cx_agent.py +64 -4
  50. pulumi_gcp/diagflow/cx_flow.py +30 -0
  51. pulumi_gcp/diagflow/outputs.py +378 -2
  52. pulumi_gcp/discoveryengine/_inputs.py +32 -5
  53. pulumi_gcp/discoveryengine/chat_engine.py +64 -0
  54. pulumi_gcp/discoveryengine/outputs.py +22 -3
  55. pulumi_gcp/gkehub/feature.py +2 -4
  56. pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
  57. pulumi_gcp/kms/key_handle.py +8 -8
  58. pulumi_gcp/looker/instance.py +104 -2
  59. pulumi_gcp/monitoring/_inputs.py +23 -0
  60. pulumi_gcp/monitoring/get_secret_version.py +22 -3
  61. pulumi_gcp/monitoring/outputs.py +16 -0
  62. pulumi_gcp/netapp/backup_vault.py +2 -2
  63. pulumi_gcp/networkconnectivity/__init__.py +1 -0
  64. pulumi_gcp/networkconnectivity/_inputs.py +218 -0
  65. pulumi_gcp/networkconnectivity/group.py +764 -0
  66. pulumi_gcp/networkconnectivity/internal_range.py +117 -7
  67. pulumi_gcp/networkconnectivity/outputs.py +167 -0
  68. pulumi_gcp/networkconnectivity/spoke.py +144 -0
  69. pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
  70. pulumi_gcp/networkservices/gateway.py +54 -0
  71. pulumi_gcp/oracledatabase/__init__.py +20 -0
  72. pulumi_gcp/oracledatabase/_inputs.py +4745 -0
  73. pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
  74. pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
  75. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
  76. pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
  77. pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
  78. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
  79. pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
  80. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
  81. pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
  82. pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
  83. pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
  84. pulumi_gcp/oracledatabase/outputs.py +9304 -0
  85. pulumi_gcp/organizations/folder.py +7 -7
  86. pulumi_gcp/organizations/project.py +7 -7
  87. pulumi_gcp/orgpolicy/_inputs.py +3 -3
  88. pulumi_gcp/orgpolicy/outputs.py +2 -2
  89. pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
  90. pulumi_gcp/provider.py +40 -0
  91. pulumi_gcp/pulumi-plugin.json +1 -1
  92. pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
  93. pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
  94. pulumi_gcp/secretmanager/get_secret_version.py +22 -3
  95. pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
  96. pulumi_gcp/secretmanager/outputs.py +2 -10
  97. pulumi_gcp/secretmanager/regional_secret.py +2 -2
  98. pulumi_gcp/securesourcemanager/__init__.py +1 -0
  99. pulumi_gcp/securesourcemanager/branch_rule.py +975 -0
  100. pulumi_gcp/siteverification/get_token.py +0 -16
  101. pulumi_gcp/siteverification/owner.py +0 -16
  102. pulumi_gcp/spanner/_inputs.py +29 -5
  103. pulumi_gcp/spanner/backup_schedule.py +4 -2
  104. pulumi_gcp/spanner/outputs.py +20 -3
  105. pulumi_gcp/sql/_inputs.py +6 -6
  106. pulumi_gcp/sql/outputs.py +4 -4
  107. pulumi_gcp/sql/user.py +28 -21
  108. pulumi_gcp/storage/_inputs.py +36 -0
  109. pulumi_gcp/storage/bucket.py +47 -0
  110. pulumi_gcp/storage/get_bucket.py +12 -1
  111. pulumi_gcp/storage/outputs.py +40 -0
  112. pulumi_gcp/transcoder/__init__.py +11 -0
  113. pulumi_gcp/transcoder/_inputs.py +3991 -0
  114. pulumi_gcp/transcoder/job.py +2134 -0
  115. pulumi_gcp/transcoder/job_template.py +1524 -0
  116. pulumi_gcp/transcoder/outputs.py +2918 -0
  117. pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
  118. pulumi_gcp/vmwareengine/_inputs.py +440 -0
  119. pulumi_gcp/vmwareengine/cluster.py +100 -2
  120. pulumi_gcp/vmwareengine/get_cluster.py +12 -1
  121. pulumi_gcp/vmwareengine/outputs.py +615 -0
  122. pulumi_gcp/workstations/_inputs.py +54 -0
  123. pulumi_gcp/workstations/outputs.py +32 -0
  124. pulumi_gcp/workstations/workstation_config.py +205 -0
  125. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/METADATA +1 -1
  126. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/RECORD +128 -105
  127. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/WHEEL +1 -1
  128. {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.7.0.dist-info}/top_level.txt +0 -0
@@ -15,8 +15,12 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'GroupAutoAcceptArgs',
19
+ 'GroupAutoAcceptArgsDict',
18
20
  'HubRoutingVpcArgs',
19
21
  'HubRoutingVpcArgsDict',
22
+ 'InternalRangeMigrationArgs',
23
+ 'InternalRangeMigrationArgsDict',
20
24
  'PolicyBasedRouteFilterArgs',
21
25
  'PolicyBasedRouteFilterArgsDict',
22
26
  'PolicyBasedRouteInterconnectAttachmentArgs',
@@ -35,6 +39,8 @@ __all__ = [
35
39
  'ServiceConnectionPolicyPscConnectionErrorInfoArgsDict',
36
40
  'SpokeLinkedInterconnectAttachmentsArgs',
37
41
  'SpokeLinkedInterconnectAttachmentsArgsDict',
42
+ 'SpokeLinkedProducerVpcNetworkArgs',
43
+ 'SpokeLinkedProducerVpcNetworkArgsDict',
38
44
  'SpokeLinkedRouterApplianceInstancesArgs',
39
45
  'SpokeLinkedRouterApplianceInstancesArgsDict',
40
46
  'SpokeLinkedRouterApplianceInstancesInstanceArgs',
@@ -47,6 +53,37 @@ __all__ = [
47
53
 
48
54
  MYPY = False
49
55
 
56
+ if not MYPY:
57
+ class GroupAutoAcceptArgsDict(TypedDict):
58
+ auto_accept_projects: pulumi.Input[Sequence[pulumi.Input[str]]]
59
+ """
60
+ A list of project ids or project numbers for which you want to enable auto-accept. The auto-accept setting is applied to spokes being created or updated in these projects.
61
+ """
62
+ elif False:
63
+ GroupAutoAcceptArgsDict: TypeAlias = Mapping[str, Any]
64
+
65
+ @pulumi.input_type
66
+ class GroupAutoAcceptArgs:
67
+ def __init__(__self__, *,
68
+ auto_accept_projects: pulumi.Input[Sequence[pulumi.Input[str]]]):
69
+ """
70
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] auto_accept_projects: A list of project ids or project numbers for which you want to enable auto-accept. The auto-accept setting is applied to spokes being created or updated in these projects.
71
+ """
72
+ pulumi.set(__self__, "auto_accept_projects", auto_accept_projects)
73
+
74
+ @property
75
+ @pulumi.getter(name="autoAcceptProjects")
76
+ def auto_accept_projects(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
77
+ """
78
+ A list of project ids or project numbers for which you want to enable auto-accept. The auto-accept setting is applied to spokes being created or updated in these projects.
79
+ """
80
+ return pulumi.get(self, "auto_accept_projects")
81
+
82
+ @auto_accept_projects.setter
83
+ def auto_accept_projects(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
84
+ pulumi.set(self, "auto_accept_projects", value)
85
+
86
+
50
87
  if not MYPY:
51
88
  class HubRoutingVpcArgsDict(TypedDict):
52
89
  uri: NotRequired[pulumi.Input[str]]
@@ -79,6 +116,74 @@ class HubRoutingVpcArgs:
79
116
  pulumi.set(self, "uri", value)
80
117
 
81
118
 
119
+ if not MYPY:
120
+ class InternalRangeMigrationArgsDict(TypedDict):
121
+ source: pulumi.Input[str]
122
+ """
123
+ Resource path as an URI of the source resource, for example a subnet.
124
+ The project for the source resource should match the project for the
125
+ InternalRange.
126
+ An example /projects/{project}/regions/{region}/subnetworks/{subnet}
127
+ """
128
+ target: pulumi.Input[str]
129
+ """
130
+ Resource path of the target resource. The target project can be
131
+ different, as in the cases when migrating to peer networks. The resource
132
+ may not exist yet.
133
+ For example /projects/{project}/regions/{region}/subnetworks/{subnet}
134
+ """
135
+ elif False:
136
+ InternalRangeMigrationArgsDict: TypeAlias = Mapping[str, Any]
137
+
138
+ @pulumi.input_type
139
+ class InternalRangeMigrationArgs:
140
+ def __init__(__self__, *,
141
+ source: pulumi.Input[str],
142
+ target: pulumi.Input[str]):
143
+ """
144
+ :param pulumi.Input[str] source: Resource path as an URI of the source resource, for example a subnet.
145
+ The project for the source resource should match the project for the
146
+ InternalRange.
147
+ An example /projects/{project}/regions/{region}/subnetworks/{subnet}
148
+ :param pulumi.Input[str] target: Resource path of the target resource. The target project can be
149
+ different, as in the cases when migrating to peer networks. The resource
150
+ may not exist yet.
151
+ For example /projects/{project}/regions/{region}/subnetworks/{subnet}
152
+ """
153
+ pulumi.set(__self__, "source", source)
154
+ pulumi.set(__self__, "target", target)
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def source(self) -> pulumi.Input[str]:
159
+ """
160
+ Resource path as an URI of the source resource, for example a subnet.
161
+ The project for the source resource should match the project for the
162
+ InternalRange.
163
+ An example /projects/{project}/regions/{region}/subnetworks/{subnet}
164
+ """
165
+ return pulumi.get(self, "source")
166
+
167
+ @source.setter
168
+ def source(self, value: pulumi.Input[str]):
169
+ pulumi.set(self, "source", value)
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def target(self) -> pulumi.Input[str]:
174
+ """
175
+ Resource path of the target resource. The target project can be
176
+ different, as in the cases when migrating to peer networks. The resource
177
+ may not exist yet.
178
+ For example /projects/{project}/regions/{region}/subnetworks/{subnet}
179
+ """
180
+ return pulumi.get(self, "target")
181
+
182
+ @target.setter
183
+ def target(self, value: pulumi.Input[str]):
184
+ pulumi.set(self, "target", value)
185
+
186
+
82
187
  if not MYPY:
83
188
  class PolicyBasedRouteFilterArgsDict(TypedDict):
84
189
  protocol_version: pulumi.Input[str]
@@ -800,6 +905,119 @@ class SpokeLinkedInterconnectAttachmentsArgs:
800
905
  pulumi.set(self, "include_import_ranges", value)
801
906
 
802
907
 
908
+ if not MYPY:
909
+ class SpokeLinkedProducerVpcNetworkArgsDict(TypedDict):
910
+ network: pulumi.Input[str]
911
+ """
912
+ The URI of the Service Consumer VPC that the Producer VPC is peered with.
913
+ """
914
+ peering: pulumi.Input[str]
915
+ """
916
+ The name of the VPC peering between the Service Consumer VPC and the Producer VPC (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE state.
917
+ """
918
+ exclude_export_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
919
+ """
920
+ IP ranges encompassing the subnets to be excluded from peering.
921
+ """
922
+ include_export_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
923
+ """
924
+ IP ranges allowed to be included from peering.
925
+ """
926
+ producer_network: NotRequired[pulumi.Input[str]]
927
+ """
928
+ (Output)
929
+ The URI of the Producer VPC.
930
+ """
931
+ elif False:
932
+ SpokeLinkedProducerVpcNetworkArgsDict: TypeAlias = Mapping[str, Any]
933
+
934
+ @pulumi.input_type
935
+ class SpokeLinkedProducerVpcNetworkArgs:
936
+ def __init__(__self__, *,
937
+ network: pulumi.Input[str],
938
+ peering: pulumi.Input[str],
939
+ exclude_export_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
940
+ include_export_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
941
+ producer_network: Optional[pulumi.Input[str]] = None):
942
+ """
943
+ :param pulumi.Input[str] network: The URI of the Service Consumer VPC that the Producer VPC is peered with.
944
+ :param pulumi.Input[str] peering: The name of the VPC peering between the Service Consumer VPC and the Producer VPC (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE state.
945
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_export_ranges: IP ranges encompassing the subnets to be excluded from peering.
946
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] include_export_ranges: IP ranges allowed to be included from peering.
947
+ :param pulumi.Input[str] producer_network: (Output)
948
+ The URI of the Producer VPC.
949
+ """
950
+ pulumi.set(__self__, "network", network)
951
+ pulumi.set(__self__, "peering", peering)
952
+ if exclude_export_ranges is not None:
953
+ pulumi.set(__self__, "exclude_export_ranges", exclude_export_ranges)
954
+ if include_export_ranges is not None:
955
+ pulumi.set(__self__, "include_export_ranges", include_export_ranges)
956
+ if producer_network is not None:
957
+ pulumi.set(__self__, "producer_network", producer_network)
958
+
959
+ @property
960
+ @pulumi.getter
961
+ def network(self) -> pulumi.Input[str]:
962
+ """
963
+ The URI of the Service Consumer VPC that the Producer VPC is peered with.
964
+ """
965
+ return pulumi.get(self, "network")
966
+
967
+ @network.setter
968
+ def network(self, value: pulumi.Input[str]):
969
+ pulumi.set(self, "network", value)
970
+
971
+ @property
972
+ @pulumi.getter
973
+ def peering(self) -> pulumi.Input[str]:
974
+ """
975
+ The name of the VPC peering between the Service Consumer VPC and the Producer VPC (defined in the Tenant project) which is added to the NCC hub. This peering must be in ACTIVE state.
976
+ """
977
+ return pulumi.get(self, "peering")
978
+
979
+ @peering.setter
980
+ def peering(self, value: pulumi.Input[str]):
981
+ pulumi.set(self, "peering", value)
982
+
983
+ @property
984
+ @pulumi.getter(name="excludeExportRanges")
985
+ def exclude_export_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
986
+ """
987
+ IP ranges encompassing the subnets to be excluded from peering.
988
+ """
989
+ return pulumi.get(self, "exclude_export_ranges")
990
+
991
+ @exclude_export_ranges.setter
992
+ def exclude_export_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
993
+ pulumi.set(self, "exclude_export_ranges", value)
994
+
995
+ @property
996
+ @pulumi.getter(name="includeExportRanges")
997
+ def include_export_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
998
+ """
999
+ IP ranges allowed to be included from peering.
1000
+ """
1001
+ return pulumi.get(self, "include_export_ranges")
1002
+
1003
+ @include_export_ranges.setter
1004
+ def include_export_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1005
+ pulumi.set(self, "include_export_ranges", value)
1006
+
1007
+ @property
1008
+ @pulumi.getter(name="producerNetwork")
1009
+ def producer_network(self) -> Optional[pulumi.Input[str]]:
1010
+ """
1011
+ (Output)
1012
+ The URI of the Producer VPC.
1013
+ """
1014
+ return pulumi.get(self, "producer_network")
1015
+
1016
+ @producer_network.setter
1017
+ def producer_network(self, value: Optional[pulumi.Input[str]]):
1018
+ pulumi.set(self, "producer_network", value)
1019
+
1020
+
803
1021
  if not MYPY:
804
1022
  class SpokeLinkedRouterApplianceInstancesArgsDict(TypedDict):
805
1023
  instances: pulumi.Input[Sequence[pulumi.Input['SpokeLinkedRouterApplianceInstancesInstanceArgsDict']]]