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
@@ -26,6 +26,7 @@ class SpokeArgs:
26
26
  description: Optional[pulumi.Input[str]] = None,
27
27
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
28
  linked_interconnect_attachments: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']] = None,
29
+ linked_producer_vpc_network: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']] = None,
29
30
  linked_router_appliance_instances: Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']] = None,
30
31
  linked_vpc_network: Optional[pulumi.Input['SpokeLinkedVpcNetworkArgs']] = None,
31
32
  linked_vpn_tunnels: Optional[pulumi.Input['SpokeLinkedVpnTunnelsArgs']] = None,
@@ -44,6 +45,8 @@ class SpokeArgs:
44
45
  Please refer to the field `effective_labels` for all of the labels present on the resource.
45
46
  :param pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs'] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
46
47
  Structure is documented below.
48
+ :param pulumi.Input['SpokeLinkedProducerVpcNetworkArgs'] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
49
+ Structure is documented below.
47
50
  :param pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs'] linked_router_appliance_instances: The URIs of linked Router appliance resources
48
51
  Structure is documented below.
49
52
  :param pulumi.Input['SpokeLinkedVpcNetworkArgs'] linked_vpc_network: VPC network that is associated with the spoke.
@@ -62,6 +65,8 @@ class SpokeArgs:
62
65
  pulumi.set(__self__, "labels", labels)
63
66
  if linked_interconnect_attachments is not None:
64
67
  pulumi.set(__self__, "linked_interconnect_attachments", linked_interconnect_attachments)
68
+ if linked_producer_vpc_network is not None:
69
+ pulumi.set(__self__, "linked_producer_vpc_network", linked_producer_vpc_network)
65
70
  if linked_router_appliance_instances is not None:
66
71
  pulumi.set(__self__, "linked_router_appliance_instances", linked_router_appliance_instances)
67
72
  if linked_vpc_network is not None:
@@ -139,6 +144,19 @@ class SpokeArgs:
139
144
  def linked_interconnect_attachments(self, value: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']]):
140
145
  pulumi.set(self, "linked_interconnect_attachments", value)
141
146
 
147
+ @property
148
+ @pulumi.getter(name="linkedProducerVpcNetwork")
149
+ def linked_producer_vpc_network(self) -> Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]:
150
+ """
151
+ Producer VPC network that is associated with the spoke.
152
+ Structure is documented below.
153
+ """
154
+ return pulumi.get(self, "linked_producer_vpc_network")
155
+
156
+ @linked_producer_vpc_network.setter
157
+ def linked_producer_vpc_network(self, value: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]):
158
+ pulumi.set(self, "linked_producer_vpc_network", value)
159
+
142
160
  @property
143
161
  @pulumi.getter(name="linkedRouterApplianceInstances")
144
162
  def linked_router_appliance_instances(self) -> Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']]:
@@ -213,6 +231,7 @@ class _SpokeState:
213
231
  hub: Optional[pulumi.Input[str]] = None,
214
232
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
215
233
  linked_interconnect_attachments: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']] = None,
234
+ linked_producer_vpc_network: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']] = None,
216
235
  linked_router_appliance_instances: Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']] = None,
217
236
  linked_vpc_network: Optional[pulumi.Input['SpokeLinkedVpcNetworkArgs']] = None,
218
237
  linked_vpn_tunnels: Optional[pulumi.Input['SpokeLinkedVpnTunnelsArgs']] = None,
@@ -234,6 +253,8 @@ class _SpokeState:
234
253
  Please refer to the field `effective_labels` for all of the labels present on the resource.
235
254
  :param pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs'] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
236
255
  Structure is documented below.
256
+ :param pulumi.Input['SpokeLinkedProducerVpcNetworkArgs'] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
257
+ Structure is documented below.
237
258
  :param pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs'] linked_router_appliance_instances: The URIs of linked Router appliance resources
238
259
  Structure is documented below.
239
260
  :param pulumi.Input['SpokeLinkedVpcNetworkArgs'] linked_vpc_network: VPC network that is associated with the spoke.
@@ -265,6 +286,8 @@ class _SpokeState:
265
286
  pulumi.set(__self__, "labels", labels)
266
287
  if linked_interconnect_attachments is not None:
267
288
  pulumi.set(__self__, "linked_interconnect_attachments", linked_interconnect_attachments)
289
+ if linked_producer_vpc_network is not None:
290
+ pulumi.set(__self__, "linked_producer_vpc_network", linked_producer_vpc_network)
268
291
  if linked_router_appliance_instances is not None:
