pulumi-gcp 8.36.0a1750484065__py3-none-any.whl → 8.37.0a1751903932__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 +59 -0
- pulumi_gcp/alloydb/_inputs.py +26 -0
- pulumi_gcp/alloydb/outputs.py +34 -1
- pulumi_gcp/apihub/__init__.py +2 -0
- pulumi_gcp/apihub/_inputs.py +1658 -0
- pulumi_gcp/apihub/outputs.py +1374 -0
- pulumi_gcp/apihub/plugin.py +1146 -0
- pulumi_gcp/apihub/plugin_instance.py +808 -0
- pulumi_gcp/bigquery/table.py +16 -12
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
- pulumi_gcp/bigtable/table.py +82 -0
- pulumi_gcp/cloudidentity/group_membership.py +47 -0
- pulumi_gcp/cloudidentity/outputs.py +11 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/job.py +44 -0
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +0 -2
- pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +787 -18
- pulumi_gcp/compute/disk.py +35 -28
- pulumi_gcp/compute/firewall_policy_rule.py +207 -0
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/instance.py +2 -2
- pulumi_gcp/compute/instance_group_manager.py +165 -14
- pulumi_gcp/compute/instance_template.py +2 -2
- pulumi_gcp/compute/interconnect.py +43 -11
- pulumi_gcp/compute/network.py +56 -0
- pulumi_gcp/compute/network_firewall_policy.py +68 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
- pulumi_gcp/compute/node_template.py +21 -0
- pulumi_gcp/compute/outputs.py +620 -12
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
- pulumi_gcp/compute/service_attachment.py +76 -8
- pulumi_gcp/compute/wire_group.py +751 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/contactcenterinsights/__init__.py +9 -0
- pulumi_gcp/contactcenterinsights/view.py +526 -0
- pulumi_gcp/container/_inputs.py +207 -28
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_engine_versions.py +15 -1
- pulumi_gcp/container/node_pool.py +14 -0
- pulumi_gcp/container/outputs.py +295 -21
- pulumi_gcp/dataplex/_inputs.py +431 -6
- pulumi_gcp/dataplex/datascan.py +251 -0
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/glossary_category.py +8 -8
- pulumi_gcp/dataplex/glossary_term.py +8 -8
- pulumi_gcp/dataplex/outputs.py +353 -4
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +486 -0
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/dataproc/outputs.py +407 -0
- pulumi_gcp/dataproc/session_template.py +1084 -0
- pulumi_gcp/diagflow/__init__.py +2 -0
- pulumi_gcp/diagflow/_inputs.py +479 -0
- pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/encryption_spec.py +382 -0
- pulumi_gcp/diagflow/outputs.py +416 -0
- pulumi_gcp/dns/record_set.py +4 -2
- pulumi_gcp/firestore/database.py +0 -9
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/_inputs.py +36 -0
- pulumi_gcp/iam/outputs.py +38 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/kms/autokey_config.py +28 -0
- pulumi_gcp/kms/get_autokey_config.py +12 -1
- pulumi_gcp/lustre/get_instance.py +12 -1
- pulumi_gcp/lustre/instance.py +143 -86
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +49 -0
- pulumi_gcp/monitoring/metric_descriptor.py +55 -57
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/notebooks/instance.py +8 -8
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +44 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +7 -0
- pulumi_gcp/secretmanager/regional_secret.py +38 -2
- pulumi_gcp/spanner/_inputs.py +24 -1
- pulumi_gcp/spanner/outputs.py +17 -1
- pulumi_gcp/storage/_inputs.py +43 -3
- pulumi_gcp/storage/bucket_object.py +56 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/outputs.py +53 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workbench/instance.py +2 -0
- {pulumi_gcp-8.36.0a1750484065.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.36.0a1750484065.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +117 -109
- {pulumi_gcp-8.36.0a1750484065.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1750484065.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/network.py
CHANGED
@@ -14,6 +14,8 @@ if sys.version_info >= (3, 11):
|
|
14
14
|
else:
|
15
15
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
16
|
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
17
19
|
|
18
20
|
__all__ = ['NetworkArgs', 'Network']
|
19
21
|
|
@@ -32,6 +34,7 @@ class NetworkArgs:
|
|
32
34
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
33
35
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[builtins.str]] = None,
|
34
36
|
network_profile: Optional[pulumi.Input[builtins.str]] = None,
|
37
|
+
params: Optional[pulumi.Input['NetworkParamsArgs']] = None,
|
35
38
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
36
39
|
routing_mode: Optional[pulumi.Input[builtins.str]] = None):
|
37
40
|
"""
|
@@ -81,6 +84,8 @@ class NetworkArgs:
|
|
81
84
|
following are valid URLs:
|
82
85
|
* https://www.googleapis.com/compute/v1/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
83
86
|
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
87
|
+
:param pulumi.Input['NetworkParamsArgs'] params: Additional params passed with the request, but not persisted as part of resource payload
|
88
|
+
Structure is documented below.
|
84
89
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
85
90
|
If it is not provided, the provider project is used.
|
86
91
|
:param pulumi.Input[builtins.str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -114,6 +119,8 @@ class NetworkArgs:
|
|
114
119
|
pulumi.set(__self__, "network_firewall_policy_enforcement_order", network_firewall_policy_enforcement_order)
|
115
120
|
if network_profile is not None:
|
116
121
|
pulumi.set(__self__, "network_profile", network_profile)
|
122
|
+
if params is not None:
|
123
|
+
pulumi.set(__self__, "params", params)
|
117
124
|
if project is not None:
|
118
125
|
pulumi.set(__self__, "project", project)
|
119
126
|
if routing_mode is not None:
|
@@ -296,6 +303,19 @@ class NetworkArgs:
|
|
296
303
|
def network_profile(self, value: Optional[pulumi.Input[builtins.str]]):
|
297
304
|
pulumi.set(self, "network_profile", value)
|
298
305
|
|
306
|
+
@property
|
307
|
+
@pulumi.getter
|
308
|
+
def params(self) -> Optional[pulumi.Input['NetworkParamsArgs']]:
|
309
|
+
"""
|
310
|
+
Additional params passed with the request, but not persisted as part of resource payload
|
311
|
+
Structure is documented below.
|
312
|
+
"""
|
313
|
+
return pulumi.get(self, "params")
|
314
|
+
|
315
|
+
@params.setter
|
316
|
+
def params(self, value: Optional[pulumi.Input['NetworkParamsArgs']]):
|
317
|
+
pulumi.set(self, "params", value)
|
318
|
+
|
299
319
|
@property
|
300
320
|
@pulumi.getter
|
301
321
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -345,6 +365,7 @@ class _NetworkState:
|
|
345
365
|
network_id: Optional[pulumi.Input[builtins.str]] = None,
|
346
366
|
network_profile: Optional[pulumi.Input[builtins.str]] = None,
|
347
367
|
numeric_id: Optional[pulumi.Input[builtins.str]] = None,
|
368
|
+
params: Optional[pulumi.Input['NetworkParamsArgs']] = None,
|
348
369
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
349
370
|
routing_mode: Optional[pulumi.Input[builtins.str]] = None,
|
350
371
|
self_link: Optional[pulumi.Input[builtins.str]] = None):
|
@@ -400,6 +421,8 @@ class _NetworkState:
|
|
400
421
|
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
401
422
|
:param pulumi.Input[builtins.str] numeric_id: (Deprecated)
|
402
423
|
The unique identifier for the resource. This identifier is defined by the server.
|
424
|
+
:param pulumi.Input['NetworkParamsArgs'] params: Additional params passed with the request, but not persisted as part of resource payload
|
425
|
+
Structure is documented below.
|
403
426
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
404
427
|
If it is not provided, the provider project is used.
|
405
428
|
:param pulumi.Input[builtins.str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -443,6 +466,8 @@ class _NetworkState:
|
|
443
466
|
pulumi.log.warn("""numeric_id is deprecated: `numeric_id` is deprecated and will be removed in a future major release. Use `network_id` instead.""")
|
444
467
|
if numeric_id is not None:
|
445
468
|
pulumi.set(__self__, "numeric_id", numeric_id)
|
469
|
+
if params is not None:
|
470
|
+
pulumi.set(__self__, "params", params)
|
446
471
|
if project is not None:
|
447
472
|
pulumi.set(__self__, "project", project)
|
448
473
|
if routing_mode is not None:
|
@@ -666,6 +691,19 @@ class _NetworkState:
|
|
666
691
|
def numeric_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
667
692
|
pulumi.set(self, "numeric_id", value)
|
668
693
|
|
694
|
+
@property
|
695
|
+
@pulumi.getter
|
696
|
+
def params(self) -> Optional[pulumi.Input['NetworkParamsArgs']]:
|
697
|
+
"""
|
698
|
+
Additional params passed with the request, but not persisted as part of resource payload
|
699
|
+
Structure is documented below.
|
700
|
+
"""
|
701
|
+
return pulumi.get(self, "params")
|
702
|
+
|
703
|
+
@params.setter
|
704
|
+
def params(self, value: Optional[pulumi.Input['NetworkParamsArgs']]):
|
705
|
+
pulumi.set(self, "params", value)
|
706
|
+
|
669
707
|
@property
|
670
708
|
@pulumi.getter
|
671
709
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -727,6 +765,7 @@ class Network(pulumi.CustomResource):
|
|
727
765
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
728
766
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[builtins.str]] = None,
|
729
767
|
network_profile: Optional[pulumi.Input[builtins.str]] = None,
|
768
|
+
params: Optional[pulumi.Input[Union['NetworkParamsArgs', 'NetworkParamsArgsDict']]] = None,
|
730
769
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
731
770
|
routing_mode: Optional[pulumi.Input[builtins.str]] = None,
|
732
771
|
__props__=None):
|
@@ -882,6 +921,8 @@ class Network(pulumi.CustomResource):
|
|
882
921
|
following are valid URLs:
|
883
922
|
* https://www.googleapis.com/compute/v1/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
884
923
|
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
924
|
+
:param pulumi.Input[Union['NetworkParamsArgs', 'NetworkParamsArgsDict']] params: Additional params passed with the request, but not persisted as part of resource payload
|
925
|
+
Structure is documented below.
|
885
926
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
886
927
|
If it is not provided, the provider project is used.
|
887
928
|
:param pulumi.Input[builtins.str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -1029,6 +1070,7 @@ class Network(pulumi.CustomResource):
|
|
1029
1070
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
1030
1071
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[builtins.str]] = None,
|
1031
1072
|
network_profile: Optional[pulumi.Input[builtins.str]] = None,
|
1073
|
+
params: Optional[pulumi.Input[Union['NetworkParamsArgs', 'NetworkParamsArgsDict']]] = None,
|
1032
1074
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
1033
1075
|
routing_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1034
1076
|
__props__=None):
|
@@ -1052,6 +1094,7 @@ class Network(pulumi.CustomResource):
|
|
1052
1094
|
__props__.__dict__["name"] = name
|
1053
1095
|
__props__.__dict__["network_firewall_policy_enforcement_order"] = network_firewall_policy_enforcement_order
|
1054
1096
|
__props__.__dict__["network_profile"] = network_profile
|
1097
|
+
__props__.__dict__["params"] = params
|
1055
1098
|
__props__.__dict__["project"] = project
|
1056
1099
|
__props__.__dict__["routing_mode"] = routing_mode
|
1057
1100
|
__props__.__dict__["gateway_ipv4"] = None
|
@@ -1083,6 +1126,7 @@ class Network(pulumi.CustomResource):
|
|
1083
1126
|
network_id: Optional[pulumi.Input[builtins.str]] = None,
|
1084
1127
|
network_profile: Optional[pulumi.Input[builtins.str]] = None,
|
1085
1128
|
numeric_id: Optional[pulumi.Input[builtins.str]] = None,
|
1129
|
+
params: Optional[pulumi.Input[Union['NetworkParamsArgs', 'NetworkParamsArgsDict']]] = None,
|
1086
1130
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
1087
1131
|
routing_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1088
1132
|
self_link: Optional[pulumi.Input[builtins.str]] = None) -> 'Network':
|
@@ -1143,6 +1187,8 @@ class Network(pulumi.CustomResource):
|
|
1143
1187
|
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
1144
1188
|
:param pulumi.Input[builtins.str] numeric_id: (Deprecated)
|
1145
1189
|
The unique identifier for the resource. This identifier is defined by the server.
|
1190
|
+
:param pulumi.Input[Union['NetworkParamsArgs', 'NetworkParamsArgsDict']] params: Additional params passed with the request, but not persisted as part of resource payload
|
1191
|
+
Structure is documented below.
|
1146
1192
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
1147
1193
|
If it is not provided, the provider project is used.
|
1148
1194
|
:param pulumi.Input[builtins.str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -1172,6 +1218,7 @@ class Network(pulumi.CustomResource):
|
|
1172
1218
|
__props__.__dict__["network_id"] = network_id
|
1173
1219
|
__props__.__dict__["network_profile"] = network_profile
|
1174
1220
|
__props__.__dict__["numeric_id"] = numeric_id
|
1221
|
+
__props__.__dict__["params"] = params
|
1175
1222
|
__props__.__dict__["project"] = project
|
1176
1223
|
__props__.__dict__["routing_mode"] = routing_mode
|
1177
1224
|
__props__.__dict__["self_link"] = self_link
|
@@ -1333,6 +1380,15 @@ class Network(pulumi.CustomResource):
|
|
1333
1380
|
"""
|
1334
1381
|
return pulumi.get(self, "numeric_id")
|
1335
1382
|
|
1383
|
+
@property
|
1384
|
+
@pulumi.getter
|
1385
|
+
def params(self) -> pulumi.Output[Optional['outputs.NetworkParams']]:
|
1386
|
+
"""
|
1387
|
+
Additional params passed with the request, but not persisted as part of resource payload
|
1388
|
+
Structure is documented below.
|
1389
|
+
"""
|
1390
|
+
return pulumi.get(self, "params")
|
1391
|
+
|
1336
1392
|
@property
|
1337
1393
|
@pulumi.getter
|
1338
1394
|
def project(self) -> pulumi.Output[builtins.str]:
|
@@ -22,6 +22,7 @@ class NetworkFirewallPolicyArgs:
|
|
22
22
|
def __init__(__self__, *,
|
23
23
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
24
24
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
25
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
25
26
|
project: Optional[pulumi.Input[builtins.str]] = None):
|
26
27
|
"""
|
27
28
|
The set of arguments for constructing a NetworkFirewallPolicy resource.
|
@@ -30,6 +31,10 @@ class NetworkFirewallPolicyArgs:
|
|
30
31
|
|
31
32
|
|
32
33
|
- - -
|
34
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with.
|
35
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
36
|
+
Different policy types may support some of the Firewall Rules features.
|
37
|
+
Possible values are: `VPC_POLICY`.
|
33
38
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
34
39
|
If it is not provided, the provider project is used.
|
35
40
|
"""
|
@@ -37,6 +42,8 @@ class NetworkFirewallPolicyArgs:
|
|
37
42
|
pulumi.set(__self__, "description", description)
|
38
43
|
if name is not None:
|
39
44
|
pulumi.set(__self__, "name", name)
|
45
|
+
if policy_type is not None:
|
46
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
40
47
|
if project is not None:
|
41
48
|
pulumi.set(__self__, "project", project)
|
42
49
|
|
@@ -67,6 +74,21 @@ class NetworkFirewallPolicyArgs:
|
|
67
74
|
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
68
75
|
pulumi.set(self, "name", value)
|
69
76
|
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="policyType")
|
79
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
80
|
+
"""
|
81
|
+
Policy type is used to determine which resources (networks) the policy can be associated with.
|
82
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
83
|
+
Different policy types may support some of the Firewall Rules features.
|
84
|
+
Possible values are: `VPC_POLICY`.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "policy_type")
|
87
|
+
|
88
|
+
@policy_type.setter
|
89
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
90
|
+
pulumi.set(self, "policy_type", value)
|
91
|
+
|
70
92
|
@property
|
71
93
|
@pulumi.getter
|
72
94
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -89,6 +111,7 @@ class _NetworkFirewallPolicyState:
|
|
89
111
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
90
112
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
91
113
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
114
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
92
115
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
93
116
|
rule_tuple_count: Optional[pulumi.Input[builtins.int]] = None,
|
94
117
|
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -103,6 +126,10 @@ class _NetworkFirewallPolicyState:
|
|
103
126
|
|
104
127
|
- - -
|
105
128
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
129
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with.
|
130
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
131
|
+
Different policy types may support some of the Firewall Rules features.
|
132
|
+
Possible values are: `VPC_POLICY`.
|
106
133
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
107
134
|
If it is not provided, the provider project is used.
|
108
135
|
:param pulumi.Input[builtins.int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
@@ -119,6 +146,8 @@ class _NetworkFirewallPolicyState:
|
|
119
146
|
pulumi.set(__self__, "name", name)
|
120
147
|
if network_firewall_policy_id is not None:
|
121
148
|
pulumi.set(__self__, "network_firewall_policy_id", network_firewall_policy_id)
|
149
|
+
if policy_type is not None:
|
150
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
122
151
|
if project is not None:
|
123
152
|
pulumi.set(__self__, "project", project)
|
124
153
|
if rule_tuple_count is not None:
|
@@ -191,6 +220,21 @@ class _NetworkFirewallPolicyState:
|
|
191
220
|
def network_firewall_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
192
221
|
pulumi.set(self, "network_firewall_policy_id", value)
|
193
222
|
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="policyType")
|
225
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
226
|
+
"""
|
227
|
+
Policy type is used to determine which resources (networks) the policy can be associated with.
|
228
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
229
|
+
Different policy types may support some of the Firewall Rules features.
|
230
|
+
Possible values are: `VPC_POLICY`.
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "policy_type")
|
233
|
+
|
234
|
+
@policy_type.setter
|
235
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
236
|
+
pulumi.set(self, "policy_type", value)
|
237
|
+
|
194
238
|
@property
|
195
239
|
@pulumi.getter
|
196
240
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -249,6 +293,7 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
249
293
|
opts: Optional[pulumi.ResourceOptions] = None,
|
250
294
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
251
295
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
296
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
252
297
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
253
298
|
__props__=None):
|
254
299
|
"""
|
@@ -298,6 +343,10 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
298
343
|
|
299
344
|
|
300
345
|
- - -
|
346
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with.
|
347
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
348
|
+
Different policy types may support some of the Firewall Rules features.
|
349
|
+
Possible values are: `VPC_POLICY`.
|
301
350
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
302
351
|
If it is not provided, the provider project is used.
|
303
352
|
"""
|
@@ -364,6 +413,7 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
364
413
|
opts: Optional[pulumi.ResourceOptions] = None,
|
365
414
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
366
415
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
416
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
367
417
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
368
418
|
__props__=None):
|
369
419
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -376,6 +426,7 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
376
426
|
|
377
427
|
__props__.__dict__["description"] = description
|
378
428
|
__props__.__dict__["name"] = name
|
429
|
+
__props__.__dict__["policy_type"] = policy_type
|
379
430
|
__props__.__dict__["project"] = project
|
380
431
|
__props__.__dict__["creation_timestamp"] = None
|
381
432
|
__props__.__dict__["fingerprint"] = None
|
@@ -398,6 +449,7 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
398
449
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
399
450
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
400
451
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
452
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
401
453
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
402
454
|
rule_tuple_count: Optional[pulumi.Input[builtins.int]] = None,
|
403
455
|
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -417,6 +469,10 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
417
469
|
|
418
470
|
- - -
|
419
471
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
472
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with.
|
473
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
474
|
+
Different policy types may support some of the Firewall Rules features.
|
475
|
+
Possible values are: `VPC_POLICY`.
|
420
476
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
421
477
|
If it is not provided, the provider project is used.
|
422
478
|
:param pulumi.Input[builtins.int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
@@ -432,6 +488,7 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
432
488
|
__props__.__dict__["fingerprint"] = fingerprint
|
433
489
|
__props__.__dict__["name"] = name
|
434
490
|
__props__.__dict__["network_firewall_policy_id"] = network_firewall_policy_id
|
491
|
+
__props__.__dict__["policy_type"] = policy_type
|
435
492
|
__props__.__dict__["project"] = project
|
436
493
|
__props__.__dict__["rule_tuple_count"] = rule_tuple_count
|
437
494
|
__props__.__dict__["self_link"] = self_link
|
@@ -481,6 +538,17 @@ class NetworkFirewallPolicy(pulumi.CustomResource):
|
|
481
538
|
"""
|
482
539
|
return pulumi.get(self, "network_firewall_policy_id")
|
483
540
|
|
541
|
+
@property
|
542
|
+
@pulumi.getter(name="policyType")
|
543
|
+
def policy_type(self) -> pulumi.Output[builtins.str]:
|
544
|
+
"""
|
545
|
+
Policy type is used to determine which resources (networks) the policy can be associated with.
|
546
|
+
A policy can be associated with a network only if the network has the matching policyType in its network profile.
|
547
|
+
Different policy types may support some of the Firewall Rules features.
|
548
|
+
Possible values are: `VPC_POLICY`.
|
549
|
+
"""
|
550
|
+
return pulumi.get(self, "policy_type")
|
551
|
+
|
484
552
|
@property
|
485
553
|
@pulumi.getter
|
486
554
|
def project(self) -> pulumi.Output[builtins.str]:
|
@@ -25,6 +25,7 @@ class NetworkFirewallPolicyWithRulesArgs:
|
|
25
25
|
rules: pulumi.Input[Sequence[pulumi.Input['NetworkFirewallPolicyWithRulesRuleArgs']]],
|
26
26
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
27
27
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
28
29
|
project: Optional[pulumi.Input[builtins.str]] = None):
|
29
30
|
"""
|
30
31
|
The set of arguments for constructing a NetworkFirewallPolicyWithRules resource.
|
@@ -38,12 +39,17 @@ class NetworkFirewallPolicyWithRulesArgs:
|
|
38
39
|
the name must be 1-63 characters long and match the regular expression a-z?
|
39
40
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
40
41
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
42
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
43
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
44
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
41
45
|
"""
|
42
46
|
pulumi.set(__self__, "rules", rules)
|
43
47
|
if description is not None:
|
44
48
|
pulumi.set(__self__, "description", description)
|
45
49
|
if name is not None:
|
46
50
|
pulumi.set(__self__, "name", name)
|
51
|
+
if policy_type is not None:
|
52
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
47
53
|
if project is not None:
|
48
54
|
pulumi.set(__self__, "project", project)
|
49
55
|
|
@@ -90,6 +96,20 @@ class NetworkFirewallPolicyWithRulesArgs:
|
|
90
96
|
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
91
97
|
pulumi.set(self, "name", value)
|
92
98
|
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="policyType")
|
101
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
102
|
+
"""
|
103
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
104
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
105
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "policy_type")
|
108
|
+
|
109
|
+
@policy_type.setter
|
110
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
111
|
+
pulumi.set(self, "policy_type", value)
|
112
|
+
|
93
113
|
@property
|
94
114
|
@pulumi.getter
|
95
115
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -108,6 +128,7 @@ class _NetworkFirewallPolicyWithRulesState:
|
|
108
128
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
109
129
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
110
130
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
131
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
111
132
|
predefined_rules: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkFirewallPolicyWithRulesPredefinedRuleArgs']]]] = None,
|
112
133
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
113
134
|
rule_tuple_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -127,6 +148,9 @@ class _NetworkFirewallPolicyWithRulesState:
|
|
127
148
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
128
149
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
129
150
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
151
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
152
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
153
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
130
154
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkFirewallPolicyWithRulesPredefinedRuleArgs']]] predefined_rules: A list of firewall policy pre-defined rules.
|
131
155
|
Structure is documented below.
|
132
156
|
:param pulumi.Input[builtins.int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
@@ -145,6 +169,8 @@ class _NetworkFirewallPolicyWithRulesState:
|
|
145
169
|
pulumi.set(__self__, "name", name)
|
146
170
|
if network_firewall_policy_id is not None:
|
147
171
|
pulumi.set(__self__, "network_firewall_policy_id", network_firewall_policy_id)
|
172
|
+
if policy_type is not None:
|
173
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
148
174
|
if predefined_rules is not None:
|
149
175
|
pulumi.set(__self__, "predefined_rules", predefined_rules)
|
150
176
|
if project is not None:
|
@@ -224,6 +250,20 @@ class _NetworkFirewallPolicyWithRulesState:
|
|
224
250
|
def network_firewall_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
225
251
|
pulumi.set(self, "network_firewall_policy_id", value)
|
226
252
|
|
253
|
+
@property
|
254
|
+
@pulumi.getter(name="policyType")
|
255
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
256
|
+
"""
|
257
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
258
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
259
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "policy_type")
|
262
|
+
|
263
|
+
@policy_type.setter
|
264
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
265
|
+
pulumi.set(self, "policy_type", value)
|
266
|
+
|
227
267
|
@property
|
228
268
|
@pulumi.getter(name="predefinedRules")
|
229
269
|
def predefined_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkFirewallPolicyWithRulesPredefinedRuleArgs']]]]:
|
@@ -304,6 +344,7 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
304
344
|
opts: Optional[pulumi.ResourceOptions] = None,
|
305
345
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
306
346
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
347
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
307
348
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
308
349
|
rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkFirewallPolicyWithRulesRuleArgs', 'NetworkFirewallPolicyWithRulesRuleArgsDict']]]]] = None,
|
309
350
|
__props__=None):
|
@@ -470,6 +511,9 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
470
511
|
the name must be 1-63 characters long and match the regular expression a-z?
|
471
512
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
472
513
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
514
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
515
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
516
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
473
517
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkFirewallPolicyWithRulesRuleArgs', 'NetworkFirewallPolicyWithRulesRuleArgsDict']]]] rules: A list of firewall policy rules.
|
474
518
|
Structure is documented below.
|
475
519
|
"""
|
@@ -649,6 +693,7 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
649
693
|
opts: Optional[pulumi.ResourceOptions] = None,
|
650
694
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
651
695
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
696
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
652
697
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
653
698
|
rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkFirewallPolicyWithRulesRuleArgs', 'NetworkFirewallPolicyWithRulesRuleArgsDict']]]]] = None,
|
654
699
|
__props__=None):
|
@@ -662,6 +707,7 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
662
707
|
|
663
708
|
__props__.__dict__["description"] = description
|
664
709
|
__props__.__dict__["name"] = name
|
710
|
+
__props__.__dict__["policy_type"] = policy_type
|
665
711
|
__props__.__dict__["project"] = project
|
666
712
|
if rules is None and not opts.urn:
|
667
713
|
raise TypeError("Missing required property 'rules'")
|
@@ -688,6 +734,7 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
688
734
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
689
735
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
690
736
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
737
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
691
738
|
predefined_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkFirewallPolicyWithRulesPredefinedRuleArgs', 'NetworkFirewallPolicyWithRulesPredefinedRuleArgsDict']]]]] = None,
|
692
739
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
693
740
|
rule_tuple_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -712,6 +759,9 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
712
759
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
713
760
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
714
761
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
762
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
763
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
764
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
715
765
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkFirewallPolicyWithRulesPredefinedRuleArgs', 'NetworkFirewallPolicyWithRulesPredefinedRuleArgsDict']]]] predefined_rules: A list of firewall policy pre-defined rules.
|
716
766
|
Structure is documented below.
|
717
767
|
:param pulumi.Input[builtins.int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
@@ -729,6 +779,7 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
729
779
|
__props__.__dict__["fingerprint"] = fingerprint
|
730
780
|
__props__.__dict__["name"] = name
|
731
781
|
__props__.__dict__["network_firewall_policy_id"] = network_firewall_policy_id
|
782
|
+
__props__.__dict__["policy_type"] = policy_type
|
732
783
|
__props__.__dict__["predefined_rules"] = predefined_rules
|
733
784
|
__props__.__dict__["project"] = project
|
734
785
|
__props__.__dict__["rule_tuple_count"] = rule_tuple_count
|
@@ -783,6 +834,16 @@ class NetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
783
834
|
"""
|
784
835
|
return pulumi.get(self, "network_firewall_policy_id")
|
785
836
|
|
837
|
+
@property
|
838
|
+
@pulumi.getter(name="policyType")
|
839
|
+
def policy_type(self) -> pulumi.Output[builtins.str]:
|
840
|
+
"""
|
841
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
842
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
843
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY"]
|
844
|
+
"""
|
845
|
+
return pulumi.get(self, "policy_type")
|
846
|
+
|
786
847
|
@property
|
787
848
|
@pulumi.getter(name="predefinedRules")
|
788
849
|
def predefined_rules(self) -> pulumi.Output[Sequence['outputs.NetworkFirewallPolicyWithRulesPredefinedRule']]:
|
@@ -46,6 +46,9 @@ class NodeTemplateArgs:
|
|
46
46
|
node template
|
47
47
|
Structure is documented below.
|
48
48
|
:param pulumi.Input[builtins.str] name: Name of the resource.
|
49
|
+
|
50
|
+
|
51
|
+
- - -
|
49
52
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] node_affinity_labels: Labels to use for node affinity, which will be used in
|
50
53
|
instance scheduling.
|
51
54
|
:param pulumi.Input[builtins.str] node_type: Node type to use for nodes group that are created from this template.
|
@@ -145,6 +148,9 @@ class NodeTemplateArgs:
|
|
145
148
|
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
146
149
|
"""
|
147
150
|
Name of the resource.
|
151
|
+
|
152
|
+
|
153
|
+
- - -
|
148
154
|
"""
|
149
155
|
return pulumi.get(self, "name")
|
150
156
|
|
@@ -265,6 +271,9 @@ class _NodeTemplateState:
|
|
265
271
|
node template
|
266
272
|
Structure is documented below.
|
267
273
|
:param pulumi.Input[builtins.str] name: Name of the resource.
|
274
|
+
|
275
|
+
|
276
|
+
- - -
|
268
277
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] node_affinity_labels: Labels to use for node affinity, which will be used in
|
269
278
|
instance scheduling.
|
270
279
|
:param pulumi.Input[builtins.str] node_type: Node type to use for nodes group that are created from this template.
|
@@ -381,6 +390,9 @@ class _NodeTemplateState:
|
|
381
390
|
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
382
391
|
"""
|
383
392
|
Name of the resource.
|
393
|
+
|
394
|
+
|
395
|
+
- - -
|
384
396
|
"""
|
385
397
|
return pulumi.get(self, "name")
|
386
398
|
|
@@ -620,6 +632,9 @@ class NodeTemplate(pulumi.CustomResource):
|
|
620
632
|
node template
|
621
633
|
Structure is documented below.
|
622
634
|
:param pulumi.Input[builtins.str] name: Name of the resource.
|
635
|
+
|
636
|
+
|
637
|
+
- - -
|
623
638
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] node_affinity_labels: Labels to use for node affinity, which will be used in
|
624
639
|
instance scheduling.
|
625
640
|
:param pulumi.Input[builtins.str] node_type: Node type to use for nodes group that are created from this template.
|
@@ -839,6 +854,9 @@ class NodeTemplate(pulumi.CustomResource):
|
|
839
854
|
node template
|
840
855
|
Structure is documented below.
|
841
856
|
:param pulumi.Input[builtins.str] name: Name of the resource.
|
857
|
+
|
858
|
+
|
859
|
+
- - -
|
842
860
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] node_affinity_labels: Labels to use for node affinity, which will be used in
|
843
861
|
instance scheduling.
|
844
862
|
:param pulumi.Input[builtins.str] node_type: Node type to use for nodes group that are created from this template.
|
@@ -927,6 +945,9 @@ class NodeTemplate(pulumi.CustomResource):
|
|
927
945
|
def name(self) -> pulumi.Output[builtins.str]:
|
928
946
|
"""
|
929
947
|
Name of the resource.
|
948
|
+
|
949
|
+
|
950
|
+
- - -
|
930
951
|
"""
|
931
952
|
return pulumi.get(self, "name")
|
932
953
|
|