pulumi-gcp 8.33.0a1749001887__py3-none-any.whl → 8.34.0a1749484438__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. pulumi_gcp/__init__.py +8 -0
  2. pulumi_gcp/bigquery/__init__.py +1 -0
  3. pulumi_gcp/bigquery/get_datasets.py +131 -0
  4. pulumi_gcp/bigquery/outputs.py +52 -0
  5. pulumi_gcp/colab/_inputs.py +14 -1
  6. pulumi_gcp/colab/outputs.py +8 -1
  7. pulumi_gcp/colab/runtime_template.py +1 -1
  8. pulumi_gcp/compute/_inputs.py +278 -3
  9. pulumi_gcp/compute/backend_service.py +18 -2
  10. pulumi_gcp/compute/get_region_instance_template.py +12 -1
  11. pulumi_gcp/compute/get_router_nat.py +23 -1
  12. pulumi_gcp/compute/interconnect_attachment.py +276 -0
  13. pulumi_gcp/compute/outputs.py +234 -2
  14. pulumi_gcp/compute/region_instance_template.py +28 -0
  15. pulumi_gcp/compute/router_nat.py +143 -0
  16. pulumi_gcp/compute/url_map.py +338 -0
  17. pulumi_gcp/container/_inputs.py +6 -6
  18. pulumi_gcp/container/outputs.py +4 -4
  19. pulumi_gcp/dataplex/__init__.py +1 -0
  20. pulumi_gcp/dataplex/_inputs.py +472 -0
  21. pulumi_gcp/dataplex/entry.py +1038 -0
  22. pulumi_gcp/dataplex/outputs.py +342 -0
  23. pulumi_gcp/datastream/_inputs.py +48 -6
  24. pulumi_gcp/datastream/outputs.py +46 -4
  25. pulumi_gcp/datastream/private_connection.py +205 -35
  26. pulumi_gcp/dns/_inputs.py +73 -0
  27. pulumi_gcp/dns/outputs.py +60 -0
  28. pulumi_gcp/dns/policy.py +54 -0
  29. pulumi_gcp/filestore/_inputs.py +44 -1
  30. pulumi_gcp/filestore/instance.py +7 -7
  31. pulumi_gcp/filestore/outputs.py +52 -2
  32. pulumi_gcp/memorystore/_inputs.py +6 -6
  33. pulumi_gcp/memorystore/outputs.py +8 -8
  34. pulumi_gcp/netapp/_inputs.py +113 -0
  35. pulumi_gcp/netapp/backup_vault.py +56 -0
  36. pulumi_gcp/netapp/outputs.py +92 -0
  37. pulumi_gcp/networkconnectivity/_inputs.py +9 -9
  38. pulumi_gcp/networkconnectivity/outputs.py +6 -6
  39. pulumi_gcp/pulumi-plugin.json +1 -1
  40. pulumi_gcp/redis/_inputs.py +3 -6
  41. pulumi_gcp/redis/outputs.py +2 -4
  42. pulumi_gcp/storage/bucket_object.py +4 -4
  43. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/RECORD +46 -44
  45. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/WHEEL +0 -0
  46. {pulumi_gcp-8.33.0a1749001887.dist-info → pulumi_gcp-8.34.0a1749484438.dist-info}/top_level.txt +0 -0
@@ -1452,6 +1452,175 @@ class URLMap(pulumi.CustomResource):
1452
1452
  }],
1453
1453
  }])
