pulumi-snowflake 0.50.2a1709892015__py3-none-any.whl → 1.2.0a1736835738__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 +224 -172
- pulumi_snowflake/_inputs.py +52854 -1662
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -214
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -44
- pulumi_snowflake/account_password_policy_attachment.py +7 -28
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -43
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +704 -0
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +657 -0
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +692 -0
- pulumi_snowflake/api_integration.py +35 -50
- pulumi_snowflake/authentication_policy.py +622 -0
- pulumi_snowflake/config/__init__.pyi +76 -99
- pulumi_snowflake/config/outputs.py +5 -0
- pulumi_snowflake/config/vars.py +93 -124
- pulumi_snowflake/cortex_search_service.py +596 -0
- pulumi_snowflake/database.py +819 -209
- pulumi_snowflake/database_role.py +81 -40
- pulumi_snowflake/dynamic_table.py +44 -47
- pulumi_snowflake/email_notification_integration.py +35 -26
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -139
- pulumi_snowflake/external_function.py +54 -71
- pulumi_snowflake/external_oauth_integration.py +593 -538
- pulumi_snowflake/external_table.py +67 -86
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +59 -96
- pulumi_snowflake/file_format.py +33 -24
- pulumi_snowflake/function_java.py +1211 -0
- pulumi_snowflake/function_javascript.py +882 -0
- pulumi_snowflake/function_python.py +1212 -0
- pulumi_snowflake/function_scala.py +1212 -0
- pulumi_snowflake/function_sql.py +835 -0
- pulumi_snowflake/get_account_roles.py +129 -0
- pulumi_snowflake/get_accounts.py +53 -22
- pulumi_snowflake/get_alerts.py +22 -5
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -9
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -5
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -43
- pulumi_snowflake/get_databases.py +91 -69
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -5
- pulumi_snowflake/get_external_tables.py +28 -5
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -5
- pulumi_snowflake/get_functions.py +28 -5
- pulumi_snowflake/get_grants.py +207 -80
- pulumi_snowflake/get_masking_policies.py +91 -47
- pulumi_snowflake/get_materialized_views.py +28 -5
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -11
- pulumi_snowflake/get_pipes.py +28 -5
- pulumi_snowflake/get_procedures.py +28 -5
- pulumi_snowflake/get_resource_monitors.py +37 -20
- pulumi_snowflake/get_row_access_policies.py +91 -47
- pulumi_snowflake/get_schemas.py +145 -37
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -5
- pulumi_snowflake/get_shares.py +18 -5
- pulumi_snowflake/get_stages.py +28 -5
- pulumi_snowflake/get_storage_integrations.py +16 -5
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -50
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -5
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +121 -6
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -5
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -50
- pulumi_snowflake/get_users.py +116 -40
- pulumi_snowflake/get_views.py +114 -50
- pulumi_snowflake/get_warehouses.py +79 -22
- pulumi_snowflake/grant_account_role.py +28 -61
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -108
- pulumi_snowflake/grant_ownership.py +382 -0
- pulumi_snowflake/grant_privileges_to_account_role.py +42 -78
- pulumi_snowflake/grant_privileges_to_database_role.py +37 -223
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +42 -9
- pulumi_snowflake/masking_policy.py +213 -306
- pulumi_snowflake/materialized_view.py +62 -67
- pulumi_snowflake/network_policy.py +217 -57
- pulumi_snowflake/network_policy_attachment.py +7 -32
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +51 -82
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -188
- pulumi_snowflake/object_parameter.py +12 -99
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -0
- pulumi_snowflake/primary_connection.py +330 -0
- pulumi_snowflake/procedure_java.py +1273 -0
- pulumi_snowflake/procedure_javascript.py +895 -0
- pulumi_snowflake/procedure_python.py +1226 -0
- pulumi_snowflake/procedure_scala.py +1273 -0
- pulumi_snowflake/procedure_sql.py +895 -0
- pulumi_snowflake/provider.py +378 -613
- pulumi_snowflake/pulumi-plugin.json +2 -1
- pulumi_snowflake/resource_monitor.py +118 -323
- pulumi_snowflake/row_access_policy.py +200 -145
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -295
- pulumi_snowflake/schema.py +949 -174
- pulumi_snowflake/scim_integration.py +286 -105
- pulumi_snowflake/secondary_connection.py +339 -0
- pulumi_snowflake/secondary_database.py +1080 -0
- pulumi_snowflake/secret_with_authorization_code_grant.py +548 -0
- pulumi_snowflake/secret_with_basic_authentication.py +500 -0
- pulumi_snowflake/secret_with_client_credentials.py +511 -0
- pulumi_snowflake/secret_with_generic_string.py +452 -0
- pulumi_snowflake/sequence.py +9 -30
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +35 -26
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -80
- pulumi_snowflake/storage_integration.py +48 -2
- pulumi_snowflake/stream_on_directory_table.py +517 -0
- pulumi_snowflake/stream_on_external_table.py +632 -0
- pulumi_snowflake/stream_on_table.py +666 -0
- pulumi_snowflake/stream_on_view.py +666 -0
- pulumi_snowflake/streamlit.py +671 -0
- pulumi_snowflake/table.py +86 -93
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -168
- pulumi_snowflake/tag.py +142 -70
- pulumi_snowflake/tag_association.py +40 -211
- pulumi_snowflake/task.py +3048 -414
- pulumi_snowflake/user.py +3351 -380
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +7 -6
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -211
- pulumi_snowflake/warehouse.py +184 -164
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/METADATA +7 -6
- pulumi_snowflake-1.2.0a1736835738.dist-info/RECORD +148 -0
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -339
- pulumi_snowflake/database_grant.py +0 -491
- pulumi_snowflake/external_table_grant.py +0 -686
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -631
- pulumi_snowflake/function.py +0 -868
- pulumi_snowflake/function_grant.py +0 -741
- pulumi_snowflake/get_role.py +0 -117
- pulumi_snowflake/get_roles.py +0 -116
- pulumi_snowflake/grant_privileges_to_role.py +0 -667
- pulumi_snowflake/integration_grant.py +0 -436
- pulumi_snowflake/masking_policy_grant.py +0 -538
- pulumi_snowflake/materialized_view_grant.py +0 -685
- pulumi_snowflake/pipe_grant.py +0 -583
- pulumi_snowflake/procedure.py +0 -883
- pulumi_snowflake/procedure_grant.py +0 -741
- pulumi_snowflake/resource_monitor_grant.py +0 -383
- pulumi_snowflake/role.py +0 -269
- pulumi_snowflake/role_grants.py +0 -348
- pulumi_snowflake/role_ownership_grant.py +0 -334
- pulumi_snowflake/row_access_policy_grant.py +0 -536
- pulumi_snowflake/schema_grant.py +0 -643
- pulumi_snowflake/sequence_grant.py +0 -631
- pulumi_snowflake/session_parameter.py +0 -328
- pulumi_snowflake/stage_grant.py +0 -631
- pulumi_snowflake/stream.py +0 -610
- pulumi_snowflake/stream_grant.py +0 -631
- pulumi_snowflake/table_grant.py +0 -673
- pulumi_snowflake/tag_grant.py +0 -528
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -631
- pulumi_snowflake/user_grant.py +0 -390
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -701
- pulumi_snowflake/warehouse_grant.py +0 -436
- pulumi_snowflake-0.50.2a1709892015.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.2a1709892015.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/top_level.txt +0 -0
|
@@ -4,51 +4,81 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
11
18
|
|
|
12
19
|
__all__ = ['ScimIntegrationArgs', 'ScimIntegration']
|
|
13
20
|
|
|
14
21
|
@pulumi.input_type
|
|
15
22
|
class ScimIntegrationArgs:
|
|
16
23
|
def __init__(__self__, *,
|
|
17
|
-
|
|
24
|
+
enabled: pulumi.Input[bool],
|
|
25
|
+
run_as_role: pulumi.Input[str],
|
|
18
26
|
scim_client: pulumi.Input[str],
|
|
27
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
19
28
|
name: Optional[pulumi.Input[str]] = None,
|
|
20
|
-
network_policy: Optional[pulumi.Input[str]] = None
|
|
29
|
+
network_policy: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
sync_password: Optional[pulumi.Input[str]] = None):
|
|
21
31
|
"""
|
|
22
32
|
The set of arguments for constructing a ScimIntegration resource.
|
|
23
|
-
:param pulumi.Input[
|
|
24
|
-
:param pulumi.Input[str]
|
|
25
|
-
:param pulumi.Input[str]
|
|
26
|
-
:param pulumi.Input[str]
|
|
27
|
-
"
|
|
28
|
-
pulumi.
|
|
33
|
+
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
34
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
35
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
36
|
+
:param pulumi.Input[str] comment: Specifies a comment for the integration.
|
|
37
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
38
|
+
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
39
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
40
|
+
"""
|
|
41
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
42
|
+
pulumi.set(__self__, "run_as_role", run_as_role)
|
|
29
43
|
pulumi.set(__self__, "scim_client", scim_client)
|
|
44
|
+
if comment is not None:
|
|
45
|
+
pulumi.set(__self__, "comment", comment)
|
|
30
46
|
if name is not None:
|
|
31
47
|
pulumi.set(__self__, "name", name)
|
|
32
48
|
if network_policy is not None:
|
|
33
49
|
pulumi.set(__self__, "network_policy", network_policy)
|
|
50
|
+
if sync_password is not None:
|
|
51
|
+
pulumi.set(__self__, "sync_password", sync_password)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter
|
|
55
|
+
def enabled(self) -> pulumi.Input[bool]:
|
|
56
|
+
"""
|
|
57
|
+
Specify whether the security integration is enabled.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "enabled")
|
|
60
|
+
|
|
61
|
+
@enabled.setter
|
|
62
|
+
def enabled(self, value: pulumi.Input[bool]):
|
|
63
|
+
pulumi.set(self, "enabled", value)
|
|
34
64
|
|
|
35
65
|
@property
|
|
36
|
-
@pulumi.getter(name="
|
|
37
|
-
def
|
|
66
|
+
@pulumi.getter(name="runAsRole")
|
|
67
|
+
def run_as_role(self) -> pulumi.Input[str]:
|
|
38
68
|
"""
|
|
39
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM.
|
|
69
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
40
70
|
"""
|
|
41
|
-
return pulumi.get(self, "
|
|
71
|
+
return pulumi.get(self, "run_as_role")
|
|
42
72
|
|
|
43
|
-
@
|
|
44
|
-
def
|
|
45
|
-
pulumi.set(self, "
|
|
73
|
+
@run_as_role.setter
|
|
74
|
+
def run_as_role(self, value: pulumi.Input[str]):
|
|
75
|
+
pulumi.set(self, "run_as_role", value)
|
|
46
76
|
|
|
47
77
|
@property
|
|
48
78
|
@pulumi.getter(name="scimClient")
|
|
49
79
|
def scim_client(self) -> pulumi.Input[str]:
|
|
50
80
|
"""
|
|
51
|
-
Specifies the client type for the scim integration
|
|
81
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
52
82
|
"""
|
|
53
83
|
return pulumi.get(self, "scim_client")
|
|
54
84
|
|
|
@@ -56,11 +86,23 @@ class ScimIntegrationArgs:
|
|
|
56
86
|
def scim_client(self, value: pulumi.Input[str]):
|
|
57
87
|
pulumi.set(self, "scim_client", value)
|
|
58
88
|
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def comment(self) -> Optional[pulumi.Input[str]]:
|
|
92
|
+
"""
|
|
93
|
+
Specifies a comment for the integration.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "comment")
|
|
96
|
+
|
|
97
|
+
@comment.setter
|
|
98
|
+
def comment(self, value: Optional[pulumi.Input[str]]):
|
|
99
|
+
pulumi.set(self, "comment", value)
|
|
100
|
+
|
|
59
101
|
@property
|
|
60
102
|
@pulumi.getter
|
|
61
103
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
62
104
|
"""
|
|
63
|
-
|
|
105
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
64
106
|
"""
|
|
65
107
|
return pulumi.get(self, "name")
|
|
66
108
|
|
|
@@ -72,7 +114,7 @@ class ScimIntegrationArgs:
|
|
|
72
114
|
@pulumi.getter(name="networkPolicy")
|
|
73
115
|
def network_policy(self) -> Optional[pulumi.Input[str]]:
|
|
74
116
|
"""
|
|
75
|
-
Specifies an existing network policy
|
|
117
|
+
Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
76
118
|
"""
|
|
77
119
|
return pulumi.get(self, "network_policy")
|
|
78
120
|
|
|
@@ -80,51 +122,119 @@ class ScimIntegrationArgs:
|
|
|
80
122
|
def network_policy(self, value: Optional[pulumi.Input[str]]):
|
|
81
123
|
pulumi.set(self, "network_policy", value)
|
|
82
124
|
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="syncPassword")
|
|
127
|
+
def sync_password(self) -> Optional[pulumi.Input[str]]:
|
|
128
|
+
"""
|
|
129
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "sync_password")
|
|
132
|
+
|
|
133
|
+
@sync_password.setter
|
|
134
|
+
def sync_password(self, value: Optional[pulumi.Input[str]]):
|
|
135
|
+
pulumi.set(self, "sync_password", value)
|
|
136
|
+
|
|
83
137
|
|
|
84
138
|
@pulumi.input_type
|
|
85
139
|
class _ScimIntegrationState:
|
|
86
140
|
def __init__(__self__, *,
|
|
87
|
-
|
|
141
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationDescribeOutputArgs']]]] = None,
|
|
143
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
144
|
+
fully_qualified_name: Optional[pulumi.Input[str]] = None,
|
|
88
145
|
name: Optional[pulumi.Input[str]] = None,
|
|
89
146
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
90
|
-
|
|
91
|
-
scim_client: Optional[pulumi.Input[str]] = None
|
|
147
|
+
run_as_role: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
scim_client: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationShowOutputArgs']]]] = None,
|
|
150
|
+
sync_password: Optional[pulumi.Input[str]] = None):
|
|
92
151
|
"""
|
|
93
152
|
Input properties used for looking up and filtering ScimIntegration resources.
|
|
94
|
-
:param pulumi.Input[str]
|
|
95
|
-
:param pulumi.Input[
|
|
96
|
-
:param pulumi.Input[
|
|
97
|
-
:param pulumi.Input[str]
|
|
98
|
-
:param pulumi.Input[str]
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
153
|
+
:param pulumi.Input[str] comment: Specifies a comment for the integration.
|
|
154
|
+
:param pulumi.Input[Sequence[pulumi.Input['ScimIntegrationDescribeOutputArgs']]] describe_outputs: Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
|
|
155
|
+
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
156
|
+
:param pulumi.Input[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).
|
|
157
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
158
|
+
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
159
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
160
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
161
|
+
:param pulumi.Input[Sequence[pulumi.Input['ScimIntegrationShowOutputArgs']]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
162
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
163
|
+
"""
|
|
164
|
+
if comment is not None:
|
|
165
|
+
pulumi.set(__self__, "comment", comment)
|
|
166
|
+
if describe_outputs is not None:
|
|
167
|
+
pulumi.set(__self__, "describe_outputs", describe_outputs)
|
|
168
|
+
if enabled is not None:
|
|
169
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
170
|
+
if fully_qualified_name is not None:
|
|
171
|
+
pulumi.set(__self__, "fully_qualified_name", fully_qualified_name)
|
|
102
172
|
if name is not None:
|
|
103
173
|
pulumi.set(__self__, "name", name)
|
|
104
174
|
if network_policy is not None:
|
|
105
175
|
pulumi.set(__self__, "network_policy", network_policy)
|
|
106
|
-
if
|
|
107
|
-
pulumi.set(__self__, "
|
|
176
|
+
if run_as_role is not None:
|
|
177
|
+
pulumi.set(__self__, "run_as_role", run_as_role)
|
|
108
178
|
if scim_client is not None:
|
|
109
179
|
pulumi.set(__self__, "scim_client", scim_client)
|
|
180
|
+
if show_outputs is not None:
|
|
181
|
+
pulumi.set(__self__, "show_outputs", show_outputs)
|
|
182
|
+
if sync_password is not None:
|
|
183
|
+
pulumi.set(__self__, "sync_password", sync_password)
|
|
110
184
|
|
|
111
185
|
@property
|
|
112
|
-
@pulumi.getter
|
|
113
|
-
def
|
|
186
|
+
@pulumi.getter
|
|
187
|
+
def comment(self) -> Optional[pulumi.Input[str]]:
|
|
188
|
+
"""
|
|
189
|
+
Specifies a comment for the integration.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "comment")
|
|
192
|
+
|
|
193
|
+
@comment.setter
|
|
194
|
+
def comment(self, value: Optional[pulumi.Input[str]]):
|
|
195
|
+
pulumi.set(self, "comment", value)
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter(name="describeOutputs")
|
|
199
|
+
def describe_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationDescribeOutputArgs']]]]:
|
|
114
200
|
"""
|
|
115
|
-
|
|
201
|
+
Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
|
|
116
202
|
"""
|
|
117
|
-
return pulumi.get(self, "
|
|
203
|
+
return pulumi.get(self, "describe_outputs")
|
|
118
204
|
|
|
119
|
-
@
|
|
120
|
-
def
|
|
121
|
-
pulumi.set(self, "
|
|
205
|
+
@describe_outputs.setter
|
|
206
|
+
def describe_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationDescribeOutputArgs']]]]):
|
|
207
|
+
pulumi.set(self, "describe_outputs", value)
|
|
208
|
+
|
|
209
|
+
@property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
212
|
+
"""
|
|
213
|
+
Specify whether the security integration is enabled.
|
|
214
|
+
"""
|
|
215
|
+
return pulumi.get(self, "enabled")
|
|
216
|
+
|
|
217
|
+
@enabled.setter
|
|
218
|
+
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
219
|
+
pulumi.set(self, "enabled", value)
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter(name="fullyQualifiedName")
|
|
223
|
+
def fully_qualified_name(self) -> Optional[pulumi.Input[str]]:
|
|
224
|
+
"""
|
|
225
|
+
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "fully_qualified_name")
|
|
228
|
+
|
|
229
|
+
@fully_qualified_name.setter
|
|
230
|
+
def fully_qualified_name(self, value: Optional[pulumi.Input[str]]):
|
|
231
|
+
pulumi.set(self, "fully_qualified_name", value)
|
|
122
232
|
|
|
123
233
|
@property
|
|
124
234
|
@pulumi.getter
|
|
125
235
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
126
236
|
"""
|
|
127
|
-
|
|
237
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
128
238
|
"""
|
|
129
239
|
return pulumi.get(self, "name")
|
|
130
240
|
|
|
@@ -136,7 +246,7 @@ class _ScimIntegrationState:
|
|
|
136
246
|
@pulumi.getter(name="networkPolicy")
|
|
137
247
|
def network_policy(self) -> Optional[pulumi.Input[str]]:
|
|
138
248
|
"""
|
|
139
|
-
Specifies an existing network policy
|
|
249
|
+
Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
140
250
|
"""
|
|
141
251
|
return pulumi.get(self, "network_policy")
|
|
142
252
|
|
|
@@ -145,22 +255,22 @@ class _ScimIntegrationState:
|
|
|
145
255
|
pulumi.set(self, "network_policy", value)
|
|
146
256
|
|
|
147
257
|
@property
|
|
148
|
-
@pulumi.getter(name="
|
|
149
|
-
def
|
|
258
|
+
@pulumi.getter(name="runAsRole")
|
|
259
|
+
def run_as_role(self) -> Optional[pulumi.Input[str]]:
|
|
150
260
|
"""
|
|
151
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM.
|
|
261
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
152
262
|
"""
|
|
153
|
-
return pulumi.get(self, "
|
|
263
|
+
return pulumi.get(self, "run_as_role")
|
|
154
264
|
|
|
155
|
-
@
|
|
156
|
-
def
|
|
157
|
-
pulumi.set(self, "
|
|
265
|
+
@run_as_role.setter
|
|
266
|
+
def run_as_role(self, value: Optional[pulumi.Input[str]]):
|
|
267
|
+
pulumi.set(self, "run_as_role", value)
|
|
158
268
|
|
|
159
269
|
@property
|
|
160
270
|
@pulumi.getter(name="scimClient")
|
|
161
271
|
def scim_client(self) -> Optional[pulumi.Input[str]]:
|
|
162
272
|
"""
|
|
163
|
-
Specifies the client type for the scim integration
|
|
273
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
164
274
|
"""
|
|
165
275
|
return pulumi.get(self, "scim_client")
|
|
166
276
|
|
|
@@ -168,42 +278,60 @@ class _ScimIntegrationState:
|
|
|
168
278
|
def scim_client(self, value: Optional[pulumi.Input[str]]):
|
|
169
279
|
pulumi.set(self, "scim_client", value)
|
|
170
280
|
|
|
281
|
+
@property
|
|
282
|
+
@pulumi.getter(name="showOutputs")
|
|
283
|
+
def show_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationShowOutputArgs']]]]:
|
|
284
|
+
"""
|
|
285
|
+
Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
286
|
+
"""
|
|
287
|
+
return pulumi.get(self, "show_outputs")
|
|
288
|
+
|
|
289
|
+
@show_outputs.setter
|
|
290
|
+
def show_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScimIntegrationShowOutputArgs']]]]):
|
|
291
|
+
pulumi.set(self, "show_outputs", value)
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter(name="syncPassword")
|
|
295
|
+
def sync_password(self) -> Optional[pulumi.Input[str]]:
|
|
296
|
+
"""
|
|
297
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
298
|
+
"""
|
|
299
|
+
return pulumi.get(self, "sync_password")
|
|
300
|
+
|
|
301
|
+
@sync_password.setter
|
|
302
|
+
def sync_password(self, value: Optional[pulumi.Input[str]]):
|
|
303
|
+
pulumi.set(self, "sync_password", value)
|
|
304
|
+
|
|
171
305
|
|
|
172
306
|
class ScimIntegration(pulumi.CustomResource):
|
|
173
307
|
@overload
|
|
174
308
|
def __init__(__self__,
|
|
175
309
|
resource_name: str,
|
|
176
310
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
311
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
312
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
177
313
|
name: Optional[pulumi.Input[str]] = None,
|
|
178
314
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
179
|
-
|
|
315
|
+
run_as_role: Optional[pulumi.Input[str]] = None,
|
|
180
316
|
scim_client: Optional[pulumi.Input[str]] = None,
|
|
317
|
+
sync_password: Optional[pulumi.Input[str]] = None,
|
|
181
318
|
__props__=None):
|
|
182
319
|
"""
|
|
183
|
-
## Example Usage
|
|
184
|
-
|
|
185
|
-
```python
|
|
186
|
-
import pulumi
|
|
187
|
-
import pulumi_snowflake as snowflake
|
|
188
|
-
|
|
189
|
-
aad = snowflake.ScimIntegration("aad",
|
|
190
|
-
network_policy="AAD_NETWORK_POLICY",
|
|
191
|
-
provisioner_role="AAD_PROVISIONER",
|
|
192
|
-
scim_client="AZURE")
|
|
193
|
-
```
|
|
194
|
-
|
|
195
320
|
## Import
|
|
196
321
|
|
|
197
322
|
```sh
|
|
198
|
-
|
|
323
|
+
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example '"<integration_name>"'
|
|
199
324
|
```
|
|
200
325
|
|
|
201
326
|
:param str resource_name: The name of the resource.
|
|
202
327
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
203
|
-
:param pulumi.Input[str]
|
|
204
|
-
:param pulumi.Input[
|
|
205
|
-
:param pulumi.Input[str]
|
|
206
|
-
:param pulumi.Input[str]
|
|
328
|
+
:param pulumi.Input[str] comment: Specifies a comment for the integration.
|
|
329
|
+
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
330
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
331
|
+
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
332
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
333
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
334
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
207
335
|
"""
|
|
208
336
|
...
|
|
209
337
|
@overload
|
|
@@ -212,22 +340,10 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
212
340
|
args: ScimIntegrationArgs,
|
|
213
341
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
214
342
|
"""
|
|
215
|
-
## Example Usage
|
|
216
|
-
|
|
217
|
-
```python
|
|
218
|
-
import pulumi
|
|
219
|
-
import pulumi_snowflake as snowflake
|
|
220
|
-
|
|
221
|
-
aad = snowflake.ScimIntegration("aad",
|
|
222
|
-
network_policy="AAD_NETWORK_POLICY",
|
|
223
|
-
provisioner_role="AAD_PROVISIONER",
|
|
224
|
-
scim_client="AZURE")
|
|
225
|
-
```
|
|
226
|
-
|
|
227
343
|
## Import
|
|
228
344
|
|
|
229
345
|
```sh
|
|
230
|
-
|
|
346
|
+
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example '"<integration_name>"'
|
|
231
347
|
```
|
|
232
348
|
|
|
233
349
|
:param str resource_name: The name of the resource.
|
|
@@ -245,10 +361,13 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
245
361
|
def _internal_init(__self__,
|
|
246
362
|
resource_name: str,
|
|
247
363
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
364
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
365
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
248
366
|
name: Optional[pulumi.Input[str]] = None,
|
|
249
367
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
250
|
-
|
|
368
|
+
run_as_role: Optional[pulumi.Input[str]] = None,
|
|
251
369
|
scim_client: Optional[pulumi.Input[str]] = None,
|
|
370
|
+
sync_password: Optional[pulumi.Input[str]] = None,
|
|
252
371
|
__props__=None):
|
|
253
372
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
254
373
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -258,15 +377,22 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
258
377
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
259
378
|
__props__ = ScimIntegrationArgs.__new__(ScimIntegrationArgs)
|
|
260
379
|
|
|
380
|
+
__props__.__dict__["comment"] = comment
|
|
381
|
+
if enabled is None and not opts.urn:
|
|
382
|
+
raise TypeError("Missing required property 'enabled'")
|
|
383
|
+
__props__.__dict__["enabled"] = enabled
|
|
261
384
|
__props__.__dict__["name"] = name
|
|
262
385
|
__props__.__dict__["network_policy"] = network_policy
|
|
263
|
-
if
|
|
264
|
-
raise TypeError("Missing required property '
|
|
265
|
-
__props__.__dict__["
|
|
386
|
+
if run_as_role is None and not opts.urn:
|
|
387
|
+
raise TypeError("Missing required property 'run_as_role'")
|
|
388
|
+
__props__.__dict__["run_as_role"] = run_as_role
|
|
266
389
|
if scim_client is None and not opts.urn:
|
|
267
390
|
raise TypeError("Missing required property 'scim_client'")
|
|
268
391
|
__props__.__dict__["scim_client"] = scim_client
|
|
269
|
-
__props__.__dict__["
|
|
392
|
+
__props__.__dict__["sync_password"] = sync_password
|
|
393
|
+
__props__.__dict__["describe_outputs"] = None
|
|
394
|
+
__props__.__dict__["fully_qualified_name"] = None
|
|
395
|
+
__props__.__dict__["show_outputs"] = None
|
|
270
396
|
super(ScimIntegration, __self__).__init__(
|
|
271
397
|
'snowflake:index/scimIntegration:ScimIntegration',
|
|
272
398
|
resource_name,
|
|
@@ -277,11 +403,16 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
277
403
|
def get(resource_name: str,
|
|
278
404
|
id: pulumi.Input[str],
|
|
279
405
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
280
|
-
|
|
406
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
407
|
+
describe_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScimIntegrationDescribeOutputArgs', 'ScimIntegrationDescribeOutputArgsDict']]]]] = None,
|
|
408
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
409
|
+
fully_qualified_name: Optional[pulumi.Input[str]] = None,
|
|
281
410
|
name: Optional[pulumi.Input[str]] = None,
|
|
282
411
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
283
|
-
|
|
284
|
-
scim_client: Optional[pulumi.Input[str]] = None
|
|
412
|
+
run_as_role: Optional[pulumi.Input[str]] = None,
|
|
413
|
+
scim_client: Optional[pulumi.Input[str]] = None,
|
|
414
|
+
show_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScimIntegrationShowOutputArgs', 'ScimIntegrationShowOutputArgsDict']]]]] = None,
|
|
415
|
+
sync_password: Optional[pulumi.Input[str]] = None) -> 'ScimIntegration':
|
|
285
416
|
"""
|
|
286
417
|
Get an existing ScimIntegration resource's state with the given name, id, and optional extra
|
|
287
418
|
properties used to qualify the lookup.
|
|
@@ -289,36 +420,70 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
289
420
|
:param str resource_name: The unique name of the resulting resource.
|
|
290
421
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
291
422
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
292
|
-
:param pulumi.Input[str]
|
|
293
|
-
:param pulumi.Input[
|
|
294
|
-
:param pulumi.Input[
|
|
295
|
-
:param pulumi.Input[str]
|
|
296
|
-
:param pulumi.Input[str]
|
|
423
|
+
:param pulumi.Input[str] comment: Specifies a comment for the integration.
|
|
424
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ScimIntegrationDescribeOutputArgs', 'ScimIntegrationDescribeOutputArgsDict']]]] describe_outputs: Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
|
|
425
|
+
:param pulumi.Input[bool] enabled: Specify whether the security integration is enabled.
|
|
426
|
+
:param pulumi.Input[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).
|
|
427
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
428
|
+
:param pulumi.Input[str] network_policy: Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
429
|
+
:param pulumi.Input[str] run_as_role: Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
430
|
+
:param pulumi.Input[str] scim_client: Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
431
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ScimIntegrationShowOutputArgs', 'ScimIntegrationShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
432
|
+
:param pulumi.Input[str] sync_password: Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
297
433
|
"""
|
|
298
434
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
299
435
|
|
|
300
436
|
__props__ = _ScimIntegrationState.__new__(_ScimIntegrationState)
|
|
301
437
|
|
|
302
|
-
__props__.__dict__["
|
|
438
|
+
__props__.__dict__["comment"] = comment
|
|
439
|
+
__props__.__dict__["describe_outputs"] = describe_outputs
|
|
440
|
+
__props__.__dict__["enabled"] = enabled
|
|
441
|
+
__props__.__dict__["fully_qualified_name"] = fully_qualified_name
|
|
303
442
|
__props__.__dict__["name"] = name
|
|
304
443
|
__props__.__dict__["network_policy"] = network_policy
|
|
305
|
-
__props__.__dict__["
|
|
444
|
+
__props__.__dict__["run_as_role"] = run_as_role
|
|
306
445
|
__props__.__dict__["scim_client"] = scim_client
|
|
446
|
+
__props__.__dict__["show_outputs"] = show_outputs
|
|
447
|
+
__props__.__dict__["sync_password"] = sync_password
|
|
307
448
|
return ScimIntegration(resource_name, opts=opts, __props__=__props__)
|
|
308
449
|
|
|
309
450
|
@property
|
|
310
|
-
@pulumi.getter
|
|
311
|
-
def
|
|
451
|
+
@pulumi.getter
|
|
452
|
+
def comment(self) -> pulumi.Output[Optional[str]]:
|
|
453
|
+
"""
|
|
454
|
+
Specifies a comment for the integration.
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "comment")
|
|
457
|
+
|
|
458
|
+
@property
|
|
459
|
+
@pulumi.getter(name="describeOutputs")
|
|
460
|
+
def describe_outputs(self) -> pulumi.Output[Sequence['outputs.ScimIntegrationDescribeOutput']]:
|
|
312
461
|
"""
|
|
313
|
-
|
|
462
|
+
Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
|
|
314
463
|
"""
|
|
315
|
-
return pulumi.get(self, "
|
|
464
|
+
return pulumi.get(self, "describe_outputs")
|
|
465
|
+
|
|
466
|
+
@property
|
|
467
|
+
@pulumi.getter
|
|
468
|
+
def enabled(self) -> pulumi.Output[bool]:
|
|
469
|
+
"""
|
|
470
|
+
Specify whether the security integration is enabled.
|
|
471
|
+
"""
|
|
472
|
+
return pulumi.get(self, "enabled")
|
|
473
|
+
|
|
474
|
+
@property
|
|
475
|
+
@pulumi.getter(name="fullyQualifiedName")
|
|
476
|
+
def fully_qualified_name(self) -> pulumi.Output[str]:
|
|
477
|
+
"""
|
|
478
|
+
Fully qualified name of the resource. For more information, see [object name resolution](https://docs.snowflake.com/en/sql-reference/name-resolution).
|
|
479
|
+
"""
|
|
480
|
+
return pulumi.get(self, "fully_qualified_name")
|
|
316
481
|
|
|
317
482
|
@property
|
|
318
483
|
@pulumi.getter
|
|
319
484
|
def name(self) -> pulumi.Output[str]:
|
|
320
485
|
"""
|
|
321
|
-
|
|
486
|
+
String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
322
487
|
"""
|
|
323
488
|
return pulumi.get(self, "name")
|
|
324
489
|
|
|
@@ -326,23 +491,39 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
326
491
|
@pulumi.getter(name="networkPolicy")
|
|
327
492
|
def network_policy(self) -> pulumi.Output[Optional[str]]:
|
|
328
493
|
"""
|
|
329
|
-
Specifies an existing network policy
|
|
494
|
+
Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
330
495
|
"""
|
|
331
496
|
return pulumi.get(self, "network_policy")
|
|
332
497
|
|
|
333
498
|
@property
|
|
334
|
-
@pulumi.getter(name="
|
|
335
|
-
def
|
|
499
|
+
@pulumi.getter(name="runAsRole")
|
|
500
|
+
def run_as_role(self) -> pulumi.Output[str]:
|
|
336
501
|
"""
|
|
337
|
-
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM.
|
|
502
|
+
Specify the SCIM role in Snowflake that owns any users and roles that are imported from the identity provider into Snowflake using SCIM. Provider assumes that the specified role is already provided. Valid options are: `OKTA_PROVISIONER` | `AAD_PROVISIONER` | `GENERIC_SCIM_PROVISIONER`.
|
|
338
503
|
"""
|
|
339
|
-
return pulumi.get(self, "
|
|
504
|
+
return pulumi.get(self, "run_as_role")
|
|
340
505
|
|
|
341
506
|
@property
|
|
342
507
|
@pulumi.getter(name="scimClient")
|
|
343
508
|
def scim_client(self) -> pulumi.Output[str]:
|
|
344
509
|
"""
|
|
345
|
-
Specifies the client type for the scim integration
|
|
510
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
346
511
|
"""
|
|
347
512
|
return pulumi.get(self, "scim_client")
|
|
348
513
|
|
|
514
|
+
@property
|
|
515
|
+
@pulumi.getter(name="showOutputs")
|
|
516
|
+
def show_outputs(self) -> pulumi.Output[Sequence['outputs.ScimIntegrationShowOutput']]:
|
|
517
|
+
"""
|
|
518
|
+
Outputs the result of `SHOW SECURITY INTEGRATIONS` for the given security integration.
|
|
519
|
+
"""
|
|
520
|
+
return pulumi.get(self, "show_outputs")
|
|
521
|
+
|
|
522
|
+
@property
|
|
523
|
+
@pulumi.getter(name="syncPassword")
|
|
524
|
+
def sync_password(self) -> pulumi.Output[Optional[str]]:
|
|
525
|
+
"""
|
|
526
|
+
Specifies whether to enable or disable the synchronization of a user password from an Okta SCIM client as part of the API request to Snowflake. This property is not supported for Azure SCIM. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
|
|
527
|
+
"""
|
|
528
|
+
return pulumi.get(self, "sync_password")
|
|
529
|
+
|