Skip to content

Commit ad5765a

Browse files
authored
Merge pull request #232 from stackql/feature/provider-docs
snowflake and ci updates
2 parents 920b23a + 130b979 commit ad5765a

File tree

35 files changed

+157
-157
lines changed

35 files changed

+157
-157
lines changed

docs/snowflake-docs/providers/snowflake/account/accounts/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@ Use the following StackQL query and manifest file to create a new <code>accounts
135135
```sql
136136
/*+ create */
137137
INSERT INTO snowflake.account.accounts (
138-
data__name,
139138
data__admin_name,
140-
data__email,
139+
data__name,
141140
endpoint,
141+
data__email,
142142
data__edition
143143
)
144144
SELECT
145+
'{ endpoint }',
145146
'{ email }',
147+
'{ edition }',
146148
'{ name }',
147-
'{ admin_name }',
148-
'{ endpoint }',
149-
'{ edition }'
149+
'{ admin_name }'
150150
;
151151
```
152152
</TabItem>

docs/snowflake-docs/providers/snowflake/alert/alerts/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,22 +85,22 @@ Use the following StackQL query and manifest file to create a new <code>alerts</
8585
```sql
8686
/*+ create */
8787
INSERT INTO snowflake.alert.alerts (
88-
data__condition,
8988
data__name,
9089
endpoint,
91-
data__schedule,
92-
database,
90+
data__condition,
9391
schema,
92+
database,
93+
data__schedule,
9494
data__action
9595
)
9696
SELECT
9797
'{ database }',
98-
'{ schedule }',
99-
'{ action }',
10098
'{ condition }',
101-
'{ name }',
99+
'{ endpoint }',
102100
'{ schema }',
103-
'{ endpoint }'
101+
'{ action }',
102+
'{ name }',
103+
'{ schedule }'
104104
;
105105
```
106106
</TabItem>

docs/snowflake-docs/providers/snowflake/api_integration/api_integrations/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ Use the following StackQL query and manifest file to create a new <code>api_inte
7575
/*+ create */
7676
INSERT INTO snowflake.api_integration.api_integrations (
7777
data__name,
78-
data__api_allowed_prefixes,
7978
endpoint,
8079
data__api_hook,
80+
data__api_allowed_prefixes,
8181
data__enabled
8282
)
8383
SELECT
84+
'{ endpoint }',
8485
'{ enabled }',
8586
'{ api_allowed_prefixes }',
8687
'{ name }',
87-
'{ endpoint }',
8888
'{ api_hook }'
8989
;
9090
```

docs/snowflake-docs/providers/snowflake/catalog_integration/catalog_integrations/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@ Use the following StackQL query and manifest file to create a new <code>catalog_
7575
```sql
7676
/*+ create */
7777
INSERT INTO snowflake.catalog_integration.catalog_integrations (
78-
data__name,
7978
data__catalog,
79+
data__table_format,
80+
data__name,
8081
endpoint,
81-
data__enabled,
82-
data__table_format
82+
data__enabled
8383
)
8484
SELECT
85+
'{ table_format }',
86+
'{ endpoint }',
8587
'{ enabled }',
86-
'{ name }',
8788
'{ catalog }',
88-
'{ endpoint }',
89-
'{ table_format }'
89+
'{ name }'
9090
;
9191
```
9292
</TabItem>

docs/snowflake-docs/providers/snowflake/compute_pool/compute_pools/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,18 +108,18 @@ Use the following StackQL query and manifest file to create a new <code>compute_
108108
```sql
109109
/*+ create */
110110
INSERT INTO snowflake.compute_pool.compute_pools (
111+
data__max_nodes,
111112
data__name,
112113
endpoint,
113114
data__instance_family,
114-
data__min_nodes,
115-
data__max_nodes
115+
data__min_nodes
116116
)
117117
SELECT
118+
'{ endpoint }',
118119
'{ instance_family }',
119-
'{ min_nodes }',
120120
'{ name }',
121-
'{ endpoint }',
122-
'{ max_nodes }'
121+
'{ max_nodes }',
122+
'{ min_nodes }'
123123
;
124124
```
125125
</TabItem>

docs/snowflake-docs/providers/snowflake/database/databases/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ Use the following StackQL query and manifest file to create a new <code>database
116116
```sql
117117
/*+ create */
118118
INSERT INTO snowflake.database.databases (
119-
data__name,
120-
endpoint
119+
endpoint,
120+
data__name
121121
)
122122
SELECT
123123
'{ name }',

docs/snowflake-docs/providers/snowflake/database_role/database_roles/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ Use the following StackQL query and manifest file to create a new <code>database
7575
```sql
7676
/*+ create */
7777
INSERT INTO snowflake.database_role.database_roles (
78-
data__name,
7978
endpoint,
79+
data__name,
8080
database
8181
)
8282
SELECT
83-
'{ endpoint }',
83+
'{ database }',
8484
'{ name }',
85-
'{ database }'
85+
'{ endpoint }'
8686
;
8787
```
8888
</TabItem>

docs/snowflake-docs/providers/snowflake/database_role/future_grants/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@ Use the following StackQL query and manifest file to create a new <code>future_g
7272
```sql
7373
/*+ create */
7474
INSERT INTO snowflake.database_role.future_grants (
75-
endpoint,
76-
data__securable_type,
7775
name,
76+
data__securable_type,
77+
endpoint,
7878
database
7979
)
8080
SELECT
81-
'{ endpoint }',
82-
'{ name }',
8381
'{ database }',
84-
'{ securable_type }'
82+
'{ name }',
83+
'{ securable_type }',
84+
'{ endpoint }'
8585
;
8686
```
8787
</TabItem>

docs/snowflake-docs/providers/snowflake/database_role/grants/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@ Use the following StackQL query and manifest file to create a new <code>grants</
7272
```sql
7373
/*+ create */
7474
INSERT INTO snowflake.database_role.grants (
75-
endpoint,
76-
data__securable_type,
7775
name,
76+
data__securable_type,
77+
endpoint,
7878
database
7979
)
8080
SELECT
81-
'{ endpoint }',
82-
'{ name }',
8381
'{ database }',
84-
'{ securable_type }'
82+
'{ name }',
83+
'{ securable_type }',
84+
'{ endpoint }'
8585
;
8686
```
8787
</TabItem>

docs/snowflake-docs/providers/snowflake/dynamic_table/dynamic_tables/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,21 +112,21 @@ Use the following StackQL query and manifest file to create a new <code>dynamic_
112112
/*+ create */
113113
INSERT INTO snowflake.dynamic_table.dynamic_tables (
114114
data__warehouse,
115+
data__query,
115116
data__name,
116-
data__target_lag,
117117
endpoint,
118-
database,
119-
data__query,
120-
schema
118+
data__target_lag,
119+
schema,
120+
database
121121
)
122122
SELECT
123123
'{ database }',
124-
'{ name }',
125-
'{ schema }',
126-
'{ target_lag }',
124+
'{ query }',
127125
'{ endpoint }',
126+
'{ target_lag }',
128127
'{ warehouse }',
129-
'{ query }'
128+
'{ schema }',
129+
'{ name }'
130130
;
131131
```
132132
</TabItem>

0 commit comments

Comments
 (0)