pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.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.
- pulumi_gcp/__init__.py +67 -0
- pulumi_gcp/_utilities.py +35 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,9 @@ class RegionNetworkEndpointArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
port: pulumi.Input[int],
|
18
18
|
region_network_endpoint_group: pulumi.Input[str],
|
19
|
+
client_destination_port: Optional[pulumi.Input[int]] = None,
|
19
20
|
fqdn: Optional[pulumi.Input[str]] = None,
|
21
|
+
instance: Optional[pulumi.Input[str]] = None,
|
20
22
|
ip_address: Optional[pulumi.Input[str]] = None,
|
21
23
|
project: Optional[pulumi.Input[str]] = None,
|
22
24
|
region: Optional[pulumi.Input[str]] = None):
|
@@ -27,8 +29,11 @@ class RegionNetworkEndpointArgs:
|
|
27
29
|
|
28
30
|
|
29
31
|
- - -
|
32
|
+
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
30
33
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
31
34
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
35
|
+
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
36
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
32
37
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
33
38
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
34
39
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -37,8 +42,12 @@ class RegionNetworkEndpointArgs:
|
|
37
42
|
"""
|
38
43
|
pulumi.set(__self__, "port", port)
|
39
44
|
pulumi.set(__self__, "region_network_endpoint_group", region_network_endpoint_group)
|
45
|
+
if client_destination_port is not None:
|
46
|
+
pulumi.set(__self__, "client_destination_port", client_destination_port)
|
40
47
|
if fqdn is not None:
|
41
48
|
pulumi.set(__self__, "fqdn", fqdn)
|
49
|
+
if instance is not None:
|
50
|
+
pulumi.set(__self__, "instance", instance)
|
42
51
|
if ip_address is not None:
|
43
52
|
pulumi.set(__self__, "ip_address", ip_address)
|
44
53
|
if project is not None:
|
@@ -73,6 +82,18 @@ class RegionNetworkEndpointArgs:
|
|
73
82
|
def region_network_endpoint_group(self, value: pulumi.Input[str]):
|
74
83
|
pulumi.set(self, "region_network_endpoint_group", value)
|
75
84
|
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="clientDestinationPort")
|
87
|
+
def client_destination_port(self) -> Optional[pulumi.Input[int]]:
|
88
|
+
"""
|
89
|
+
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "client_destination_port")
|
92
|
+
|
93
|
+
@client_destination_port.setter
|
94
|
+
def client_destination_port(self, value: Optional[pulumi.Input[int]]):
|
95
|
+
pulumi.set(self, "client_destination_port", value)
|
96
|
+
|
76
97
|
@property
|
77
98
|
@pulumi.getter
|
78
99
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -86,6 +107,19 @@ class RegionNetworkEndpointArgs:
|
|
86
107
|
def fqdn(self, value: Optional[pulumi.Input[str]]):
|
87
108
|
pulumi.set(self, "fqdn", value)
|
88
109
|
|
110
|
+
@property
|
111
|
+
@pulumi.getter
|
112
|
+
def instance(self) -> Optional[pulumi.Input[str]]:
|
113
|
+
"""
|
114
|
+
The name for a specific VM instance that the IP address belongs to.
|
115
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "instance")
|
118
|
+
|
119
|
+
@instance.setter
|
120
|
+
def instance(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
pulumi.set(self, "instance", value)
|
122
|
+
|
89
123
|
@property
|
90
124
|
@pulumi.getter(name="ipAddress")
|
91
125
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -128,7 +162,9 @@ class RegionNetworkEndpointArgs:
|
|
128
162
|
@pulumi.input_type
|
129
163
|
class _RegionNetworkEndpointState:
|
130
164
|
def __init__(__self__, *,
|
165
|
+
client_destination_port: Optional[pulumi.Input[int]] = None,
|
131
166
|
fqdn: Optional[pulumi.Input[str]] = None,
|
167
|
+
instance: Optional[pulumi.Input[str]] = None,
|
132
168
|
ip_address: Optional[pulumi.Input[str]] = None,
|
133
169
|
port: Optional[pulumi.Input[int]] = None,
|
134
170
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -136,8 +172,11 @@ class _RegionNetworkEndpointState:
|
|
136
172
|
region_network_endpoint_group: Optional[pulumi.Input[str]] = None):
|
137
173
|
"""
|
138
174
|
Input properties used for looking up and filtering RegionNetworkEndpoint resources.
|
175
|
+
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
139
176
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
140
177
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
178
|
+
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
179
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
141
180
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
142
181
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
143
182
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -149,8 +188,12 @@ class _RegionNetworkEndpointState:
|
|
149
188
|
|
150
189
|
- - -
|
151
190
|
"""
|
191
|
+
if client_destination_port is not None:
|
192
|
+
pulumi.set(__self__, "client_destination_port", client_destination_port)
|
152
193
|
if fqdn is not None:
|
153
194
|
pulumi.set(__self__, "fqdn", fqdn)
|
195
|
+
if instance is not None:
|
196
|
+
pulumi.set(__self__, "instance", instance)
|
154
197
|
if ip_address is not None:
|
155
198
|
pulumi.set(__self__, "ip_address", ip_address)
|
156
199
|
if port is not None:
|
@@ -162,6 +205,18 @@ class _RegionNetworkEndpointState:
|
|
162
205
|
if region_network_endpoint_group is not None:
|
163
206
|
pulumi.set(__self__, "region_network_endpoint_group", region_network_endpoint_group)
|
164
207
|
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="clientDestinationPort")
|
210
|
+
def client_destination_port(self) -> Optional[pulumi.Input[int]]:
|
211
|
+
"""
|
212
|
+
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "client_destination_port")
|
215
|
+
|
216
|
+
@client_destination_port.setter
|
217
|
+
def client_destination_port(self, value: Optional[pulumi.Input[int]]):
|
218
|
+
pulumi.set(self, "client_destination_port", value)
|
219
|
+
|
165
220
|
@property
|
166
221
|
@pulumi.getter
|
167
222
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -175,6 +230,19 @@ class _RegionNetworkEndpointState:
|
|
175
230
|
def fqdn(self, value: Optional[pulumi.Input[str]]):
|
176
231
|
pulumi.set(self, "fqdn", value)
|
177
232
|
|
233
|
+
@property
|
234
|
+
@pulumi.getter
|
235
|
+
def instance(self) -> Optional[pulumi.Input[str]]:
|
236
|
+
"""
|
237
|
+
The name for a specific VM instance that the IP address belongs to.
|
238
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "instance")
|
241
|
+
|
242
|
+
@instance.setter
|
243
|
+
def instance(self, value: Optional[pulumi.Input[str]]):
|
244
|
+
pulumi.set(self, "instance", value)
|
245
|
+
|
178
246
|
@property
|
179
247
|
@pulumi.getter(name="ipAddress")
|
180
248
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -246,7 +314,9 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
246
314
|
def __init__(__self__,
|
247
315
|
resource_name: str,
|
248
316
|
opts: Optional[pulumi.ResourceOptions] = None,
|
317
|
+
client_destination_port: Optional[pulumi.Input[int]] = None,
|
249
318
|
fqdn: Optional[pulumi.Input[str]] = None,
|
319
|
+
instance: Optional[pulumi.Input[str]] = None,
|
250
320
|
ip_address: Optional[pulumi.Input[str]] = None,
|
251
321
|
port: Optional[pulumi.Input[int]] = None,
|
252
322
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -308,6 +378,49 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
308
378
|
fqdn="backend.example.com",
|
309
379
|
port=443)
|
310
380
|
```
|
381
|
+
### Region Network Endpoint Portmap
|
382
|
+
|
383
|
+
```python
|
384
|
+
import pulumi
|
385
|
+
import pulumi_gcp as gcp
|
386
|
+
|
387
|
+
default = gcp.compute.Network("default",
|
388
|
+
name="network",
|
389
|
+
auto_create_subnetworks=False)
|
390
|
+
default_subnetwork = gcp.compute.Subnetwork("default",
|
391
|
+
name="subnetwork",
|
392
|
+
ip_cidr_range="10.0.0.0/16",
|
393
|
+
region="us-central1",
|
394
|
+
network=default.id)
|
395
|
+
default_region_network_endpoint_group = gcp.compute.RegionNetworkEndpointGroup("default",
|
396
|
+
name="portmap-neg",
|
397
|
+
region="us-central1",
|
398
|
+
network=default.id,
|
399
|
+
subnetwork=default_subnetwork.id,
|
400
|
+
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
401
|
+
my_image = gcp.compute.get_image(family="debian-11",
|
402
|
+
project="debian-cloud")
|
403
|
+
default_instance = gcp.compute.Instance("default",
|
404
|
+
network_interfaces=[gcp.compute.InstanceNetworkInterfaceArgs(
|
405
|
+
access_configs=[gcp.compute.InstanceNetworkInterfaceAccessConfigArgs()],
|
406
|
+
subnetwork=default_subnetwork.id,
|
407
|
+
)],
|
408
|
+
name="instance",
|
409
|
+
machine_type="e2-medium",
|
410
|
+
zone="us-central1-a",
|
411
|
+
boot_disk=gcp.compute.InstanceBootDiskArgs(
|
412
|
+
initialize_params=gcp.compute.InstanceBootDiskInitializeParamsArgs(
|
413
|
+
image=my_image.self_link,
|
414
|
+
),
|
415
|
+
))
|
416
|
+
region_network_endpoint_portmap = gcp.compute.RegionNetworkEndpoint("region_network_endpoint_portmap",
|
417
|
+
region_network_endpoint_group=default_region_network_endpoint_group.name,
|
418
|
+
region="us-central1",
|
419
|
+
instance=default_instance.self_link,
|
420
|
+
port=80,
|
421
|
+
ip_address=default_instance.network_interfaces[0].network_ip,
|
422
|
+
client_destination_port=8080)
|
423
|
+
```
|
311
424
|
|
312
425
|
## Import
|
313
426
|
|
@@ -341,8 +454,11 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
341
454
|
|
342
455
|
:param str resource_name: The name of the resource.
|
343
456
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
457
|
+
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
344
458
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
345
459
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
460
|
+
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
461
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
346
462
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
347
463
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
348
464
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -415,6 +531,49 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
415
531
|
fqdn="backend.example.com",
|
416
532
|
port=443)
|
417
533
|
```
|
534
|
+
### Region Network Endpoint Portmap
|
535
|
+
|
536
|
+
```python
|
537
|
+
import pulumi
|
538
|
+
import pulumi_gcp as gcp
|
539
|
+
|
540
|
+
default = gcp.compute.Network("default",
|
541
|
+
name="network",
|
542
|
+
auto_create_subnetworks=False)
|
543
|
+
default_subnetwork = gcp.compute.Subnetwork("default",
|
544
|
+
name="subnetwork",
|
545
|
+
ip_cidr_range="10.0.0.0/16",
|
546
|
+
region="us-central1",
|
547
|
+
network=default.id)
|
548
|
+
default_region_network_endpoint_group = gcp.compute.RegionNetworkEndpointGroup("default",
|
549
|
+
name="portmap-neg",
|
550
|
+
region="us-central1",
|
551
|
+
network=default.id,
|
552
|
+
subnetwork=default_subnetwork.id,
|
553
|
+
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
554
|
+
my_image = gcp.compute.get_image(family="debian-11",
|
555
|
+
project="debian-cloud")
|
556
|
+
default_instance = gcp.compute.Instance("default",
|
557
|
+
network_interfaces=[gcp.compute.InstanceNetworkInterfaceArgs(
|
558
|
+
access_configs=[gcp.compute.InstanceNetworkInterfaceAccessConfigArgs()],
|
559
|
+
subnetwork=default_subnetwork.id,
|
560
|
+
)],
|
561
|
+
name="instance",
|
562
|
+
machine_type="e2-medium",
|
563
|
+
zone="us-central1-a",
|
564
|
+
boot_disk=gcp.compute.InstanceBootDiskArgs(
|
565
|
+
initialize_params=gcp.compute.InstanceBootDiskInitializeParamsArgs(
|
566
|
+
image=my_image.self_link,
|
567
|
+
),
|
568
|
+
))
|
569
|
+
region_network_endpoint_portmap = gcp.compute.RegionNetworkEndpoint("region_network_endpoint_portmap",
|
570
|
+
region_network_endpoint_group=default_region_network_endpoint_group.name,
|
571
|
+
region="us-central1",
|
572
|
+
instance=default_instance.self_link,
|
573
|
+
port=80,
|
574
|
+
ip_address=default_instance.network_interfaces[0].network_ip,
|
575
|
+
client_destination_port=8080)
|
576
|
+
```
|
418
577
|
|
419
578
|
## Import
|
420
579
|
|
@@ -461,7 +620,9 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
461
620
|
def _internal_init(__self__,
|
462
621
|
resource_name: str,
|
463
622
|
opts: Optional[pulumi.ResourceOptions] = None,
|
623
|
+
client_destination_port: Optional[pulumi.Input[int]] = None,
|
464
624
|
fqdn: Optional[pulumi.Input[str]] = None,
|
625
|
+
instance: Optional[pulumi.Input[str]] = None,
|
465
626
|
ip_address: Optional[pulumi.Input[str]] = None,
|
466
627
|
port: Optional[pulumi.Input[int]] = None,
|
467
628
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -476,7 +637,9 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
476
637
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
477
638
|
__props__ = RegionNetworkEndpointArgs.__new__(RegionNetworkEndpointArgs)
|
478
639
|
|
640
|
+
__props__.__dict__["client_destination_port"] = client_destination_port
|
479
641
|
__props__.__dict__["fqdn"] = fqdn
|
642
|
+
__props__.__dict__["instance"] = instance
|
480
643
|
__props__.__dict__["ip_address"] = ip_address
|
481
644
|
if port is None and not opts.urn:
|
482
645
|
raise TypeError("Missing required property 'port'")
|
@@ -496,7 +659,9 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
496
659
|
def get(resource_name: str,
|
497
660
|
id: pulumi.Input[str],
|
498
661
|
opts: Optional[pulumi.ResourceOptions] = None,
|
662
|
+
client_destination_port: Optional[pulumi.Input[int]] = None,
|
499
663
|
fqdn: Optional[pulumi.Input[str]] = None,
|
664
|
+
instance: Optional[pulumi.Input[str]] = None,
|
500
665
|
ip_address: Optional[pulumi.Input[str]] = None,
|
501
666
|
port: Optional[pulumi.Input[int]] = None,
|
502
667
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -509,8 +674,11 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
509
674
|
:param str resource_name: The unique name of the resulting resource.
|
510
675
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
511
676
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
677
|
+
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
512
678
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
513
679
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
680
|
+
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
681
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
514
682
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
515
683
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
516
684
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -526,7 +694,9 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
526
694
|
|
527
695
|
__props__ = _RegionNetworkEndpointState.__new__(_RegionNetworkEndpointState)
|
528
696
|
|
697
|
+
__props__.__dict__["client_destination_port"] = client_destination_port
|
529
698
|
__props__.__dict__["fqdn"] = fqdn
|
699
|
+
__props__.__dict__["instance"] = instance
|
530
700
|
__props__.__dict__["ip_address"] = ip_address
|
531
701
|
__props__.__dict__["port"] = port
|
532
702
|
__props__.__dict__["project"] = project
|
@@ -534,6 +704,14 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
534
704
|
__props__.__dict__["region_network_endpoint_group"] = region_network_endpoint_group
|
535
705
|
return RegionNetworkEndpoint(resource_name, opts=opts, __props__=__props__)
|
536
706
|
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="clientDestinationPort")
|
709
|
+
def client_destination_port(self) -> pulumi.Output[Optional[int]]:
|
710
|
+
"""
|
711
|
+
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "client_destination_port")
|
714
|
+
|
537
715
|
@property
|
538
716
|
@pulumi.getter
|
539
717
|
def fqdn(self) -> pulumi.Output[Optional[str]]:
|
@@ -543,6 +721,15 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
543
721
|
"""
|
544
722
|
return pulumi.get(self, "fqdn")
|
545
723
|
|
724
|
+
@property
|
725
|
+
@pulumi.getter
|
726
|
+
def instance(self) -> pulumi.Output[Optional[str]]:
|
727
|
+
"""
|
728
|
+
The name for a specific VM instance that the IP address belongs to.
|
729
|
+
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
730
|
+
"""
|
731
|
+
return pulumi.get(self, "instance")
|
732
|
+
|
546
733
|
@property
|
547
734
|
@pulumi.getter(name="ipAddress")
|
548
735
|
def ip_address(self) -> pulumi.Output[Optional[str]]:
|
@@ -57,7 +57,7 @@ class RegionNetworkEndpointGroupArgs:
|
|
57
57
|
"default" project network if unspecified.
|
58
58
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
59
59
|
Default value is `SERVERLESS`.
|
60
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
60
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
61
61
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
62
62
|
If it is not provided, the provider project is used.
|
63
63
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -201,7 +201,7 @@ class RegionNetworkEndpointGroupArgs:
|
|
201
201
|
"""
|
202
202
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
203
203
|
Default value is `SERVERLESS`.
|
204
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
204
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
205
205
|
"""
|
206
206
|
return pulumi.get(self, "network_endpoint_type")
|
207
207
|
|
@@ -305,7 +305,7 @@ class _RegionNetworkEndpointGroupState:
|
|
305
305
|
"default" project network if unspecified.
|
306
306
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
307
307
|
Default value is `SERVERLESS`.
|
308
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
308
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
309
309
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
310
310
|
If it is not provided, the provider project is used.
|
311
311
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -442,7 +442,7 @@ class _RegionNetworkEndpointGroupState:
|
|
442
442
|
"""
|
443
443
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
444
444
|
Default value is `SERVERLESS`.
|
445
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
445
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
446
446
|
"""
|
447
447
|
return pulumi.get(self, "network_endpoint_type")
|
448
448
|
|
@@ -551,7 +551,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
551
551
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
552
552
|
__props__=None):
|
553
553
|
"""
|
554
|
-
A regional NEG that can support Serverless Products
|
554
|
+
A regional NEG that can support Serverless Products, proxying traffic to
|
555
|
+
external backends and providing traffic to the PSC port mapping endpoints.
|
555
556
|
|
556
557
|
To get more information about RegionNetworkEndpointGroup, see:
|
557
558
|
|
@@ -788,6 +789,25 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
788
789
|
network=default.id,
|
789
790
|
network_endpoint_type="INTERNET_FQDN_PORT")
|
790
791
|
```
|
792
|
+
### Region Network Endpoint Group Portmap
|
793
|
+
|
794
|
+
```python
|
795
|
+
import pulumi
|
796
|
+
import pulumi_gcp as gcp
|
797
|
+
|
798
|
+
default = gcp.compute.Network("default", name="network")
|
799
|
+
default_subnetwork = gcp.compute.Subnetwork("default",
|
800
|
+
name="subnetwork",
|
801
|
+
ip_cidr_range="10.0.0.0/16",
|
802
|
+
region="us-central1",
|
803
|
+
network=default.id)
|
804
|
+
region_network_endpoint_group_portmap = gcp.compute.RegionNetworkEndpointGroup("region_network_endpoint_group_portmap",
|
805
|
+
name="portmap-neg",
|
806
|
+
region="us-central1",
|
807
|
+
network=default.id,
|
808
|
+
subnetwork=default_subnetwork.id,
|
809
|
+
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
810
|
+
```
|
791
811
|
|
792
812
|
## Import
|
793
813
|
|
@@ -844,7 +864,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
844
864
|
"default" project network if unspecified.
|
845
865
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
846
866
|
Default value is `SERVERLESS`.
|
847
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
867
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
848
868
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
849
869
|
If it is not provided, the provider project is used.
|
850
870
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -867,7 +887,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
867
887
|
args: RegionNetworkEndpointGroupArgs,
|
868
888
|
opts: Optional[pulumi.ResourceOptions] = None):
|
869
889
|
"""
|
870
|
-
A regional NEG that can support Serverless Products
|
890
|
+
A regional NEG that can support Serverless Products, proxying traffic to
|
891
|
+
external backends and providing traffic to the PSC port mapping endpoints.
|
871
892
|
|
872
893
|
To get more information about RegionNetworkEndpointGroup, see:
|
873
894
|
|
@@ -1104,6 +1125,25 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1104
1125
|
network=default.id,
|
1105
1126
|
network_endpoint_type="INTERNET_FQDN_PORT")
|
1106
1127
|
```
|
1128
|
+
### Region Network Endpoint Group Portmap
|
1129
|
+
|
1130
|
+
```python
|
1131
|
+
import pulumi
|
1132
|
+
import pulumi_gcp as gcp
|
1133
|
+
|
1134
|
+
default = gcp.compute.Network("default", name="network")
|
1135
|
+
default_subnetwork = gcp.compute.Subnetwork("default",
|
1136
|
+
name="subnetwork",
|
1137
|
+
ip_cidr_range="10.0.0.0/16",
|
1138
|
+
region="us-central1",
|
1139
|
+
network=default.id)
|
1140
|
+
region_network_endpoint_group_portmap = gcp.compute.RegionNetworkEndpointGroup("region_network_endpoint_group_portmap",
|
1141
|
+
name="portmap-neg",
|
1142
|
+
region="us-central1",
|
1143
|
+
network=default.id,
|
1144
|
+
subnetwork=default_subnetwork.id,
|
1145
|
+
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
1146
|
+
```
|
1107
1147
|
|
1108
1148
|
## Import
|
1109
1149
|
|
@@ -1239,7 +1279,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1239
1279
|
"default" project network if unspecified.
|
1240
1280
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
1241
1281
|
Default value is `SERVERLESS`.
|
1242
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
1282
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
1243
1283
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1244
1284
|
If it is not provided, the provider project is used.
|
1245
1285
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -1344,7 +1384,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1344
1384
|
"""
|
1345
1385
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
1346
1386
|
Default value is `SERVERLESS`.
|
1347
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
1387
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
1348
1388
|
"""
|
1349
1389
|
return pulumi.get(self, "network_endpoint_type")
|
1350
1390
|
|
@@ -649,7 +649,7 @@ class RegionSecurityPolicyRule(pulumi.CustomResource):
|
|
649
649
|
size=2,
|
650
650
|
mask="0x8F00",
|
651
651
|
)],
|
652
|
-
opts=pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
652
|
+
opts = pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
653
653
|
policy_rule_network_match = gcp.compute.RegionSecurityPolicyRule("policy_rule_network_match",
|
654
654
|
region="us-west2",
|
655
655
|
security_policy=policynetworkmatch.name,
|
@@ -899,7 +899,7 @@ class RegionSecurityPolicyRule(pulumi.CustomResource):
|
|
899
899
|
size=2,
|
900
900
|
mask="0x8F00",
|
901
901
|
)],
|
902
|
-
opts=pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
902
|
+
opts = pulumi.ResourceOptions(depends_on=[edge_sec_service]))
|
903
903
|
policy_rule_network_match = gcp.compute.RegionSecurityPolicyRule("policy_rule_network_match",
|
904
904
|
region="us-west2",
|
905
905
|
security_policy=policynetworkmatch.name,
|
@@ -31,8 +31,7 @@ class RegionTargetHttpsProxyArgs:
|
|
31
31
|
|
32
32
|
- - -
|
33
33
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
34
|
-
|
35
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
34
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
36
35
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
37
36
|
:param pulumi.Input[str] description: An optional description of this resource.
|
38
37
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
@@ -101,8 +100,7 @@ class RegionTargetHttpsProxyArgs:
|
|
101
100
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
102
101
|
"""
|
103
102
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
104
|
-
|
105
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
103
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
106
104
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
107
105
|
"""
|
108
106
|
return pulumi.get(self, "certificate_manager_certificates")
|
@@ -234,8 +232,7 @@ class _RegionTargetHttpsProxyState:
|
|
234
232
|
"""
|
235
233
|
Input properties used for looking up and filtering RegionTargetHttpsProxy resources.
|
236
234
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
237
|
-
|
238
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
235
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
239
236
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
240
237
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
241
238
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -303,8 +300,7 @@ class _RegionTargetHttpsProxyState:
|
|
303
300
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
304
301
|
"""
|
305
302
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
306
|
-
|
307
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
303
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
308
304
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
309
305
|
"""
|
310
306
|
return pulumi.get(self, "certificate_manager_certificates")
|
@@ -685,8 +681,7 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
685
681
|
:param str resource_name: The name of the resource.
|
686
682
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
687
683
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
688
|
-
|
689
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
684
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
690
685
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
691
686
|
:param pulumi.Input[str] description: An optional description of this resource.
|
692
687
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
@@ -1001,8 +996,7 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
1001
996
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1002
997
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1003
998
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1004
|
-
|
1005
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
999
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
1006
1000
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1007
1001
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1008
1002
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -1063,8 +1057,7 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
1063
1057
|
def certificate_manager_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1064
1058
|
"""
|
1065
1059
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1066
|
-
|
1067
|
-
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1060
|
+
sslCertificates and certificateManagerCertificates can't be defined together.
|
1068
1061
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1069
1062
|
"""
|
1070
1063
|
return pulumi.get(self, "certificate_manager_certificates")
|
pulumi_gcp/compute/route.py
CHANGED
@@ -805,7 +805,7 @@ class Route(pulumi.CustomResource):
|
|
805
805
|
"tag1",
|
806
806
|
"tag2",
|
807
807
|
],
|
808
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
808
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
809
809
|
peering1,
|
810
810
|
peering2,
|
811
811
|
]))
|
@@ -1044,7 +1044,7 @@ class Route(pulumi.CustomResource):
|
|
1044
1044
|
"tag1",
|
1045
1045
|
"tag2",
|
1046
1046
|
],
|
1047
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
1047
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
1048
1048
|
peering1,
|
1049
1049
|
peering2,
|
1050
1050
|
]))
|
pulumi_gcp/compute/subnetwork.py
CHANGED
@@ -561,13 +561,11 @@ class _SubnetworkState:
|
|
561
561
|
|
562
562
|
@property
|
563
563
|
@pulumi.getter
|
564
|
+
@_utilities.deprecated("""This field is not useful for users, and has been removed as an output.""")
|
564
565
|
def fingerprint(self) -> Optional[pulumi.Input[str]]:
|
565
566
|
"""
|
566
567
|
Fingerprint of this resource. This field is used internally during updates of this resource.
|
567
568
|
"""
|
568
|
-
warnings.warn("""This field is not useful for users, and has been removed as an output.""", DeprecationWarning)
|
569
|
-
pulumi.log.warn("""fingerprint is deprecated: This field is not useful for users, and has been removed as an output.""")
|
570
|
-
|
571
569
|
return pulumi.get(self, "fingerprint")
|
572
570
|
|
573
571
|
@fingerprint.setter
|
@@ -1524,13 +1522,11 @@ class Subnetwork(pulumi.CustomResource):
|
|
1524
1522
|
|
1525
1523
|
@property
|
1526
1524
|
@pulumi.getter
|
1525
|
+
@_utilities.deprecated("""This field is not useful for users, and has been removed as an output.""")
|
1527
1526
|
def fingerprint(self) -> pulumi.Output[str]:
|
1528
1527
|
"""
|
1529
1528
|
Fingerprint of this resource. This field is used internally during updates of this resource.
|
1530
1529
|
"""
|
1531
|
-
warnings.warn("""This field is not useful for users, and has been removed as an output.""", DeprecationWarning)
|
1532
|
-
pulumi.log.warn("""fingerprint is deprecated: This field is not useful for users, and has been removed as an output.""")
|
1533
|
-
|
1534
1530
|
return pulumi.get(self, "fingerprint")
|
1535
1531
|
|
1536
1532
|
@property
|