pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/_inputs.py
CHANGED
@@ -18,6 +18,11 @@ __all__ = [
|
|
18
18
|
'AutoscalingPolicyWorkerConfigArgs',
|
19
19
|
'ClusterClusterConfigArgs',
|
20
20
|
'ClusterClusterConfigAutoscalingConfigArgs',
|
21
|
+
'ClusterClusterConfigAuxiliaryNodeGroupArgs',
|
22
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs',
|
23
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs',
|
24
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs',
|
25
|
+
'ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs',
|
21
26
|
'ClusterClusterConfigDataprocMetricConfigArgs',
|
22
27
|
'ClusterClusterConfigDataprocMetricConfigMetricArgs',
|
23
28
|
'ClusterClusterConfigEncryptionConfigArgs',
|
@@ -559,6 +564,7 @@ class AutoscalingPolicyWorkerConfigArgs:
|
|
559
564
|
class ClusterClusterConfigArgs:
|
560
565
|
def __init__(__self__, *,
|
561
566
|
autoscaling_config: Optional[pulumi.Input['ClusterClusterConfigAutoscalingConfigArgs']] = None,
|
567
|
+
auxiliary_node_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]]] = None,
|
562
568
|
bucket: Optional[pulumi.Input[str]] = None,
|
563
569
|
dataproc_metric_config: Optional[pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs']] = None,
|
564
570
|
encryption_config: Optional[pulumi.Input['ClusterClusterConfigEncryptionConfigArgs']] = None,
|
@@ -579,6 +585,8 @@ class ClusterClusterConfigArgs:
|
|
579
585
|
Note that once set, if `autoscaling_config` is the only field set in `cluster_config`, it can
|
580
586
|
only be removed by setting `policy_uri = ""`, rather than removing the whole block.
|
581
587
|
Structure defined below.
|
588
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]] auxiliary_node_groups: A Dataproc NodeGroup resource is a group of Dataproc cluster nodes that execute an assigned role.
|
589
|
+
Structure defined below.
|
582
590
|
:param pulumi.Input['ClusterClusterConfigDataprocMetricConfigArgs'] dataproc_metric_config: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified multiple times.
|
583
591
|
Structure defined below.
|
584
592
|
:param pulumi.Input['ClusterClusterConfigEncryptionConfigArgs'] encryption_config: The Customer managed encryption keys settings for the cluster.
|
@@ -619,6 +627,8 @@ class ClusterClusterConfigArgs:
|
|
619
627
|
"""
|
620
628
|
if autoscaling_config is not None:
|
621
629
|
pulumi.set(__self__, "autoscaling_config", autoscaling_config)
|
630
|
+
if auxiliary_node_groups is not None:
|
631
|
+
pulumi.set(__self__, "auxiliary_node_groups", auxiliary_node_groups)
|
622
632
|
if bucket is not None:
|
623
633
|
pulumi.set(__self__, "bucket", bucket)
|
624
634
|
if dataproc_metric_config is not None:
|
@@ -665,6 +675,19 @@ class ClusterClusterConfigArgs:
|
|
665
675
|
def autoscaling_config(self, value: Optional[pulumi.Input['ClusterClusterConfigAutoscalingConfigArgs']]):
|
666
676
|
pulumi.set(self, "autoscaling_config", value)
|
667
677
|
|
678
|
+
@property
|
679
|
+
@pulumi.getter(name="auxiliaryNodeGroups")
|
680
|
+
def auxiliary_node_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]]]:
|
681
|
+
"""
|
682
|
+
A Dataproc NodeGroup resource is a group of Dataproc cluster nodes that execute an assigned role.
|
683
|
+
Structure defined below.
|
684
|
+
"""
|
685
|
+
return pulumi.get(self, "auxiliary_node_groups")
|
686
|
+
|
687
|
+
@auxiliary_node_groups.setter
|
688
|
+
def auxiliary_node_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupArgs']]]]):
|
689
|
+
pulumi.set(self, "auxiliary_node_groups", value)
|
690
|
+
|
668
691
|
@property
|
669
692
|
@pulumi.getter
|
670
693
|
def bucket(self) -> Optional[pulumi.Input[str]]:
|
@@ -904,6 +927,325 @@ class ClusterClusterConfigAutoscalingConfigArgs:
|
|
904
927
|
pulumi.set(self, "policy_uri", value)
|
905
928
|
|
906
929
|
|
930
|
+
@pulumi.input_type
|
931
|
+
class ClusterClusterConfigAuxiliaryNodeGroupArgs:
|
932
|
+
def __init__(__self__, *,
|
933
|
+
node_groups: pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs']]],
|
934
|
+
node_group_id: Optional[pulumi.Input[str]] = None):
|
935
|
+
"""
|
936
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs']]] node_groups: Node group configuration.
|
937
|
+
"""
|
938
|
+
pulumi.set(__self__, "node_groups", node_groups)
|
939
|
+
if node_group_id is not None:
|
940
|
+
pulumi.set(__self__, "node_group_id", node_group_id)
|
941
|
+
|
942
|
+
@property
|
943
|
+
@pulumi.getter(name="nodeGroups")
|
944
|
+
def node_groups(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs']]]:
|
945
|
+
"""
|
946
|
+
Node group configuration.
|
947
|
+
"""
|
948
|
+
return pulumi.get(self, "node_groups")
|
949
|
+
|
950
|
+
@node_groups.setter
|
951
|
+
def node_groups(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs']]]):
|
952
|
+
pulumi.set(self, "node_groups", value)
|
953
|
+
|
954
|
+
@property
|
955
|
+
@pulumi.getter(name="nodeGroupId")
|
956
|
+
def node_group_id(self) -> Optional[pulumi.Input[str]]:
|
957
|
+
return pulumi.get(self, "node_group_id")
|
958
|
+
|
959
|
+
@node_group_id.setter
|
960
|
+
def node_group_id(self, value: Optional[pulumi.Input[str]]):
|
961
|
+
pulumi.set(self, "node_group_id", value)
|
962
|
+
|
963
|
+
|
964
|
+
@pulumi.input_type
|
965
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupArgs:
|
966
|
+
def __init__(__self__, *,
|
967
|
+
roles: pulumi.Input[Sequence[pulumi.Input[str]]],
|
968
|
+
name: Optional[pulumi.Input[str]] = None,
|
969
|
+
node_group_config: Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs']] = None):
|
970
|
+
"""
|
971
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Node group roles.
|
972
|
+
One of `"DRIVER"`.
|
973
|
+
:param pulumi.Input[str] name: The name of the cluster, unique within the project and
|
974
|
+
zone.
|
975
|
+
|
976
|
+
- - -
|
977
|
+
:param pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs'] node_group_config: The node group instance group configuration.
|
978
|
+
"""
|
979
|
+
pulumi.set(__self__, "roles", roles)
|
980
|
+
if name is not None:
|
981
|
+
pulumi.set(__self__, "name", name)
|
982
|
+
if node_group_config is not None:
|
983
|
+
pulumi.set(__self__, "node_group_config", node_group_config)
|
984
|
+
|
985
|
+
@property
|
986
|
+
@pulumi.getter
|
987
|
+
def roles(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
988
|
+
"""
|
989
|
+
Node group roles.
|
990
|
+
One of `"DRIVER"`.
|
991
|
+
"""
|
992
|
+
return pulumi.get(self, "roles")
|
993
|
+
|
994
|
+
@roles.setter
|
995
|
+
def roles(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
996
|
+
pulumi.set(self, "roles", value)
|
997
|
+
|
998
|
+
@property
|
999
|
+
@pulumi.getter
|
1000
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
1001
|
+
"""
|
1002
|
+
The name of the cluster, unique within the project and
|
1003
|
+
zone.
|
1004
|
+
|
1005
|
+
- - -
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "name")
|
1008
|
+
|
1009
|
+
@name.setter
|
1010
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
1011
|
+
pulumi.set(self, "name", value)
|
1012
|
+
|
1013
|
+
@property
|
1014
|
+
@pulumi.getter(name="nodeGroupConfig")
|
1015
|
+
def node_group_config(self) -> Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs']]:
|
1016
|
+
"""
|
1017
|
+
The node group instance group configuration.
|
1018
|
+
"""
|
1019
|
+
return pulumi.get(self, "node_group_config")
|
1020
|
+
|
1021
|
+
@node_group_config.setter
|
1022
|
+
def node_group_config(self, value: Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs']]):
|
1023
|
+
pulumi.set(self, "node_group_config", value)
|
1024
|
+
|
1025
|
+
|
1026
|
+
@pulumi.input_type
|
1027
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigArgs:
|
1028
|
+
def __init__(__self__, *,
|
1029
|
+
accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs']]]] = None,
|
1030
|
+
disk_config: Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs']] = None,
|
1031
|
+
instance_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1032
|
+
machine_type: Optional[pulumi.Input[str]] = None,
|
1033
|
+
min_cpu_platform: Optional[pulumi.Input[str]] = None,
|
1034
|
+
num_instances: Optional[pulumi.Input[int]] = None):
|
1035
|
+
"""
|
1036
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs']]] accelerators: The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1037
|
+
multiple times.
|
1038
|
+
:param pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs'] disk_config: Disk Config
|
1039
|
+
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type
|
1040
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
1041
|
+
computed value (currently `n1-standard-4`).
|
1042
|
+
:param pulumi.Input[str] min_cpu_platform: The name of a minimum generation of CPU family
|
1043
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
1044
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
1045
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
1046
|
+
:param pulumi.Input[int] num_instances: Specifies the number of master nodes to create.
|
1047
|
+
Please set a number greater than 0. Node Group must have at least 1 instance.
|
1048
|
+
"""
|
1049
|
+
if accelerators is not None:
|
1050
|
+
pulumi.set(__self__, "accelerators", accelerators)
|
1051
|
+
if disk_config is not None:
|
1052
|
+
pulumi.set(__self__, "disk_config", disk_config)
|
1053
|
+
if instance_names is not None:
|
1054
|
+
pulumi.set(__self__, "instance_names", instance_names)
|
1055
|
+
if machine_type is not None:
|
1056
|
+
pulumi.set(__self__, "machine_type", machine_type)
|
1057
|
+
if min_cpu_platform is not None:
|
1058
|
+
pulumi.set(__self__, "min_cpu_platform", min_cpu_platform)
|
1059
|
+
if num_instances is not None:
|
1060
|
+
pulumi.set(__self__, "num_instances", num_instances)
|
1061
|
+
|
1062
|
+
@property
|
1063
|
+
@pulumi.getter
|
1064
|
+
def accelerators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs']]]]:
|
1065
|
+
"""
|
1066
|
+
The Compute Engine accelerator (GPU) configuration for these instances. Can be specified
|
1067
|
+
multiple times.
|
1068
|
+
"""
|
1069
|
+
return pulumi.get(self, "accelerators")
|
1070
|
+
|
1071
|
+
@accelerators.setter
|
1072
|
+
def accelerators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs']]]]):
|
1073
|
+
pulumi.set(self, "accelerators", value)
|
1074
|
+
|
1075
|
+
@property
|
1076
|
+
@pulumi.getter(name="diskConfig")
|
1077
|
+
def disk_config(self) -> Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs']]:
|
1078
|
+
"""
|
1079
|
+
Disk Config
|
1080
|
+
"""
|
1081
|
+
return pulumi.get(self, "disk_config")
|
1082
|
+
|
1083
|
+
@disk_config.setter
|
1084
|
+
def disk_config(self, value: Optional[pulumi.Input['ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs']]):
|
1085
|
+
pulumi.set(self, "disk_config", value)
|
1086
|
+
|
1087
|
+
@property
|
1088
|
+
@pulumi.getter(name="instanceNames")
|
1089
|
+
def instance_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1090
|
+
return pulumi.get(self, "instance_names")
|
1091
|
+
|
1092
|
+
@instance_names.setter
|
1093
|
+
def instance_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1094
|
+
pulumi.set(self, "instance_names", value)
|
1095
|
+
|
1096
|
+
@property
|
1097
|
+
@pulumi.getter(name="machineType")
|
1098
|
+
def machine_type(self) -> Optional[pulumi.Input[str]]:
|
1099
|
+
"""
|
1100
|
+
The name of a Google Compute Engine machine type
|
1101
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
1102
|
+
computed value (currently `n1-standard-4`).
|
1103
|
+
"""
|
1104
|
+
return pulumi.get(self, "machine_type")
|
1105
|
+
|
1106
|
+
@machine_type.setter
|
1107
|
+
def machine_type(self, value: Optional[pulumi.Input[str]]):
|
1108
|
+
pulumi.set(self, "machine_type", value)
|
1109
|
+
|
1110
|
+
@property
|
1111
|
+
@pulumi.getter(name="minCpuPlatform")
|
1112
|
+
def min_cpu_platform(self) -> Optional[pulumi.Input[str]]:
|
1113
|
+
"""
|
1114
|
+
The name of a minimum generation of CPU family
|
1115
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
1116
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
1117
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
1118
|
+
"""
|
1119
|
+
return pulumi.get(self, "min_cpu_platform")
|
1120
|
+
|
1121
|
+
@min_cpu_platform.setter
|
1122
|
+
def min_cpu_platform(self, value: Optional[pulumi.Input[str]]):
|
1123
|
+
pulumi.set(self, "min_cpu_platform", value)
|
1124
|
+
|
1125
|
+
@property
|
1126
|
+
@pulumi.getter(name="numInstances")
|
1127
|
+
def num_instances(self) -> Optional[pulumi.Input[int]]:
|
1128
|
+
"""
|
1129
|
+
Specifies the number of master nodes to create.
|
1130
|
+
Please set a number greater than 0. Node Group must have at least 1 instance.
|
1131
|
+
"""
|
1132
|
+
return pulumi.get(self, "num_instances")
|
1133
|
+
|
1134
|
+
@num_instances.setter
|
1135
|
+
def num_instances(self, value: Optional[pulumi.Input[int]]):
|
1136
|
+
pulumi.set(self, "num_instances", value)
|
1137
|
+
|
1138
|
+
|
1139
|
+
@pulumi.input_type
|
1140
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigAcceleratorArgs:
|
1141
|
+
def __init__(__self__, *,
|
1142
|
+
accelerator_count: pulumi.Input[int],
|
1143
|
+
accelerator_type: pulumi.Input[str]):
|
1144
|
+
"""
|
1145
|
+
:param pulumi.Input[int] accelerator_count: The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1146
|
+
|
1147
|
+
|
1148
|
+
- - -
|
1149
|
+
:param pulumi.Input[str] accelerator_type: The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
1150
|
+
"""
|
1151
|
+
pulumi.set(__self__, "accelerator_count", accelerator_count)
|
1152
|
+
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
1153
|
+
|
1154
|
+
@property
|
1155
|
+
@pulumi.getter(name="acceleratorCount")
|
1156
|
+
def accelerator_count(self) -> pulumi.Input[int]:
|
1157
|
+
"""
|
1158
|
+
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1159
|
+
|
1160
|
+
|
1161
|
+
- - -
|
1162
|
+
"""
|
1163
|
+
return pulumi.get(self, "accelerator_count")
|
1164
|
+
|
1165
|
+
@accelerator_count.setter
|
1166
|
+
def accelerator_count(self, value: pulumi.Input[int]):
|
1167
|
+
pulumi.set(self, "accelerator_count", value)
|
1168
|
+
|
1169
|
+
@property
|
1170
|
+
@pulumi.getter(name="acceleratorType")
|
1171
|
+
def accelerator_type(self) -> pulumi.Input[str]:
|
1172
|
+
"""
|
1173
|
+
The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
1174
|
+
"""
|
1175
|
+
return pulumi.get(self, "accelerator_type")
|
1176
|
+
|
1177
|
+
@accelerator_type.setter
|
1178
|
+
def accelerator_type(self, value: pulumi.Input[str]):
|
1179
|
+
pulumi.set(self, "accelerator_type", value)
|
1180
|
+
|
1181
|
+
|
1182
|
+
@pulumi.input_type
|
1183
|
+
class ClusterClusterConfigAuxiliaryNodeGroupNodeGroupNodeGroupConfigDiskConfigArgs:
|
1184
|
+
def __init__(__self__, *,
|
1185
|
+
boot_disk_size_gb: Optional[pulumi.Input[int]] = None,
|
1186
|
+
boot_disk_type: Optional[pulumi.Input[str]] = None,
|
1187
|
+
num_local_ssds: Optional[pulumi.Input[int]] = None):
|
1188
|
+
"""
|
1189
|
+
:param pulumi.Input[int] boot_disk_size_gb: Size of the primary disk attached to each node, specified
|
1190
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
1191
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
1192
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
1193
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1194
|
+
:param pulumi.Input[str] boot_disk_type: The disk type of the primary disk attached to each node.
|
1195
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1196
|
+
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be attached to each master cluster node.
|
1197
|
+
Defaults to 0.
|
1198
|
+
"""
|
1199
|
+
if boot_disk_size_gb is not None:
|
1200
|
+
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
1201
|
+
if boot_disk_type is not None:
|
1202
|
+
pulumi.set(__self__, "boot_disk_type", boot_disk_type)
|
1203
|
+
if num_local_ssds is not None:
|
1204
|
+
pulumi.set(__self__, "num_local_ssds", num_local_ssds)
|
1205
|
+
|
1206
|
+
@property
|
1207
|
+
@pulumi.getter(name="bootDiskSizeGb")
|
1208
|
+
def boot_disk_size_gb(self) -> Optional[pulumi.Input[int]]:
|
1209
|
+
"""
|
1210
|
+
Size of the primary disk attached to each node, specified
|
1211
|
+
in GB. The primary disk contains the boot volume and system libraries, and the
|
1212
|
+
smallest allowed disk size is 10GB. GCP will default to a predetermined
|
1213
|
+
computed value if not set (currently 500GB). Note: If SSDs are not
|
1214
|
+
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1215
|
+
"""
|
1216
|
+
return pulumi.get(self, "boot_disk_size_gb")
|
1217
|
+
|
1218
|
+
@boot_disk_size_gb.setter
|
1219
|
+
def boot_disk_size_gb(self, value: Optional[pulumi.Input[int]]):
|
1220
|
+
pulumi.set(self, "boot_disk_size_gb", value)
|
1221
|
+
|
1222
|
+
@property
|
1223
|
+
@pulumi.getter(name="bootDiskType")
|
1224
|
+
def boot_disk_type(self) -> Optional[pulumi.Input[str]]:
|
1225
|
+
"""
|
1226
|
+
The disk type of the primary disk attached to each node.
|
1227
|
+
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1228
|
+
"""
|
1229
|
+
return pulumi.get(self, "boot_disk_type")
|
1230
|
+
|
1231
|
+
@boot_disk_type.setter
|
1232
|
+
def boot_disk_type(self, value: Optional[pulumi.Input[str]]):
|
1233
|
+
pulumi.set(self, "boot_disk_type", value)
|
1234
|
+
|
1235
|
+
@property
|
1236
|
+
@pulumi.getter(name="numLocalSsds")
|
1237
|
+
def num_local_ssds(self) -> Optional[pulumi.Input[int]]:
|
1238
|
+
"""
|
1239
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
1240
|
+
Defaults to 0.
|
1241
|
+
"""
|
1242
|
+
return pulumi.get(self, "num_local_ssds")
|
1243
|
+
|
1244
|
+
@num_local_ssds.setter
|
1245
|
+
def num_local_ssds(self, value: Optional[pulumi.Input[int]]):
|
1246
|
+
pulumi.set(self, "num_local_ssds", value)
|
1247
|
+
|
1248
|
+
|
907
1249
|
@pulumi.input_type
|
908
1250
|
class ClusterClusterConfigDataprocMetricConfigArgs:
|
909
1251
|
def __init__(__self__, *,
|
@@ -1641,9 +1983,6 @@ class ClusterClusterConfigMasterConfigAcceleratorArgs:
|
|
1641
1983
|
"""
|
1642
1984
|
:param pulumi.Input[int] accelerator_count: The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1643
1985
|
|
1644
|
-
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
1645
|
-
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
1646
|
-
if you are trying to use accelerators in a given zone.
|
1647
1986
|
|
1648
1987
|
- - -
|
1649
1988
|
:param pulumi.Input[str] accelerator_type: The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
@@ -1657,9 +1996,6 @@ class ClusterClusterConfigMasterConfigAcceleratorArgs:
|
|
1657
1996
|
"""
|
1658
1997
|
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
1659
1998
|
|
1660
|
-
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
1661
|
-
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
1662
|
-
if you are trying to use accelerators in a given zone.
|
1663
1999
|
|
1664
2000
|
- - -
|
1665
2001
|
"""
|
@@ -1696,8 +2032,8 @@ class ClusterClusterConfigMasterConfigDiskConfigArgs:
|
|
1696
2032
|
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1697
2033
|
:param pulumi.Input[str] boot_disk_type: The disk type of the primary disk attached to each node.
|
1698
2034
|
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1699
|
-
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be
|
1700
|
-
|
2035
|
+
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be attached to each master cluster node.
|
2036
|
+
Defaults to 0.
|
1701
2037
|
"""
|
1702
2038
|
if boot_disk_size_gb is not None:
|
1703
2039
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -1739,8 +2075,8 @@ class ClusterClusterConfigMasterConfigDiskConfigArgs:
|
|
1739
2075
|
@pulumi.getter(name="numLocalSsds")
|
1740
2076
|
def num_local_ssds(self) -> Optional[pulumi.Input[int]]:
|
1741
2077
|
"""
|
1742
|
-
The amount of local SSD disks that will be
|
1743
|
-
|
2078
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
2079
|
+
Defaults to 0.
|
1744
2080
|
"""
|
1745
2081
|
return pulumi.get(self, "num_local_ssds")
|
1746
2082
|
|
@@ -1886,8 +2222,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgs:
|
|
1886
2222
|
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
1887
2223
|
:param pulumi.Input[str] boot_disk_type: The disk type of the primary disk attached to each node.
|
1888
2224
|
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
1889
|
-
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be
|
1890
|
-
|
2225
|
+
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be attached to each master cluster node.
|
2226
|
+
Defaults to 0.
|
1891
2227
|
"""
|
1892
2228
|
if boot_disk_size_gb is not None:
|
1893
2229
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -1929,8 +2265,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigDiskConfigArgs:
|
|
1929
2265
|
@pulumi.getter(name="numLocalSsds")
|
1930
2266
|
def num_local_ssds(self) -> Optional[pulumi.Input[int]]:
|
1931
2267
|
"""
|
1932
|
-
The amount of local SSD disks that will be
|
1933
|
-
|
2268
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
2269
|
+
Defaults to 0.
|
1934
2270
|
"""
|
1935
2271
|
return pulumi.get(self, "num_local_ssds")
|
1936
2272
|
|
@@ -2023,7 +2359,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2023
2359
|
machine_type: Optional[pulumi.Input[str]] = None,
|
2024
2360
|
vm_count: Optional[pulumi.Input[int]] = None):
|
2025
2361
|
"""
|
2026
|
-
:param pulumi.Input[str] machine_type: The name of a Compute Engine machine type
|
2362
|
+
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type
|
2363
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
2364
|
+
computed value (currently `n1-standard-4`).
|
2027
2365
|
"""
|
2028
2366
|
if machine_type is not None:
|
2029
2367
|
pulumi.set(__self__, "machine_type", machine_type)
|
@@ -2034,7 +2372,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
2034
2372
|
@pulumi.getter(name="machineType")
|
2035
2373
|
def machine_type(self) -> Optional[pulumi.Input[str]]:
|
2036
2374
|
"""
|
2037
|
-
The name of a Compute Engine machine type
|
2375
|
+
The name of a Google Compute Engine machine type
|
2376
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
2377
|
+
computed value (currently `n1-standard-4`).
|
2038
2378
|
"""
|
2039
2379
|
return pulumi.get(self, "machine_type")
|
2040
2380
|
|
@@ -2609,9 +2949,6 @@ class ClusterClusterConfigWorkerConfigAcceleratorArgs:
|
|
2609
2949
|
"""
|
2610
2950
|
:param pulumi.Input[int] accelerator_count: The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
2611
2951
|
|
2612
|
-
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
2613
|
-
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
2614
|
-
if you are trying to use accelerators in a given zone.
|
2615
2952
|
|
2616
2953
|
- - -
|
2617
2954
|
:param pulumi.Input[str] accelerator_type: The short name of the accelerator type to expose to this instance. For example, `nvidia-tesla-k80`.
|
@@ -2625,9 +2962,6 @@ class ClusterClusterConfigWorkerConfigAcceleratorArgs:
|
|
2625
2962
|
"""
|
2626
2963
|
The number of the accelerator cards of this type exposed to this instance. Often restricted to one of `1`, `2`, `4`, or `8`.
|
2627
2964
|
|
2628
|
-
> The Cloud Dataproc API can return unintuitive error messages when using accelerators; even when you have defined an accelerator, Auto Zone Placement does not exclusively select
|
2629
|
-
zones that have that accelerator available. If you get a 400 error that the accelerator can't be found, this is a likely cause. Make sure you check [accelerator availability by zone](https://cloud.google.com/compute/docs/reference/rest/v1/acceleratorTypes/list)
|
2630
|
-
if you are trying to use accelerators in a given zone.
|
2631
2965
|
|
2632
2966
|
- - -
|
2633
2967
|
"""
|
@@ -2664,8 +2998,8 @@ class ClusterClusterConfigWorkerConfigDiskConfigArgs:
|
|
2664
2998
|
attached, it also contains the HDFS data blocks and Hadoop working directories.
|
2665
2999
|
:param pulumi.Input[str] boot_disk_type: The disk type of the primary disk attached to each node.
|
2666
3000
|
One of `"pd-ssd"` or `"pd-standard"`. Defaults to `"pd-standard"`.
|
2667
|
-
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be
|
2668
|
-
|
3001
|
+
:param pulumi.Input[int] num_local_ssds: The amount of local SSD disks that will be attached to each master cluster node.
|
3002
|
+
Defaults to 0.
|
2669
3003
|
"""
|
2670
3004
|
if boot_disk_size_gb is not None:
|
2671
3005
|
pulumi.set(__self__, "boot_disk_size_gb", boot_disk_size_gb)
|
@@ -2707,8 +3041,8 @@ class ClusterClusterConfigWorkerConfigDiskConfigArgs:
|
|
2707
3041
|
@pulumi.getter(name="numLocalSsds")
|
2708
3042
|
def num_local_ssds(self) -> Optional[pulumi.Input[int]]:
|
2709
3043
|
"""
|
2710
|
-
The amount of local SSD disks that will be
|
2711
|
-
|
3044
|
+
The amount of local SSD disks that will be attached to each master cluster node.
|
3045
|
+
Defaults to 0.
|
2712
3046
|
"""
|
2713
3047
|
return pulumi.get(self, "num_local_ssds")
|
2714
3048
|
|
@@ -3075,8 +3409,8 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3075
3409
|
node_pool_config: Optional[pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgs']] = None):
|
3076
3410
|
"""
|
3077
3411
|
:param pulumi.Input[str] node_pool: The target GKE node pool.
|
3078
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] roles:
|
3079
|
-
One of `"
|
3412
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] roles: Node group roles.
|
3413
|
+
One of `"DRIVER"`.
|
3080
3414
|
:param pulumi.Input['ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePoolTargetNodePoolConfigArgs'] node_pool_config: The configuration for the GKE node pool.
|
3081
3415
|
If specified, Dataproc attempts to create a node pool with the specified shape.
|
3082
3416
|
If one with the same name already exists, it is verified against all specified fields.
|
@@ -3103,8 +3437,8 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3103
3437
|
@pulumi.getter
|
3104
3438
|
def roles(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
3105
3439
|
"""
|
3106
|
-
|
3107
|
-
One of `"
|
3440
|
+
Node group roles.
|
3441
|
+
One of `"DRIVER"`.
|
3108
3442
|
"""
|
3109
3443
|
return pulumi.get(self, "roles")
|
3110
3444
|
|
@@ -3238,10 +3572,13 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3238
3572
|
"""
|
3239
3573
|
:param pulumi.Input[int] local_ssd_count: The number of local SSD disks to attach to the node,
|
3240
3574
|
which is limited by the maximum number of disks allowable per zone.
|
3241
|
-
:param pulumi.Input[str] machine_type: The name of a Compute Engine machine type
|
3242
|
-
|
3243
|
-
|
3244
|
-
|
3575
|
+
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type
|
3576
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
3577
|
+
computed value (currently `n1-standard-4`).
|
3578
|
+
:param pulumi.Input[str] min_cpu_platform: The name of a minimum generation of CPU family
|
3579
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
3580
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
3581
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
3245
3582
|
:param pulumi.Input[bool] preemptible: Whether the nodes are created as preemptible VM instances.
|
3246
3583
|
Preemptible nodes cannot be used in a node pool with the CONTROLLER role or in the DEFAULT node pool if the
|
3247
3584
|
CONTROLLER role is not assigned (the DEFAULT node pool will assume the CONTROLLER role).
|
@@ -3275,7 +3612,9 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3275
3612
|
@pulumi.getter(name="machineType")
|
3276
3613
|
def machine_type(self) -> Optional[pulumi.Input[str]]:
|
3277
3614
|
"""
|
3278
|
-
The name of a Compute Engine machine type
|
3615
|
+
The name of a Google Compute Engine machine type
|
3616
|
+
to create for the node group. If not specified, GCP will default to a predetermined
|
3617
|
+
computed value (currently `n1-standard-4`).
|
3279
3618
|
"""
|
3280
3619
|
return pulumi.get(self, "machine_type")
|
3281
3620
|
|
@@ -3287,9 +3626,10 @@ class ClusterVirtualClusterConfigKubernetesClusterConfigGkeClusterConfigNodePool
|
|
3287
3626
|
@pulumi.getter(name="minCpuPlatform")
|
3288
3627
|
def min_cpu_platform(self) -> Optional[pulumi.Input[str]]:
|
3289
3628
|
"""
|
3290
|
-
|
3291
|
-
|
3292
|
-
|
3629
|
+
The name of a minimum generation of CPU family
|
3630
|
+
for the node group. If not specified, GCP will default to a predetermined computed value
|
3631
|
+
for each zone. See [the guide](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
|
3632
|
+
for details about which CPU families are available (and defaulted) for each zone.
|
3293
3633
|
"""
|
3294
3634
|
return pulumi.get(self, "min_cpu_platform")
|
3295
3635
|
|
@@ -4705,8 +5045,17 @@ class MetastoreServiceHiveMetastoreConfigArgs:
|
|
4705
5045
|
kerberos_config: Optional[pulumi.Input['MetastoreServiceHiveMetastoreConfigKerberosConfigArgs']] = None):
|
4706
5046
|
"""
|
4707
5047
|
:param pulumi.Input[str] version: The Hive metastore schema version.
|
5048
|
+
:param pulumi.Input[Sequence[pulumi.Input['MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgs']]] auxiliary_versions: A mapping of Hive metastore version to the auxiliary version configuration.
|
5049
|
+
When specified, a secondary Hive metastore service is created along with the primary service.
|
5050
|
+
All auxiliary versions must be less than the service's primary version.
|
5051
|
+
The key is the auxiliary service name and it must match the regular expression a-z?.
|
5052
|
+
This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen.
|
5053
|
+
Structure is documented below.
|
4708
5054
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] config_overrides: A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml).
|
4709
5055
|
The mappings override system defaults (some keys cannot be overridden)
|
5056
|
+
:param pulumi.Input[str] endpoint_protocol: The protocol to use for the metastore service endpoint. If unspecified, defaults to `THRIFT`.
|
5057
|
+
Default value is `THRIFT`.
|
5058
|
+
Possible values are: `THRIFT`, `GRPC`.
|
4710
5059
|
:param pulumi.Input['MetastoreServiceHiveMetastoreConfigKerberosConfigArgs'] kerberos_config: Information used to configure the Hive metastore service as a service principal in a Kerberos realm.
|
4711
5060
|
Structure is documented below.
|
4712
5061
|
"""
|
@@ -4735,6 +5084,14 @@ class MetastoreServiceHiveMetastoreConfigArgs:
|
|
4735
5084
|
@property
|
4736
5085
|
@pulumi.getter(name="auxiliaryVersions")
|
4737
5086
|
def auxiliary_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MetastoreServiceHiveMetastoreConfigAuxiliaryVersionArgs']]]]:
|
5087
|
+
"""
|
5088
|
+
A mapping of Hive metastore version to the auxiliary version configuration.
|
5089
|
+
When specified, a secondary Hive metastore service is created along with the primary service.
|
5090
|
+
All auxiliary versions must be less than the service's primary version.
|
5091
|
+
The key is the auxiliary service name and it must match the regular expression a-z?.
|
5092
|
+
This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen.
|
5093
|
+
Structure is documented below.
|
5094
|
+
"""
|
4738
5095
|
return pulumi.get(self, "auxiliary_versions")
|
4739
5096
|
|
4740
5097
|
@auxiliary_versions.setter
|
@@ -4757,6 +5114,11 @@ class MetastoreServiceHiveMetastoreConfigArgs:
|
|
4757
5114
|
@property
|
4758
5115
|
@pulumi.getter(name="endpointProtocol")
|
4759
5116
|
def endpoint_protocol(self) -> Optional[pulumi.Input[str]]:
|
5117
|
+
"""
|
5118
|
+
The protocol to use for the metastore service endpoint. If unspecified, defaults to `THRIFT`.
|
5119
|
+
Default value is `THRIFT`.
|
5120
|
+
Possible values are: `THRIFT`, `GRPC`.
|
5121
|
+
"""
|
4760
5122
|
return pulumi.get(self, "endpoint_protocol")
|
4761
5123
|
|
4762
5124
|
@endpoint_protocol.setter
|
@@ -5076,12 +5438,15 @@ class MetastoreServiceMetadataIntegrationDataCatalogConfigArgs:
|
|
5076
5438
|
@pulumi.input_type
|
5077
5439
|
class MetastoreServiceNetworkConfigArgs:
|
5078
5440
|
def __init__(__self__, *,
|
5079
|
-
consumers: pulumi.Input[Sequence[pulumi.Input['MetastoreServiceNetworkConfigConsumerArgs']]]
|
5441
|
+
consumers: pulumi.Input[Sequence[pulumi.Input['MetastoreServiceNetworkConfigConsumerArgs']]],
|
5442
|
+
custom_routes_enabled: Optional[pulumi.Input[bool]] = None):
|
5080
5443
|
"""
|
5081
5444
|
:param pulumi.Input[Sequence[pulumi.Input['MetastoreServiceNetworkConfigConsumerArgs']]] consumers: The consumer-side network configuration for the Dataproc Metastore instance.
|
5082
5445
|
Structure is documented below.
|
5083
5446
|
"""
|
5084
5447
|
pulumi.set(__self__, "consumers", consumers)
|
5448
|
+
if custom_routes_enabled is not None:
|
5449
|
+
pulumi.set(__self__, "custom_routes_enabled", custom_routes_enabled)
|
5085
5450
|
|
5086
5451
|
@property
|
5087
5452
|
@pulumi.getter
|
@@ -5096,6 +5461,15 @@ class MetastoreServiceNetworkConfigArgs:
|
|
5096
5461
|
def consumers(self, value: pulumi.Input[Sequence[pulumi.Input['MetastoreServiceNetworkConfigConsumerArgs']]]):
|
5097
5462
|
pulumi.set(self, "consumers", value)
|
5098
5463
|
|
5464
|
+
@property
|
5465
|
+
@pulumi.getter(name="customRoutesEnabled")
|
5466
|
+
def custom_routes_enabled(self) -> Optional[pulumi.Input[bool]]:
|
5467
|
+
return pulumi.get(self, "custom_routes_enabled")
|
5468
|
+
|
5469
|
+
@custom_routes_enabled.setter
|
5470
|
+
def custom_routes_enabled(self, value: Optional[pulumi.Input[bool]]):
|
5471
|
+
pulumi.set(self, "custom_routes_enabled", value)
|
5472
|
+
|
5099
5473
|
|
5100
5474
|
@pulumi.input_type
|
5101
5475
|
class MetastoreServiceNetworkConfigConsumerArgs:
|