pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.0a1741242890__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 (56) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/alloydb/cluster.py +148 -0
  3. pulumi_gcp/alloydb/instance.py +28 -28
  4. pulumi_gcp/apihub/__init__.py +1 -0
  5. pulumi_gcp/apihub/host_project_registration.py +535 -0
  6. pulumi_gcp/bigquery/table.py +1 -1
  7. pulumi_gcp/compute/__init__.py +5 -0
  8. pulumi_gcp/compute/_inputs.py +770 -0
  9. pulumi_gcp/compute/backend_service.py +14 -7
  10. pulumi_gcp/compute/ca_external_account_key.py +48 -3
  11. pulumi_gcp/compute/disk.py +295 -0
  12. pulumi_gcp/compute/get_disk.py +56 -1
  13. pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
  14. pulumi_gcp/compute/instant_snapshot.py +796 -0
  15. pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
  16. pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
  17. pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
  18. pulumi_gcp/compute/outputs.py +1329 -6
  19. pulumi_gcp/compute/region_backend_service.py +14 -7
  20. pulumi_gcp/compute/route.py +228 -2
  21. pulumi_gcp/compute/url_map.py +8 -0
  22. pulumi_gcp/container/_inputs.py +3 -3
  23. pulumi_gcp/container/outputs.py +4 -4
  24. pulumi_gcp/datacatalog/entry.py +4 -0
  25. pulumi_gcp/datacatalog/tag.py +4 -0
  26. pulumi_gcp/dataproc/_inputs.py +12 -15
  27. pulumi_gcp/dataproc/outputs.py +8 -10
  28. pulumi_gcp/discoveryengine/target_site.py +4 -4
  29. pulumi_gcp/eventarc/__init__.py +1 -0
  30. pulumi_gcp/eventarc/_inputs.py +40 -0
  31. pulumi_gcp/eventarc/message_bus.py +927 -0
  32. pulumi_gcp/eventarc/outputs.py +41 -0
  33. pulumi_gcp/gemini/__init__.py +1 -0
  34. pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
  35. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
  36. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
  37. pulumi_gcp/gemini/logging_setting_binding.py +7 -7
  38. pulumi_gcp/iam/_inputs.py +33 -9
  39. pulumi_gcp/iam/outputs.py +22 -6
  40. pulumi_gcp/iam/workforce_pool_provider.py +2 -2
  41. pulumi_gcp/memorystore/__init__.py +1 -0
  42. pulumi_gcp/memorystore/get_instance.py +425 -0
  43. pulumi_gcp/memorystore/outputs.py +582 -0
  44. pulumi_gcp/networkconnectivity/hub.py +84 -0
  45. pulumi_gcp/networkservices/grpc_route.py +116 -12
  46. pulumi_gcp/notebooks/location.py +4 -0
  47. pulumi_gcp/pulumi-plugin.json +1 -1
  48. pulumi_gcp/storage/__init__.py +1 -0
  49. pulumi_gcp/storage/_inputs.py +74 -0
  50. pulumi_gcp/storage/anywhere_cache.py +552 -0
  51. pulumi_gcp/storage/outputs.py +65 -0
  52. pulumi_gcp/storage/transfer_job.py +67 -0
  53. {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/METADATA +1 -1
  54. {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/RECORD +56 -46
  55. {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/WHEEL +0 -0
  56. {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0a1741242890.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py CHANGED
@@ -938,6 +938,14 @@ _utilities.register(
938
938
  "gcp:apihub/apiHubInstance:ApiHubInstance": "ApiHubInstance"
939
939
  }
940
940
  },
941
+ {
942
+ "pkg": "gcp",
943
+ "mod": "apihub/hostProjectRegistration",
944
+ "fqn": "pulumi_gcp.apihub",
945
+ "classes": {
946
+ "gcp:apihub/hostProjectRegistration:HostProjectRegistration": "HostProjectRegistration"
947
+ }
948
+ },
941
949
  {
942
950
  "pkg": "gcp",
943
951
  "mod": "appengine/application",
@@ -2834,6 +2842,38 @@ _utilities.register(
2834
2842
  "gcp:compute/instanceTemplateIamPolicy:InstanceTemplateIamPolicy": "InstanceTemplateIamPolicy"
2835
2843
  }
2836
2844
  },
2845
+ {
2846
+ "pkg": "gcp",
2847
+ "mod": "compute/instantSnapshot",
2848
+ "fqn": "pulumi_gcp.compute",
2849
+ "classes": {
2850
+ "gcp:compute/instantSnapshot:InstantSnapshot": "InstantSnapshot"
2851
+ }
2852
+ },
2853
+ {
2854
+ "pkg": "gcp",
2855
+ "mod": "compute/instantSnapshotIamBinding",
2856
+ "fqn": "pulumi_gcp.compute",
2857
+ "classes": {
2858
+ "gcp:compute/instantSnapshotIamBinding:InstantSnapshotIamBinding": "InstantSnapshotIamBinding"
2859
+ }
2860
+ },
2861
+ {
2862
+ "pkg": "gcp",
2863
+ "mod": "compute/instantSnapshotIamMember",
2864
+ "fqn": "pulumi_gcp.compute",
2865
+ "classes": {
2866
+ "gcp:compute/instantSnapshotIamMember:InstantSnapshotIamMember": "InstantSnapshotIamMember"
2867
+ }
2868
+ },
2869
+ {
2870
+ "pkg": "gcp",
2871
+ "mod": "compute/instantSnapshotIamPolicy",
2872
+ "fqn": "pulumi_gcp.compute",
2873
+ "classes": {
2874
+ "gcp:compute/instantSnapshotIamPolicy:InstantSnapshotIamPolicy": "InstantSnapshotIamPolicy"
2875
+ }
2876
+ },
2837
2877
  {
2838
2878
  "pkg": "gcp",
2839
2879
  "mod": "compute/interconnect",
@@ -4914,6 +4954,14 @@ _utilities.register(
4914
4954
  "gcp:eventarc/googleChannelConfig:GoogleChannelConfig": "GoogleChannelConfig"
4915
4955
  }
4916
4956
  },
4957
+ {
4958
+ "pkg": "gcp",
4959
+ "mod": "eventarc/messageBus",
4960
+ "fqn": "pulumi_gcp.eventarc",
4961
+ "classes": {
4962
+ "gcp:eventarc/messageBus:MessageBus": "MessageBus"
4963
+ }
4964
+ },
4917
4965
  {
4918
4966
  "pkg": "gcp",
4919
4967
  "mod": "eventarc/trigger",
@@ -5242,6 +5290,14 @@ _utilities.register(
5242
5290
  "gcp:gemini/geminiGcpEnablementSetting:GeminiGcpEnablementSetting": "GeminiGcpEnablementSetting"
5243
5291
  }
5244
5292
  },
5293
+ {
5294
+ "pkg": "gcp",
5295
+ "mod": "gemini/geminiGcpEnablementSettingBinding",
5296
+ "fqn": "pulumi_gcp.gemini",
5297
+ "classes": {
5298
+ "gcp:gemini/geminiGcpEnablementSettingBinding:GeminiGcpEnablementSettingBinding": "GeminiGcpEnablementSettingBinding"
5299
+ }
5300
+ },
5245
5301
  {
5246
5302
  "pkg": "gcp",
5247
5303
  "mod": "gemini/loggingSetting",
@@ -8442,6 +8498,14 @@ _utilities.register(
8442
8498
  "gcp:sql/user:User": "User"
8443
8499
  }
8444
8500
  },
8501
+ {
8502
+ "pkg": "gcp",
8503
+ "mod": "storage/anywhereCache",
8504
+ "fqn": "pulumi_gcp.storage",
8505
+ "classes": {
8506
+ "gcp:storage/anywhereCache:AnywhereCache": "AnywhereCache"
8507
+ }
8508
+ },
8445
8509
  {
8446
8510
  "pkg": "gcp",
8447
8511
  "mod": "storage/bucket",
@@ -1108,6 +1108,80 @@ class Cluster(pulumi.CustomResource):
1108
1108
  })
1109
1109
  project = gcp.organizations.get_project()
1110
1110
  ```
1111
+ ### Alloydb Cluster Before Upgrade
1112
+
1113
+ ```python
1114
+ import pulumi
1115
+ import pulumi_gcp as gcp
1116
+
1117
+ default_network = gcp.compute.Network("default", name="alloydb-network")
1118
+ default_cluster = gcp.alloydb.Cluster("default",
1119
+ cluster_id="alloydb-cluster",
1120
+ location="us-central1",
1121
+ network_config={
1122
+ "network": default_network.id,
1123
+ },
1124
+ database_version="POSTGRES_14",
1125
+ initial_user={
1126
+ "password": "alloydb-cluster",
1127
+ })
1128
+ private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
1129
+ name="alloydb-cluster",
1130
+ address_type="INTERNAL",
1131
+ purpose="VPC_PEERING",
1132
+ prefix_length=16,
1133
+ network=default_network.id)
1134
+ vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
1135
+ network=default_network.id,
1136
+ service="servicenetworking.googleapis.com",
1137
+ reserved_peering_ranges=[private_ip_alloc.name])
1138
+ default = gcp.alloydb.Instance("default",
1139
+ cluster=default_cluster.name,
1140
+ instance_id="alloydb-instance",
1141
+ instance_type="PRIMARY",
1142
+ machine_config={
1143
+ "cpu_count": 2,
1144
+ },
1145
+ opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
1146
+ project = gcp.organizations.get_project()
1147
+ ```
1148
+ ### Alloydb Cluster After Upgrade
1149
+
1150
+ ```python
1151
+ import pulumi
1152
+ import pulumi_gcp as gcp
1153
+
1154
+ default_network = gcp.compute.Network("default", name="alloydb-network")
1155
+ default_cluster = gcp.alloydb.Cluster("default",
1156
+ cluster_id="alloydb-cluster",
1157
+ location="us-central1",
1158
+ network_config={
1159
+ "network": default_network.id,
1160
+ },
1161
+ database_version="POSTGRES_15",
1162
+ initial_user={
1163
+ "password": "alloydb-cluster",
1164
+ })
1165
+ private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
1166
+ name="alloydb-cluster",
1167
+ address_type="INTERNAL",
1168
+ purpose="VPC_PEERING",
1169
+ prefix_length=16,
1170
+ network=default_network.id)
1171
+ vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
1172
+ network=default_network.id,
1173
+ service="servicenetworking.googleapis.com",
1174
+ reserved_peering_ranges=[private_ip_alloc.name])
1175
+ default = gcp.alloydb.Instance("default",
1176
+ cluster=default_cluster.name,
1177
+ instance_id="alloydb-instance",
1178
+ instance_type="PRIMARY",
1179
+ machine_config={
1180
+ "cpu_count": 2,
1181
+ },
1182
+ opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
1183
+ project = gcp.organizations.get_project()
1184
+ ```
1111
1185
  ### Alloydb Cluster Full
1112
1186
 
1113
1187
  ```python
@@ -1312,6 +1386,80 @@ class Cluster(pulumi.CustomResource):
1312
1386
  })
