pulumi-gcp 8.35.0a1750142992__py3-none-any.whl → 8.35.0a1750225231__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 +8 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +100 -7
- pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +35 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigqueryanalyticshub/listing.py +108 -0
- pulumi_gcp/compute/_inputs.py +2028 -175
- pulumi_gcp/compute/disk.py +7 -7
- pulumi_gcp/compute/outputs.py +1483 -110
- pulumi_gcp/compute/region_url_map.py +344 -0
- pulumi_gcp/compute/target_http_proxy.py +118 -0
- pulumi_gcp/compute/target_https_proxy.py +132 -0
- pulumi_gcp/compute/url_map.py +344 -0
- pulumi_gcp/compute/vpn_tunnel.py +178 -0
- pulumi_gcp/dataplex/__init__.py +1 -0
- pulumi_gcp/dataplex/get_data_quality_rules.py +169 -0
- pulumi_gcp/dataplex/outputs.py +420 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +939 -0
- pulumi_gcp/diagflow/cx_agent.py +34 -0
- pulumi_gcp/diagflow/cx_tool.py +899 -0
- pulumi_gcp/diagflow/outputs.py +780 -0
- 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/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +24 -1
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +15 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/netapp/_inputs.py +23 -0
- pulumi_gcp/netapp/outputs.py +16 -0
- pulumi_gcp/netapp/storage_pool.py +108 -0
- pulumi_gcp/networkconnectivity/_inputs.py +71 -1
- pulumi_gcp/networkconnectivity/outputs.py +64 -1
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/notebooks/runtime.py +4 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +77 -0
- pulumi_gcp/redis/cluster.py +32 -0
- pulumi_gcp/redis/outputs.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +99 -64
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/RECORD +52 -50
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.35.0a1750142992.dist-info → pulumi_gcp-8.35.0a1750225231.dist-info}/top_level.txt +0 -0
pulumi_gcp/firestore/field.py
CHANGED
@@ -326,7 +326,7 @@ class Field(pulumi.CustomResource):
|
|
326
326
|
basic = gcp.firestore.Field("basic",
|
327
327
|
project="my-project-name",
|
328
328
|
database=database.name,
|
329
|
-
collection="
|
329
|
+
collection="chatrooms__87786",
|
330
330
|
field="basic",
|
331
331
|
index_config={
|
332
332
|
"indexes": [
|
@@ -377,7 +377,7 @@ class Field(pulumi.CustomResource):
|
|
377
377
|
match_override = gcp.firestore.Field("match_override",
|
378
378
|
project="my-project-name",
|
379
379
|
database=database.name,
|
380
|
-
collection="
|
380
|
+
collection="chatrooms__2067",
|
381
381
|
field="field_with_same_configuration_as_ancestor",
|
382
382
|
index_config={
|
383
383
|
"indexes": [
|
@@ -409,7 +409,7 @@ class Field(pulumi.CustomResource):
|
|
409
409
|
wildcard = gcp.firestore.Field("wildcard",
|
410
410
|
project="my-project-name",
|
411
411
|
database=database.name,
|
412
|
-
collection="
|
412
|
+
collection="chatrooms__40785",
|
413
413
|
field="*",
|
414
414
|
index_config={
|
415
415
|
"indexes": [
|
@@ -494,7 +494,7 @@ class Field(pulumi.CustomResource):
|
|
494
494
|
basic = gcp.firestore.Field("basic",
|
495
495
|
project="my-project-name",
|
496
496
|
database=database.name,
|
497
|
-
collection="
|
497
|
+
collection="chatrooms__87786",
|
498
498
|
field="basic",
|
499
499
|
index_config={
|
500
500
|
"indexes": [
|
@@ -545,7 +545,7 @@ class Field(pulumi.CustomResource):
|
|
545
545
|
match_override = gcp.firestore.Field("match_override",
|
546
546
|
project="my-project-name",
|
547
547
|
database=database.name,
|
548
|
-
collection="
|
548
|
+
collection="chatrooms__2067",
|
549
549
|
field="field_with_same_configuration_as_ancestor",
|
550
550
|
index_config={
|
551
551
|
"indexes": [
|
@@ -577,7 +577,7 @@ class Field(pulumi.CustomResource):
|
|
577
577
|
wildcard = gcp.firestore.Field("wildcard",
|
578
578
|
project="my-project-name",
|
579
579
|
database=database.name,
|
580
|
-
collection="
|
580
|
+
collection="chatrooms__40785",
|
581
581
|
field="*",
|
582
582
|
index_config={
|
583
583
|
"indexes": [
|
@@ -425,16 +425,16 @@ class MembershipBinding(pulumi.CustomResource):
|
|
425
425
|
network="default",
|
426
426
|
subnetwork="default")
|
427
427
|
membership = gcp.gkehub.Membership("membership",
|
428
|
-
membership_id="tf-test-
|
428
|
+
membership_id="tf-test-membership_79169",
|
429
429
|
endpoint={
|
430
430
|
"gke_cluster": {
|
431
431
|
"resource_link": primary.id.apply(lambda id: f"//container.googleapis.com/{id}"),
|
432
432
|
},
|
433
433
|
},
|
434
434
|
opts = pulumi.ResourceOptions(depends_on=[primary]))
|
435
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
435
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_56529")
|
436
436
|
membership_binding = gcp.gkehub.MembershipBinding("membership_binding",
|
437
|
-
membership_binding_id="tf-test-membership-
|
437
|
+
membership_binding_id="tf-test-membership-binding_75413",
|
438
438
|
scope=scope.name,
|
439
439
|
membership_id=membership.membership_id,
|
440
440
|
location="global",
|
@@ -521,16 +521,16 @@ class MembershipBinding(pulumi.CustomResource):
|
|
521
521
|
network="default",
|
522
522
|
subnetwork="default")
|
523
523
|
membership = gcp.gkehub.Membership("membership",
|
524
|
-
membership_id="tf-test-
|
524
|
+
membership_id="tf-test-membership_79169",
|
525
525
|
endpoint={
|
526
526
|
"gke_cluster": {
|
527
527
|
"resource_link": primary.id.apply(lambda id: f"//container.googleapis.com/{id}"),
|
528
528
|
},
|
529
529
|
},
|
530
530
|
opts = pulumi.ResourceOptions(depends_on=[primary]))
|
531
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
531
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_56529")
|
532
532
|
membership_binding = gcp.gkehub.MembershipBinding("membership_binding",
|
533
|
-
membership_binding_id="tf-test-membership-
|
533
|
+
membership_binding_id="tf-test-membership-binding_75413",
|
534
534
|
scope=scope.name,
|
535
535
|
membership_id=membership.membership_id,
|
536
536
|
location="global",
|
@@ -358,7 +358,7 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
358
358
|
network="default",
|
359
359
|
subnetwork="default")
|
360
360
|
membership = gcp.gkehub.Membership("membership",
|
361
|
-
membership_id="tf-test-
|
361
|
+
membership_id="tf-test-membership_55138",
|
362
362
|
endpoint={
|
363
363
|
"gke_cluster": {
|
364
364
|
"resource_link": primary.id.apply(lambda id: f"//container.googleapis.com/{id}"),
|
@@ -367,7 +367,7 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
367
367
|
opts = pulumi.ResourceOptions(depends_on=[primary]))
|
368
368
|
project = gcp.organizations.get_project()
|
369
369
|
membership_rbac_role_binding = gcp.gkehub.MembershipRbacRoleBinding("membership_rbac_role_binding",
|
370
|
-
membership_rbac_role_binding_id="tf-test-membership-rbac-role-
|
370
|
+
membership_rbac_role_binding_id="tf-test-membership-rbac-role-binding_37559",
|
371
371
|
membership_id=membership.membership_id,
|
372
372
|
user=f"service-{project.number}@gcp-sa-anthossupport.iam.gserviceaccount.com",
|
373
373
|
role={
|
@@ -436,7 +436,7 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
436
436
|
network="default",
|
437
437
|
subnetwork="default")
|
438
438
|
membership = gcp.gkehub.Membership("membership",
|
439
|
-
membership_id="tf-test-
|
439
|
+
membership_id="tf-test-membership_55138",
|
440
440
|
endpoint={
|
441
441
|
"gke_cluster": {
|
442
442
|
"resource_link": primary.id.apply(lambda id: f"//container.googleapis.com/{id}"),
|
@@ -445,7 +445,7 @@ class MembershipRbacRoleBinding(pulumi.CustomResource):
|
|
445
445
|
opts = pulumi.ResourceOptions(depends_on=[primary]))
|
446
446
|
project = gcp.organizations.get_project()
|
447
447
|
membership_rbac_role_binding = gcp.gkehub.MembershipRbacRoleBinding("membership_rbac_role_binding",
|
448
|
-
membership_rbac_role_binding_id="tf-test-membership-rbac-role-
|
448
|
+
membership_rbac_role_binding_id="tf-test-membership-rbac-role-binding_37559",
|
449
449
|
membership_id=membership.membership_id,
|
450
450
|
user=f"service-{project.number}@gcp-sa-anthossupport.iam.gserviceaccount.com",
|
451
451
|
role={
|
pulumi_gcp/gkehub/namespace.py
CHANGED
@@ -430,9 +430,9 @@ class Namespace(pulumi.CustomResource):
|
|
430
430
|
import pulumi
|
431
431
|
import pulumi_gcp as gcp
|
432
432
|
|
433
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
433
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_91980")
|
434
434
|
namespace = gcp.gkehub.Namespace("namespace",
|
435
|
-
scope_namespace_id="tf-test-
|
435
|
+
scope_namespace_id="tf-test-namespace_37118",
|
436
436
|
scope_id=scope.scope_id,
|
437
437
|
scope=scope.name,
|
438
438
|
namespace_labels={
|
@@ -515,9 +515,9 @@ class Namespace(pulumi.CustomResource):
|
|
515
515
|
import pulumi
|
516
516
|
import pulumi_gcp as gcp
|
517
517
|
|
518
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
518
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_91980")
|
519
519
|
namespace = gcp.gkehub.Namespace("namespace",
|
520
|
-
scope_namespace_id="tf-test-
|
520
|
+
scope_namespace_id="tf-test-namespace_37118",
|
521
521
|
scope_id=scope.scope_id,
|
522
522
|
scope=scope.name,
|
523
523
|
namespace_labels={
|
@@ -431,9 +431,9 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
431
431
|
import pulumi
|
432
432
|
import pulumi_gcp as gcp
|
433
433
|
|
434
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
434
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_80332")
|
435
435
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
436
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
436
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_13293",
|
437
437
|
scope_id=scope.scope_id,
|
438
438
|
user="test-email@gmail.com",
|
439
439
|
role={
|
@@ -449,7 +449,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
449
449
|
import pulumi
|
450
450
|
import pulumi_gcp as gcp
|
451
451
|
|
452
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
452
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_40289")
|
453
453
|
rbacrolebindingactuation = gcp.gkehub.Feature("rbacrolebindingactuation",
|
454
454
|
name="rbacrolebindingactuation",
|
455
455
|
location="global",
|
@@ -459,7 +459,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
459
459
|
},
|
460
460
|
})
|
461
461
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
462
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
462
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_33395",
|
463
463
|
scope_id=scope.scope_id,
|
464
464
|
user="test-email@gmail.com",
|
465
465
|
role={
|
@@ -532,9 +532,9 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
532
532
|
import pulumi
|
533
533
|
import pulumi_gcp as gcp
|
534
534
|
|
535
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
535
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_80332")
|
536
536
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
537
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
537
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_13293",
|
538
538
|
scope_id=scope.scope_id,
|
539
539
|
user="test-email@gmail.com",
|
540
540
|
role={
|
@@ -550,7 +550,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
550
550
|
import pulumi
|
551
551
|
import pulumi_gcp as gcp
|
552
552
|
|
553
|
-
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-
|
553
|
+
scope = gcp.gkehub.Scope("scope", scope_id="tf-test-scope_40289")
|
554
554
|
rbacrolebindingactuation = gcp.gkehub.Feature("rbacrolebindingactuation",
|
555
555
|
name="rbacrolebindingactuation",
|
556
556
|
location="global",
|
@@ -560,7 +560,7 @@ class ScopeRbacRoleBinding(pulumi.CustomResource):
|
|
560
560
|
},
|
561
561
|
})
|
562
562
|
scope_rbac_role_binding = gcp.gkehub.ScopeRbacRoleBinding("scope_rbac_role_binding",
|
563
|
-
scope_rbac_role_binding_id="tf-test-scope-rbac-role-
|
563
|
+
scope_rbac_role_binding_id="tf-test-scope-rbac-role-binding_33395",
|
564
564
|
scope_id=scope.scope_id,
|
565
565
|
user="test-email@gmail.com",
|
566
566
|
role={
|
@@ -255,7 +255,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
255
255
|
|
256
256
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
257
257
|
region="us-central1",
|
258
|
-
group_name="
|
258
|
+
group_name="testgroup_76044",
|
259
259
|
cidrs=[
|
260
260
|
"10.1.0.0/16",
|
261
261
|
"192.168.10.0/24",
|
@@ -341,7 +341,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
341
341
|
|
342
342
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
343
343
|
region="us-central1",
|
344
|
-
group_name="
|
344
|
+
group_name="testgroup_76044",
|
345
345
|
cidrs=[
|
346
346
|
"10.1.0.0/16",
|
347
347
|
"192.168.10.0/24",
|
@@ -2628,17 +2628,27 @@ if not MYPY:
|
|
2628
2628
|
"""
|
2629
2629
|
Enabled represents whether logging is enabled or not for a connection.
|
2630
2630
|
"""
|
2631
|
+
level: NotRequired[pulumi.Input[builtins.str]]
|
2632
|
+
"""
|
2633
|
+
Log configuration level.
|
2634
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `ERROR`, `INFO`, `DEBUG`.
|
2635
|
+
"""
|
2631
2636
|
elif False:
|
2632
2637
|
ConnectionLogConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2633
2638
|
|
2634
2639
|
@pulumi.input_type
|
2635
2640
|
class ConnectionLogConfigArgs:
|
2636
2641
|
def __init__(__self__, *,
|
2637
|
-
enabled: pulumi.Input[builtins.bool]
|
2642
|
+
enabled: pulumi.Input[builtins.bool],
|
2643
|
+
level: Optional[pulumi.Input[builtins.str]] = None):
|
2638
2644
|
"""
|
2639
2645
|
:param pulumi.Input[builtins.bool] enabled: Enabled represents whether logging is enabled or not for a connection.
|
2646
|
+
:param pulumi.Input[builtins.str] level: Log configuration level.
|
2647
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `ERROR`, `INFO`, `DEBUG`.
|
2640
2648
|
"""
|
2641
2649
|
pulumi.set(__self__, "enabled", enabled)
|
2650
|
+
if level is not None:
|
2651
|
+
pulumi.set(__self__, "level", level)
|
2642
2652
|
|
2643
2653
|
@property
|
2644
2654
|
@pulumi.getter
|
@@ -2652,6 +2662,19 @@ class ConnectionLogConfigArgs:
|
|
2652
2662
|
def enabled(self, value: pulumi.Input[builtins.bool]):
|
2653
2663
|
pulumi.set(self, "enabled", value)
|
2654
2664
|
|
2665
|
+
@property
|
2666
|
+
@pulumi.getter
|
2667
|
+
def level(self) -> Optional[pulumi.Input[builtins.str]]:
|
2668
|
+
"""
|
2669
|
+
Log configuration level.
|
2670
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `ERROR`, `INFO`, `DEBUG`.
|
2671
|
+
"""
|
2672
|
+
return pulumi.get(self, "level")
|
2673
|
+
|
2674
|
+
@level.setter
|
2675
|
+
def level(self, value: Optional[pulumi.Input[builtins.str]]):
|
2676
|
+
pulumi.set(self, "level", value)
|
2677
|
+
|
2655
2678
|
|
2656
2679
|
if not MYPY:
|
2657
2680
|
class ConnectionNodeConfigArgsDict(TypedDict):
|
@@ -380,8 +380,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
380
380
|
import pulumi_gcp as gcp
|
381
381
|
|
382
382
|
target_project = gcp.organizations.Project("target_project",
|
383
|
-
project_id="tf-
|
384
|
-
name="tf-
|
383
|
+
project_id="tf-test_69391",
|
384
|
+
name="tf-test_8270",
|
385
385
|
org_id="123456789",
|
386
386
|
billing_account="000000-0000000-0000000-000000",
|
387
387
|
deletion_policy="DELETE")
|
@@ -402,8 +402,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
402
402
|
auto_create_subnetworks=False,
|
403
403
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
404
404
|
zone = gcp.dns.ManagedZone("zone",
|
405
|
-
name="tf-test-
|
406
|
-
dns_name="
|
405
|
+
name="tf-test-dns_41150",
|
406
|
+
dns_name="private_89313.example.com.",
|
407
407
|
visibility="private",
|
408
408
|
private_visibility_config={
|
409
409
|
"networks": [{
|
@@ -491,8 +491,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
491
491
|
import pulumi_gcp as gcp
|
492
492
|
|
493
493
|
target_project = gcp.organizations.Project("target_project",
|
494
|
-
project_id="tf-
|
495
|
-
name="tf-
|
494
|
+
project_id="tf-test_69391",
|
495
|
+
name="tf-test_8270",
|
496
496
|
org_id="123456789",
|
497
497
|
billing_account="000000-0000000-0000000-000000",
|
498
498
|
deletion_policy="DELETE")
|
@@ -513,8 +513,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
513
513
|
auto_create_subnetworks=False,
|
514
514
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
515
515
|
zone = gcp.dns.ManagedZone("zone",
|
516
|
-
name="tf-test-
|
517
|
-
dns_name="
|
516
|
+
name="tf-test-dns_41150",
|
517
|
+
dns_name="private_89313.example.com.",
|
518
518
|
visibility="private",
|
519
519
|
private_visibility_config={
|
520
520
|
"networks": [{
|
@@ -2149,11 +2149,16 @@ class ConnectionLockConfig(dict):
|
|
2149
2149
|
@pulumi.output_type
|
2150
2150
|
class ConnectionLogConfig(dict):
|
2151
2151
|
def __init__(__self__, *,
|
2152
|
-
enabled: builtins.bool
|
2152
|
+
enabled: builtins.bool,
|
2153
|
+
level: Optional[builtins.str] = None):
|
2153
2154
|
"""
|
2154
2155
|
:param builtins.bool enabled: Enabled represents whether logging is enabled or not for a connection.
|
2156
|
+
:param builtins.str level: Log configuration level.
|
2157
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `ERROR`, `INFO`, `DEBUG`.
|
2155
2158
|
"""
|
2156
2159
|
pulumi.set(__self__, "enabled", enabled)
|
2160
|
+
if level is not None:
|
2161
|
+
pulumi.set(__self__, "level", level)
|
2157
2162
|
|
2158
2163
|
@property
|
2159
2164
|
@pulumi.getter
|
@@ -2163,6 +2168,15 @@ class ConnectionLogConfig(dict):
|
|
2163
2168
|
"""
|
2164
2169
|
return pulumi.get(self, "enabled")
|
2165
2170
|
|
2171
|
+
@property
|
2172
|
+
@pulumi.getter
|
2173
|
+
def level(self) -> Optional[builtins.str]:
|
2174
|
+
"""
|
2175
|
+
Log configuration level.
|
2176
|
+
Possible values are: `LOG_LEVEL_UNSPECIFIED`, `ERROR`, `INFO`, `DEBUG`.
|
2177
|
+
"""
|
2178
|
+
return pulumi.get(self, "level")
|
2179
|
+
|
2166
2180
|
|
2167
2181
|
@pulumi.output_type
|
2168
2182
|
class ConnectionNodeConfig(dict):
|
@@ -389,8 +389,8 @@ class ConnectCluster(pulumi.CustomResource):
|
|
389
389
|
import pulumi_time as time
|
390
390
|
|
391
391
|
project = gcp.organizations.Project("project",
|
392
|
-
project_id="tf-
|
393
|
-
name="tf-
|
392
|
+
project_id="tf-test_60646",
|
393
|
+
name="tf-test_9394",
|
394
394
|
org_id="123456789",
|
395
395
|
billing_account="000000-0000000-0000000-000000",
|
396
396
|
deletion_policy="DELETE")
|
@@ -516,8 +516,8 @@ class ConnectCluster(pulumi.CustomResource):
|
|
516
516
|
import pulumi_time as time
|
517
517
|
|
518
518
|
project = gcp.organizations.Project("project",
|
519
|
-
project_id="tf-
|
520
|
-
name="tf-
|
519
|
+
project_id="tf-test_60646",
|
520
|
+
name="tf-test_9394",
|
521
521
|
org_id="123456789",
|
522
522
|
billing_account="000000-0000000-0000000-000000",
|
523
523
|
deletion_policy="DELETE")
|
@@ -300,8 +300,8 @@ class Connector(pulumi.CustomResource):
|
|
300
300
|
import pulumi_time as time
|
301
301
|
|
302
302
|
project = gcp.organizations.Project("project",
|
303
|
-
project_id="tf-
|
304
|
-
name="tf-
|
303
|
+
project_id="tf-test_11380",
|
304
|
+
name="tf-test_35305",
|
305
305
|
org_id="123456789",
|
306
306
|
billing_account="000000-0000000-0000000-000000",
|
307
307
|
deletion_policy="DELETE")
|
@@ -459,8 +459,8 @@ class Connector(pulumi.CustomResource):
|
|
459
459
|
import pulumi_time as time
|
460
460
|
|
461
461
|
project = gcp.organizations.Project("project",
|
462
|
-
project_id="tf-
|
463
|
-
name="tf-
|
462
|
+
project_id="tf-test_11380",
|
463
|
+
name="tf-test_35305",
|
464
464
|
org_id="123456789",
|
465
465
|
billing_account="000000-0000000-0000000-000000",
|
466
466
|
deletion_policy="DELETE")
|
pulumi_gcp/netapp/_inputs.py
CHANGED
@@ -1849,6 +1849,11 @@ if not MYPY:
|
|
1849
1849
|
Optional. Time in days to mark the volume's data block as cold and make it eligible for tiering, can be range from 2-183.
|
1850
1850
|
Default is 31.
|
1851
1851
|
"""
|
1852
|
+
hot_tier_bypass_mode_enabled: NotRequired[pulumi.Input[builtins.bool]]
|
1853
|
+
"""
|
1854
|
+
Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false.
|
1855
|
+
Only applicable to Flex service level.
|
1856
|
+
"""
|
1852
1857
|
tier_action: NotRequired[pulumi.Input[builtins.str]]
|
1853
1858
|
"""
|
1854
1859
|
Optional. Flag indicating if the volume has tiering policy enable/pause. Default is PAUSED.
|
@@ -1862,16 +1867,21 @@ elif False:
|
|
1862
1867
|
class VolumeTieringPolicyArgs:
|
1863
1868
|
def __init__(__self__, *,
|
1864
1869
|
cooling_threshold_days: Optional[pulumi.Input[builtins.int]] = None,
|
1870
|
+
hot_tier_bypass_mode_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
1865
1871
|
tier_action: Optional[pulumi.Input[builtins.str]] = None):
|
1866
1872
|
"""
|
1867
1873
|
:param pulumi.Input[builtins.int] cooling_threshold_days: Optional. Time in days to mark the volume's data block as cold and make it eligible for tiering, can be range from 2-183.
|
1868
1874
|
Default is 31.
|
1875
|
+
:param pulumi.Input[builtins.bool] hot_tier_bypass_mode_enabled: Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false.
|
1876
|
+
Only applicable to Flex service level.
|
1869
1877
|
:param pulumi.Input[builtins.str] tier_action: Optional. Flag indicating if the volume has tiering policy enable/pause. Default is PAUSED.
|
1870
1878
|
Default value is `PAUSED`.
|
1871
1879
|
Possible values are: `ENABLED`, `PAUSED`.
|
1872
1880
|
"""
|
1873
1881
|
if cooling_threshold_days is not None:
|
1874
1882
|
pulumi.set(__self__, "cooling_threshold_days", cooling_threshold_days)
|
1883
|
+
if hot_tier_bypass_mode_enabled is not None:
|
1884
|
+
pulumi.set(__self__, "hot_tier_bypass_mode_enabled", hot_tier_bypass_mode_enabled)
|
1875
1885
|
if tier_action is not None:
|
1876
1886
|
pulumi.set(__self__, "tier_action", tier_action)
|
1877
1887
|
|
@@ -1888,6 +1898,19 @@ class VolumeTieringPolicyArgs:
|
|
1888
1898
|
def cooling_threshold_days(self, value: Optional[pulumi.Input[builtins.int]]):
|
1889
1899
|
pulumi.set(self, "cooling_threshold_days", value)
|
1890
1900
|
|
1901
|
+
@property
|
1902
|
+
@pulumi.getter(name="hotTierBypassModeEnabled")
|
1903
|
+
def hot_tier_bypass_mode_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
1904
|
+
"""
|
1905
|
+
Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false.
|
1906
|
+
Only applicable to Flex service level.
|
1907
|
+
"""
|
1908
|
+
return pulumi.get(self, "hot_tier_bypass_mode_enabled")
|
1909
|
+
|
1910
|
+
@hot_tier_bypass_mode_enabled.setter
|
1911
|
+
def hot_tier_bypass_mode_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
1912
|
+
pulumi.set(self, "hot_tier_bypass_mode_enabled", value)
|
1913
|
+
|
1891
1914
|
@property
|
1892
1915
|
@pulumi.getter(name="tierAction")
|
1893
1916
|
def tier_action(self) -> Optional[pulumi.Input[builtins.str]]:
|
pulumi_gcp/netapp/outputs.py
CHANGED
@@ -1449,6 +1449,8 @@ class VolumeTieringPolicy(dict):
|
|
1449
1449
|
suggest = None
|
1450
1450
|
if key == "coolingThresholdDays":
|
1451
1451
|
suggest = "cooling_threshold_days"
|
1452
|
+
elif key == "hotTierBypassModeEnabled":
|
1453
|
+
suggest = "hot_tier_bypass_mode_enabled"
|
1452
1454
|
elif key == "tierAction":
|
1453
1455
|
suggest = "tier_action"
|
1454
1456
|
|
@@ -1465,16 +1467,21 @@ class VolumeTieringPolicy(dict):
|
|
1465
1467
|
|
1466
1468
|
def __init__(__self__, *,
|
1467
1469
|
cooling_threshold_days: Optional[builtins.int] = None,
|
1470
|
+
hot_tier_bypass_mode_enabled: Optional[builtins.bool] = None,
|
1468
1471
|
tier_action: Optional[builtins.str] = None):
|
1469
1472
|
"""
|
1470
1473
|
:param builtins.int cooling_threshold_days: Optional. Time in days to mark the volume's data block as cold and make it eligible for tiering, can be range from 2-183.
|
1471
1474
|
Default is 31.
|
1475
|
+
:param builtins.bool hot_tier_bypass_mode_enabled: Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false.
|
1476
|
+
Only applicable to Flex service level.
|
1472
1477
|
:param builtins.str tier_action: Optional. Flag indicating if the volume has tiering policy enable/pause. Default is PAUSED.
|
1473
1478
|
Default value is `PAUSED`.
|
1474
1479
|
Possible values are: `ENABLED`, `PAUSED`.
|
1475
1480
|
"""
|
1476
1481
|
if cooling_threshold_days is not None:
|
1477
1482
|
pulumi.set(__self__, "cooling_threshold_days", cooling_threshold_days)
|
1483
|
+
if hot_tier_bypass_mode_enabled is not None:
|
1484
|
+
pulumi.set(__self__, "hot_tier_bypass_mode_enabled", hot_tier_bypass_mode_enabled)
|
1478
1485
|
if tier_action is not None:
|
1479
1486
|
pulumi.set(__self__, "tier_action", tier_action)
|
1480
1487
|
|
@@ -1487,6 +1494,15 @@ class VolumeTieringPolicy(dict):
|
|
1487
1494
|
"""
|
1488
1495
|
return pulumi.get(self, "cooling_threshold_days")
|
1489
1496
|
|
1497
|
+
@property
|
1498
|
+
@pulumi.getter(name="hotTierBypassModeEnabled")
|
1499
|
+
def hot_tier_bypass_mode_enabled(self) -> Optional[builtins.bool]:
|
1500
|
+
"""
|
1501
|
+
Optional. Flag indicating that the hot tier bypass mode is enabled. Default is false.
|
1502
|
+
Only applicable to Flex service level.
|
1503
|
+
"""
|
1504
|
+
return pulumi.get(self, "hot_tier_bypass_mode_enabled")
|
1505
|
+
|
1490
1506
|
@property
|
1491
1507
|
@pulumi.getter(name="tierAction")
|
1492
1508
|
def tier_action(self) -> Optional[builtins.str]:
|