@pulumi/snowflake 0.57.0-alpha.1722063098 → 0.57.0
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/accountRole.d.ts +70 -0
- package/accountRole.js +71 -0
- package/accountRole.js.map +1 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +2 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js +2 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js.map +1 -1
- package/apiAuthenticationIntegrationWithClientCredentials.d.ts +2 -0
- package/apiAuthenticationIntegrationWithClientCredentials.js +2 -0
- package/apiAuthenticationIntegrationWithClientCredentials.js.map +1 -1
- package/apiAuthenticationIntegrationWithJwtBearer.d.ts +2 -0
- package/apiAuthenticationIntegrationWithJwtBearer.js +2 -0
- package/apiAuthenticationIntegrationWithJwtBearer.js.map +1 -1
- package/database.d.ts +27 -27
- package/externalOauthIntegration.d.ts +1 -1
- package/externalOauthIntegration.js +1 -1
- package/getNetworkPolicies.d.ts +61 -0
- package/getNetworkPolicies.js +31 -0
- package/getNetworkPolicies.js.map +1 -0
- package/getRoles.d.ts +23 -27
- package/getRoles.js +6 -21
- package/getRoles.js.map +1 -1
- package/getSchemas.d.ts +74 -31
- package/getSchemas.js +9 -21
- package/getSchemas.js.map +1 -1
- package/getStreamlits.d.ts +86 -0
- package/getStreamlits.js +33 -0
- package/getStreamlits.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/networkPolicy.d.ts +39 -8
- package/networkPolicy.js +22 -5
- package/networkPolicy.js.map +1 -1
- package/oauthIntegrationForCustomClients.d.ts +8 -6
- package/oauthIntegrationForCustomClients.js +2 -0
- package/oauthIntegrationForCustomClients.js.map +1 -1
- package/oauthIntegrationForPartnerApplications.d.ts +8 -6
- package/oauthIntegrationForPartnerApplications.js +2 -0
- package/oauthIntegrationForPartnerApplications.js.map +1 -1
- package/package.json +2 -2
- package/role.d.ts +16 -27
- package/role.js +14 -15
- package/role.js.map +1 -1
- package/saml2Integration.d.ts +14 -12
- package/saml2Integration.js +2 -0
- package/saml2Integration.js.map +1 -1
- package/schema.d.ts +229 -45
- package/schema.js +43 -21
- package/schema.js.map +1 -1
- package/scimIntegration.d.ts +11 -9
- package/scimIntegration.js +2 -0
- package/scimIntegration.js.map +1 -1
- package/secondaryDatabase.d.ts +27 -27
- package/sharedDatabase.d.ts +27 -27
- package/streamlit.d.ts +187 -0
- package/streamlit.js +96 -0
- package/streamlit.js.map +1 -0
- package/table.d.ts +0 -63
- package/table.js +0 -63
- package/table.js.map +1 -1
- package/tableConstraint.d.ts +1 -1
- package/tableConstraint.js +1 -1
- package/types/input.d.ts +329 -41
- package/types/output.d.ts +511 -46
- package/unsafeExecute.d.ts +4 -4
- package/unsafeExecute.js +4 -4
package/unsafeExecute.js
CHANGED
|
@@ -6,15 +6,15 @@ exports.UnsafeExecute = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* !> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources.
|
|
9
|
+
* !> **Warning** This is a dangerous resource that allows executing **ANY** SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
10
|
+
*
|
|
11
|
+
* > **Note** This resource will be included in the V1 (check here.
|
|
10
12
|
*
|
|
11
13
|
* > **Note** It can be theoretically used to manage resource that are not supported by the provider. This is risky and may brake other resources if used incorrectly.
|
|
12
14
|
*
|
|
13
15
|
* > **Note** Use `query` parameter with caution. It will fetch **ALL** the results returned by the query provided. Try to limit the number of results by writing query with filters. Query failure does not stop resource creation; it simply results in `queryResults` being empty.
|
|
14
16
|
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
* Experimental resource used for testing purposes only. Allows to execute ANY SQL statement.
|
|
17
|
+
* Experimental resource allowing execution of ANY SQL statement. It may destroy resources if used incorrectly. It may behave incorrectly combined with other resources. Use at your own risk.
|
|
18
18
|
*/
|
|
19
19
|
class UnsafeExecute extends pulumi.CustomResource {
|
|
20
20
|
/**
|