1454
1454
  ```
1455
+ ### Url Map Http Filter Configs
1456
+
1457
+ ```python
1458
+ import pulumi
1459
+ import json
1460
+ import pulumi_gcp as gcp
1461
+
1462
+ default_health_check = gcp.compute.HealthCheck("default",
1463
+ name="health-check",
1464
+ http_health_check={
1465
+ "port": 80,
1466
+ })
1467
+ default = gcp.compute.BackendService("default",
1468
+ name="default-backend",
1469
+ port_name="http",
1470
+ protocol="HTTP",
1471
+ timeout_sec=10,
1472
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
1473
+ health_checks=default_health_check.id)
1474
+ service_a = gcp.compute.BackendService("service-a",
1475
+ name="service-a-backend",
1476
+ port_name="http",
1477
+ protocol="HTTP",
1478
+ timeout_sec=10,
1479
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
1480
+ health_checks=default_health_check.id)
1481
+ urlmap = gcp.compute.URLMap("urlmap",
1482
+ name="urlmap",
1483
+ description="Test for httpFilterConfigs in route rules",
1484
+ default_service=default.id,
1485
+ host_rules=[{
1486
+ "hosts": ["mysite.com"],
1487
+ "path_matcher": "allpaths",
1488
+ }],
1489
+ path_matchers=[{
1490
+ "name": "allpaths",
1491
+ "default_service": default.id,
1492
+ "route_rules": [{
1493
+ "priority": 1,
1494
+ "service": service_a.id,
1495
+ "match_rules": [{
1496
+ "prefix_match": "/",
1497
+ "ignore_case": True,
1498
+ }],
1499
+ "http_filter_configs": [{
1500
+ "filter_name": "envoy.wasm",
1501
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
1502
+ "config": json.dumps({
1503
+ "name": "my-filter",
1504
+ "root_id": "my_root_id",
1505
+ "vm_config": {
1506
+ "vm_id": "my_vm_id",
1507
+ "runtime": "envoy.wasm.runtime.v8",
1508
+ "code": {
1509
+ "local": {
1510
+ "inline_string": "const WASM_BINARY = '...'",
1511
+ },
1512
+ },
1513
+ },
1514
+ }),
1515
+ }],
1516
+ }],
1517
+ }],
1518
+ tests=[{
1519
+ "service": default.id,
1520
+ "host": "mysite.com",
1521
+ "path": "/",
1522
+ }])
1523
+ ```
1524
+ ### Url Map Http Filter Metadata
1525
+
1526
+ ```python
1527
+ import pulumi
1528
+ import json
1529
+ import pulumi_gcp as gcp
1530
+
1531
+ default_health_check = gcp.compute.HealthCheck("default",
1532
+ name="health-check",
1533
+ http_health_check={
1534
+ "port": 80,
1535
+ })
1536
+ default = gcp.compute.BackendService("default",
1537
+ name="default-backend",
1538
+ port_name="http",
1539
+ protocol="HTTP",
1540
+ timeout_sec=10,
1541
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
1542
+ health_checks=default_health_check.id)
1543
+ service_a = gcp.compute.BackendService("service-a",
1544
+ name="service-a-backend",
1545
+ port_name="http",
1546
+ protocol="HTTP",
1547
+ timeout_sec=10,
1548
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
1549
+ health_checks=default_health_check.id)
1550
+ service_b = gcp.compute.BackendService("service-b",
1551
+ name="service-b-backend",
1552
+ port_name="http",
1553
+ protocol="HTTP",
1554
+ timeout_sec=10,
1555
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
1556
+ health_checks=default_health_check.id)
1557
+ urlmap = gcp.compute.URLMap("urlmap",
1558
+ name="urlmap",
1559
+ description="Test for httpFilterMetadata in route rules",
1560
+ default_service=default.id,
1561
+ host_rules=[{
1562
+ "hosts": ["mysite.com"],
1563
+ "path_matcher": "allpaths",
1564
+ }],
1565
+ path_matchers=[{
1566
+ "name": "allpaths",
1567
+ "default_service": default.id,
1568
+ "route_rules": [
1569
+ {
1570
+ "priority": 1,
1571
+ "service": service_a.id,
1572
+ "match_rules": [{
1573
+ "prefix_match": "/",
1574
+ "ignore_case": True,
1575
+ }],
1576
+ "http_filter_metadatas": [{
1577
+ "filter_name": "envoy.wasm",
1578
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
1579
+ "config": json.dumps({
1580
+ "fields": {
1581
+ "timeout": {
1582
+ "string_value": "30s",
1583
+ },
1584
+ "retries": {
1585
+ "number_value": 3,
1586
+ },
1587
+ "debug": {
1588
+ "bool_value": True,
1589
+ },
1590
+ },
1591
+ }),
1592
+ }],
1593
+ },
1594
+ {
1595
+ "priority": 2,
1596
+ "service": service_b.id,
1597
+ "match_rules": [{
1598
+ "prefix_match": "/api",
1599
+ "ignore_case": True,
1600
+ }],
1601
+ "http_filter_metadatas": [{
1602
+ "filter_name": "envoy.rate_limit",
1603
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
1604
+ "config": json.dumps({
1605
+ "fields": {
1606
+ "requests_per_unit": {
1607
+ "number_value": 100,
1608
+ },
1609
+ "unit": {
1610
+ "string_value": "MINUTE",
1611
+ },
1612
+ },
1613
+ }),
1614
+ }],
1615
+ },
1616
+ ],
1617
+ }],
1618
+ tests=[{
1619
+ "service": default.id,
1620
+ "host": "mysite.com",
1621
+ "path": "/",
1622
+ }])
1623
+ ```
1455
1624
 
1456
1625
  ## Import
1457
1626
 
@@ -2376,6 +2545,175 @@ class URLMap(pulumi.CustomResource):
2376
2545
  }],
2377
2546
  }])
2378
2547
  ```