269
292
  pulumi.set(__self__, "linked_router_appliance_instances", linked_router_appliance_instances)
270
293
  if linked_vpc_network is not None:
@@ -361,6 +384,19 @@ class _SpokeState:
361
384
  def linked_interconnect_attachments(self, value: Optional[pulumi.Input['SpokeLinkedInterconnectAttachmentsArgs']]):
362
385
  pulumi.set(self, "linked_interconnect_attachments", value)
363
386
 
387
+ @property
388
+ @pulumi.getter(name="linkedProducerVpcNetwork")
389
+ def linked_producer_vpc_network(self) -> Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]:
390
+ """
391
+ Producer VPC network that is associated with the spoke.
392
+ Structure is documented below.
393
+ """
394
+ return pulumi.get(self, "linked_producer_vpc_network")
395
+
396
+ @linked_producer_vpc_network.setter
397
+ def linked_producer_vpc_network(self, value: Optional[pulumi.Input['SpokeLinkedProducerVpcNetworkArgs']]):
398
+ pulumi.set(self, "linked_producer_vpc_network", value)
399
+
364
400
  @property
365
401
  @pulumi.getter(name="linkedRouterApplianceInstances")
366
402
  def linked_router_appliance_instances(self) -> Optional[pulumi.Input['SpokeLinkedRouterApplianceInstancesArgs']]:
@@ -499,6 +535,7 @@ class Spoke(pulumi.CustomResource):
499
535
  hub: Optional[pulumi.Input[str]] = None,
500
536
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
501
537
  linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
538
+ linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
502
539
  linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
503
540
  linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
504
541
  linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
@@ -760,6 +797,51 @@ class Spoke(pulumi.CustomResource):
760
797
  "include_import_ranges": ["ALL_IPV4_RANGES"],
761
798
  })
762
799
  ```
800
+ ### Network Connectivity Spoke Linked Producer Vpc Network Basic
801
+
802
+ ```python
803
+ import pulumi
804
+ import pulumi_gcp as gcp
805
+
806
+ network = gcp.compute.Network("network",
807
+ name="net-spoke",
808
+ auto_create_subnetworks=False)
809
+ address = gcp.compute.GlobalAddress("address",
810
+ name="test-address",
811
+ purpose="VPC_PEERING",
812
+ address_type="INTERNAL",
813
+ prefix_length=16,
814
+ network=network.id)
815
+ peering = gcp.servicenetworking.Connection("peering",
816
+ network=network.id,
817
+ service="servicenetworking.googleapis.com",
818
+ reserved_peering_ranges=[address.name])
819
+ basic_hub = gcp.networkconnectivity.Hub("basic_hub", name="hub-basic")
820
+ linked_vpc_spoke = gcp.networkconnectivity.Spoke("linked_vpc_spoke",
821
+ name="vpc-spoke",
822
+ location="global",
823
+ hub=basic_hub.id,
824
+ linked_vpc_network={
825
+ "uri": network.self_link,
826
+ })
827
+ primary = gcp.networkconnectivity.Spoke("primary",
828
+ name="producer-spoke",
829
+ location="global",
830
+ description="A sample spoke with a linked router appliance instance",
831
+ labels={
832
+ "label-one": "value-one",
833
+ },
834
+ hub=basic_hub.id,
835
+ linked_producer_vpc_network={
836
+ "network": network.name,
837
+ "peering": peering.peering,
838
+ "exclude_export_ranges": [
839
+ "198.51.100.0/24",
840
+ "10.10.0.0/16",
841
+ ],
842
+ },
843
+ opts = pulumi.ResourceOptions(depends_on=[linked_vpc_spoke]))
844
+ ```
763
845
 
764
846
  ## Import
765
847
 
@@ -794,6 +876,8 @@ class Spoke(pulumi.CustomResource):
794
876
  Please refer to the field `effective_labels` for all of the labels present on the resource.
795
877
  :param pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
796
878
  Structure is documented below.
879
+ :param pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
880
+ Structure is documented below.
797
881
  :param pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']] linked_router_appliance_instances: The URIs of linked Router appliance resources
798
882
  Structure is documented below.
799
883
  :param pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']] linked_vpc_network: VPC network that is associated with the spoke.
@@ -1068,6 +1152,51 @@ class Spoke(pulumi.CustomResource):
1068
1152
  "include_import_ranges": ["ALL_IPV4_RANGES"],
1069
1153
  })
1070
1154
  ```
