pulumi-snowflake 0.50.3a1710160126__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 +52857 -1665
- pulumi_snowflake/_utilities.py +41 -5
- pulumi_snowflake/account.py +188 -218
- pulumi_snowflake/account_authentication_policy_attachment.py +149 -0
- pulumi_snowflake/account_parameter.py +21 -48
- pulumi_snowflake/account_password_policy_attachment.py +7 -32
- pulumi_snowflake/account_role.py +250 -0
- pulumi_snowflake/alert.py +38 -47
- 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 +33 -52
- 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 -213
- pulumi_snowflake/database_role.py +81 -44
- pulumi_snowflake/dynamic_table.py +42 -49
- pulumi_snowflake/email_notification_integration.py +33 -28
- pulumi_snowflake/{unsafe_execute.py → execute.py} +36 -39
- pulumi_snowflake/external_function.py +54 -75
- pulumi_snowflake/external_oauth_integration.py +593 -542
- pulumi_snowflake/external_table.py +67 -90
- pulumi_snowflake/external_volume.py +382 -0
- pulumi_snowflake/failover_group.py +57 -98
- pulumi_snowflake/file_format.py +33 -28
- 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 -9
- pulumi_snowflake/get_connections.py +109 -0
- pulumi_snowflake/get_cortex_search_services.py +216 -0
- pulumi_snowflake/get_current_account.py +24 -13
- pulumi_snowflake/get_current_role.py +14 -7
- pulumi_snowflake/get_database.py +25 -9
- pulumi_snowflake/get_database_role.py +162 -0
- pulumi_snowflake/get_database_roles.py +79 -47
- pulumi_snowflake/get_databases.py +91 -73
- pulumi_snowflake/get_dynamic_tables.py +36 -19
- pulumi_snowflake/get_external_functions.py +28 -9
- pulumi_snowflake/get_external_tables.py +28 -9
- pulumi_snowflake/get_failover_groups.py +18 -7
- pulumi_snowflake/get_file_formats.py +28 -9
- pulumi_snowflake/get_functions.py +28 -9
- pulumi_snowflake/get_grants.py +207 -84
- pulumi_snowflake/get_masking_policies.py +91 -51
- pulumi_snowflake/get_materialized_views.py +28 -9
- pulumi_snowflake/get_network_policies.py +129 -0
- pulumi_snowflake/get_parameters.py +38 -15
- pulumi_snowflake/get_pipes.py +28 -9
- pulumi_snowflake/get_procedures.py +28 -9
- pulumi_snowflake/get_resource_monitors.py +37 -24
- pulumi_snowflake/get_row_access_policies.py +91 -51
- pulumi_snowflake/get_schemas.py +145 -41
- pulumi_snowflake/get_secrets.py +200 -0
- pulumi_snowflake/get_security_integrations.py +129 -0
- pulumi_snowflake/get_sequences.py +28 -9
- pulumi_snowflake/get_shares.py +18 -9
- pulumi_snowflake/get_stages.py +28 -9
- pulumi_snowflake/get_storage_integrations.py +16 -9
- pulumi_snowflake/get_streamlits.py +170 -0
- pulumi_snowflake/get_streams.py +114 -54
- pulumi_snowflake/get_system_generate_scim_access_token.py +18 -9
- pulumi_snowflake/get_system_get_aws_sns_iam_policy.py +32 -7
- pulumi_snowflake/get_system_get_private_link_config.py +120 -5
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +15 -7
- pulumi_snowflake/get_tables.py +28 -9
- pulumi_snowflake/get_tags.py +130 -0
- pulumi_snowflake/get_tasks.py +134 -54
- pulumi_snowflake/get_users.py +116 -44
- pulumi_snowflake/get_views.py +114 -54
- pulumi_snowflake/get_warehouses.py +79 -26
- pulumi_snowflake/grant_account_role.py +28 -75
- pulumi_snowflake/grant_application_role.py +257 -0
- pulumi_snowflake/grant_database_role.py +35 -94
- 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 -383
- pulumi_snowflake/grant_privileges_to_share.py +96 -44
- pulumi_snowflake/legacy_service_user.py +3670 -0
- pulumi_snowflake/managed_account.py +40 -11
- pulumi_snowflake/masking_policy.py +213 -310
- pulumi_snowflake/materialized_view.py +62 -71
- pulumi_snowflake/network_policy.py +217 -61
- pulumi_snowflake/network_policy_attachment.py +5 -34
- pulumi_snowflake/network_rule.py +473 -0
- pulumi_snowflake/notification_integration.py +49 -84
- pulumi_snowflake/oauth_integration_for_custom_clients.py +906 -0
- pulumi_snowflake/{oauth_integration.py → oauth_integration_for_partner_applications.py} +191 -192
- pulumi_snowflake/object_parameter.py +10 -101
- pulumi_snowflake/outputs.py +49200 -2928
- pulumi_snowflake/password_policy.py +41 -28
- pulumi_snowflake/pipe.py +33 -4
- 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 -327
- pulumi_snowflake/row_access_policy.py +200 -149
- pulumi_snowflake/{saml_integration.py → saml2_integration.py} +356 -299
- pulumi_snowflake/schema.py +949 -178
- pulumi_snowflake/scim_integration.py +286 -109
- 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 -34
- pulumi_snowflake/service_user.py +3585 -0
- pulumi_snowflake/share.py +33 -28
- pulumi_snowflake/shared_database.py +939 -0
- pulumi_snowflake/stage.py +95 -84
- pulumi_snowflake/storage_integration.py +46 -4
- 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 -97
- pulumi_snowflake/table_column_masking_policy_application.py +7 -14
- pulumi_snowflake/table_constraint.py +29 -172
- pulumi_snowflake/tag.py +142 -74
- pulumi_snowflake/tag_association.py +40 -215
- pulumi_snowflake/task.py +3048 -418
- pulumi_snowflake/user.py +3351 -384
- pulumi_snowflake/user_authentication_policy_attachment.py +197 -0
- pulumi_snowflake/user_password_policy_attachment.py +5 -4
- pulumi_snowflake/user_public_keys.py +5 -0
- pulumi_snowflake/view.py +466 -215
- pulumi_snowflake/warehouse.py +184 -168
- {pulumi_snowflake-0.50.3a1710160126.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.3a1710160126.dist-info → pulumi_snowflake-1.2.0a1736835738.dist-info}/WHEEL +1 -1
- pulumi_snowflake/account_grant.py +0 -343
- pulumi_snowflake/database_grant.py +0 -495
- pulumi_snowflake/external_table_grant.py +0 -690
- pulumi_snowflake/failover_group_grant.py +0 -388
- pulumi_snowflake/file_format_grant.py +0 -635
- pulumi_snowflake/function.py +0 -872
- pulumi_snowflake/function_grant.py +0 -745
- pulumi_snowflake/get_role.py +0 -121
- pulumi_snowflake/get_roles.py +0 -120
- pulumi_snowflake/grant_privileges_to_role.py +0 -825
- pulumi_snowflake/integration_grant.py +0 -440
- pulumi_snowflake/masking_policy_grant.py +0 -542
- pulumi_snowflake/materialized_view_grant.py +0 -689
- pulumi_snowflake/pipe_grant.py +0 -587
- pulumi_snowflake/procedure.py +0 -887
- pulumi_snowflake/procedure_grant.py +0 -745
- pulumi_snowflake/resource_monitor_grant.py +0 -387
- pulumi_snowflake/role.py +0 -273
- pulumi_snowflake/role_grants.py +0 -352
- pulumi_snowflake/role_ownership_grant.py +0 -338
- pulumi_snowflake/row_access_policy_grant.py +0 -540
- pulumi_snowflake/schema_grant.py +0 -647
- pulumi_snowflake/sequence_grant.py +0 -635
- pulumi_snowflake/session_parameter.py +0 -332
- pulumi_snowflake/stage_grant.py +0 -635
- pulumi_snowflake/stream.py +0 -614
- pulumi_snowflake/stream_grant.py +0 -635
- pulumi_snowflake/table_grant.py +0 -677
- pulumi_snowflake/tag_grant.py +0 -532
- pulumi_snowflake/tag_masking_policy_association.py +0 -210
- pulumi_snowflake/task_grant.py +0 -635
- pulumi_snowflake/user_grant.py +0 -394
- pulumi_snowflake/user_ownership_grant.py +0 -286
- pulumi_snowflake/view_grant.py +0 -705
- pulumi_snowflake/warehouse_grant.py +0 -440
- pulumi_snowflake-0.50.3a1710160126.dist-info/RECORD +0 -136
- {pulumi_snowflake-0.50.3a1710160126.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,44 +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
|
-
<!--Start PulumiCodeChooser -->
|
|
186
|
-
```python
|
|
187
|
-
import pulumi
|
|
188
|
-
import pulumi_snowflake as snowflake
|
|
189
|
-
|
|
190
|
-
aad = snowflake.ScimIntegration("aad",
|
|
191
|
-
network_policy="AAD_NETWORK_POLICY",
|
|
192
|
-
provisioner_role="AAD_PROVISIONER",
|
|
193
|
-
scim_client="AZURE")
|
|
194
|
-
```
|
|
195
|
-
<!--End PulumiCodeChooser -->
|
|
196
|
-
|
|
197
320
|
## Import
|
|
198
321
|
|
|
199
322
|
```sh
|
|
200
|
-
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example
|
|
323
|
+
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example '"<integration_name>"'
|
|
201
324
|
```
|
|
202
325
|
|
|
203
326
|
:param str resource_name: The name of the resource.
|
|
204
327
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
205
|
-
:param pulumi.Input[str]
|
|
206
|
-
:param pulumi.Input[
|
|
207
|
-
:param pulumi.Input[str]
|
|
208
|
-
: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.
|
|
209
335
|
"""
|
|
210
336
|
...
|
|
211
337
|
@overload
|
|
@@ -214,24 +340,10 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
214
340
|
args: ScimIntegrationArgs,
|
|
215
341
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
216
342
|
"""
|
|
217
|
-
## Example Usage
|
|
218
|
-
|
|
219
|
-
<!--Start PulumiCodeChooser -->
|
|
220
|
-
```python
|
|
221
|
-
import pulumi
|
|
222
|
-
import pulumi_snowflake as snowflake
|
|
223
|
-
|
|
224
|
-
aad = snowflake.ScimIntegration("aad",
|
|
225
|
-
network_policy="AAD_NETWORK_POLICY",
|
|
226
|
-
provisioner_role="AAD_PROVISIONER",
|
|
227
|
-
scim_client="AZURE")
|
|
228
|
-
```
|
|
229
|
-
<!--End PulumiCodeChooser -->
|
|
230
|
-
|
|
231
343
|
## Import
|
|
232
344
|
|
|
233
345
|
```sh
|
|
234
|
-
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example
|
|
346
|
+
$ pulumi import snowflake:index/scimIntegration:ScimIntegration example '"<integration_name>"'
|
|
235
347
|
```
|
|
236
348
|
|
|
237
349
|
:param str resource_name: The name of the resource.
|
|
@@ -249,10 +361,13 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
249
361
|
def _internal_init(__self__,
|
|
250
362
|
resource_name: str,
|
|
251
363
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
364
|
+
comment: Optional[pulumi.Input[str]] = None,
|
|
365
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
252
366
|
name: Optional[pulumi.Input[str]] = None,
|
|
253
367
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
254
|
-
|
|
368
|
+
run_as_role: Optional[pulumi.Input[str]] = None,
|
|
255
369
|
scim_client: Optional[pulumi.Input[str]] = None,
|
|
370
|
+
sync_password: Optional[pulumi.Input[str]] = None,
|
|
256
371
|
__props__=None):
|
|
257
372
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
258
373
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -262,15 +377,22 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
262
377
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
263
378
|
__props__ = ScimIntegrationArgs.__new__(ScimIntegrationArgs)
|
|
264
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
|
|
265
384
|
__props__.__dict__["name"] = name
|
|
266
385
|
__props__.__dict__["network_policy"] = network_policy
|
|
267
|
-
if
|
|
268
|
-
raise TypeError("Missing required property '
|
|
269
|
-
__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
|
|
270
389
|
if scim_client is None and not opts.urn:
|
|
271
390
|
raise TypeError("Missing required property 'scim_client'")
|
|
272
391
|
__props__.__dict__["scim_client"] = scim_client
|
|
273
|
-
__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
|
|
274
396
|
super(ScimIntegration, __self__).__init__(
|
|
275
397
|
'snowflake:index/scimIntegration:ScimIntegration',
|
|
276
398
|
resource_name,
|
|
@@ -281,11 +403,16 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
281
403
|
def get(resource_name: str,
|
|
282
404
|
id: pulumi.Input[str],
|
|
283
405
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
284
|
-
|
|
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,
|
|
285
410
|
name: Optional[pulumi.Input[str]] = None,
|
|
286
411
|
network_policy: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
|
|
288
|
-
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':
|
|
289
416
|
"""
|
|
290
417
|
Get an existing ScimIntegration resource's state with the given name, id, and optional extra
|
|
291
418
|
properties used to qualify the lookup.
|
|
@@ -293,36 +420,70 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
293
420
|
:param str resource_name: The unique name of the resulting resource.
|
|
294
421
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
295
422
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
296
|
-
:param pulumi.Input[str]
|
|
297
|
-
:param pulumi.Input[
|
|
298
|
-
:param pulumi.Input[
|
|
299
|
-
:param pulumi.Input[str]
|
|
300
|
-
: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.
|
|
301
433
|
"""
|
|
302
434
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
303
435
|
|
|
304
436
|
__props__ = _ScimIntegrationState.__new__(_ScimIntegrationState)
|
|
305
437
|
|
|
306
|
-
__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
|
|
307
442
|
__props__.__dict__["name"] = name
|
|
308
443
|
__props__.__dict__["network_policy"] = network_policy
|
|
309
|
-
__props__.__dict__["
|
|
444
|
+
__props__.__dict__["run_as_role"] = run_as_role
|
|
310
445
|
__props__.__dict__["scim_client"] = scim_client
|
|
446
|
+
__props__.__dict__["show_outputs"] = show_outputs
|
|
447
|
+
__props__.__dict__["sync_password"] = sync_password
|
|
311
448
|
return ScimIntegration(resource_name, opts=opts, __props__=__props__)
|
|
312
449
|
|
|
313
450
|
@property
|
|
314
|
-
@pulumi.getter
|
|
315
|
-
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']]:
|
|
316
461
|
"""
|
|
317
|
-
|
|
462
|
+
Outputs the result of `DESCRIBE SECURITY INTEGRATIONS` for the given security integration.
|
|
318
463
|
"""
|
|
319
|
-
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")
|
|
320
481
|
|
|
321
482
|
@property
|
|
322
483
|
@pulumi.getter
|
|
323
484
|
def name(self) -> pulumi.Output[str]:
|
|
324
485
|
"""
|
|
325
|
-
|
|
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: `|`, `.`, `"`.
|
|
326
487
|
"""
|
|
327
488
|
return pulumi.get(self, "name")
|
|
328
489
|
|
|
@@ -330,23 +491,39 @@ class ScimIntegration(pulumi.CustomResource):
|
|
|
330
491
|
@pulumi.getter(name="networkPolicy")
|
|
331
492
|
def network_policy(self) -> pulumi.Output[Optional[str]]:
|
|
332
493
|
"""
|
|
333
|
-
Specifies an existing network policy
|
|
494
|
+
Specifies an existing network policy that controls SCIM network traffic. For more information about this resource, see docs.
|
|
334
495
|
"""
|
|
335
496
|
return pulumi.get(self, "network_policy")
|
|
336
497
|
|
|
337
498
|
@property
|
|
338
|
-
@pulumi.getter(name="
|
|
339
|
-
def
|
|
499
|
+
@pulumi.getter(name="runAsRole")
|
|
500
|
+
def run_as_role(self) -> pulumi.Output[str]:
|
|
340
501
|
"""
|
|
341
|
-
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`.
|
|
342
503
|
"""
|
|
343
|
-
return pulumi.get(self, "
|
|
504
|
+
return pulumi.get(self, "run_as_role")
|
|
344
505
|
|
|
345
506
|
@property
|
|
346
507
|
@pulumi.getter(name="scimClient")
|
|
347
508
|
def scim_client(self) -> pulumi.Output[str]:
|
|
348
509
|
"""
|
|
349
|
-
Specifies the client type for the scim integration
|
|
510
|
+
Specifies the client type for the scim integration. Valid options are: `OKTA` | `AZURE` | `GENERIC`.
|
|
350
511
|
"""
|
|
351
512
|
return pulumi.get(self, "scim_client")
|
|
352
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
|
+
|