2548
+ ### Url Map Http Filter Configs
2549
+
2550
+ ```python
2551
+ import pulumi
2552
+ import json
2553
+ import pulumi_gcp as gcp
2554
+
2555
+ default_health_check = gcp.compute.HealthCheck("default",
2556
+ name="health-check",
2557
+ http_health_check={
2558
+ "port": 80,
2559
+ })
2560
+ default = gcp.compute.BackendService("default",
2561
+ name="default-backend",
2562
+ port_name="http",
2563
+ protocol="HTTP",
2564
+ timeout_sec=10,
2565
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
2566
+ health_checks=default_health_check.id)
2567
+ service_a = gcp.compute.BackendService("service-a",
2568
+ name="service-a-backend",
2569
+ port_name="http",
2570
+ protocol="HTTP",
2571
+ timeout_sec=10,
2572
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
2573
+ health_checks=default_health_check.id)
2574
+ urlmap = gcp.compute.URLMap("urlmap",
2575
+ name="urlmap",
2576
+ description="Test for httpFilterConfigs in route rules",
2577
+ default_service=default.id,
2578
+ host_rules=[{
2579
+ "hosts": ["mysite.com"],
2580
+ "path_matcher": "allpaths",
2581
+ }],
2582
+ path_matchers=[{
2583
+ "name": "allpaths",
2584
+ "default_service": default.id,
2585
+ "route_rules": [{
2586
+ "priority": 1,
2587
+ "service": service_a.id,
2588
+ "match_rules": [{
2589
+ "prefix_match": "/",
2590
+ "ignore_case": True,
2591
+ }],
2592
+ "http_filter_configs": [{
2593
+ "filter_name": "envoy.wasm",
2594
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
2595
+ "config": json.dumps({
2596
+ "name": "my-filter",
2597
+ "root_id": "my_root_id",
2598
+ "vm_config": {
2599
+ "vm_id": "my_vm_id",
2600
+ "runtime": "envoy.wasm.runtime.v8",
2601
+ "code": {
2602
+ "local": {
2603
+ "inline_string": "const WASM_BINARY = '...'",
2604
+ },
2605
+ },
2606
+ },
2607
+ }),
2608
+ }],
2609
+ }],
2610
+ }],
2611
+ tests=[{
2612
+ "service": default.id,
2613
+ "host": "mysite.com",
2614
+ "path": "/",
2615
+ }])
2616
+ ```
2617
+ ### Url Map Http Filter Metadata
2618
+
2619
+ ```python
2620
+ import pulumi
2621
+ import json
2622
+ import pulumi_gcp as gcp
2623
+
2624
+ default_health_check = gcp.compute.HealthCheck("default",
2625
+ name="health-check",
2626
+ http_health_check={
2627
+ "port": 80,
2628
+ })
2629
+ default = gcp.compute.BackendService("default",
2630
+ name="default-backend",
2631
+ port_name="http",
2632
+ protocol="HTTP",
2633
+ timeout_sec=10,
2634
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
2635
+ health_checks=default_health_check.id)
2636
+ service_a = gcp.compute.BackendService("service-a",
2637
+ name="service-a-backend",
2638
+ port_name="http",
2639
+ protocol="HTTP",
2640
+ timeout_sec=10,
2641
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
2642
+ health_checks=default_health_check.id)
2643
+ service_b = gcp.compute.BackendService("service-b",
2644
+ name="service-b-backend",
2645
+ port_name="http",
2646
+ protocol="HTTP",
2647
+ timeout_sec=10,
2648
+ load_balancing_scheme="INTERNAL_SELF_MANAGED",
2649
+ health_checks=default_health_check.id)
2650
+ urlmap = gcp.compute.URLMap("urlmap",
2651
+ name="urlmap",
2652
+ description="Test for httpFilterMetadata in route rules",
2653
+ default_service=default.id,
2654
+ host_rules=[{
2655
+ "hosts": ["mysite.com"],
2656
+ "path_matcher": "allpaths",
2657
+ }],
2658
+ path_matchers=[{
2659
+ "name": "allpaths",
2660
+ "default_service": default.id,
2661
+ "route_rules": [
2662
+ {
2663
+ "priority": 1,
2664
+ "service": service_a.id,
2665
+ "match_rules": [{
2666
+ "prefix_match": "/",
2667
+ "ignore_case": True,
2668
+ }],
2669
+ "http_filter_metadatas": [{
2670
+ "filter_name": "envoy.wasm",
2671
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
2672
+ "config": json.dumps({
2673
+ "fields": {
2674
+ "timeout": {
2675
+ "string_value": "30s",
2676
+ },
2677
+ "retries": {
2678
+ "number_value": 3,
2679
+ },
2680
+ "debug": {
2681
+ "bool_value": True,
2682
+ },
2683
+ },
2684
+ }),
2685
+ }],
2686
+ },
2687
+ {
2688
+ "priority": 2,
2689
+ "service": service_b.id,
2690
+ "match_rules": [{
2691
+ "prefix_match": "/api",
2692
+ "ignore_case": True,
2693
+ }],
2694
+ "http_filter_metadatas": [{
2695
+ "filter_name": "envoy.rate_limit",
2696
+ "config_type_url": "type.googleapis.com/google.protobuf.Struct",
2697
+ "config": json.dumps({
2698
+ "fields": {
2699
+ "requests_per_unit": {
2700
+ "number_value": 100,
2701
+ },
2702
+ "unit": {
2703
+ "string_value": "MINUTE",
2704
+ },
2705
+ },
2706
+ }),
2707
+ }],
2708
+ },
2709
+ ],
2710
+ }],
2711
+ tests=[{
2712
+ "service": default.id,
2713
+ "host": "mysite.com",
2714
+ "path": "/",
2715
+ }])
2716
+ ```
2379
2717
 