1155
+ ### Network Connectivity Spoke Linked Producer Vpc Network Basic
1156
+
1157
+ ```python
1158
+ import pulumi
1159
+ import pulumi_gcp as gcp
1160
+
1161
+ network = gcp.compute.Network("network",
1162
+ name="net-spoke",
1163
+ auto_create_subnetworks=False)
1164
+ address = gcp.compute.GlobalAddress("address",
1165
+ name="test-address",
1166
+ purpose="VPC_PEERING",
1167
+ address_type="INTERNAL",
1168
+ prefix_length=16,
1169
+ network=network.id)
1170
+ peering = gcp.servicenetworking.Connection("peering",
1171
+ network=network.id,
1172
+ service="servicenetworking.googleapis.com",
1173
+ reserved_peering_ranges=[address.name])
1174
+ basic_hub = gcp.networkconnectivity.Hub("basic_hub", name="hub-basic")
1175
+ linked_vpc_spoke = gcp.networkconnectivity.Spoke("linked_vpc_spoke",
1176
+ name="vpc-spoke",
1177
+ location="global",
1178
+ hub=basic_hub.id,
1179
+ linked_vpc_network={
1180
+ "uri": network.self_link,
1181
+ })
1182
+ primary = gcp.networkconnectivity.Spoke("primary",
1183
+ name="producer-spoke",
1184
+ location="global",
1185
+ description="A sample spoke with a linked router appliance instance",
1186
+ labels={
1187
+ "label-one": "value-one",
1188
+ },
1189
+ hub=basic_hub.id,
1190
+ linked_producer_vpc_network={
1191
+ "network": network.name,
1192
+ "peering": peering.peering,
1193
+ "exclude_export_ranges": [
1194
+ "198.51.100.0/24",
1195
+ "10.10.0.0/16",
1196
+ ],
1197
+ },
1198
+ opts = pulumi.ResourceOptions(depends_on=[linked_vpc_spoke]))
1199
+ ```
1071
1200
 
1072
1201
  ## Import
1073
1202
 
@@ -1112,6 +1241,7 @@ class Spoke(pulumi.CustomResource):
1112
1241
  hub: Optional[pulumi.Input[str]] = None,
1113
1242
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1114
1243
  linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
1244
+ linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
1115
1245
  linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
1116
1246
  linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
1117
1247
  linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
@@ -1133,6 +1263,7 @@ class Spoke(pulumi.CustomResource):
1133
1263
  __props__.__dict__["hub"] = hub
1134
1264
  __props__.__dict__["labels"] = labels
1135
1265
  __props__.__dict__["linked_interconnect_attachments"] = linked_interconnect_attachments
1266
+ __props__.__dict__["linked_producer_vpc_network"] = linked_producer_vpc_network
1136
1267
  __props__.__dict__["linked_router_appliance_instances"] = linked_router_appliance_instances
1137
1268
  __props__.__dict__["linked_vpc_network"] = linked_vpc_network
1138
1269
  __props__.__dict__["linked_vpn_tunnels"] = linked_vpn_tunnels
@@ -1165,6 +1296,7 @@ class Spoke(pulumi.CustomResource):
1165
1296
  hub: Optional[pulumi.Input[str]] = None,
