pulumi-gcp 8.0.0a1726253601__py3-none-any.whl → 8.1.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 +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudtasks/queue.py
CHANGED
@@ -23,6 +23,7 @@ class QueueArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
location: pulumi.Input[str],
|
25
25
|
app_engine_routing_override: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']] = None,
|
26
|
+
http_target: Optional[pulumi.Input['QueueHttpTargetArgs']] = None,
|
26
27
|
name: Optional[pulumi.Input[str]] = None,
|
27
28
|
project: Optional[pulumi.Input[str]] = None,
|
28
29
|
rate_limits: Optional[pulumi.Input['QueueRateLimitsArgs']] = None,
|
@@ -37,6 +38,8 @@ class QueueArgs:
|
|
37
38
|
:param pulumi.Input['QueueAppEngineRoutingOverrideArgs'] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
|
38
39
|
to App Engine tasks in this queue
|
39
40
|
Structure is documented below.
|
41
|
+
:param pulumi.Input['QueueHttpTargetArgs'] http_target: Modifies HTTP target for HTTP tasks.
|
42
|
+
Structure is documented below.
|
40
43
|
:param pulumi.Input[str] name: The queue name.
|
41
44
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
42
45
|
If it is not provided, the provider project is used.
|
@@ -56,6 +59,8 @@ class QueueArgs:
|
|
56
59
|
pulumi.set(__self__, "location", location)
|
57
60
|
if app_engine_routing_override is not None:
|
58
61
|
pulumi.set(__self__, "app_engine_routing_override", app_engine_routing_override)
|
62
|
+
if http_target is not None:
|
63
|
+
pulumi.set(__self__, "http_target", http_target)
|
59
64
|
if name is not None:
|
60
65
|
pulumi.set(__self__, "name", name)
|
61
66
|
if project is not None:
|
@@ -96,6 +101,19 @@ class QueueArgs:
|
|
96
101
|
def app_engine_routing_override(self, value: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']]):
|
97
102
|
pulumi.set(self, "app_engine_routing_override", value)
|
98
103
|
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="httpTarget")
|
106
|
+
def http_target(self) -> Optional[pulumi.Input['QueueHttpTargetArgs']]:
|
107
|
+
"""
|
108
|
+
Modifies HTTP target for HTTP tasks.
|
109
|
+
Structure is documented below.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "http_target")
|
112
|
+
|
113
|
+
@http_target.setter
|
114
|
+
def http_target(self, value: Optional[pulumi.Input['QueueHttpTargetArgs']]):
|
115
|
+
pulumi.set(self, "http_target", value)
|
116
|
+
|
99
117
|
@property
|
100
118
|
@pulumi.getter
|
101
119
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -171,6 +189,7 @@ class QueueArgs:
|
|
171
189
|
class _QueueState:
|
172
190
|
def __init__(__self__, *,
|
173
191
|
app_engine_routing_override: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']] = None,
|
192
|
+
http_target: Optional[pulumi.Input['QueueHttpTargetArgs']] = None,
|
174
193
|
location: Optional[pulumi.Input[str]] = None,
|
175
194
|
name: Optional[pulumi.Input[str]] = None,
|
176
195
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -182,6 +201,8 @@ class _QueueState:
|
|
182
201
|
:param pulumi.Input['QueueAppEngineRoutingOverrideArgs'] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
|
183
202
|
to App Engine tasks in this queue
|
184
203
|
Structure is documented below.
|
204
|
+
:param pulumi.Input['QueueHttpTargetArgs'] http_target: Modifies HTTP target for HTTP tasks.
|
205
|
+
Structure is documented below.
|
185
206
|
:param pulumi.Input[str] location: The location of the queue
|
186
207
|
|
187
208
|
|
@@ -204,6 +225,8 @@ class _QueueState:
|
|
204
225
|
"""
|
205
226
|
if app_engine_routing_override is not None:
|
206
227
|
pulumi.set(__self__, "app_engine_routing_override", app_engine_routing_override)
|
228
|
+
if http_target is not None:
|
229
|
+
pulumi.set(__self__, "http_target", http_target)
|
207
230
|
if location is not None:
|
208
231
|
pulumi.set(__self__, "location", location)
|
209
232
|
if name is not None:
|
@@ -231,6 +254,19 @@ class _QueueState:
|
|
231
254
|
def app_engine_routing_override(self, value: Optional[pulumi.Input['QueueAppEngineRoutingOverrideArgs']]):
|
232
255
|
pulumi.set(self, "app_engine_routing_override", value)
|
233
256
|
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="httpTarget")
|
259
|
+
def http_target(self) -> Optional[pulumi.Input['QueueHttpTargetArgs']]:
|
260
|
+
"""
|
261
|
+
Modifies HTTP target for HTTP tasks.
|
262
|
+
Structure is documented below.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "http_target")
|
265
|
+
|
266
|
+
@http_target.setter
|
267
|
+
def http_target(self, value: Optional[pulumi.Input['QueueHttpTargetArgs']]):
|
268
|
+
pulumi.set(self, "http_target", value)
|
269
|
+
|
234
270
|
@property
|
235
271
|
@pulumi.getter
|
236
272
|
def location(self) -> Optional[pulumi.Input[str]]:
|
@@ -323,6 +359,7 @@ class Queue(pulumi.CustomResource):
|
|
323
359
|
resource_name: str,
|
324
360
|
opts: Optional[pulumi.ResourceOptions] = None,
|
325
361
|
app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
|
362
|
+
http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
|
326
363
|
location: Optional[pulumi.Input[str]] = None,
|
327
364
|
name: Optional[pulumi.Input[str]] = None,
|
328
365
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -374,6 +411,98 @@ class Queue(pulumi.CustomResource):
|
|
374
411
|
"sampling_ratio": 0.9,
|
375
412
|
})
|
376
413
|
```
|
414
|
+
### Cloud Tasks Queue Http Target Oidc
|
415
|
+
|
416
|
+
```python
|
417
|
+
import pulumi
|
418
|
+
import pulumi_gcp as gcp
|
419
|
+
|
420
|
+
oidc_service_account = gcp.serviceaccount.Account("oidc_service_account",
|
421
|
+
account_id="example-oidc",
|
422
|
+
display_name="Tasks Queue OIDC Service Account")
|
423
|
+
http_target_oidc = gcp.cloudtasks.Queue("http_target_oidc",
|
424
|
+
name="cloud-tasks-queue-http-target-oidc",
|
425
|
+
location="us-central1",
|
426
|
+
http_target={
|
427
|
+
"http_method": "POST",
|
428
|
+
"uri_override": {
|
429
|
+
"scheme": "HTTPS",
|
430
|
+
"host": "oidc.example.com",
|
431
|
+
"port": "8443",
|
432
|
+
"path_override": {
|
433
|
+
"path": "/users/1234",
|
434
|
+
},
|
435
|
+
"query_override": {
|
436
|
+
"query_params": "qparam1=123&qparam2=456",
|
437
|
+
},
|
438
|
+
"uri_override_enforce_mode": "IF_NOT_EXISTS",
|
439
|
+
},
|
440
|
+
"header_overrides": [
|
441
|
+
{
|
442
|
+
"header": {
|
443
|
+
"key": "AddSomethingElse",
|
444
|
+
"value": "MyOtherValue",
|
445
|
+
},
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"header": {
|
449
|
+
"key": "AddMe",
|
450
|
+
"value": "MyValue",
|
451
|
+
},
|
452
|
+
},
|
453
|
+
],
|
454
|
+
"oidc_token": {
|
455
|
+
"service_account_email": oidc_service_account.email,
|
456
|
+
"audience": "https://oidc.example.com",
|
457
|
+
},
|
458
|
+
})
|
459
|
+
```
|
460
|
+
### Cloud Tasks Queue Http Target Oauth
|
461
|
+
|
462
|
+
```python
|
463
|
+
import pulumi
|
464
|
+
import pulumi_gcp as gcp
|
465
|
+
|
466
|
+
oauth_service_account = gcp.serviceaccount.Account("oauth_service_account",
|
467
|
+
account_id="example-oauth",
|
468
|
+
display_name="Tasks Queue OAuth Service Account")
|
469
|
+
http_target_oauth = gcp.cloudtasks.Queue("http_target_oauth",
|
470
|
+
name="cloud-tasks-queue-http-target-oauth",
|
471
|
+
location="us-central1",
|
472
|
+
http_target={
|
473
|
+
"http_method": "POST",
|
474
|
+
"uri_override": {
|
475
|
+
"scheme": "HTTPS",
|
476
|
+
"host": "oauth.example.com",
|
477
|
+
"port": "8443",
|
478
|
+
"path_override": {
|
479
|
+
"path": "/users/1234",
|
480
|
+
},
|
481
|
+
"query_override": {
|
482
|
+
"query_params": "qparam1=123&qparam2=456",
|
483
|
+
},
|
484
|
+
"uri_override_enforce_mode": "IF_NOT_EXISTS",
|
485
|
+
},
|
486
|
+
"header_overrides": [
|
487
|
+
{
|
488
|
+
"header": {
|
489
|
+
"key": "AddSomethingElse",
|
490
|
+
"value": "MyOtherValue",
|
491
|
+
},
|
492
|
+
},
|
493
|
+
{
|
494
|
+
"header": {
|
495
|
+
"key": "AddMe",
|
496
|
+
"value": "MyValue",
|
497
|
+
},
|
498
|
+
},
|
499
|
+
],
|
500
|
+
"oauth_token": {
|
501
|
+
"service_account_email": oauth_service_account.email,
|
502
|
+
"scope": "openid https://www.googleapis.com/auth/userinfo.email",
|
503
|
+
},
|
504
|
+
})
|
505
|
+
```
|
377
506
|
|
378
507
|
## Import
|
379
508
|
|
@@ -404,6 +533,8 @@ class Queue(pulumi.CustomResource):
|
|
404
533
|
:param pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
|
405
534
|
to App Engine tasks in this queue
|
406
535
|
Structure is documented below.
|
536
|
+
:param pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']] http_target: Modifies HTTP target for HTTP tasks.
|
537
|
+
Structure is documented below.
|
407
538
|
:param pulumi.Input[str] location: The location of the queue
|
408
539
|
|
409
540
|
|
@@ -474,6 +605,98 @@ class Queue(pulumi.CustomResource):
|
|
474
605
|
"sampling_ratio": 0.9,
|
475
606
|
})
|
476
607
|
```
|
608
|
+
### Cloud Tasks Queue Http Target Oidc
|
609
|
+
|
610
|
+
```python
|
611
|
+
import pulumi
|
612
|
+
import pulumi_gcp as gcp
|
613
|
+
|
614
|
+
oidc_service_account = gcp.serviceaccount.Account("oidc_service_account",
|
615
|
+
account_id="example-oidc",
|
616
|
+
display_name="Tasks Queue OIDC Service Account")
|
617
|
+
http_target_oidc = gcp.cloudtasks.Queue("http_target_oidc",
|
618
|
+
name="cloud-tasks-queue-http-target-oidc",
|
619
|
+
location="us-central1",
|
620
|
+
http_target={
|
621
|
+
"http_method": "POST",
|
622
|
+
"uri_override": {
|
623
|
+
"scheme": "HTTPS",
|
624
|
+
"host": "oidc.example.com",
|
625
|
+
"port": "8443",
|
626
|
+
"path_override": {
|
627
|
+
"path": "/users/1234",
|
628
|
+
},
|
629
|
+
"query_override": {
|
630
|
+
"query_params": "qparam1=123&qparam2=456",
|
631
|
+
},
|
632
|
+
"uri_override_enforce_mode": "IF_NOT_EXISTS",
|
633
|
+
},
|
634
|
+
"header_overrides": [
|
635
|
+
{
|
636
|
+
"header": {
|
637
|
+
"key": "AddSomethingElse",
|
638
|
+
"value": "MyOtherValue",
|
639
|
+
},
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"header": {
|
643
|
+
"key": "AddMe",
|
644
|
+
"value": "MyValue",
|
645
|
+
},
|
646
|
+
},
|
647
|
+
],
|
648
|
+
"oidc_token": {
|
649
|
+
"service_account_email": oidc_service_account.email,
|
650
|
+
"audience": "https://oidc.example.com",
|
651
|
+
},
|
652
|
+
})
|
653
|
+
```
|
654
|
+
### Cloud Tasks Queue Http Target Oauth
|
655
|
+
|
656
|
+
```python
|
657
|
+
import pulumi
|
658
|
+
import pulumi_gcp as gcp
|
659
|
+
|
660
|
+
oauth_service_account = gcp.serviceaccount.Account("oauth_service_account",
|
661
|
+
account_id="example-oauth",
|
662
|
+
display_name="Tasks Queue OAuth Service Account")
|
663
|
+
http_target_oauth = gcp.cloudtasks.Queue("http_target_oauth",
|
664
|
+
name="cloud-tasks-queue-http-target-oauth",
|
665
|
+
location="us-central1",
|
666
|
+
http_target={
|
667
|
+
"http_method": "POST",
|
668
|
+
"uri_override": {
|
669
|
+
"scheme": "HTTPS",
|
670
|
+
"host": "oauth.example.com",
|
671
|
+
"port": "8443",
|
672
|
+
"path_override": {
|
673
|
+
"path": "/users/1234",
|
674
|
+
},
|
675
|
+
"query_override": {
|
676
|
+
"query_params": "qparam1=123&qparam2=456",
|
677
|
+
},
|
678
|
+
"uri_override_enforce_mode": "IF_NOT_EXISTS",
|
679
|
+
},
|
680
|
+
"header_overrides": [
|
681
|
+
{
|
682
|
+
"header": {
|
683
|
+
"key": "AddSomethingElse",
|
684
|
+
"value": "MyOtherValue",
|
685
|
+
},
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"header": {
|
689
|
+
"key": "AddMe",
|
690
|
+
"value": "MyValue",
|
691
|
+
},
|
692
|
+
},
|
693
|
+
],
|
694
|
+
"oauth_token": {
|
695
|
+
"service_account_email": oauth_service_account.email,
|
696
|
+
"scope": "openid https://www.googleapis.com/auth/userinfo.email",
|
697
|
+
},
|
698
|
+
})
|
699
|
+
```
|
477
700
|
|
478
701
|
## Import
|
479
702
|
|
@@ -515,6 +738,7 @@ class Queue(pulumi.CustomResource):
|
|
515
738
|
resource_name: str,
|
516
739
|
opts: Optional[pulumi.ResourceOptions] = None,
|
517
740
|
app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
|
741
|
+
http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
|
518
742
|
location: Optional[pulumi.Input[str]] = None,
|
519
743
|
name: Optional[pulumi.Input[str]] = None,
|
520
744
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -531,6 +755,7 @@ class Queue(pulumi.CustomResource):
|
|
531
755
|
__props__ = QueueArgs.__new__(QueueArgs)
|
532
756
|
|
533
757
|
__props__.__dict__["app_engine_routing_override"] = app_engine_routing_override
|
758
|
+
__props__.__dict__["http_target"] = http_target
|
534
759
|
if location is None and not opts.urn:
|
535
760
|
raise TypeError("Missing required property 'location'")
|
536
761
|
__props__.__dict__["location"] = location
|
@@ -550,6 +775,7 @@ class Queue(pulumi.CustomResource):
|
|
550
775
|
id: pulumi.Input[str],
|
551
776
|
opts: Optional[pulumi.ResourceOptions] = None,
|
552
777
|
app_engine_routing_override: Optional[pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']]] = None,
|
778
|
+
http_target: Optional[pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']]] = None,
|
553
779
|
location: Optional[pulumi.Input[str]] = None,
|
554
780
|
name: Optional[pulumi.Input[str]] = None,
|
555
781
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -566,6 +792,8 @@ class Queue(pulumi.CustomResource):
|
|
566
792
|
:param pulumi.Input[Union['QueueAppEngineRoutingOverrideArgs', 'QueueAppEngineRoutingOverrideArgsDict']] app_engine_routing_override: Overrides for task-level appEngineRouting. These settings apply only
|
567
793
|
to App Engine tasks in this queue
|
568
794
|
Structure is documented below.
|
795
|
+
:param pulumi.Input[Union['QueueHttpTargetArgs', 'QueueHttpTargetArgsDict']] http_target: Modifies HTTP target for HTTP tasks.
|
796
|
+
Structure is documented below.
|
569
797
|
:param pulumi.Input[str] location: The location of the queue
|
570
798
|
|
571
799
|
|
@@ -591,6 +819,7 @@ class Queue(pulumi.CustomResource):
|
|
591
819
|
__props__ = _QueueState.__new__(_QueueState)
|
592
820
|
|
593
821
|
__props__.__dict__["app_engine_routing_override"] = app_engine_routing_override
|
822
|
+
__props__.__dict__["http_target"] = http_target
|
594
823
|
__props__.__dict__["location"] = location
|
595
824
|
__props__.__dict__["name"] = name
|
596
825
|
__props__.__dict__["project"] = project
|
@@ -609,6 +838,15 @@ class Queue(pulumi.CustomResource):
|
|
609
838
|
"""
|
610
839
|
return pulumi.get(self, "app_engine_routing_override")
|
611
840
|
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="httpTarget")
|
843
|
+
def http_target(self) -> pulumi.Output[Optional['outputs.QueueHttpTarget']]:
|
844
|
+
"""
|
845
|
+
Modifies HTTP target for HTTP tasks.
|
846
|
+
Structure is documented below.
|
847
|
+
"""
|
848
|
+
return pulumi.get(self, "http_target")
|
849
|
+
|
612
850
|
@property
|
613
851
|
@pulumi.getter
|
614
852
|
def location(self) -> pulumi.Output[str]:
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -407,6 +407,8 @@ __all__ = [
|
|
407
407
|
'NodeGroupShareSettingsArgsDict',
|
408
408
|
'NodeGroupShareSettingsProjectMapArgs',
|
409
409
|
'NodeGroupShareSettingsProjectMapArgsDict',
|
410
|
+
'NodeTemplateAcceleratorArgs',
|
411
|
+
'NodeTemplateAcceleratorArgsDict',
|
410
412
|
'NodeTemplateNodeTypeFlexibilityArgs',
|
411
413
|
'NodeTemplateNodeTypeFlexibilityArgsDict',
|
412
414
|
'NodeTemplateServerBindingArgs',
|
@@ -5952,7 +5954,7 @@ if not MYPY:
|
|
5952
5954
|
is only applicable for UDP or TCP protocol. Each entry must be
|
5953
5955
|
either an integer or a range. If not specified, this rule
|
5954
5956
|
applies to connections through any port.
|
5955
|
-
Example inputs include: [
|
5957
|
+
Example inputs include: [22], [80, 443], and
|
5956
5958
|
["12345-12349"].
|
5957
5959
|
"""
|
5958
5960
|
elif False:
|
@@ -5972,7 +5974,7 @@ class FirewallAllowArgs:
|
|
5972
5974
|
is only applicable for UDP or TCP protocol. Each entry must be
|
5973
5975
|
either an integer or a range. If not specified, this rule
|
5974
5976
|
applies to connections through any port.
|
5975
|
-
Example inputs include: [
|
5977
|
+
Example inputs include: [22], [80, 443], and
|
5976
5978
|
["12345-12349"].
|
5977
5979
|
"""
|
5978
5980
|
pulumi.set(__self__, "protocol", protocol)
|
@@ -6002,7 +6004,7 @@ class FirewallAllowArgs:
|
|
6002
6004
|
is only applicable for UDP or TCP protocol. Each entry must be
|
6003
6005
|
either an integer or a range. If not specified, this rule
|
6004
6006
|
applies to connections through any port.
|
6005
|
-
Example inputs include: [
|
6007
|
+
Example inputs include: [22], [80, 443], and
|
6006
6008
|
["12345-12349"].
|
6007
6009
|
"""
|
6008
6010
|
return pulumi.get(self, "ports")
|
@@ -6027,7 +6029,7 @@ if not MYPY:
|
|
6027
6029
|
is only applicable for UDP or TCP protocol. Each entry must be
|
6028
6030
|
either an integer or a range. If not specified, this rule
|
6029
6031
|
applies to connections through any port.
|
6030
|
-
Example inputs include: [
|
6032
|
+
Example inputs include: [22], [80, 443], and
|
6031
6033
|
["12345-12349"].
|
6032
6034
|
"""
|
6033
6035
|
elif False:
|
@@ -6047,7 +6049,7 @@ class FirewallDenyArgs:
|
|
6047
6049
|
is only applicable for UDP or TCP protocol. Each entry must be
|
6048
6050
|
either an integer or a range. If not specified, this rule
|
6049
6051
|
applies to connections through any port.
|
6050
|
-
Example inputs include: [
|
6052
|
+
Example inputs include: [22], [80, 443], and
|
6051
6053
|
["12345-12349"].
|
6052
6054
|
"""
|
6053
6055
|
pulumi.set(__self__, "protocol", protocol)
|
@@ -6077,7 +6079,7 @@ class FirewallDenyArgs:
|
|
6077
6079
|
is only applicable for UDP or TCP protocol. Each entry must be
|
6078
6080
|
either an integer or a range. If not specified, this rule
|
6079
6081
|
applies to connections through any port.
|
6080
|
-
Example inputs include: [
|
6082
|
+
Example inputs include: [22], [80, 443], and
|
6081
6083
|
["12345-12349"].
|
6082
6084
|
"""
|
6083
6085
|
return pulumi.get(self, "ports")
|
@@ -8568,6 +8570,10 @@ if not MYPY:
|
|
8568
8570
|
alongside the new instance. Either `initialize_params` or `source` must be set.
|
8569
8571
|
Structure is documented below.
|
8570
8572
|
"""
|
8573
|
+
interface: NotRequired[pulumi.Input[str]]
|
8574
|
+
"""
|
8575
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
8576
|
+
"""
|
8571
8577
|
kms_key_self_link: NotRequired[pulumi.Input[str]]
|
8572
8578
|
"""
|
8573
8579
|
The self_link of the encryption key that is
|
@@ -8596,6 +8602,7 @@ class InstanceBootDiskArgs:
|
|
8596
8602
|
disk_encryption_key_raw: Optional[pulumi.Input[str]] = None,
|
8597
8603
|
disk_encryption_key_sha256: Optional[pulumi.Input[str]] = None,
|
8598
8604
|
initialize_params: Optional[pulumi.Input['InstanceBootDiskInitializeParamsArgs']] = None,
|
8605
|
+
interface: Optional[pulumi.Input[str]] = None,
|
8599
8606
|
kms_key_self_link: Optional[pulumi.Input[str]] = None,
|
8600
8607
|
mode: Optional[pulumi.Input[str]] = None,
|
8601
8608
|
source: Optional[pulumi.Input[str]] = None):
|
@@ -8615,6 +8622,7 @@ class InstanceBootDiskArgs:
|
|
8615
8622
|
:param pulumi.Input['InstanceBootDiskInitializeParamsArgs'] initialize_params: Parameters for a new disk that will be created
|
8616
8623
|
alongside the new instance. Either `initialize_params` or `source` must be set.
|
8617
8624
|
Structure is documented below.
|
8625
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
8618
8626
|
:param pulumi.Input[str] kms_key_self_link: The self_link of the encryption key that is
|
8619
8627
|
stored in Google Cloud KMS to encrypt this disk. Only one of `kms_key_self_link`
|
8620
8628
|
and `disk_encryption_key_raw` may be set.
|
@@ -8634,6 +8642,8 @@ class InstanceBootDiskArgs:
|
|
8634
8642
|
pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
|
8635
8643
|
if initialize_params is not None:
|
8636
8644
|
pulumi.set(__self__, "initialize_params", initialize_params)
|
8645
|
+
if interface is not None:
|
8646
|
+
pulumi.set(__self__, "interface", interface)
|
8637
8647
|
if kms_key_self_link is not None:
|
8638
8648
|
pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
|
8639
8649
|
if mode is not None:
|
@@ -8711,6 +8721,18 @@ class InstanceBootDiskArgs:
|
|
8711
8721
|
def initialize_params(self, value: Optional[pulumi.Input['InstanceBootDiskInitializeParamsArgs']]):
|
8712
8722
|
pulumi.set(self, "initialize_params", value)
|
8713
8723
|
|
8724
|
+
@property
|
8725
|
+
@pulumi.getter
|
8726
|
+
def interface(self) -> Optional[pulumi.Input[str]]:
|
8727
|
+
"""
|
8728
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
8729
|
+
"""
|
8730
|
+
return pulumi.get(self, "interface")
|
8731
|
+
|
8732
|
+
@interface.setter
|
8733
|
+
def interface(self, value: Optional[pulumi.Input[str]]):
|
8734
|
+
pulumi.set(self, "interface", value)
|
8735
|
+
|
8714
8736
|
@property
|
8715
8737
|
@pulumi.getter(name="kmsKeySelfLink")
|
8716
8738
|
def kms_key_self_link(self) -> Optional[pulumi.Input[str]]:
|
@@ -9300,6 +9322,10 @@ if not MYPY:
|
|
9300
9322
|
"""
|
9301
9323
|
Parameters with which a disk was created alongside the instance.
|
9302
9324
|
"""
|
9325
|
+
interface: NotRequired[pulumi.Input[str]]
|
9326
|
+
"""
|
9327
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
9328
|
+
"""
|
9303
9329
|
kms_key_self_link: NotRequired[pulumi.Input[str]]
|
9304
9330
|
"""
|
9305
9331
|
The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
@@ -9323,6 +9349,7 @@ class InstanceFromMachineImageBootDiskArgs:
|
|
9323
9349
|
disk_encryption_key_raw: Optional[pulumi.Input[str]] = None,
|
9324
9350
|
disk_encryption_key_sha256: Optional[pulumi.Input[str]] = None,
|
9325
9351
|
initialize_params: Optional[pulumi.Input['InstanceFromMachineImageBootDiskInitializeParamsArgs']] = None,
|
9352
|
+
interface: Optional[pulumi.Input[str]] = None,
|
9326
9353
|
kms_key_self_link: Optional[pulumi.Input[str]] = None,
|
9327
9354
|
mode: Optional[pulumi.Input[str]] = None,
|
9328
9355
|
source: Optional[pulumi.Input[str]] = None):
|
@@ -9332,6 +9359,7 @@ class InstanceFromMachineImageBootDiskArgs:
|
|
9332
9359
|
:param pulumi.Input[str] disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
9333
9360
|
:param pulumi.Input[str] disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
|
9334
9361
|
:param pulumi.Input['InstanceFromMachineImageBootDiskInitializeParamsArgs'] initialize_params: Parameters with which a disk was created alongside the instance.
|
9362
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
9335
9363
|
:param pulumi.Input[str] kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
9336
9364
|
:param pulumi.Input[str] mode: Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
|
9337
9365
|
:param pulumi.Input[str] source: The name or self_link of the disk attached to this instance.
|
@@ -9346,6 +9374,8 @@ class InstanceFromMachineImageBootDiskArgs:
|
|
9346
9374
|
pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
|
9347
9375
|
if initialize_params is not None:
|
9348
9376
|
pulumi.set(__self__, "initialize_params", initialize_params)
|
9377
|
+
if interface is not None:
|
9378
|
+
pulumi.set(__self__, "interface", interface)
|
9349
9379
|
if kms_key_self_link is not None:
|
9350
9380
|
pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
|
9351
9381
|
if mode is not None:
|
@@ -9413,6 +9443,18 @@ class InstanceFromMachineImageBootDiskArgs:
|
|
9413
9443
|
def initialize_params(self, value: Optional[pulumi.Input['InstanceFromMachineImageBootDiskInitializeParamsArgs']]):
|
9414
9444
|
pulumi.set(self, "initialize_params", value)
|
9415
9445
|
|
9446
|
+
@property
|
9447
|
+
@pulumi.getter
|
9448
|
+
def interface(self) -> Optional[pulumi.Input[str]]:
|
9449
|
+
"""
|
9450
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
9451
|
+
"""
|
9452
|
+
return pulumi.get(self, "interface")
|
9453
|
+
|
9454
|
+
@interface.setter
|
9455
|
+
def interface(self, value: Optional[pulumi.Input[str]]):
|
9456
|
+
pulumi.set(self, "interface", value)
|
9457
|
+
|
9416
9458
|
@property
|
9417
9459
|
@pulumi.getter(name="kmsKeySelfLink")
|
9418
9460
|
def kms_key_self_link(self) -> Optional[pulumi.Input[str]]:
|
@@ -11386,6 +11428,10 @@ if not MYPY:
|
|
11386
11428
|
"""
|
11387
11429
|
Parameters with which a disk was created alongside the instance.
|
11388
11430
|
"""
|
11431
|
+
interface: NotRequired[pulumi.Input[str]]
|
11432
|
+
"""
|
11433
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
11434
|
+
"""
|
11389
11435
|
kms_key_self_link: NotRequired[pulumi.Input[str]]
|
11390
11436
|
"""
|
11391
11437
|
The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
@@ -11409,6 +11455,7 @@ class InstanceFromTemplateBootDiskArgs:
|
|
11409
11455
|
disk_encryption_key_raw: Optional[pulumi.Input[str]] = None,
|
11410
11456
|
disk_encryption_key_sha256: Optional[pulumi.Input[str]] = None,
|
11411
11457
|
initialize_params: Optional[pulumi.Input['InstanceFromTemplateBootDiskInitializeParamsArgs']] = None,
|
11458
|
+
interface: Optional[pulumi.Input[str]] = None,
|
11412
11459
|
kms_key_self_link: Optional[pulumi.Input[str]] = None,
|
11413
11460
|
mode: Optional[pulumi.Input[str]] = None,
|
11414
11461
|
source: Optional[pulumi.Input[str]] = None):
|
@@ -11418,6 +11465,7 @@ class InstanceFromTemplateBootDiskArgs:
|
|
11418
11465
|
:param pulumi.Input[str] disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
11419
11466
|
:param pulumi.Input[str] disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
|
11420
11467
|
:param pulumi.Input['InstanceFromTemplateBootDiskInitializeParamsArgs'] initialize_params: Parameters with which a disk was created alongside the instance.
|
11468
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
11421
11469
|
:param pulumi.Input[str] kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
|
11422
11470
|
:param pulumi.Input[str] mode: Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
|
11423
11471
|
:param pulumi.Input[str] source: The name or self_link of the disk attached to this instance.
|
@@ -11432,6 +11480,8 @@ class InstanceFromTemplateBootDiskArgs:
|
|
11432
11480
|
pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
|
11433
11481
|
if initialize_params is not None:
|
11434
11482
|
pulumi.set(__self__, "initialize_params", initialize_params)
|
11483
|
+
if interface is not None:
|
11484
|
+
pulumi.set(__self__, "interface", interface)
|
11435
11485
|
if kms_key_self_link is not None:
|
11436
11486
|
pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
|
11437
11487
|
if mode is not None:
|
@@ -11499,6 +11549,18 @@ class InstanceFromTemplateBootDiskArgs:
|
|
11499
11549
|
def initialize_params(self, value: Optional[pulumi.Input['InstanceFromTemplateBootDiskInitializeParamsArgs']]):
|
11500
11550
|
pulumi.set(self, "initialize_params", value)
|
11501
11551
|
|
11552
|
+
@property
|
11553
|
+
@pulumi.getter
|
11554
|
+
def interface(self) -> Optional[pulumi.Input[str]]:
|
11555
|
+
"""
|
11556
|
+
The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
|
11557
|
+
"""
|
11558
|
+
return pulumi.get(self, "interface")
|
11559
|
+
|
11560
|
+
@interface.setter
|
11561
|
+
def interface(self, value: Optional[pulumi.Input[str]]):
|
11562
|
+
pulumi.set(self, "interface", value)
|
11563
|
+
|
11502
11564
|
@property
|
11503
11565
|
@pulumi.getter(name="kmsKeySelfLink")
|
11504
11566
|
def kms_key_self_link(self) -> Optional[pulumi.Input[str]]:
|
@@ -14649,7 +14711,7 @@ if not MYPY:
|
|
14649
14711
|
subnetwork_project: NotRequired[pulumi.Input[str]]
|
14650
14712
|
"""
|
14651
14713
|
The project in which the subnetwork belongs.
|
14652
|
-
If the `subnetwork` is a self_link, this field is
|
14714
|
+
If the `subnetwork` is a self_link, this field is set to the project
|
14653
14715
|
defined in the subnetwork self_link. If the `subnetwork` is a name and this
|
14654
14716
|
field is not provided, the provider project is used.
|
14655
14717
|
"""
|
@@ -14707,7 +14769,7 @@ class InstanceNetworkInterfaceArgs:
|
|
14707
14769
|
network is in auto subnet mode, specifying the subnetwork is optional. If the network is
|
14708
14770
|
in custom subnet mode, specifying the subnetwork is required.
|
14709
14771
|
:param pulumi.Input[str] subnetwork_project: The project in which the subnetwork belongs.
|
14710
|
-
If the `subnetwork` is a self_link, this field is
|
14772
|
+
If the `subnetwork` is a self_link, this field is set to the project
|
14711
14773
|
defined in the subnetwork self_link. If the `subnetwork` is a name and this
|
14712
14774
|
field is not provided, the provider project is used.
|
14713
14775
|
"""
|
@@ -14944,7 +15006,7 @@ class InstanceNetworkInterfaceArgs:
|
|
14944
15006
|
def subnetwork_project(self) -> Optional[pulumi.Input[str]]:
|
14945
15007
|
"""
|
14946
15008
|
The project in which the subnetwork belongs.
|
14947
|
-
If the `subnetwork` is a self_link, this field is
|
15009
|
+
If the `subnetwork` is a self_link, this field is set to the project
|
14948
15010
|
defined in the subnetwork self_link. If the `subnetwork` is a name and this
|
14949
15011
|
field is not provided, the provider project is used.
|
14950
15012
|
"""
|
@@ -20142,6 +20204,64 @@ class NodeGroupShareSettingsProjectMapArgs:
|
|
20142
20204
|
pulumi.set(self, "project_id", value)
|
20143
20205
|
|
20144
20206
|
|
20207
|
+
if not MYPY:
|
20208
|
+
class NodeTemplateAcceleratorArgsDict(TypedDict):
|
20209
|
+
accelerator_count: NotRequired[pulumi.Input[int]]
|
20210
|
+
"""
|
20211
|
+
The number of the guest accelerator cards exposed to this
|
20212
|
+
node template.
|
20213
|
+
"""
|
20214
|
+
accelerator_type: NotRequired[pulumi.Input[str]]
|
20215
|
+
"""
|
20216
|
+
Full or partial URL of the accelerator type resource to expose
|
20217
|
+
to this node template.
|
20218
|
+
"""
|
20219
|
+
elif False:
|
20220
|
+
NodeTemplateAcceleratorArgsDict: TypeAlias = Mapping[str, Any]
|
20221
|
+
|
20222
|
+
@pulumi.input_type
|
20223
|
+
class NodeTemplateAcceleratorArgs:
|
20224
|
+
def __init__(__self__, *,
|
20225
|
+
accelerator_count: Optional[pulumi.Input[int]] = None,
|
20226
|
+
accelerator_type: Optional[pulumi.Input[str]] = None):
|
20227
|
+
"""
|
20228
|
+
:param pulumi.Input[int] accelerator_count: The number of the guest accelerator cards exposed to this
|
20229
|
+
node template.
|
20230
|
+
:param pulumi.Input[str] accelerator_type: Full or partial URL of the accelerator type resource to expose
|
20231
|
+
to this node template.
|
20232
|
+
"""
|
20233
|
+
if accelerator_count is not None:
|
20234
|
+
pulumi.set(__self__, "accelerator_count", accelerator_count)
|
20235
|
+
if accelerator_type is not None:
|
20236
|
+
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
20237
|
+
|
20238
|
+
@property
|
20239
|
+
@pulumi.getter(name="acceleratorCount")
|
20240
|
+
def accelerator_count(self) -> Optional[pulumi.Input[int]]:
|
20241
|
+
"""
|
20242
|
+
The number of the guest accelerator cards exposed to this
|
20243
|
+
node template.
|
20244
|
+
"""
|
20245
|
+
return pulumi.get(self, "accelerator_count")
|
20246
|
+
|
20247
|
+
@accelerator_count.setter
|
20248
|
+
def accelerator_count(self, value: Optional[pulumi.Input[int]]):
|
20249
|
+
pulumi.set(self, "accelerator_count", value)
|
20250
|
+
|
20251
|
+
@property
|
20252
|
+
@pulumi.getter(name="acceleratorType")
|
20253
|
+
def accelerator_type(self) -> Optional[pulumi.Input[str]]:
|
20254
|
+
"""
|
20255
|
+
Full or partial URL of the accelerator type resource to expose
|
20256
|
+
to this node template.
|
20257
|
+
"""
|
20258
|
+
return pulumi.get(self, "accelerator_type")
|
20259
|
+
|
20260
|
+
@accelerator_type.setter
|
20261
|
+
def accelerator_type(self, value: Optional[pulumi.Input[str]]):
|
20262
|
+
pulumi.set(self, "accelerator_type", value)
|
20263
|
+
|
20264
|
+
|
20145
20265
|
if not MYPY:
|
20146
20266
|
class NodeTemplateNodeTypeFlexibilityArgsDict(TypedDict):
|
20147
20267
|
cpus: NotRequired[pulumi.Input[str]]
|