@pulumi/snowflake 1.2.0-alpha.1738823429 → 1.2.0-alpha.1738909563
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/snowflake",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.1738909563",
|
|
4
4
|
"description": "A Pulumi package for creating and managing snowflake cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "snowflake",
|
|
26
|
-
"version": "1.2.0-alpha.
|
|
26
|
+
"version": "1.2.0-alpha.1738909563"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/primaryConnection.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export declare class PrimaryConnection extends pulumi.CustomResource {
|
|
|
38
38
|
readonly fullyQualifiedName: pulumi.Output<string>;
|
|
39
39
|
readonly isPrimary: pulumi.Output<boolean>;
|
|
40
40
|
/**
|
|
41
|
-
* 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 (
|
|
41
|
+
* 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: `|`, `.`, `"`.
|
|
42
42
|
*/
|
|
43
43
|
readonly name: pulumi.Output<string>;
|
|
44
44
|
/**
|
|
@@ -72,7 +72,7 @@ export interface PrimaryConnectionState {
|
|
|
72
72
|
fullyQualifiedName?: pulumi.Input<string>;
|
|
73
73
|
isPrimary?: pulumi.Input<boolean>;
|
|
74
74
|
/**
|
|
75
|
-
* 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 (
|
|
75
|
+
* 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: `|`, `.`, `"`.
|
|
76
76
|
*/
|
|
77
77
|
name?: pulumi.Input<string>;
|
|
78
78
|
/**
|
|
@@ -93,7 +93,7 @@ export interface PrimaryConnectionArgs {
|
|
|
93
93
|
*/
|
|
94
94
|
enableFailoverToAccounts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
95
95
|
/**
|
|
96
|
-
* 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 (
|
|
96
|
+
* 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: `|`, `.`, `"`.
|
|
97
97
|
*/
|
|
98
98
|
name?: pulumi.Input<string>;
|
|
99
99
|
}
|
package/secondaryConnection.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare class SecondaryConnection extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly isPrimary: pulumi.Output<boolean>;
|
|
43
43
|
/**
|
|
44
|
-
* 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 (
|
|
44
|
+
* 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 secondary connection, the name must match the name of its primary connection. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
45
45
|
*/
|
|
46
46
|
readonly name: pulumi.Output<string>;
|
|
47
47
|
/**
|
|
@@ -78,7 +78,7 @@ export interface SecondaryConnectionState {
|
|
|
78
78
|
*/
|
|
79
79
|
isPrimary?: pulumi.Input<boolean>;
|
|
80
80
|
/**
|
|
81
|
-
* 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 (
|
|
81
|
+
* 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 secondary connection, the name must match the name of its primary connection. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
82
82
|
*/
|
|
83
83
|
name?: pulumi.Input<string>;
|
|
84
84
|
/**
|
|
@@ -99,7 +99,7 @@ export interface SecondaryConnectionArgs {
|
|
|
99
99
|
*/
|
|
100
100
|
comment?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
102
|
-
* 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 (
|
|
102
|
+
* 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 secondary connection, the name must match the name of its primary connection. Due to technical limitations (read more here), avoid using the following characters: `|`, `.`, `"`.
|
|
103
103
|
*/
|
|
104
104
|
name?: pulumi.Input<string>;
|
|
105
105
|
}
|