2380
2718
  ## Import
2381
2719
 
@@ -8501,7 +8501,7 @@ if not MYPY:
8501
8501
  disk_type: NotRequired[pulumi.Input[builtins.str]]
8502
8502
  """
8503
8503
  Type of the disk attached to each node
8504
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
8504
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
8505
8505
  """
8506
8506
  effective_taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigEffectiveTaintArgsDict']]]]
8507
8507
  """
@@ -8777,7 +8777,7 @@ class ClusterNodeConfigArgs:
8777
8777
  :param pulumi.Input[builtins.int] disk_size_gb: Size of the disk attached to each node, specified
8778
8778
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
8779
8779
  :param pulumi.Input[builtins.str] disk_type: Type of the disk attached to each node
8780
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
8780
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
8781
8781
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
8782
8782
  :param pulumi.Input[builtins.bool] enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
8783
8783
  :param pulumi.Input['ClusterNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -9034,7 +9034,7 @@ class ClusterNodeConfigArgs:
9034
9034
  def disk_type(self) -> Optional[pulumi.Input[builtins.str]]:
9035
9035
  """
9036
9036
  Type of the disk attached to each node
9037
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
9037
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
9038
9038
  """
9039
9039
  return pulumi.get(self, "disk_type")
9040
9040
 
@@ -12755,7 +12755,7 @@ if not MYPY:
12755
12755
  disk_type: NotRequired[pulumi.Input[builtins.str]]
12756
12756
  """