1313
1387
  project = gcp.organizations.get_project()
1314
1388
  ```
1389
+ ### Alloydb Cluster Before Upgrade
1390
+
1391
+ ```python
1392
+ import pulumi
1393
+ import pulumi_gcp as gcp
1394
+
1395
+ default_network = gcp.compute.Network("default", name="alloydb-network")
1396
+ default_cluster = gcp.alloydb.Cluster("default",
1397
+ cluster_id="alloydb-cluster",
1398
+ location="us-central1",
1399
+ network_config={
1400
+ "network": default_network.id,
1401
+ },
1402
+ database_version="POSTGRES_14",
1403
+ initial_user={
1404
+ "password": "alloydb-cluster",
1405
+ })
1406
+ private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
1407
+ name="alloydb-cluster",
1408
+ address_type="INTERNAL",
1409
+ purpose="VPC_PEERING",
1410
+ prefix_length=16,
1411
+ network=default_network.id)
1412
+ vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
1413
+ network=default_network.id,
1414
+ service="servicenetworking.googleapis.com",
1415
+ reserved_peering_ranges=[private_ip_alloc.name])
1416
+ default = gcp.alloydb.Instance("default",
1417
+ cluster=default_cluster.name,
1418
+ instance_id="alloydb-instance",
1419
+ instance_type="PRIMARY",
1420
+ machine_config={
1421
+ "cpu_count": 2,
1422
+ },
1423
+ opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
1424
+ project = gcp.organizations.get_project()
1425
+ ```
1426
+ ### Alloydb Cluster After Upgrade
1427
+
1428
+ ```python
1429
+ import pulumi
1430
+ import pulumi_gcp as gcp
1431
+
1432
+ default_network = gcp.compute.Network("default", name="alloydb-network")
1433
+ default_cluster = gcp.alloydb.Cluster("default",
1434
+ cluster_id="alloydb-cluster",
1435
+ location="us-central1",
1436
+ network_config={
1437
+ "network": default_network.id,
1438
+ },
1439
+ database_version="POSTGRES_15",
1440
+ initial_user={
1441
+ "password": "alloydb-cluster",
1442
+ })
1443
+ private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
1444
+ name="alloydb-cluster",
1445
+ address_type="INTERNAL",
1446
+ purpose="VPC_PEERING",
1447
+ prefix_length=16,
1448
+ network=default_network.id)
1449
+ vpc_connection = gcp.servicenetworking.Connection("vpc_connection",
1450
+ network=default_network.id,
1451
+ service="servicenetworking.googleapis.com",
1452
+ reserved_peering_ranges=[private_ip_alloc.name])
1453
+ default = gcp.alloydb.Instance("default",
1454
+ cluster=default_cluster.name,
1455
+ instance_id="alloydb-instance",
1456
+ instance_type="PRIMARY",
1457
+ machine_config={
1458
+ "cpu_count": 2,
1459
+ },
1460
+ opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
1461
+ project = gcp.organizations.get_project()
1462
+ ```
1315
1463
  ### Alloydb Cluster Full
1316
1464
 
1317
1465
  ```python
@@ -50,10 +50,10 @@ class InstanceArgs:
50
50
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
51
51
  :param pulumi.Input[str] availability_type: 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
52
52
  Note that primary and read instances can have different availability types.
53
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
54
- Zone is automatically chosen from the list of zones in the region specified.
55
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
56
- can have regional availability (nodes are present in 2 or more zones in a region).'
53
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
54
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
55
+ can have regional availability (nodes are present in 2 or more zones in a region).
56
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
57
57
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
58
58
  :param pulumi.Input['InstanceClientConnectionConfigArgs'] client_connection_config: Client connection specific configurations.
59
59
  Structure is documented below.
@@ -163,10 +163,10 @@ class InstanceArgs:
163
163
  """
164
164
  'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
165
165
  Note that primary and read instances can have different availability types.
166
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
167
- Zone is automatically chosen from the list of zones in the region specified.
168
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
169
- can have regional availability (nodes are present in 2 or more zones in a region).'
166
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
167
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
168
+ can have regional availability (nodes are present in 2 or more zones in a region).
169
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
170
170
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
171
171
  """
172
172
  return pulumi.get(self, "availability_type")
@@ -355,10 +355,10 @@ class _InstanceState:
355
355
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
356
356
  :param pulumi.Input[str] availability_type: 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
357
357
  Note that primary and read instances can have different availability types.
358
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
359
- Zone is automatically chosen from the list of zones in the region specified.
360
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
361
- can have regional availability (nodes are present in 2 or more zones in a region).'
358
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
359
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
360
+ can have regional availability (nodes are present in 2 or more zones in a region).
361
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
362
362
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
363
363
  :param pulumi.Input['InstanceClientConnectionConfigArgs'] client_connection_config: Client connection specific configurations.
364
364
  Structure is documented below.
@@ -480,10 +480,10 @@ class _InstanceState:
480
480
  """
481
481
  'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
482
482
  Note that primary and read instances can have different availability types.
483
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
484
- Zone is automatically chosen from the list of zones in the region specified.
485
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
486
- can have regional availability (nodes are present in 2 or more zones in a region).'
483
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
484
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
485
+ can have regional availability (nodes are present in 2 or more zones in a region).
486
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
487
487
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
488
488
  """
489
489
  return pulumi.get(self, "availability_type")
@@ -966,10 +966,10 @@ class Instance(pulumi.CustomResource):
966
966
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
967
967
  :param pulumi.Input[str] availability_type: 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
968
968
  Note that primary and read instances can have different availability types.
969
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
970
- Zone is automatically chosen from the list of zones in the region specified.
971
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
972
- can have regional availability (nodes are present in 2 or more zones in a region).'
969
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
970
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
971
+ can have regional availability (nodes are present in 2 or more zones in a region).
972
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
973
973
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
974
974
  :param pulumi.Input[Union['InstanceClientConnectionConfigArgs', 'InstanceClientConnectionConfigArgsDict']] client_connection_config: Client connection specific configurations.
975
975
  Structure is documented below.
@@ -1250,10 +1250,10 @@ class Instance(pulumi.CustomResource):
1250
1250
  Please refer to the field `effective_annotations` for all of the annotations present on the resource.
1251
1251
  :param pulumi.Input[str] availability_type: 'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
1252
1252
  Note that primary and read instances can have different availability types.
1253
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
1254
- Zone is automatically chosen from the list of zones in the region specified.
1255
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
1256
- can have regional availability (nodes are present in 2 or more zones in a region).'
1253
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
1254
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
1255
+ can have regional availability (nodes are present in 2 or more zones in a region).
1256
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
1257
1257
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
1258
1258
  :param pulumi.Input[Union['InstanceClientConnectionConfigArgs', 'InstanceClientConnectionConfigArgsDict']] client_connection_config: Client connection specific configurations.
1259
1259
  Structure is documented below.
@@ -1348,10 +1348,10 @@ class Instance(pulumi.CustomResource):
1348
1348
  """
1349
1349
  'Availability type of an Instance. Defaults to REGIONAL for both primary and read instances.
1350
1350
  Note that primary and read instances can have different availability types.
1351
- Only READ_POOL instance supports ZONAL type. Users can't specify the zone for READ_POOL instance.
1352
- Zone is automatically chosen from the list of zones in the region specified.
1353
- Read pool of size 1 can only have zonal availability. Read pools with node count of 2 or more
1354
- can have regional availability (nodes are present in 2 or more zones in a region).'
1351
+ Primary instances can be either ZONAL or REGIONAL. Read Pool instances can also be either ZONAL or REGIONAL.
1352
+ Read pools of size 1 can only have zonal availability. Read pools with a node count of 2 or more
1353
+ can have regional availability (nodes are present in 2 or more zones in a region).
1354
+ Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.'
1355
1355
  Possible values are: `AVAILABILITY_TYPE_UNSPECIFIED`, `ZONAL`, `REGIONAL`.
1356
1356
  """
1357
1357
  return pulumi.get(self, "availability_type")
@@ -6,5 +6,6 @@ from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .api_hub_instance import *
9
+ from .host_project_registration import *
9
10
  from ._inputs import *
10
11
  from . import outputs