pulumi-snowflake 0.63.0a1734439451__py3-none-any.whl → 1.0.0a1734440141__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 +82 -74
- pulumi_snowflake/_inputs.py +12705 -4876
- pulumi_snowflake/account.py +156 -163
- pulumi_snowflake/account_parameter.py +16 -16
- pulumi_snowflake/account_role.py +9 -9
- pulumi_snowflake/api_authentication_integration_with_authorization_code_grant.py +9 -22
- pulumi_snowflake/api_authentication_integration_with_client_credentials.py +9 -22
- pulumi_snowflake/api_authentication_integration_with_jwt_bearer.py +9 -22
- pulumi_snowflake/authentication_policy.py +21 -21
- pulumi_snowflake/config/__init__.pyi +8 -86
- pulumi_snowflake/config/vars.py +10 -110
- pulumi_snowflake/database.py +9 -9
- pulumi_snowflake/database_role.py +14 -14
- pulumi_snowflake/{unsafe_execute.py → execute.py} +35 -25
- pulumi_snowflake/external_oauth_integration.py +27 -27
- pulumi_snowflake/external_volume.py +11 -7
- 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 +41 -19
- pulumi_snowflake/get_alerts.py +4 -0
- pulumi_snowflake/get_connections.py +2 -40
- pulumi_snowflake/get_cortex_search_services.py +4 -0
- pulumi_snowflake/get_current_account.py +4 -0
- pulumi_snowflake/get_current_role.py +2 -2
- pulumi_snowflake/get_database.py +4 -0
- pulumi_snowflake/get_database_role.py +4 -0
- pulumi_snowflake/get_database_roles.py +2 -6
- pulumi_snowflake/get_databases.py +2 -6
- pulumi_snowflake/get_dynamic_tables.py +4 -2
- pulumi_snowflake/get_external_functions.py +4 -0
- pulumi_snowflake/get_external_tables.py +4 -0
- pulumi_snowflake/get_failover_groups.py +4 -2
- pulumi_snowflake/get_file_formats.py +4 -0
- pulumi_snowflake/get_functions.py +4 -0
- pulumi_snowflake/get_grants.py +0 -4
- pulumi_snowflake/get_masking_policies.py +2 -6
- pulumi_snowflake/get_materialized_views.py +4 -0
- pulumi_snowflake/get_network_policies.py +2 -6
- pulumi_snowflake/get_parameters.py +4 -0
- pulumi_snowflake/get_pipes.py +4 -0
- pulumi_snowflake/get_procedures.py +4 -0
- pulumi_snowflake/get_resource_monitors.py +2 -6
- pulumi_snowflake/get_row_access_policies.py +2 -6
- pulumi_snowflake/get_schemas.py +6 -4
- pulumi_snowflake/get_secrets.py +2 -6
- pulumi_snowflake/get_security_integrations.py +2 -6
- pulumi_snowflake/get_sequences.py +4 -0
- pulumi_snowflake/get_shares.py +4 -0
- pulumi_snowflake/get_stages.py +4 -0
- pulumi_snowflake/get_storage_integrations.py +4 -0
- pulumi_snowflake/get_streamlits.py +2 -6
- pulumi_snowflake/get_streams.py +2 -6
- pulumi_snowflake/get_system_generate_scim_access_token.py +4 -0
- pulumi_snowflake/get_system_get_private_link_config.py +4 -0
- pulumi_snowflake/get_system_get_snowflake_platform_info.py +2 -2
- pulumi_snowflake/get_tables.py +4 -0
- pulumi_snowflake/get_tags.py +2 -6
- pulumi_snowflake/get_tasks.py +0 -4
- pulumi_snowflake/get_users.py +2 -6
- pulumi_snowflake/get_views.py +2 -6
- pulumi_snowflake/get_warehouses.py +2 -6
- pulumi_snowflake/grant_account_role.py +21 -21
- pulumi_snowflake/grant_application_role.py +7 -7
- pulumi_snowflake/grant_database_role.py +28 -28
- pulumi_snowflake/grant_ownership.py +14 -14
- pulumi_snowflake/grant_privileges_to_account_role.py +14 -14
- pulumi_snowflake/grant_privileges_to_database_role.py +14 -14
- pulumi_snowflake/grant_privileges_to_share.py +42 -42
- pulumi_snowflake/legacy_service_user.py +21 -21
- pulumi_snowflake/masking_policy.py +21 -21
- pulumi_snowflake/network_policy.py +23 -23
- pulumi_snowflake/oauth_integration_for_custom_clients.py +73 -46
- pulumi_snowflake/oauth_integration_for_partner_applications.py +57 -30
- pulumi_snowflake/outputs.py +10029 -4056
- pulumi_snowflake/password_policy.py +12 -2
- pulumi_snowflake/primary_connection.py +16 -16
- 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 +40 -527
- pulumi_snowflake/pulumi-plugin.json +1 -1
- pulumi_snowflake/resource_monitor.py +16 -20
- pulumi_snowflake/row_access_policy.py +21 -21
- pulumi_snowflake/saml2_integration.py +9 -9
- pulumi_snowflake/schema.py +14 -18
- pulumi_snowflake/scim_integration.py +16 -16
- pulumi_snowflake/secondary_connection.py +16 -16
- pulumi_snowflake/secondary_database.py +16 -16
- pulumi_snowflake/secret_with_authorization_code_grant.py +28 -28
- pulumi_snowflake/secret_with_basic_authentication.py +21 -21
- pulumi_snowflake/secret_with_client_credentials.py +28 -28
- pulumi_snowflake/secret_with_generic_string.py +21 -21
- pulumi_snowflake/service_user.py +21 -21
- pulumi_snowflake/shared_database.py +16 -16
- pulumi_snowflake/stream_on_directory_table.py +28 -41
- pulumi_snowflake/stream_on_external_table.py +28 -41
- pulumi_snowflake/stream_on_table.py +28 -41
- pulumi_snowflake/stream_on_view.py +28 -41
- pulumi_snowflake/streamlit.py +42 -46
- pulumi_snowflake/tag.py +28 -28
- pulumi_snowflake/tag_association.py +28 -86
- pulumi_snowflake/task.py +58 -62
- pulumi_snowflake/user.py +21 -21
- pulumi_snowflake/view.py +28 -41
- pulumi_snowflake/warehouse.py +16 -16
- {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/METADATA +1 -1
- pulumi_snowflake-1.0.0a1734440141.dist-info/RECORD +148 -0
- pulumi_snowflake/database_old.py +0 -489
- pulumi_snowflake/function.py +0 -901
- pulumi_snowflake/get_role.py +0 -126
- pulumi_snowflake/get_roles.py +0 -133
- pulumi_snowflake/oauth_integration.py +0 -610
- pulumi_snowflake/procedure.py +0 -910
- pulumi_snowflake/role.py +0 -250
- pulumi_snowflake/saml_integration.py +0 -916
- pulumi_snowflake/session_parameter.py +0 -301
- pulumi_snowflake/stream.py +0 -643
- pulumi_snowflake/tag_masking_policy_association.py +0 -211
- pulumi_snowflake-0.63.0a1734439451.dist-info/RECORD +0 -148
- {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/WHEEL +0 -0
- {pulumi_snowflake-0.63.0a1734439451.dist-info → pulumi_snowflake-1.0.0a1734440141.dist-info}/top_level.txt +0 -0
|
@@ -614,7 +614,12 @@ class PasswordPolicy(pulumi.CustomResource):
|
|
|
614
614
|
schema: Optional[pulumi.Input[str]] = None,
|
|
615
615
|
__props__=None):
|
|
616
616
|
"""
|
|
617
|
-
|
|
617
|
+
!> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled field` in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
618
|
+
|
|
619
|
+
!> **Note** According to Snowflake [docs](https://docs.snowflake.com/en/sql-reference/sql/drop-password-policy#usage-notes), a password policy cannot be dropped successfully if it is currently assigned to another object. Currently, the provider does not unassign such objects automatically. Before dropping the resource, first unassign the policy from the relevant objects. See guide for more details.
|
|
620
|
+
|
|
621
|
+
A password policy specifies the requirements that must be met to create and reset a password to authenticate to Snowflake.
|
|
622
|
+
|
|
618
623
|
:param str resource_name: The name of the resource.
|
|
619
624
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
620
625
|
:param pulumi.Input[str] comment: Adds a comment or overwrites an existing comment for the password policy.
|
|
@@ -642,7 +647,12 @@ class PasswordPolicy(pulumi.CustomResource):
|
|
|
642
647
|
args: PasswordPolicyArgs,
|
|
643
648
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
644
649
|
"""
|
|
645
|
-
|
|
650
|
+
!> **Caution: Preview Feature** This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to `preview_features_enabled field` in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
|
|
651
|
+
|
|
652
|
+
!> **Note** According to Snowflake [docs](https://docs.snowflake.com/en/sql-reference/sql/drop-password-policy#usage-notes), a password policy cannot be dropped successfully if it is currently assigned to another object. Currently, the provider does not unassign such objects automatically. Before dropping the resource, first unassign the policy from the relevant objects. See guide for more details.
|
|
653
|
+
|
|
654
|
+
A password policy specifies the requirements that must be met to create and reset a password to authenticate to Snowflake.
|
|
655
|
+
|
|
646
656
|
:param str resource_name: The name of the resource.
|
|
647
657
|
:param PasswordPolicyArgs args: The arguments to use to populate this resource's properties.
|
|
648
658
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -27,8 +27,8 @@ class PrimaryConnectionArgs:
|
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a PrimaryConnection resource.
|
|
29
29
|
:param pulumi.Input[str] comment: Specifies a comment for the connection.
|
|
30
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
31
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
31
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
32
32
|
"""
|
|
33
33
|
if comment is not None:
|
|
34
34
|
pulumi.set(__self__, "comment", comment)
|
|
@@ -53,7 +53,7 @@ class PrimaryConnectionArgs:
|
|
|
53
53
|
@pulumi.getter(name="enableFailoverToAccounts")
|
|
54
54
|
def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
55
55
|
"""
|
|
56
|
-
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
56
|
+
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
57
57
|
"""
|
|
58
58
|
return pulumi.get(self, "enable_failover_to_accounts")
|
|
59
59
|
|
|
@@ -65,7 +65,7 @@ class PrimaryConnectionArgs:
|
|
|
65
65
|
@pulumi.getter
|
|
66
66
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
67
67
|
"""
|
|
68
|
-
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
68
|
+
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
69
69
|
"""
|
|
70
70
|
return pulumi.get(self, "name")
|
|
71
71
|
|
|
@@ -86,9 +86,9 @@ class _PrimaryConnectionState:
|
|
|
86
86
|
"""
|
|
87
87
|
Input properties used for looking up and filtering PrimaryConnection resources.
|
|
88
88
|
:param pulumi.Input[str] comment: Specifies a comment for the connection.
|
|
89
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
89
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
90
90
|
: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).
|
|
91
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
91
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
92
92
|
:param pulumi.Input[Sequence[pulumi.Input['PrimaryConnectionShowOutputArgs']]] show_outputs: Outputs the result of `SHOW CONNECTIONS` for the given connection.
|
|
93
93
|
"""
|
|
94
94
|
if comment is not None:
|
|
@@ -120,7 +120,7 @@ class _PrimaryConnectionState:
|
|
|
120
120
|
@pulumi.getter(name="enableFailoverToAccounts")
|
|
121
121
|
def enable_failover_to_accounts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
122
122
|
"""
|
|
123
|
-
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
123
|
+
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "enable_failover_to_accounts")
|
|
126
126
|
|
|
@@ -153,7 +153,7 @@ class _PrimaryConnectionState:
|
|
|
153
153
|
@pulumi.getter
|
|
154
154
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
155
155
|
"""
|
|
156
|
-
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
156
|
+
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
157
157
|
"""
|
|
158
158
|
return pulumi.get(self, "name")
|
|
159
159
|
|
|
@@ -187,14 +187,14 @@ class PrimaryConnection(pulumi.CustomResource):
|
|
|
187
187
|
## Import
|
|
188
188
|
|
|
189
189
|
```sh
|
|
190
|
-
$ pulumi import snowflake:index/primaryConnection:PrimaryConnection example '
|
|
190
|
+
$ pulumi import snowflake:index/primaryConnection:PrimaryConnection example '"<primary_connection_name>"'
|
|
191
191
|
```
|
|
192
192
|
|
|
193
193
|
:param str resource_name: The name of the resource.
|
|
194
194
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
195
195
|
:param pulumi.Input[str] comment: Specifies a comment for the connection.
|
|
196
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
197
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
196
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
197
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
198
198
|
"""
|
|
199
199
|
...
|
|
200
200
|
@overload
|
|
@@ -206,7 +206,7 @@ class PrimaryConnection(pulumi.CustomResource):
|
|
|
206
206
|
## Import
|
|
207
207
|
|
|
208
208
|
```sh
|
|
209
|
-
$ pulumi import snowflake:index/primaryConnection:PrimaryConnection example '
|
|
209
|
+
$ pulumi import snowflake:index/primaryConnection:PrimaryConnection example '"<primary_connection_name>"'
|
|
210
210
|
```
|
|
211
211
|
|
|
212
212
|
:param str resource_name: The name of the resource.
|
|
@@ -266,9 +266,9 @@ class PrimaryConnection(pulumi.CustomResource):
|
|
|
266
266
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
267
267
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
268
268
|
:param pulumi.Input[str] comment: Specifies a comment for the connection.
|
|
269
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
269
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_failover_to_accounts: Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
270
270
|
: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).
|
|
271
|
-
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
271
|
+
:param pulumi.Input[str] name: String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
272
272
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PrimaryConnectionShowOutputArgs', 'PrimaryConnectionShowOutputArgsDict']]]] show_outputs: Outputs the result of `SHOW CONNECTIONS` for the given connection.
|
|
273
273
|
"""
|
|
274
274
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -295,7 +295,7 @@ class PrimaryConnection(pulumi.CustomResource):
|
|
|
295
295
|
@pulumi.getter(name="enableFailoverToAccounts")
|
|
296
296
|
def enable_failover_to_accounts(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
297
297
|
"""
|
|
298
|
-
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list.
|
|
298
|
+
Enables failover for given connection to provided accounts. Specifies a list of accounts in your organization where a secondary connection for this primary connection can be promoted to serve as the primary connection. Include your organization name for each account in the list. For more information about this resource, see docs.
|
|
299
299
|
"""
|
|
300
300
|
return pulumi.get(self, "enable_failover_to_accounts")
|
|
301
301
|
|
|
@@ -316,7 +316,7 @@ class PrimaryConnection(pulumi.CustomResource):
|
|
|
316
316
|
@pulumi.getter
|
|
317
317
|
def name(self) -> pulumi.Output[str]:
|
|
318
318
|
"""
|
|
319
|
-
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"
|
|
319
|
+
String that specifies the identifier (i.e. name) for the connection. Must start with an alphabetic character and may only contain letters, decimal digits (0-9), and underscores (_). For a primary connection, the name must be unique across connection names and account names in the organization. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
320
320
|
"""
|
|
321
321
|
return pulumi.get(self, "name")
|
|
322
322
|
|