1166
1297
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1167
1298
  linked_interconnect_attachments: Optional[pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']]] = None,
1299
+ linked_producer_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']]] = None,
1168
1300
  linked_router_appliance_instances: Optional[pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']]] = None,
1169
1301
  linked_vpc_network: Optional[pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']]] = None,
1170
1302
  linked_vpn_tunnels: Optional[pulumi.Input[Union['SpokeLinkedVpnTunnelsArgs', 'SpokeLinkedVpnTunnelsArgsDict']]] = None,
@@ -1191,6 +1323,8 @@ class Spoke(pulumi.CustomResource):
1191
1323
  Please refer to the field `effective_labels` for all of the labels present on the resource.
1192
1324
  :param pulumi.Input[Union['SpokeLinkedInterconnectAttachmentsArgs', 'SpokeLinkedInterconnectAttachmentsArgsDict']] linked_interconnect_attachments: A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
1193
1325
  Structure is documented below.
1326
+ :param pulumi.Input[Union['SpokeLinkedProducerVpcNetworkArgs', 'SpokeLinkedProducerVpcNetworkArgsDict']] linked_producer_vpc_network: Producer VPC network that is associated with the spoke.
1327
+ Structure is documented below.
1194
1328
  :param pulumi.Input[Union['SpokeLinkedRouterApplianceInstancesArgs', 'SpokeLinkedRouterApplianceInstancesArgsDict']] linked_router_appliance_instances: The URIs of linked Router appliance resources
1195
1329
  Structure is documented below.
1196
1330
  :param pulumi.Input[Union['SpokeLinkedVpcNetworkArgs', 'SpokeLinkedVpcNetworkArgsDict']] linked_vpc_network: VPC network that is associated with the spoke.
@@ -1220,6 +1354,7 @@ class Spoke(pulumi.CustomResource):
1220
1354
  __props__.__dict__["hub"] = hub
1221
1355
  __props__.__dict__["labels"] = labels
1222
1356
  __props__.__dict__["linked_interconnect_attachments"] = linked_interconnect_attachments
1357
+ __props__.__dict__["linked_producer_vpc_network"] = linked_producer_vpc_network
1223
1358
  __props__.__dict__["linked_router_appliance_instances"] = linked_router_appliance_instances
1224
1359
  __props__.__dict__["linked_vpc_network"] = linked_vpc_network
1225
1360
  __props__.__dict__["linked_vpn_tunnels"] = linked_vpn_tunnels
@@ -1283,6 +1418,15 @@ class Spoke(pulumi.CustomResource):
1283
1418
  """
1284
1419
  return pulumi.get(self, "linked_interconnect_attachments")
1285
1420
 
1421
+ @property
1422
+ @pulumi.getter(name="linkedProducerVpcNetwork")
1423
+ def linked_producer_vpc_network(self) -> pulumi.Output[Optional['outputs.SpokeLinkedProducerVpcNetwork']]:
1424
+ """
1425
+ Producer VPC network that is associated with the spoke.
1426
+ Structure is documented below.
1427
+ """
1428
+ return pulumi.get(self, "linked_producer_vpc_network")
1429
+
1286
1430
  @property
1287
1431
  @pulumi.getter(name="linkedRouterApplianceInstances")
1288
1432
  def linked_router_appliance_instances(self) -> pulumi.Output[Optional['outputs.SpokeLinkedRouterApplianceInstances']]:
@@ -419,7 +419,7 @@ class ServerTlsPolicy(pulumi.CustomResource):
419
419
  server_certificate: Optional[pulumi.Input[Union['ServerTlsPolicyServerCertificateArgs', 'ServerTlsPolicyServerCertificateArgsDict']]] = None,
420
420
  __props__=None):
421
421
  """
422
- ClientTlsPolicy is a resource that specifies how a client should authenticate connections to backends of a service. This resource itself does not affect configuration unless it is attached to a backend service resource.
422
+ ServerTlsPolicy is a resource that specifies how a server should authenticate incoming requests. This resource itself does not affect configuration unless it is attached to a target HTTPS proxy or endpoint config selector resource.
423
423
 
424
424
  To get more information about ServerTlsPolicy, see:
425
425
 
@@ -582,7 +582,7 @@ class ServerTlsPolicy(pulumi.CustomResource):
582
582
  args: Optional[ServerTlsPolicyArgs] = None,
583
583
  opts: Optional[pulumi.ResourceOptions] = None):
584
584
  """
585
- ClientTlsPolicy is a resource that specifies how a client should authenticate connections to backends of a service. This resource itself does not affect configuration unless it is attached to a backend service resource.
585
+ ServerTlsPolicy is a resource that specifies how a server should authenticate incoming requests. This resource itself does not affect configuration unless it is attached to a target HTTPS proxy or endpoint config selector resource.
586
586
 
587
587
  To get more information about ServerTlsPolicy, see:
588
588
 
@@ -31,6 +31,7 @@ class GatewayArgs:
31
31
  name: Optional[pulumi.Input[str]] = None,
32
32
  network: Optional[pulumi.Input[str]] = None,
33
33
  project: Optional[pulumi.Input[str]] = None,
34
+ routing_mode: Optional[pulumi.Input[str]] = None,
34
35
  scope: Optional[pulumi.Input[str]] = None,
35
36
  server_tls_policy: Optional[pulumi.Input[str]] = None,
36
37
  subnetwork: Optional[pulumi.Input[str]] = None):
@@ -66,6 +67,8 @@ class GatewayArgs:
66
67
  Currently, this field is specific to gateways of type 'SECURE_WEB_GATEWAY'.
67
68
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
68
69
  If it is not provided, the provider project is used.
70
+ :param pulumi.Input[str] routing_mode: The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
71
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
69
72
  :param pulumi.Input[str] scope: Immutable. Scope determines how configuration across multiple Gateway instances are merged.
70
73
  The configuration for multiple Gateway instances with the same scope will be merged as presented as
71
74
  a single coniguration to the proxy/load balancer.
@@ -98,6 +101,8 @@ class GatewayArgs:
98
101
  pulumi.set(__self__, "network", network)
99
102
  if project is not None:
100
103
  pulumi.set(__self__, "project", project)
104
+ if routing_mode is not None:
105
+ pulumi.set(__self__, "routing_mode", routing_mode)
101
106
  if scope is not None:
102
107
  pulumi.set(__self__, "scope", scope)
103
108
  if server_tls_policy is not None:
@@ -267,6 +272,19 @@ class GatewayArgs:
267
272
  def project(self, value: Optional[pulumi.Input[str]]):
268
273
  pulumi.set(self, "project", value)
269
274
 
275
+ @property
276
+ @pulumi.getter(name="routingMode")
277
+ def routing_mode(self) -> Optional[pulumi.Input[str]]:
278
+ """
279
+ The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
280
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
281
+ """
282
+ return pulumi.get(self, "routing_mode")
283
+
284
+ @routing_mode.setter
285
+ def routing_mode(self, value: Optional[pulumi.Input[str]]):
286
+ pulumi.set(self, "routing_mode", value)
287
+
270
288
  @property
271
289
  @pulumi.getter
272
290
  def scope(self) -> Optional[pulumi.Input[str]]:
@@ -327,6 +345,7 @@ class _GatewayState:
327
345
  ports: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
328
346
  project: Optional[pulumi.Input[str]] = None,
329
347
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
348
+ routing_mode: Optional[pulumi.Input[str]] = None,
330
349
  scope: Optional[pulumi.Input[str]] = None,
331
350
  self_link: Optional[pulumi.Input[str]] = None,
332
351
  server_tls_policy: Optional[pulumi.Input[str]] = None,
@@ -367,6 +386,8 @@ class _GatewayState:
367
386
  If it is not provided, the provider project is used.
368
387
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
369
388
  and default labels configured on the provider.
389
+ :param pulumi.Input[str] routing_mode: The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
390
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
370
391
  :param pulumi.Input[str] scope: Immutable. Scope determines how configuration across multiple Gateway instances are merged.
371
392
  The configuration for multiple Gateway instances with the same scope will be merged as presented as
372
393
  a single coniguration to the proxy/load balancer.
@@ -409,6 +430,8 @@ class _GatewayState:
409
430
  pulumi.set(__self__, "project", project)
410
431
  if pulumi_labels is not None:
411
432
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
433
+ if routing_mode is not None:
434
+ pulumi.set(__self__, "routing_mode", routing_mode)
412
435
  if scope is not None:
413
436
  pulumi.set(__self__, "scope", scope)
414
437
  if self_link is not None:
@@ -608,6 +631,19 @@ class _GatewayState:
608
631
  def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
609
632
  pulumi.set(self, "pulumi_labels", value)
610
633
 
634
+ @property
635
+ @pulumi.getter(name="routingMode")
636
+ def routing_mode(self) -> Optional[pulumi.Input[str]]:
637
+ """
638
+ The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
639
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
640
+ """
641
+ return pulumi.get(self, "routing_mode")
642
+
643
+ @routing_mode.setter
644
+ def routing_mode(self, value: Optional[pulumi.Input[str]]):
645
+ pulumi.set(self, "routing_mode", value)
646
+
611
647
  @property
612
648
  @pulumi.getter
613
649
  def scope(self) -> Optional[pulumi.Input[str]]:
@@ -704,6 +740,7 @@ class Gateway(pulumi.CustomResource):
704
740
  network: Optional[pulumi.Input[str]] = None,
705
741
  ports: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
706
742
  project: Optional[pulumi.Input[str]] = None,
743
+ routing_mode: Optional[pulumi.Input[str]] = None,
707
744
  scope: Optional[pulumi.Input[str]] = None,
708
745
  server_tls_policy: Optional[pulumi.Input[str]] = None,
709
746
  subnetwork: Optional[pulumi.Input[str]] = None,
@@ -931,6 +968,8 @@ class Gateway(pulumi.CustomResource):
931
968
  limited to 1 port. Gateways of type 'OPEN_MESH' listen on 0.0.0.0 and support multiple ports.
932
969
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
933
970
  If it is not provided, the provider project is used.
971
+ :param pulumi.Input[str] routing_mode: The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
972
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
934
973
  :param pulumi.Input[str] scope: Immutable. Scope determines how configuration across multiple Gateway instances are merged.
935
974
  The configuration for multiple Gateway instances with the same scope will be merged as presented as
936
975
  a single coniguration to the proxy/load balancer.
@@ -1167,6 +1206,7 @@ class Gateway(pulumi.CustomResource):
1167
1206
  network: Optional[pulumi.Input[str]] = None,
1168
1207
  ports: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
1169
1208
  project: Optional[pulumi.Input[str]] = None,
1209
+ routing_mode: Optional[pulumi.Input[str]] = None,
1170
1210
  scope: Optional[pulumi.Input[str]] = None,
1171
1211
  server_tls_policy: Optional[pulumi.Input[str]] = None,
1172
1212
  subnetwork: Optional[pulumi.Input[str]] = None,
@@ -1193,6 +1233,7 @@ class Gateway(pulumi.CustomResource):
1193
1233
  raise TypeError("Missing required property 'ports'")
1194
1234
  __props__.__dict__["ports"] = ports
1195
1235
  __props__.__dict__["project"] = project
1236
+ __props__.__dict__["routing_mode"] = routing_mode
1196
1237
  __props__.__dict__["scope"] = scope
1197
1238
  __props__.__dict__["server_tls_policy"] = server_tls_policy
1198
1239
  __props__.__dict__["subnetwork"] = subnetwork
@@ -1230,6 +1271,7 @@ class Gateway(pulumi.CustomResource):
1230
1271
  ports: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
1231
1272
  project: Optional[pulumi.Input[str]] = None,
1232
1273
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1274
+ routing_mode: Optional[pulumi.Input[str]] = None,
1233
1275
  scope: Optional[pulumi.Input[str]] = None,
1234
1276
  self_link: Optional[pulumi.Input[str]] = None,
1235
1277
  server_tls_policy: Optional[pulumi.Input[str]] = None,
@@ -1275,6 +1317,8 @@ class Gateway(pulumi.CustomResource):
1275
1317
  If it is not provided, the provider project is used.
1276
1318
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
1277
1319
  and default labels configured on the provider.
1320
+ :param pulumi.Input[str] routing_mode: The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
1321
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
1278
1322
  :param pulumi.Input[str] scope: Immutable. Scope determines how configuration across multiple Gateway instances are merged.
1279
1323
  The configuration for multiple Gateway instances with the same scope will be merged as presented as
1280
1324
  a single coniguration to the proxy/load balancer.
@@ -1307,6 +1351,7 @@ class Gateway(pulumi.CustomResource):
1307
1351
  __props__.__dict__["ports"] = ports
1308
1352
  __props__.__dict__["project"] = project
1309
1353
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1354
+ __props__.__dict__["routing_mode"] = routing_mode
1310
1355
  __props__.__dict__["scope"] = scope
1311
1356
  __props__.__dict__["self_link"] = self_link
1312
1357
  __props__.__dict__["server_tls_policy"] = server_tls_policy
@@ -1445,6 +1490,15 @@ class Gateway(pulumi.CustomResource):
1445
1490
  """
1446
1491
  return pulumi.get(self, "pulumi_labels")
1447
1492
 
1493
+ @property
1494
+ @pulumi.getter(name="routingMode")
1495
+ def routing_mode(self) -> pulumi.Output[Optional[str]]:
1496
+ """
1497
+ The routing mode of the Gateway. This field is configurable only for gateways of type SECURE_WEB_GATEWAY. This field is required for gateways of type SECURE_WEB_GATEWAY.
1498
+ Possible values are: `NEXT_HOP_ROUTING_MODE`.
1499
+ """
1500
+ return pulumi.get(self, "routing_mode")
1501
+
1448
1502
  @property
1449
1503
  @pulumi.getter
1450
1504
  def scope(self) -> pulumi.Output[Optional[str]]:
@@ -0,0 +1,20 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .autonomous_database import *
9
+ from .cloud_exadata_infrastructure import *
10
+ from .cloud_vm_cluster import *
11
+ from .get_autonomous_database import *
12
+ from .get_autonomous_databases import *
13
+ from .get_cloud_exadata_infrastructure import *
14
+ from .get_cloud_exadata_infrastructures import *
15
+ from .get_cloud_vm_cluster import *
16
+ from .get_cloud_vm_clusters import *
17
+ from .get_db_nodes import *
18
+ from .get_db_servers import *
19
+ from ._inputs import *
20
+ from . import outputs