12757
12757
  Type of the disk attached to each node
12758
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
12758
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
12759
12759
  """
12760
12760
  effective_taints: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigEffectiveTaintArgsDict']]]]
12761
12761
  """
@@ -13031,7 +13031,7 @@ class ClusterNodePoolNodeConfigArgs:
13031
13031
  :param pulumi.Input[builtins.int] disk_size_gb: Size of the disk attached to each node, specified
13032
13032
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
13033
13033
  :param pulumi.Input[builtins.str] disk_type: Type of the disk attached to each node
13034
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
13034
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
13035
13035
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
13036
13036
  :param pulumi.Input[builtins.bool] enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
13037
13037
  :param pulumi.Input['ClusterNodePoolNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -13288,7 +13288,7 @@ class ClusterNodePoolNodeConfigArgs:
13288
13288
  def disk_type(self) -> Optional[pulumi.Input[builtins.str]]:
13289
13289
  """
13290
13290
  Type of the disk attached to each node
13291
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
13291
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
13292
13292
  """
13293
13293
  return pulumi.get(self, "disk_type")
13294
13294
 
@@ -7115,7 +7115,7 @@ class ClusterNodeConfig(dict):
7115
7115
  :param builtins.int disk_size_gb: Size of the disk attached to each node, specified
7116
7116
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
7117
7117
  :param builtins.str disk_type: Type of the disk attached to each node
7118
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
7118
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
7119
7119
  :param Sequence['ClusterNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
7120
7120
  :param builtins.bool enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
7121
7121
  :param 'ClusterNodeConfigEphemeralStorageConfigArgs' ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -7352,7 +7352,7 @@ class ClusterNodeConfig(dict):
7352
7352
  def disk_type(self) -> Optional[builtins.str]:
7353
7353
  """
7354
7354
  Type of the disk attached to each node
7355
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
7355
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
7356
7356
  """
7357
7357
  return pulumi.get(self, "disk_type")
7358
7358
 
@@ -10456,7 +10456,7 @@ class ClusterNodePoolNodeConfig(dict):
10456
10456
  :param builtins.int disk_size_gb: Size of the disk attached to each node, specified
10457
10457
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
10458
10458
  :param builtins.str disk_type: Type of the disk attached to each node
10459
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
10459
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
10460
10460
  :param Sequence['ClusterNodePoolNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
10461
10461
  :param builtins.bool enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
10462
10462
  :param 'ClusterNodePoolNodeConfigEphemeralStorageConfigArgs' ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -10693,7 +10693,7 @@ class ClusterNodePoolNodeConfig(dict):
10693
10693
  def disk_type(self) -> Optional[builtins.str]:
10694
10694
  """
10695
10695
  Type of the disk attached to each node
10696
- (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
10696
+ (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-balanced'
10697
10697
  """
10698
10698
  return pulumi.get(self, "disk_type")
10699
10699
 
@@ -18,6 +18,7 @@ from .datascan import *
18
18
  from .datascan_iam_binding import *
19
19
  from .datascan_iam_member import *
20
20
  from .datascan_iam_policy import *
21
+ from .entry import *
21
22
  from .entry_group import *
22
23
  from .entry_group_iam_binding import *
23
24
  from .entry_group_iam_member import *