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/vertex/outputs.py
CHANGED
@@ -21,6 +21,16 @@ __all__ = [
|
|
21
21
|
'AiEndpointEncryptionSpec',
|
22
22
|
'AiEndpointIamBindingCondition',
|
23
23
|
'AiEndpointIamMemberCondition',
|
24
|
+
'AiFeatureGroupBigQuery',
|
25
|
+
'AiFeatureGroupBigQueryBigQuerySource',
|
26
|
+
'AiFeatureOnlineStoreBigtable',
|
27
|
+
'AiFeatureOnlineStoreBigtableAutoScaling',
|
28
|
+
'AiFeatureOnlineStoreDedicatedServingEndpoint',
|
29
|
+
'AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig',
|
30
|
+
'AiFeatureOnlineStoreEmbeddingManagement',
|
31
|
+
'AiFeatureOnlineStoreFeatureviewBigQuerySource',
|
32
|
+
'AiFeatureOnlineStoreFeatureviewSyncConfig',
|
33
|
+
'AiFeatureOnlineStoreOptimized',
|
24
34
|
'AiFeatureStoreEncryptionSpec',
|
25
35
|
'AiFeatureStoreEntityTypeIamBindingCondition',
|
26
36
|
'AiFeatureStoreEntityTypeIamMemberCondition',
|
@@ -746,6 +756,402 @@ class AiEndpointIamMemberCondition(dict):
|
|
746
756
|
return pulumi.get(self, "description")
|
747
757
|
|
748
758
|
|
759
|
+
@pulumi.output_type
|
760
|
+
class AiFeatureGroupBigQuery(dict):
|
761
|
+
@staticmethod
|
762
|
+
def __key_warning(key: str):
|
763
|
+
suggest = None
|
764
|
+
if key == "bigQuerySource":
|
765
|
+
suggest = "big_query_source"
|
766
|
+
elif key == "entityIdColumns":
|
767
|
+
suggest = "entity_id_columns"
|
768
|
+
|
769
|
+
if suggest:
|
770
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureGroupBigQuery. Access the value via the '{suggest}' property getter instead.")
|
771
|
+
|
772
|
+
def __getitem__(self, key: str) -> Any:
|
773
|
+
AiFeatureGroupBigQuery.__key_warning(key)
|
774
|
+
return super().__getitem__(key)
|
775
|
+
|
776
|
+
def get(self, key: str, default = None) -> Any:
|
777
|
+
AiFeatureGroupBigQuery.__key_warning(key)
|
778
|
+
return super().get(key, default)
|
779
|
+
|
780
|
+
def __init__(__self__, *,
|
781
|
+
big_query_source: 'outputs.AiFeatureGroupBigQueryBigQuerySource',
|
782
|
+
entity_id_columns: Optional[Sequence[str]] = None):
|
783
|
+
"""
|
784
|
+
:param 'AiFeatureGroupBigQueryBigQuerySourceArgs' big_query_source: The BigQuery source URI that points to either a BigQuery Table or View.
|
785
|
+
Structure is documented below.
|
786
|
+
:param Sequence[str] entity_id_columns: Columns to construct entityId / row keys. Currently only supports 1 entity_id_column. If not provided defaults to entityId.
|
787
|
+
"""
|
788
|
+
pulumi.set(__self__, "big_query_source", big_query_source)
|
789
|
+
if entity_id_columns is not None:
|
790
|
+
pulumi.set(__self__, "entity_id_columns", entity_id_columns)
|
791
|
+
|
792
|
+
@property
|
793
|
+
@pulumi.getter(name="bigQuerySource")
|
794
|
+
def big_query_source(self) -> 'outputs.AiFeatureGroupBigQueryBigQuerySource':
|
795
|
+
"""
|
796
|
+
The BigQuery source URI that points to either a BigQuery Table or View.
|
797
|
+
Structure is documented below.
|
798
|
+
"""
|
799
|
+
return pulumi.get(self, "big_query_source")
|
800
|
+
|
801
|
+
@property
|
802
|
+
@pulumi.getter(name="entityIdColumns")
|
803
|
+
def entity_id_columns(self) -> Optional[Sequence[str]]:
|
804
|
+
"""
|
805
|
+
Columns to construct entityId / row keys. Currently only supports 1 entity_id_column. If not provided defaults to entityId.
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "entity_id_columns")
|
808
|
+
|
809
|
+
|
810
|
+
@pulumi.output_type
|
811
|
+
class AiFeatureGroupBigQueryBigQuerySource(dict):
|
812
|
+
@staticmethod
|
813
|
+
def __key_warning(key: str):
|
814
|
+
suggest = None
|
815
|
+
if key == "inputUri":
|
816
|
+
suggest = "input_uri"
|
817
|
+
|
818
|
+
if suggest:
|
819
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureGroupBigQueryBigQuerySource. Access the value via the '{suggest}' property getter instead.")
|
820
|
+
|
821
|
+
def __getitem__(self, key: str) -> Any:
|
822
|
+
AiFeatureGroupBigQueryBigQuerySource.__key_warning(key)
|
823
|
+
return super().__getitem__(key)
|
824
|
+
|
825
|
+
def get(self, key: str, default = None) -> Any:
|
826
|
+
AiFeatureGroupBigQueryBigQuerySource.__key_warning(key)
|
827
|
+
return super().get(key, default)
|
828
|
+
|
829
|
+
def __init__(__self__, *,
|
830
|
+
input_uri: str):
|
831
|
+
"""
|
832
|
+
:param str input_uri: BigQuery URI to a table, up to 2000 characters long. For example: `bq://projectId.bqDatasetId.bqTableId.`
|
833
|
+
"""
|
834
|
+
pulumi.set(__self__, "input_uri", input_uri)
|
835
|
+
|
836
|
+
@property
|
837
|
+
@pulumi.getter(name="inputUri")
|
838
|
+
def input_uri(self) -> str:
|
839
|
+
"""
|
840
|
+
BigQuery URI to a table, up to 2000 characters long. For example: `bq://projectId.bqDatasetId.bqTableId.`
|
841
|
+
"""
|
842
|
+
return pulumi.get(self, "input_uri")
|
843
|
+
|
844
|
+
|
845
|
+
@pulumi.output_type
|
846
|
+
class AiFeatureOnlineStoreBigtable(dict):
|
847
|
+
@staticmethod
|
848
|
+
def __key_warning(key: str):
|
849
|
+
suggest = None
|
850
|
+
if key == "autoScaling":
|
851
|
+
suggest = "auto_scaling"
|
852
|
+
|
853
|
+
if suggest:
|
854
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureOnlineStoreBigtable. Access the value via the '{suggest}' property getter instead.")
|
855
|
+
|
856
|
+
def __getitem__(self, key: str) -> Any:
|
857
|
+
AiFeatureOnlineStoreBigtable.__key_warning(key)
|
858
|
+
return super().__getitem__(key)
|
859
|
+
|
860
|
+
def get(self, key: str, default = None) -> Any:
|
861
|
+
AiFeatureOnlineStoreBigtable.__key_warning(key)
|
862
|
+
return super().get(key, default)
|
863
|
+
|
864
|
+
def __init__(__self__, *,
|
865
|
+
auto_scaling: 'outputs.AiFeatureOnlineStoreBigtableAutoScaling'):
|
866
|
+
"""
|
867
|
+
:param 'AiFeatureOnlineStoreBigtableAutoScalingArgs' auto_scaling: Autoscaling config applied to Bigtable Instance.
|
868
|
+
Structure is documented below.
|
869
|
+
"""
|
870
|
+
pulumi.set(__self__, "auto_scaling", auto_scaling)
|
871
|
+
|
872
|
+
@property
|
873
|
+
@pulumi.getter(name="autoScaling")
|
874
|
+
def auto_scaling(self) -> 'outputs.AiFeatureOnlineStoreBigtableAutoScaling':
|
875
|
+
"""
|
876
|
+
Autoscaling config applied to Bigtable Instance.
|
877
|
+
Structure is documented below.
|
878
|
+
"""
|
879
|
+
return pulumi.get(self, "auto_scaling")
|
880
|
+
|
881
|
+
|
882
|
+
@pulumi.output_type
|
883
|
+
class AiFeatureOnlineStoreBigtableAutoScaling(dict):
|
884
|
+
@staticmethod
|
885
|
+
def __key_warning(key: str):
|
886
|
+
suggest = None
|
887
|
+
if key == "maxNodeCount":
|
888
|
+
suggest = "max_node_count"
|
889
|
+
elif key == "minNodeCount":
|
890
|
+
suggest = "min_node_count"
|
891
|
+
elif key == "cpuUtilizationTarget":
|
892
|
+
suggest = "cpu_utilization_target"
|
893
|
+
|
894
|
+
if suggest:
|
895
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureOnlineStoreBigtableAutoScaling. Access the value via the '{suggest}' property getter instead.")
|
896
|
+
|
897
|
+
def __getitem__(self, key: str) -> Any:
|
898
|
+
AiFeatureOnlineStoreBigtableAutoScaling.__key_warning(key)
|
899
|
+
return super().__getitem__(key)
|
900
|
+
|
901
|
+
def get(self, key: str, default = None) -> Any:
|
902
|
+
AiFeatureOnlineStoreBigtableAutoScaling.__key_warning(key)
|
903
|
+
return super().get(key, default)
|
904
|
+
|
905
|
+
def __init__(__self__, *,
|
906
|
+
max_node_count: int,
|
907
|
+
min_node_count: int,
|
908
|
+
cpu_utilization_target: Optional[int] = None):
|
909
|
+
"""
|
910
|
+
:param int max_node_count: The maximum number of nodes to scale up to. Must be greater than or equal to minNodeCount, and less than or equal to 10 times of 'minNodeCount'.
|
911
|
+
:param int min_node_count: The minimum number of nodes to scale down to. Must be greater than or equal to 1.
|
912
|
+
:param int cpu_utilization_target: A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
913
|
+
"""
|
914
|
+
pulumi.set(__self__, "max_node_count", max_node_count)
|
915
|
+
pulumi.set(__self__, "min_node_count", min_node_count)
|
916
|
+
if cpu_utilization_target is not None:
|
917
|
+
pulumi.set(__self__, "cpu_utilization_target", cpu_utilization_target)
|
918
|
+
|
919
|
+
@property
|
920
|
+
@pulumi.getter(name="maxNodeCount")
|
921
|
+
def max_node_count(self) -> int:
|
922
|
+
"""
|
923
|
+
The maximum number of nodes to scale up to. Must be greater than or equal to minNodeCount, and less than or equal to 10 times of 'minNodeCount'.
|
924
|
+
"""
|
925
|
+
return pulumi.get(self, "max_node_count")
|
926
|
+
|
927
|
+
@property
|
928
|
+
@pulumi.getter(name="minNodeCount")
|
929
|
+
def min_node_count(self) -> int:
|
930
|
+
"""
|
931
|
+
The minimum number of nodes to scale down to. Must be greater than or equal to 1.
|
932
|
+
"""
|
933
|
+
return pulumi.get(self, "min_node_count")
|
934
|
+
|
935
|
+
@property
|
936
|
+
@pulumi.getter(name="cpuUtilizationTarget")
|
937
|
+
def cpu_utilization_target(self) -> Optional[int]:
|
938
|
+
"""
|
939
|
+
A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
940
|
+
"""
|
941
|
+
return pulumi.get(self, "cpu_utilization_target")
|
942
|
+
|
943
|
+
|
944
|
+
@pulumi.output_type
|
945
|
+
class AiFeatureOnlineStoreDedicatedServingEndpoint(dict):
|
946
|
+
@staticmethod
|
947
|
+
def __key_warning(key: str):
|
948
|
+
suggest = None
|
949
|
+
if key == "privateServiceConnectConfig":
|
950
|
+
suggest = "private_service_connect_config"
|
951
|
+
elif key == "publicEndpointDomainName":
|
952
|
+
suggest = "public_endpoint_domain_name"
|
953
|
+
elif key == "serviceAttachment":
|
954
|
+
suggest = "service_attachment"
|
955
|
+
|
956
|
+
if suggest:
|
957
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureOnlineStoreDedicatedServingEndpoint. Access the value via the '{suggest}' property getter instead.")
|
958
|
+
|
959
|
+
def __getitem__(self, key: str) -> Any:
|
960
|
+
AiFeatureOnlineStoreDedicatedServingEndpoint.__key_warning(key)
|
961
|
+
return super().__getitem__(key)
|
962
|
+
|
963
|
+
def get(self, key: str, default = None) -> Any:
|
964
|
+
AiFeatureOnlineStoreDedicatedServingEndpoint.__key_warning(key)
|
965
|
+
return super().get(key, default)
|
966
|
+
|
967
|
+
def __init__(__self__, *,
|
968
|
+
private_service_connect_config: Optional['outputs.AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig'] = None,
|
969
|
+
public_endpoint_domain_name: Optional[str] = None,
|
970
|
+
service_attachment: Optional[str] = None):
|
971
|
+
"""
|
972
|
+
:param 'AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfigArgs' private_service_connect_config: Private service connect config.
|
973
|
+
Structure is documented below.
|
974
|
+
:param str public_endpoint_domain_name: (Output)
|
975
|
+
Domain name to use for this FeatureOnlineStore
|
976
|
+
:param str service_attachment: (Output)
|
977
|
+
Name of the service attachment resource. Applicable only if private service connect is enabled and after FeatureViewSync is created.
|
978
|
+
"""
|
979
|
+
if private_service_connect_config is not None:
|
980
|
+
pulumi.set(__self__, "private_service_connect_config", private_service_connect_config)
|
981
|
+
if public_endpoint_domain_name is not None:
|
982
|
+
pulumi.set(__self__, "public_endpoint_domain_name", public_endpoint_domain_name)
|
983
|
+
if service_attachment is not None:
|
984
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
985
|
+
|
986
|
+
@property
|
987
|
+
@pulumi.getter(name="privateServiceConnectConfig")
|
988
|
+
def private_service_connect_config(self) -> Optional['outputs.AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig']:
|
989
|
+
"""
|
990
|
+
Private service connect config.
|
991
|
+
Structure is documented below.
|
992
|
+
"""
|
993
|
+
return pulumi.get(self, "private_service_connect_config")
|
994
|
+
|
995
|
+
@property
|
996
|
+
@pulumi.getter(name="publicEndpointDomainName")
|
997
|
+
def public_endpoint_domain_name(self) -> Optional[str]:
|
998
|
+
"""
|
999
|
+
(Output)
|
1000
|
+
Domain name to use for this FeatureOnlineStore
|
1001
|
+
"""
|
1002
|
+
return pulumi.get(self, "public_endpoint_domain_name")
|
1003
|
+
|
1004
|
+
@property
|
1005
|
+
@pulumi.getter(name="serviceAttachment")
|
1006
|
+
def service_attachment(self) -> Optional[str]:
|
1007
|
+
"""
|
1008
|
+
(Output)
|
1009
|
+
Name of the service attachment resource. Applicable only if private service connect is enabled and after FeatureViewSync is created.
|
1010
|
+
"""
|
1011
|
+
return pulumi.get(self, "service_attachment")
|
1012
|
+
|
1013
|
+
|
1014
|
+
@pulumi.output_type
|
1015
|
+
class AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig(dict):
|
1016
|
+
@staticmethod
|
1017
|
+
def __key_warning(key: str):
|
1018
|
+
suggest = None
|
1019
|
+
if key == "enablePrivateServiceConnect":
|
1020
|
+
suggest = "enable_private_service_connect"
|
1021
|
+
elif key == "projectAllowlists":
|
1022
|
+
suggest = "project_allowlists"
|
1023
|
+
|
1024
|
+
if suggest:
|
1025
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig. Access the value via the '{suggest}' property getter instead.")
|
1026
|
+
|
1027
|
+
def __getitem__(self, key: str) -> Any:
|
1028
|
+
AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig.__key_warning(key)
|
1029
|
+
return super().__getitem__(key)
|
1030
|
+
|
1031
|
+
def get(self, key: str, default = None) -> Any:
|
1032
|
+
AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig.__key_warning(key)
|
1033
|
+
return super().get(key, default)
|
1034
|
+
|
1035
|
+
def __init__(__self__, *,
|
1036
|
+
enable_private_service_connect: bool,
|
1037
|
+
project_allowlists: Optional[Sequence[str]] = None):
|
1038
|
+
"""
|
1039
|
+
:param bool enable_private_service_connect: If set to true, customers will use private service connection to send request. Otherwise, the connection will set to public endpoint.
|
1040
|
+
:param Sequence[str] project_allowlists: A list of Projects from which the forwarding rule will target the service attachment.
|
1041
|
+
"""
|
1042
|
+
pulumi.set(__self__, "enable_private_service_connect", enable_private_service_connect)
|
1043
|
+
if project_allowlists is not None:
|
1044
|
+
pulumi.set(__self__, "project_allowlists", project_allowlists)
|
1045
|
+
|
1046
|
+
@property
|
1047
|
+
@pulumi.getter(name="enablePrivateServiceConnect")
|
1048
|
+
def enable_private_service_connect(self) -> bool:
|
1049
|
+
"""
|
1050
|
+
If set to true, customers will use private service connection to send request. Otherwise, the connection will set to public endpoint.
|
1051
|
+
"""
|
1052
|
+
return pulumi.get(self, "enable_private_service_connect")
|
1053
|
+
|
1054
|
+
@property
|
1055
|
+
@pulumi.getter(name="projectAllowlists")
|
1056
|
+
def project_allowlists(self) -> Optional[Sequence[str]]:
|
1057
|
+
"""
|
1058
|
+
A list of Projects from which the forwarding rule will target the service attachment.
|
1059
|
+
"""
|
1060
|
+
return pulumi.get(self, "project_allowlists")
|
1061
|
+
|
1062
|
+
|
1063
|
+
@pulumi.output_type
|
1064
|
+
class AiFeatureOnlineStoreEmbeddingManagement(dict):
|
1065
|
+
def __init__(__self__, *,
|
1066
|
+
enabled: Optional[bool] = None):
|
1067
|
+
"""
|
1068
|
+
:param bool enabled: Enable embedding management.
|
1069
|
+
"""
|
1070
|
+
if enabled is not None:
|
1071
|
+
pulumi.set(__self__, "enabled", enabled)
|
1072
|
+
|
1073
|
+
@property
|
1074
|
+
@pulumi.getter
|
1075
|
+
def enabled(self) -> Optional[bool]:
|
1076
|
+
"""
|
1077
|
+
Enable embedding management.
|
1078
|
+
"""
|
1079
|
+
return pulumi.get(self, "enabled")
|
1080
|
+
|
1081
|
+
|
1082
|
+
@pulumi.output_type
|
1083
|
+
class AiFeatureOnlineStoreFeatureviewBigQuerySource(dict):
|
1084
|
+
@staticmethod
|
1085
|
+
def __key_warning(key: str):
|
1086
|
+
suggest = None
|
1087
|
+
if key == "entityIdColumns":
|
1088
|
+
suggest = "entity_id_columns"
|
1089
|
+
|
1090
|
+
if suggest:
|
1091
|
+
pulumi.log.warn(f"Key '{key}' not found in AiFeatureOnlineStoreFeatureviewBigQuerySource. Access the value via the '{suggest}' property getter instead.")
|
1092
|
+
|
1093
|
+
def __getitem__(self, key: str) -> Any:
|
1094
|
+
AiFeatureOnlineStoreFeatureviewBigQuerySource.__key_warning(key)
|
1095
|
+
return super().__getitem__(key)
|
1096
|
+
|
1097
|
+
def get(self, key: str, default = None) -> Any:
|
1098
|
+
AiFeatureOnlineStoreFeatureviewBigQuerySource.__key_warning(key)
|
1099
|
+
return super().get(key, default)
|
1100
|
+
|
1101
|
+
def __init__(__self__, *,
|
1102
|
+
entity_id_columns: Sequence[str],
|
1103
|
+
uri: str):
|
1104
|
+
"""
|
1105
|
+
:param Sequence[str] entity_id_columns: Columns to construct entityId / row keys. Start by supporting 1 only.
|
1106
|
+
:param str uri: The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig.
|
1107
|
+
"""
|
1108
|
+
pulumi.set(__self__, "entity_id_columns", entity_id_columns)
|
1109
|
+
pulumi.set(__self__, "uri", uri)
|
1110
|
+
|
1111
|
+
@property
|
1112
|
+
@pulumi.getter(name="entityIdColumns")
|
1113
|
+
def entity_id_columns(self) -> Sequence[str]:
|
1114
|
+
"""
|
1115
|
+
Columns to construct entityId / row keys. Start by supporting 1 only.
|
1116
|
+
"""
|
1117
|
+
return pulumi.get(self, "entity_id_columns")
|
1118
|
+
|
1119
|
+
@property
|
1120
|
+
@pulumi.getter
|
1121
|
+
def uri(self) -> str:
|
1122
|
+
"""
|
1123
|
+
The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig.
|
1124
|
+
"""
|
1125
|
+
return pulumi.get(self, "uri")
|
1126
|
+
|
1127
|
+
|
1128
|
+
@pulumi.output_type
|
1129
|
+
class AiFeatureOnlineStoreFeatureviewSyncConfig(dict):
|
1130
|
+
def __init__(__self__, *,
|
1131
|
+
cron: Optional[str] = None):
|
1132
|
+
"""
|
1133
|
+
:param str cron: Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
|
1134
|
+
To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
|
1135
|
+
"""
|
1136
|
+
if cron is not None:
|
1137
|
+
pulumi.set(__self__, "cron", cron)
|
1138
|
+
|
1139
|
+
@property
|
1140
|
+
@pulumi.getter
|
1141
|
+
def cron(self) -> Optional[str]:
|
1142
|
+
"""
|
1143
|
+
Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
|
1144
|
+
To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
|
1145
|
+
"""
|
1146
|
+
return pulumi.get(self, "cron")
|
1147
|
+
|
1148
|
+
|
1149
|
+
@pulumi.output_type
|
1150
|
+
class AiFeatureOnlineStoreOptimized(dict):
|
1151
|
+
def __init__(__self__):
|
1152
|
+
pass
|
1153
|
+
|
1154
|
+
|
749
1155
|
@pulumi.output_type
|
750
1156
|
class AiFeatureStoreEncryptionSpec(dict):
|
751
1157
|
@staticmethod
|
@@ -6,8 +6,10 @@ from .. import _utilities
|
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .cluster import *
|
9
|
+
from .external_access_rule import *
|
9
10
|
from .external_address import *
|
10
11
|
from .get_cluster import *
|
12
|
+
from .get_external_access_rule import *
|
11
13
|
from .get_external_address import *
|
12
14
|
from .get_network import *
|
13
15
|
from .get_network_peering import *
|
@@ -11,6 +11,8 @@ from .. import _utilities
|
|
11
11
|
|
12
12
|
__all__ = [
|
13
13
|
'ClusterNodeTypeConfigArgs',
|
14
|
+
'ExternalAccessRuleDestinationIpRangeArgs',
|
15
|
+
'ExternalAccessRuleSourceIpRangeArgs',
|
14
16
|
'NetworkPolicyExternalIpArgs',
|
15
17
|
'NetworkPolicyInternetAccessArgs',
|
16
18
|
'NetworkVpcNetworkArgs',
|
@@ -82,6 +84,88 @@ class ClusterNodeTypeConfigArgs:
|
|
82
84
|
pulumi.set(self, "custom_core_count", value)
|
83
85
|
|
84
86
|
|
87
|
+
@pulumi.input_type
|
88
|
+
class ExternalAccessRuleDestinationIpRangeArgs:
|
89
|
+
def __init__(__self__, *,
|
90
|
+
external_address: Optional[pulumi.Input[str]] = None,
|
91
|
+
ip_address_range: Optional[pulumi.Input[str]] = None):
|
92
|
+
"""
|
93
|
+
:param pulumi.Input[str] external_address: The name of an `ExternalAddress` resource.
|
94
|
+
|
95
|
+
- - -
|
96
|
+
:param pulumi.Input[str] ip_address_range: An IP address range in the CIDR format.
|
97
|
+
"""
|
98
|
+
if external_address is not None:
|
99
|
+
pulumi.set(__self__, "external_address", external_address)
|
100
|
+
if ip_address_range is not None:
|
101
|
+
pulumi.set(__self__, "ip_address_range", ip_address_range)
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="externalAddress")
|
105
|
+
def external_address(self) -> Optional[pulumi.Input[str]]:
|
106
|
+
"""
|
107
|
+
The name of an `ExternalAddress` resource.
|
108
|
+
|
109
|
+
- - -
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "external_address")
|
112
|
+
|
113
|
+
@external_address.setter
|
114
|
+
def external_address(self, value: Optional[pulumi.Input[str]]):
|
115
|
+
pulumi.set(self, "external_address", value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="ipAddressRange")
|
119
|
+
def ip_address_range(self) -> Optional[pulumi.Input[str]]:
|
120
|
+
"""
|
121
|
+
An IP address range in the CIDR format.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "ip_address_range")
|
124
|
+
|
125
|
+
@ip_address_range.setter
|
126
|
+
def ip_address_range(self, value: Optional[pulumi.Input[str]]):
|
127
|
+
pulumi.set(self, "ip_address_range", value)
|
128
|
+
|
129
|
+
|
130
|
+
@pulumi.input_type
|
131
|
+
class ExternalAccessRuleSourceIpRangeArgs:
|
132
|
+
def __init__(__self__, *,
|
133
|
+
ip_address: Optional[pulumi.Input[str]] = None,
|
134
|
+
ip_address_range: Optional[pulumi.Input[str]] = None):
|
135
|
+
"""
|
136
|
+
:param pulumi.Input[str] ip_address: A single IP address.
|
137
|
+
:param pulumi.Input[str] ip_address_range: An IP address range in the CIDR format.
|
138
|
+
"""
|
139
|
+
if ip_address is not None:
|
140
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
141
|
+
if ip_address_range is not None:
|
142
|
+
pulumi.set(__self__, "ip_address_range", ip_address_range)
|
143
|
+
|
144
|
+
@property
|
145
|
+
@pulumi.getter(name="ipAddress")
|
146
|
+
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
147
|
+
"""
|
148
|
+
A single IP address.
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "ip_address")
|
151
|
+
|
152
|
+
@ip_address.setter
|
153
|
+
def ip_address(self, value: Optional[pulumi.Input[str]]):
|
154
|
+
pulumi.set(self, "ip_address", value)
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="ipAddressRange")
|
158
|
+
def ip_address_range(self) -> Optional[pulumi.Input[str]]:
|
159
|
+
"""
|
160
|
+
An IP address range in the CIDR format.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "ip_address_range")
|
163
|
+
|
164
|
+
@ip_address_range.setter
|
165
|
+
def ip_address_range(self, value: Optional[pulumi.Input[str]]):
|
166
|
+
pulumi.set(self, "ip_address_range", value)
|
167
|
+
|
168
|
+
|
85
169
|
@pulumi.input_type
|
86
170
|
class NetworkPolicyExternalIpArgs:
|
87
171
|
def __init__(__self__, *,
|