pulumi-snowflake 2.3.0a1753339260__py3-none-any.whl → 2.3.0a1753398370__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.
Potentially problematic release.
This version of pulumi-snowflake might be problematic. Click here for more details.
- pulumi_snowflake/__init__.py +1 -1
- pulumi_snowflake/_inputs.py +16796 -16797
- pulumi_snowflake/account.py +252 -253
- pulumi_snowflake/account_authentication_policy_attachment.py +18 -19
- pulumi_snowflake/account_parameter.py +35 -36
- pulumi_snowflake/account_password_policy_attachment.py +18 -19
- pulumi_snowflake/account_role.py +42 -43
- pulumi_snowflake/alert.py +149 -150
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +197 -198
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +180 -181
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +193 -194
- pulumi_snowflake/api_integration.py +251 -252
- pulumi_snowflake/authentication_policy.py +167 -168
- pulumi_snowflake/compute_pool.py +167 -168
- pulumi_snowflake/config/__init__.py +1 -1
- pulumi_snowflake/config/__init__.pyi +1 -2
- pulumi_snowflake/config/outputs.py +21 -22
- pulumi_snowflake/config/vars.py +43 -44
- pulumi_snowflake/cortex_search_service.py +191 -192
- pulumi_snowflake/current_account.py +2088 -2089
- pulumi_snowflake/database.py +353 -354
- pulumi_snowflake/database_role.py +63 -64
- pulumi_snowflake/dynamic_table.py +274 -275
- pulumi_snowflake/email_notification_integration.py +70 -71
- pulumi_snowflake/execute.py +61 -62
- pulumi_snowflake/external_function.py +280 -281
- pulumi_snowflake/external_oauth_integration.py +288 -289
- pulumi_snowflake/external_table.py +246 -247
- pulumi_snowflake/external_volume.py +68 -69
- pulumi_snowflake/failover_group.py +135 -136
- pulumi_snowflake/file_format.py +622 -623
- pulumi_snowflake/function_java.py +320 -321
- pulumi_snowflake/function_javascript.py +243 -244
- pulumi_snowflake/function_python.py +334 -335
- pulumi_snowflake/function_scala.py +320 -321
- pulumi_snowflake/function_sql.py +226 -227
- pulumi_snowflake/get_account_roles.py +16 -17
- pulumi_snowflake/get_accounts.py +16 -17
- pulumi_snowflake/get_alerts.py +22 -23
- pulumi_snowflake/get_compute_pools.py +23 -24
- pulumi_snowflake/get_connections.py +10 -11
- pulumi_snowflake/get_cortex_search_services.py +18 -19
- pulumi_snowflake/get_current_account.py +9 -10
- pulumi_snowflake/get_current_role.py +5 -6
- pulumi_snowflake/get_database.py +25 -26
- pulumi_snowflake/get_database_role.py +19 -20
- pulumi_snowflake/get_database_roles.py +17 -18
- pulumi_snowflake/get_databases.py +29 -30
- pulumi_snowflake/get_dynamic_tables.py +13 -14
- pulumi_snowflake/get_external_functions.py +16 -17
- pulumi_snowflake/get_external_tables.py +16 -17
- pulumi_snowflake/get_failover_groups.py +10 -11
- pulumi_snowflake/get_file_formats.py +16 -17
- pulumi_snowflake/get_functions.py +16 -17
- pulumi_snowflake/get_git_repositories.py +18 -19
- pulumi_snowflake/get_grants.py +9 -10
- pulumi_snowflake/get_image_repositories.py +11 -12
- pulumi_snowflake/get_masking_policies.py +18 -19
- pulumi_snowflake/get_materialized_views.py +16 -17
- pulumi_snowflake/get_network_policies.py +16 -17
- pulumi_snowflake/get_parameters.py +34 -35
- pulumi_snowflake/get_pipes.py +16 -17
- pulumi_snowflake/get_procedures.py +16 -17
- pulumi_snowflake/get_resource_monitors.py +10 -11
- pulumi_snowflake/get_row_access_policies.py +18 -19
- pulumi_snowflake/get_schemas.py +30 -31
- pulumi_snowflake/get_secrets.py +17 -18
- pulumi_snowflake/get_security_integrations.py +16 -17
- pulumi_snowflake/get_sequences.py +16 -17
- pulumi_snowflake/get_services.py +30 -31
- pulumi_snowflake/get_shares.py +10 -11
- pulumi_snowflake/get_stages.py +16 -17
- pulumi_snowflake/get_storage_integrations.py +4 -5
- pulumi_snowflake/get_streamlits.py +18 -19
- pulumi_snowflake/get_streams.py +24 -25
- pulumi_snowflake/get_system_generate_scim_access_token.py +11 -12
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +11 -12
- pulumi_snowflake/get_system_get_private_link_config.py +21 -22
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +7 -8
- pulumi_snowflake/get_tables.py +24 -25
- pulumi_snowflake/get_tags.py +11 -12
- pulumi_snowflake/get_tasks.py +30 -31
- pulumi_snowflake/get_users.py +29 -30
- pulumi_snowflake/get_views.py +24 -25
- pulumi_snowflake/get_warehouses.py +22 -23
- pulumi_snowflake/git_repository.py +133 -134
- pulumi_snowflake/grant_account_role.py +52 -53
- pulumi_snowflake/grant_application_role.py +52 -53
- pulumi_snowflake/grant_database_role.py +69 -70
- pulumi_snowflake/grant_ownership.py +55 -56
- pulumi_snowflake/grant_privileges_to_account_role.py +125 -126
- pulumi_snowflake/grant_privileges_to_database_role.py +122 -123
- pulumi_snowflake/grant_privileges_to_share.py +154 -155
- pulumi_snowflake/image_repository.py +80 -81
- pulumi_snowflake/job_service.py +148 -149
- pulumi_snowflake/legacy_service_user.py +1269 -1270
- pulumi_snowflake/managed_account.py +140 -141
- pulumi_snowflake/masking_policy.py +136 -137
- pulumi_snowflake/materialized_view.py +149 -150
- pulumi_snowflake/network_policy.py +116 -117
- pulumi_snowflake/network_policy_attachment.py +52 -53
- pulumi_snowflake/network_rule.py +129 -130
- pulumi_snowflake/notification_integration.py +298 -299
- pulumi_snowflake/oauth_integration_for_custom_clients.py +263 -264
- pulumi_snowflake/oauth_integration_for_partner_applications.py +169 -170
- pulumi_snowflake/object_parameter.py +72 -73
- pulumi_snowflake/outputs.py +15510 -15511
- pulumi_snowflake/password_policy.py +299 -300
- pulumi_snowflake/pipe.py +181 -182
- pulumi_snowflake/primary_connection.py +70 -71
- pulumi_snowflake/procedure_java.py +341 -342
- pulumi_snowflake/procedure_javascript.py +247 -248
- pulumi_snowflake/procedure_python.py +338 -339
- pulumi_snowflake/procedure_scala.py +341 -342
- pulumi_snowflake/procedure_sql.py +247 -248
- pulumi_snowflake/provider.py +377 -378
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +165 -166
- pulumi_snowflake/row_access_policy.py +102 -103
- pulumi_snowflake/saml2_integration.py +303 -304
- pulumi_snowflake/schema.py +390 -391
- pulumi_snowflake/scim_integration.py +133 -134
- pulumi_snowflake/secondary_connection.py +72 -73
- pulumi_snowflake/secondary_database.py +350 -351
- pulumi_snowflake/secret_with_authorization_code_grant.py +138 -139
- pulumi_snowflake/secret_with_basic_authentication.py +121 -122
- pulumi_snowflake/secret_with_client_credentials.py +125 -126
- pulumi_snowflake/secret_with_generic_string.py +104 -105
- pulumi_snowflake/sequence.py +121 -122
- pulumi_snowflake/service.py +233 -234
- pulumi_snowflake/service_user.py +1239 -1240
- pulumi_snowflake/share.py +61 -62
- pulumi_snowflake/shared_database.py +299 -300
- pulumi_snowflake/stage.py +234 -235
- pulumi_snowflake/storage_integration.py +230 -231
- pulumi_snowflake/stream_on_directory_table.py +128 -129
- pulumi_snowflake/stream_on_external_table.py +151 -152
- pulumi_snowflake/stream_on_table.py +164 -165
- pulumi_snowflake/stream_on_view.py +164 -165
- pulumi_snowflake/streamlit.py +184 -185
- pulumi_snowflake/table.py +147 -148
- pulumi_snowflake/table_column_masking_policy_application.py +52 -53
- pulumi_snowflake/table_constraint.py +191 -192
- pulumi_snowflake/tag.py +114 -115
- pulumi_snowflake/tag_association.py +86 -87
- pulumi_snowflake/task.py +1224 -1225
- pulumi_snowflake/user.py +1346 -1347
- pulumi_snowflake/user_authentication_policy_attachment.py +35 -36
- pulumi_snowflake/user_password_policy_attachment.py +35 -36
- pulumi_snowflake/user_public_keys.py +52 -53
- pulumi_snowflake/view.py +187 -188
- pulumi_snowflake/warehouse.py +286 -287
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/METADATA +1 -1
- pulumi_snowflake-2.3.0a1753398370.dist-info/RECORD +158 -0
- pulumi_snowflake-2.3.0a1753339260.dist-info/RECORD +0 -158
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-2.3.0a1753339260.dist-info → pulumi_snowflake-2.3.0a1753398370.dist-info}/top_level.txt +0 -0
pulumi_snowflake/job_service.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -22,26 +21,26 @@ __all__ = ['JobServiceArgs', 'JobService']
|
|
|
22
21
|
@pulumi.input_type
|
|
23
22
|
class JobServiceArgs:
|
|
24
23
|
def __init__(__self__, *,
|
|
25
|
-
compute_pool: pulumi.Input[
|
|
26
|
-
database: pulumi.Input[
|
|
27
|
-
schema: pulumi.Input[
|
|
28
|
-
comment: Optional[pulumi.Input[
|
|
29
|
-
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
24
|
+
compute_pool: pulumi.Input[_builtins.str],
|
|
25
|
+
database: pulumi.Input[_builtins.str],
|
|
26
|
+
schema: pulumi.Input[_builtins.str],
|
|
27
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
|
+
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
30
29
|
from_specification: Optional[pulumi.Input['JobServiceFromSpecificationArgs']] = None,
|
|
31
30
|
from_specification_template: Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']] = None,
|
|
32
|
-
name: Optional[pulumi.Input[
|
|
33
|
-
query_warehouse: Optional[pulumi.Input[
|
|
31
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
|
+
query_warehouse: Optional[pulumi.Input[_builtins.str]] = None):
|
|
34
33
|
"""
|
|
35
34
|
The set of arguments for constructing a JobService resource.
|
|
36
|
-
:param pulumi.Input[
|
|
37
|
-
:param pulumi.Input[
|
|
38
|
-
:param pulumi.Input[
|
|
39
|
-
:param pulumi.Input[
|
|
40
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
35
|
+
:param pulumi.Input[_builtins.str] compute_pool: Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
36
|
+
:param pulumi.Input[_builtins.str] database: The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
37
|
+
:param pulumi.Input[_builtins.str] schema: The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
38
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the service.
|
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: Specifies the names of the external access integrations that allow your service to access external sites.
|
|
41
40
|
:param pulumi.Input['JobServiceFromSpecificationArgs'] from_specification: Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
42
41
|
:param pulumi.Input['JobServiceFromSpecificationTemplateArgs'] from_specification_template: Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
43
|
-
:param pulumi.Input[
|
|
44
|
-
:param pulumi.Input[
|
|
42
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
43
|
+
:param pulumi.Input[_builtins.str] query_warehouse: Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
45
44
|
"""
|
|
46
45
|
pulumi.set(__self__, "compute_pool", compute_pool)
|
|
47
46
|
pulumi.set(__self__, "database", database)
|
|
@@ -59,67 +58,67 @@ class JobServiceArgs:
|
|
|
59
58
|
if query_warehouse is not None:
|
|
60
59
|
pulumi.set(__self__, "query_warehouse", query_warehouse)
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter(name="computePool")
|
|
64
|
-
def compute_pool(self) -> pulumi.Input[
|
|
63
|
+
def compute_pool(self) -> pulumi.Input[_builtins.str]:
|
|
65
64
|
"""
|
|
66
65
|
Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
67
66
|
"""
|
|
68
67
|
return pulumi.get(self, "compute_pool")
|
|
69
68
|
|
|
70
69
|
@compute_pool.setter
|
|
71
|
-
def compute_pool(self, value: pulumi.Input[
|
|
70
|
+
def compute_pool(self, value: pulumi.Input[_builtins.str]):
|
|
72
71
|
pulumi.set(self, "compute_pool", value)
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def database(self) -> pulumi.Input[
|
|
75
|
+
def database(self) -> pulumi.Input[_builtins.str]:
|
|
77
76
|
"""
|
|
78
77
|
The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "database")
|
|
81
80
|
|
|
82
81
|
@database.setter
|
|
83
|
-
def database(self, value: pulumi.Input[
|
|
82
|
+
def database(self, value: pulumi.Input[_builtins.str]):
|
|
84
83
|
pulumi.set(self, "database", value)
|
|
85
84
|
|
|
86
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
87
86
|
@pulumi.getter
|
|
88
|
-
def schema(self) -> pulumi.Input[
|
|
87
|
+
def schema(self) -> pulumi.Input[_builtins.str]:
|
|
89
88
|
"""
|
|
90
89
|
The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
91
90
|
"""
|
|
92
91
|
return pulumi.get(self, "schema")
|
|
93
92
|
|
|
94
93
|
@schema.setter
|
|
95
|
-
def schema(self, value: pulumi.Input[
|
|
94
|
+
def schema(self, value: pulumi.Input[_builtins.str]):
|
|
96
95
|
pulumi.set(self, "schema", value)
|
|
97
96
|
|
|
98
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
99
98
|
@pulumi.getter
|
|
100
|
-
def comment(self) -> Optional[pulumi.Input[
|
|
99
|
+
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
101
100
|
"""
|
|
102
101
|
Specifies a comment for the service.
|
|
103
102
|
"""
|
|
104
103
|
return pulumi.get(self, "comment")
|
|
105
104
|
|
|
106
105
|
@comment.setter
|
|
107
|
-
def comment(self, value: Optional[pulumi.Input[
|
|
106
|
+
def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
108
107
|
pulumi.set(self, "comment", value)
|
|
109
108
|
|
|
110
|
-
@property
|
|
109
|
+
@_builtins.property
|
|
111
110
|
@pulumi.getter(name="externalAccessIntegrations")
|
|
112
|
-
def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
111
|
+
def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
113
112
|
"""
|
|
114
113
|
Specifies the names of the external access integrations that allow your service to access external sites.
|
|
115
114
|
"""
|
|
116
115
|
return pulumi.get(self, "external_access_integrations")
|
|
117
116
|
|
|
118
117
|
@external_access_integrations.setter
|
|
119
|
-
def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
118
|
+
def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
120
119
|
pulumi.set(self, "external_access_integrations", value)
|
|
121
120
|
|
|
122
|
-
@property
|
|
121
|
+
@_builtins.property
|
|
123
122
|
@pulumi.getter(name="fromSpecification")
|
|
124
123
|
def from_specification(self) -> Optional[pulumi.Input['JobServiceFromSpecificationArgs']]:
|
|
125
124
|
"""
|
|
@@ -131,7 +130,7 @@ class JobServiceArgs:
|
|
|
131
130
|
def from_specification(self, value: Optional[pulumi.Input['JobServiceFromSpecificationArgs']]):
|
|
132
131
|
pulumi.set(self, "from_specification", value)
|
|
133
132
|
|
|
134
|
-
@property
|
|
133
|
+
@_builtins.property
|
|
135
134
|
@pulumi.getter(name="fromSpecificationTemplate")
|
|
136
135
|
def from_specification_template(self) -> Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']]:
|
|
137
136
|
"""
|
|
@@ -143,61 +142,61 @@ class JobServiceArgs:
|
|
|
143
142
|
def from_specification_template(self, value: Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']]):
|
|
144
143
|
pulumi.set(self, "from_specification_template", value)
|
|
145
144
|
|
|
146
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
147
146
|
@pulumi.getter
|
|
148
|
-
def name(self) -> Optional[pulumi.Input[
|
|
147
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
149
148
|
"""
|
|
150
149
|
Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
151
150
|
"""
|
|
152
151
|
return pulumi.get(self, "name")
|
|
153
152
|
|
|
154
153
|
@name.setter
|
|
155
|
-
def name(self, value: Optional[pulumi.Input[
|
|
154
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
156
155
|
pulumi.set(self, "name", value)
|
|
157
156
|
|
|
158
|
-
@property
|
|
157
|
+
@_builtins.property
|
|
159
158
|
@pulumi.getter(name="queryWarehouse")
|
|
160
|
-
def query_warehouse(self) -> Optional[pulumi.Input[
|
|
159
|
+
def query_warehouse(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
161
160
|
"""
|
|
162
161
|
Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
163
162
|
"""
|
|
164
163
|
return pulumi.get(self, "query_warehouse")
|
|
165
164
|
|
|
166
165
|
@query_warehouse.setter
|
|
167
|
-
def query_warehouse(self, value: Optional[pulumi.Input[
|
|
166
|
+
def query_warehouse(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
168
167
|
pulumi.set(self, "query_warehouse", value)
|
|
169
168
|
|
|
170
169
|
|
|
171
170
|
@pulumi.input_type
|
|
172
171
|
class _JobServiceState:
|
|
173
172
|
def __init__(__self__, *,
|
|
174
|
-
comment: Optional[pulumi.Input[
|
|
175
|
-
compute_pool: Optional[pulumi.Input[
|
|
176
|
-
database: Optional[pulumi.Input[
|
|
173
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
174
|
+
compute_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
|
175
|
+
database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
177
176
|
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['JobServiceDescribeOutputArgs']]]] = None,
|
|
178
|
-
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
177
|
+
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
179
178
|
from_specification: Optional[pulumi.Input['JobServiceFromSpecificationArgs']] = None,
|
|
180
179
|
from_specification_template: Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']] = None,
|
|
181
|
-
fully_qualified_name: Optional[pulumi.Input[
|
|
182
|
-
name: Optional[pulumi.Input[
|
|
183
|
-
query_warehouse: Optional[pulumi.Input[
|
|
184
|
-
schema: Optional[pulumi.Input[
|
|
185
|
-
service_type: Optional[pulumi.Input[
|
|
180
|
+
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
181
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
182
|
+
query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
|
|
183
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
184
|
+
service_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
186
185
|
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['JobServiceShowOutputArgs']]]] = None):
|
|
187
186
|
"""
|
|
188
187
|
Input properties used for looking up and filtering JobService resources.
|
|
189
|
-
:param pulumi.Input[
|
|
190
|
-
:param pulumi.Input[
|
|
191
|
-
:param pulumi.Input[
|
|
188
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the service.
|
|
189
|
+
:param pulumi.Input[_builtins.str] compute_pool: Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
190
|
+
:param pulumi.Input[_builtins.str] database: The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
192
191
|
:param pulumi.Input[Sequence[pulumi.Input['JobServiceDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SERVICE` for the given service.
|
|
193
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
192
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: Specifies the names of the external access integrations that allow your service to access external sites.
|
|
194
193
|
:param pulumi.Input['JobServiceFromSpecificationArgs'] from_specification: Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
195
194
|
:param pulumi.Input['JobServiceFromSpecificationTemplateArgs'] from_specification_template: Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
196
|
-
:param pulumi.Input[
|
|
197
|
-
:param pulumi.Input[
|
|
198
|
-
:param pulumi.Input[
|
|
199
|
-
:param pulumi.Input[
|
|
200
|
-
:param pulumi.Input[
|
|
195
|
+
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
196
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
197
|
+
:param pulumi.Input[_builtins.str] query_warehouse: Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
198
|
+
:param pulumi.Input[_builtins.str] schema: The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
199
|
+
:param pulumi.Input[_builtins.str] service_type: Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
|
|
201
200
|
:param pulumi.Input[Sequence[pulumi.Input['JobServiceShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SERVICES` for the given service.
|
|
202
201
|
"""
|
|
203
202
|
if comment is not None:
|
|
@@ -227,43 +226,43 @@ class _JobServiceState:
|
|
|
227
226
|
if show_outputs is not None:
|
|
228
227
|
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
229
228
|
|
|
230
|
-
@property
|
|
229
|
+
@_builtins.property
|
|
231
230
|
@pulumi.getter
|
|
232
|
-
def comment(self) -> Optional[pulumi.Input[
|
|
231
|
+
def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
233
232
|
"""
|
|
234
233
|
Specifies a comment for the service.
|
|
235
234
|
"""
|
|
236
235
|
return pulumi.get(self, "comment")
|
|
237
236
|
|
|
238
237
|
@comment.setter
|
|
239
|
-
def comment(self, value: Optional[pulumi.Input[
|
|
238
|
+
def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
240
239
|
pulumi.set(self, "comment", value)
|
|
241
240
|
|
|
242
|
-
@property
|
|
241
|
+
@_builtins.property
|
|
243
242
|
@pulumi.getter(name="computePool")
|
|
244
|
-
def compute_pool(self) -> Optional[pulumi.Input[
|
|
243
|
+
def compute_pool(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
245
244
|
"""
|
|
246
245
|
Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
247
246
|
"""
|
|
248
247
|
return pulumi.get(self, "compute_pool")
|
|
249
248
|
|
|
250
249
|
@compute_pool.setter
|
|
251
|
-
def compute_pool(self, value: Optional[pulumi.Input[
|
|
250
|
+
def compute_pool(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
252
251
|
pulumi.set(self, "compute_pool", value)
|
|
253
252
|
|
|
254
|
-
@property
|
|
253
|
+
@_builtins.property
|
|
255
254
|
@pulumi.getter
|
|
256
|
-
def database(self) -> Optional[pulumi.Input[
|
|
255
|
+
def database(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
257
256
|
"""
|
|
258
257
|
The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
259
258
|
"""
|
|
260
259
|
return pulumi.get(self, "database")
|
|
261
260
|
|
|
262
261
|
@database.setter
|
|
263
|
-
def database(self, value: Optional[pulumi.Input[
|
|
262
|
+
def database(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
264
263
|
pulumi.set(self, "database", value)
|
|
265
264
|
|
|
266
|
-
@property
|
|
265
|
+
@_builtins.property
|
|
267
266
|
@pulumi.getter(name="describeOutputs")
|
|
268
267
|
def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['JobServiceDescribeOutputArgs']]]]:
|
|
269
268
|
"""
|
|
@@ -275,19 +274,19 @@ class _JobServiceState:
|
|
|
275
274
|
def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['JobServiceDescribeOutputArgs']]]]):
|
|
276
275
|
pulumi.set(self, "describe_outputs", value)
|
|
277
276
|
|
|
278
|
-
@property
|
|
277
|
+
@_builtins.property
|
|
279
278
|
@pulumi.getter(name="externalAccessIntegrations")
|
|
280
|
-
def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
279
|
+
def external_access_integrations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
281
280
|
"""
|
|
282
281
|
Specifies the names of the external access integrations that allow your service to access external sites.
|
|
283
282
|
"""
|
|
284
283
|
return pulumi.get(self, "external_access_integrations")
|
|
285
284
|
|
|
286
285
|
@external_access_integrations.setter
|
|
287
|
-
def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
286
|
+
def external_access_integrations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
288
287
|
pulumi.set(self, "external_access_integrations", value)
|
|
289
288
|
|
|
290
|
-
@property
|
|
289
|
+
@_builtins.property
|
|
291
290
|
@pulumi.getter(name="fromSpecification")
|
|
292
291
|
def from_specification(self) -> Optional[pulumi.Input['JobServiceFromSpecificationArgs']]:
|
|
293
292
|
"""
|
|
@@ -299,7 +298,7 @@ class _JobServiceState:
|
|
|
299
298
|
def from_specification(self, value: Optional[pulumi.Input['JobServiceFromSpecificationArgs']]):
|
|
300
299
|
pulumi.set(self, "from_specification", value)
|
|
301
300
|
|
|
302
|
-
@property
|
|
301
|
+
@_builtins.property
|
|
303
302
|
@pulumi.getter(name="fromSpecificationTemplate")
|
|
304
303
|
def from_specification_template(self) -> Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']]:
|
|
305
304
|
"""
|
|
@@ -311,67 +310,67 @@ class _JobServiceState:
|
|
|
311
310
|
def from_specification_template(self, value: Optional[pulumi.Input['JobServiceFromSpecificationTemplateArgs']]):
|
|
312
311
|
pulumi.set(self, "from_specification_template", value)
|
|
313
312
|
|
|
314
|
-
@property
|
|
313
|
+
@_builtins.property
|
|
315
314
|
@pulumi.getter(name="fullyQualifiedName")
|
|
316
|
-
def fully_qualified_name(self) -> Optional[pulumi.Input[
|
|
315
|
+
def fully_qualified_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
317
316
|
"""
|
|
318
317
|
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
319
318
|
"""
|
|
320
319
|
return pulumi.get(self, "fully_qualified_name")
|
|
321
320
|
|
|
322
321
|
@fully_qualified_name.setter
|
|
323
|
-
def fully_qualified_name(self, value: Optional[pulumi.Input[
|
|
322
|
+
def fully_qualified_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
324
323
|
pulumi.set(self, "fully_qualified_name", value)
|
|
325
324
|
|
|
326
|
-
@property
|
|
325
|
+
@_builtins.property
|
|
327
326
|
@pulumi.getter
|
|
328
|
-
def name(self) -> Optional[pulumi.Input[
|
|
327
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
329
328
|
"""
|
|
330
329
|
Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
331
330
|
"""
|
|
332
331
|
return pulumi.get(self, "name")
|
|
333
332
|
|
|
334
333
|
@name.setter
|
|
335
|
-
def name(self, value: Optional[pulumi.Input[
|
|
334
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
336
335
|
pulumi.set(self, "name", value)
|
|
337
336
|
|
|
338
|
-
@property
|
|
337
|
+
@_builtins.property
|
|
339
338
|
@pulumi.getter(name="queryWarehouse")
|
|
340
|
-
def query_warehouse(self) -> Optional[pulumi.Input[
|
|
339
|
+
def query_warehouse(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
341
340
|
"""
|
|
342
341
|
Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
343
342
|
"""
|
|
344
343
|
return pulumi.get(self, "query_warehouse")
|
|
345
344
|
|
|
346
345
|
@query_warehouse.setter
|
|
347
|
-
def query_warehouse(self, value: Optional[pulumi.Input[
|
|
346
|
+
def query_warehouse(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
348
347
|
pulumi.set(self, "query_warehouse", value)
|
|
349
348
|
|
|
350
|
-
@property
|
|
349
|
+
@_builtins.property
|
|
351
350
|
@pulumi.getter
|
|
352
|
-
def schema(self) -> Optional[pulumi.Input[
|
|
351
|
+
def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
353
352
|
"""
|
|
354
353
|
The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
355
354
|
"""
|
|
356
355
|
return pulumi.get(self, "schema")
|
|
357
356
|
|
|
358
357
|
@schema.setter
|
|
359
|
-
def schema(self, value: Optional[pulumi.Input[
|
|
358
|
+
def schema(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
360
359
|
pulumi.set(self, "schema", value)
|
|
361
360
|
|
|
362
|
-
@property
|
|
361
|
+
@_builtins.property
|
|
363
362
|
@pulumi.getter(name="serviceType")
|
|
364
|
-
def service_type(self) -> Optional[pulumi.Input[
|
|
363
|
+
def service_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
365
364
|
"""
|
|
366
365
|
Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
|
|
367
366
|
"""
|
|
368
367
|
return pulumi.get(self, "service_type")
|
|
369
368
|
|
|
370
369
|
@service_type.setter
|
|
371
|
-
def service_type(self, value: Optional[pulumi.Input[
|
|
370
|
+
def service_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
372
371
|
pulumi.set(self, "service_type", value)
|
|
373
372
|
|
|
374
|
-
@property
|
|
373
|
+
@_builtins.property
|
|
375
374
|
@pulumi.getter(name="showOutputs")
|
|
376
375
|
def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['JobServiceShowOutputArgs']]]]:
|
|
377
376
|
"""
|
|
@@ -390,15 +389,15 @@ class JobService(pulumi.CustomResource):
|
|
|
390
389
|
def __init__(__self__,
|
|
391
390
|
resource_name: str,
|
|
392
391
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
393
|
-
comment: Optional[pulumi.Input[
|
|
394
|
-
compute_pool: Optional[pulumi.Input[
|
|
395
|
-
database: Optional[pulumi.Input[
|
|
396
|
-
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
392
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
393
|
+
compute_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
|
394
|
+
database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
395
|
+
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
397
396
|
from_specification: Optional[pulumi.Input[Union['JobServiceFromSpecificationArgs', 'JobServiceFromSpecificationArgsDict']]] = None,
|
|
398
397
|
from_specification_template: Optional[pulumi.Input[Union['JobServiceFromSpecificationTemplateArgs', 'JobServiceFromSpecificationTemplateArgsDict']]] = None,
|
|
399
|
-
name: Optional[pulumi.Input[
|
|
400
|
-
query_warehouse: Optional[pulumi.Input[
|
|
401
|
-
schema: Optional[pulumi.Input[
|
|
398
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
399
|
+
query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
|
|
400
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
402
401
|
__props__=None):
|
|
403
402
|
"""
|
|
404
403
|
## Import
|
|
@@ -409,15 +408,15 @@ class JobService(pulumi.CustomResource):
|
|
|
409
408
|
|
|
410
409
|
:param str resource_name: The name of the resource.
|
|
411
410
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
412
|
-
:param pulumi.Input[
|
|
413
|
-
:param pulumi.Input[
|
|
414
|
-
:param pulumi.Input[
|
|
415
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
411
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the service.
|
|
412
|
+
:param pulumi.Input[_builtins.str] compute_pool: Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
413
|
+
:param pulumi.Input[_builtins.str] database: The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
414
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: Specifies the names of the external access integrations that allow your service to access external sites.
|
|
416
415
|
:param pulumi.Input[Union['JobServiceFromSpecificationArgs', 'JobServiceFromSpecificationArgsDict']] from_specification: Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
417
416
|
:param pulumi.Input[Union['JobServiceFromSpecificationTemplateArgs', 'JobServiceFromSpecificationTemplateArgsDict']] from_specification_template: Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
418
|
-
:param pulumi.Input[
|
|
419
|
-
:param pulumi.Input[
|
|
420
|
-
:param pulumi.Input[
|
|
417
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
418
|
+
:param pulumi.Input[_builtins.str] query_warehouse: Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
419
|
+
:param pulumi.Input[_builtins.str] schema: The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
421
420
|
"""
|
|
422
421
|
...
|
|
423
422
|
@overload
|
|
@@ -447,15 +446,15 @@ class JobService(pulumi.CustomResource):
|
|
|
447
446
|
def _internal_init(__self__,
|
|
448
447
|
resource_name: str,
|
|
449
448
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
450
|
-
comment: Optional[pulumi.Input[
|
|
451
|
-
compute_pool: Optional[pulumi.Input[
|
|
452
|
-
database: Optional[pulumi.Input[
|
|
453
|
-
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
449
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
450
|
+
compute_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
|
451
|
+
database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
452
|
+
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
454
453
|
from_specification: Optional[pulumi.Input[Union['JobServiceFromSpecificationArgs', 'JobServiceFromSpecificationArgsDict']]] = None,
|
|
455
454
|
from_specification_template: Optional[pulumi.Input[Union['JobServiceFromSpecificationTemplateArgs', 'JobServiceFromSpecificationTemplateArgsDict']]] = None,
|
|
456
|
-
name: Optional[pulumi.Input[
|
|
457
|
-
query_warehouse: Optional[pulumi.Input[
|
|
458
|
-
schema: Optional[pulumi.Input[
|
|
455
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
456
|
+
query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
|
|
457
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
459
458
|
__props__=None):
|
|
460
459
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
461
460
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -494,18 +493,18 @@ class JobService(pulumi.CustomResource):
|
|
|
494
493
|
def get(resource_name: str,
|
|
495
494
|
id: pulumi.Input[str],
|
|
496
495
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
497
|
-
comment: Optional[pulumi.Input[
|
|
498
|
-
compute_pool: Optional[pulumi.Input[
|
|
499
|
-
database: Optional[pulumi.Input[
|
|
496
|
+
comment: Optional[pulumi.Input[_builtins.str]] = None,
|
|
497
|
+
compute_pool: Optional[pulumi.Input[_builtins.str]] = None,
|
|
498
|
+
database: Optional[pulumi.Input[_builtins.str]] = None,
|
|
500
499
|
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['JobServiceDescribeOutputArgs', 'JobServiceDescribeOutputArgsDict']]]]] = None,
|
|
501
|
-
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
500
|
+
external_access_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
502
501
|
from_specification: Optional[pulumi.Input[Union['JobServiceFromSpecificationArgs', 'JobServiceFromSpecificationArgsDict']]] = None,
|
|
503
502
|
from_specification_template: Optional[pulumi.Input[Union['JobServiceFromSpecificationTemplateArgs', 'JobServiceFromSpecificationTemplateArgsDict']]] = None,
|
|
504
|
-
fully_qualified_name: Optional[pulumi.Input[
|
|
505
|
-
name: Optional[pulumi.Input[
|
|
506
|
-
query_warehouse: Optional[pulumi.Input[
|
|
507
|
-
schema: Optional[pulumi.Input[
|
|
508
|
-
service_type: Optional[pulumi.Input[
|
|
503
|
+
fully_qualified_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
504
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
505
|
+
query_warehouse: Optional[pulumi.Input[_builtins.str]] = None,
|
|
506
|
+
schema: Optional[pulumi.Input[_builtins.str]] = None,
|
|
507
|
+
service_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
509
508
|
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['JobServiceShowOutputArgs', 'JobServiceShowOutputArgsDict']]]]] = None) -> 'JobService':
|
|
510
509
|
"""
|
|
511
510
|
Get an existing JobService resource's state with the given name, id, and optional extra
|
|
@@ -514,18 +513,18 @@ class JobService(pulumi.CustomResource):
|
|
|
514
513
|
:param str resource_name: The unique name of the resulting resource.
|
|
515
514
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
516
515
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
517
|
-
:param pulumi.Input[
|
|
518
|
-
:param pulumi.Input[
|
|
519
|
-
:param pulumi.Input[
|
|
516
|
+
:param pulumi.Input[_builtins.str] comment: Specifies a comment for the service.
|
|
517
|
+
:param pulumi.Input[_builtins.str] compute_pool: Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
518
|
+
:param pulumi.Input[_builtins.str] database: The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
520
519
|
:param pulumi.Input[Sequence[pulumi.Input[Union['JobServiceDescribeOutputArgs', 'JobServiceDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SERVICE` for the given service.
|
|
521
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
520
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] external_access_integrations: Specifies the names of the external access integrations that allow your service to access external sites.
|
|
522
521
|
:param pulumi.Input[Union['JobServiceFromSpecificationArgs', 'JobServiceFromSpecificationArgsDict']] from_specification: Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
523
522
|
:param pulumi.Input[Union['JobServiceFromSpecificationTemplateArgs', 'JobServiceFromSpecificationTemplateArgsDict']] from_specification_template: Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See [service specification](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/specification-reference#general-guidelines) for more information.
|
|
524
|
-
:param pulumi.Input[
|
|
525
|
-
:param pulumi.Input[
|
|
526
|
-
:param pulumi.Input[
|
|
527
|
-
:param pulumi.Input[
|
|
528
|
-
:param pulumi.Input[
|
|
523
|
+
:param pulumi.Input[_builtins.str] fully_qualified_name: Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
524
|
+
:param pulumi.Input[_builtins.str] name: Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
525
|
+
:param pulumi.Input[_builtins.str] query_warehouse: Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
526
|
+
:param pulumi.Input[_builtins.str] schema: The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
527
|
+
:param pulumi.Input[_builtins.str] service_type: Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
|
|
529
528
|
:param pulumi.Input[Sequence[pulumi.Input[Union['JobServiceShowOutputArgs', 'JobServiceShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SERVICES` for the given service.
|
|
530
529
|
"""
|
|
531
530
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -547,31 +546,31 @@ class JobService(pulumi.CustomResource):
|
|
|
547
546
|
__props__.__dict__["show_outputs"] = show_outputs
|
|
548
547
|
return JobService(resource_name, opts=opts, __props__=__props__)
|
|
549
548
|
|
|
550
|
-
@property
|
|
549
|
+
@_builtins.property
|
|
551
550
|
@pulumi.getter
|
|
552
|
-
def comment(self) -> pulumi.Output[Optional[
|
|
551
|
+
def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
553
552
|
"""
|
|
554
553
|
Specifies a comment for the service.
|
|
555
554
|
"""
|
|
556
555
|
return pulumi.get(self, "comment")
|
|
557
556
|
|
|
558
|
-
@property
|
|
557
|
+
@_builtins.property
|
|
559
558
|
@pulumi.getter(name="computePool")
|
|
560
|
-
def compute_pool(self) -> pulumi.Output[
|
|
559
|
+
def compute_pool(self) -> pulumi.Output[_builtins.str]:
|
|
561
560
|
"""
|
|
562
561
|
Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see [docs](https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool)). Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
563
562
|
"""
|
|
564
563
|
return pulumi.get(self, "compute_pool")
|
|
565
564
|
|
|
566
|
-
@property
|
|
565
|
+
@_builtins.property
|
|
567
566
|
@pulumi.getter
|
|
568
|
-
def database(self) -> pulumi.Output[
|
|
567
|
+
def database(self) -> pulumi.Output[_builtins.str]:
|
|
569
568
|
"""
|
|
570
569
|
The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
571
570
|
"""
|
|
572
571
|
return pulumi.get(self, "database")
|
|
573
572
|
|
|
574
|
-
@property
|
|
573
|
+
@_builtins.property
|
|
575
574
|
@pulumi.getter(name="describeOutputs")
|
|
576
575
|
def describe_outputs(self) -> pulumi.Output[Sequence['outputs.JobServiceDescribeOutput']]:
|
|
577
576
|
"""
|
|
@@ -579,15 +578,15 @@ class JobService(pulumi.CustomResource):
|
|
|
579
578
|
"""
|
|
580
579
|
return pulumi.get(self, "describe_outputs")
|
|
581
580
|
|
|
582
|
-
@property
|
|
581
|
+
@_builtins.property
|
|
583
582
|
@pulumi.getter(name="externalAccessIntegrations")
|
|
584
|
-
def external_access_integrations(self) -> pulumi.Output[Optional[Sequence[
|
|
583
|
+
def external_access_integrations(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
585
584
|
"""
|
|
586
585
|
Specifies the names of the external access integrations that allow your service to access external sites.
|
|
587
586
|
"""
|
|
588
587
|
return pulumi.get(self, "external_access_integrations")
|
|
589
588
|
|
|
590
|
-
@property
|
|
589
|
+
@_builtins.property
|
|
591
590
|
@pulumi.getter(name="fromSpecification")
|
|
592
591
|
def from_specification(self) -> pulumi.Output[Optional['outputs.JobServiceFromSpecification']]:
|
|
593
592
|
"""
|
|
@@ -595,7 +594,7 @@ class JobService(pulumi.CustomResource):
|
|
|
595
594
|
"""
|
|
596
595
|
return pulumi.get(self, "from_specification")
|
|
597
596
|
|
|
598
|
-
@property
|
|
597
|
+
@_builtins.property
|
|
599
598
|
@pulumi.getter(name="fromSpecificationTemplate")
|
|
600
599
|
def from_specification_template(self) -> pulumi.Output[Optional['outputs.JobServiceFromSpecificationTemplate']]:
|
|
601
600
|
"""
|
|
@@ -603,47 +602,47 @@ class JobService(pulumi.CustomResource):
|
|
|
603
602
|
"""
|
|
604
603
|
return pulumi.get(self, "from_specification_template")
|
|
605
604
|
|
|
606
|
-
@property
|
|
605
|
+
@_builtins.property
|
|
607
606
|
@pulumi.getter(name="fullyQualifiedName")
|
|
608
|
-
def fully_qualified_name(self) -> pulumi.Output[
|
|
607
|
+
def fully_qualified_name(self) -> pulumi.Output[_builtins.str]:
|
|
609
608
|
"""
|
|
610
609
|
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
611
610
|
"""
|
|
612
611
|
return pulumi.get(self, "fully_qualified_name")
|
|
613
612
|
|
|
614
|
-
@property
|
|
613
|
+
@_builtins.property
|
|
615
614
|
@pulumi.getter
|
|
616
|
-
def name(self) -> pulumi.Output[
|
|
615
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
617
616
|
"""
|
|
618
617
|
Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
619
618
|
"""
|
|
620
619
|
return pulumi.get(self, "name")
|
|
621
620
|
|
|
622
|
-
@property
|
|
621
|
+
@_builtins.property
|
|
623
622
|
@pulumi.getter(name="queryWarehouse")
|
|
624
|
-
def query_warehouse(self) -> pulumi.Output[Optional[
|
|
623
|
+
def query_warehouse(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
625
624
|
"""
|
|
626
625
|
Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
627
626
|
"""
|
|
628
627
|
return pulumi.get(self, "query_warehouse")
|
|
629
628
|
|
|
630
|
-
@property
|
|
629
|
+
@_builtins.property
|
|
631
630
|
@pulumi.getter
|
|
632
|
-
def schema(self) -> pulumi.Output[
|
|
631
|
+
def schema(self) -> pulumi.Output[_builtins.str]:
|
|
633
632
|
"""
|
|
634
633
|
The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
635
634
|
"""
|
|
636
635
|
return pulumi.get(self, "schema")
|
|
637
636
|
|
|
638
|
-
@property
|
|
637
|
+
@_builtins.property
|
|
639
638
|
@pulumi.getter(name="serviceType")
|
|
640
|
-
def service_type(self) -> pulumi.Output[
|
|
639
|
+
def service_type(self) -> pulumi.Output[_builtins.str]:
|
|
641
640
|
"""
|
|
642
641
|
Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
|
|
643
642
|
"""
|
|
644
643
|
return pulumi.get(self, "service_type")
|
|
645
644
|
|
|
646
|
-
@property
|
|
645
|
+
@_builtins.property
|
|
647
646
|
@pulumi.getter(name="showOutputs")
|
|
648
647
|
def show_outputs(self) -> pulumi.Output[Sequence['outputs.JobServiceShowOutput']]:
|
|
649
648
|
"""
|