Skip to content

Commit fd37147

Browse files
authored
Merge pull request #283 from stackql/feature/provider-docs
updated snowflake
2 parents b34af08 + 43a570e commit fd37147

File tree

37 files changed

+73
-73
lines changed

37 files changed

+73
-73
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ WHERE endpoint = '{{ endpoint }}';
142142
```
143143
## `INSERT` example
144144

145-
Use the following StackQL query and manifest file to create a new <code>accounts</code> resource.
145+
Creates a account. You must provide the full account definition when creating a account.
146146

147147
<Tabs
148148
defaultValue="all"
@@ -292,7 +292,7 @@ SELECT
292292
293293
## `DELETE` example
294294

295-
Deletes the specified <code>accounts</code> resource.
295+
Deletes the specified account. If you enable the `ifExists` parameter, the operation succeeds even if the account does not exist. Otherwise, a 404 failure is returned if the account does not exist. if the drop is unsuccessful.
296296

297297
```sql
298298
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ AND endpoint = '{{ endpoint }}';
132132

133133
## `INSERT` example
134134

135-
Use the following StackQL query and manifest file to create a new <code>alerts</code> resource.
135+
Create an alert
136136

137137
<Tabs
138138
defaultValue="all"
@@ -240,7 +240,7 @@ SELECT
240240
241241
## `DELETE` example
242242

243-
Deletes the specified <code>alerts</code> resource.
243+
Delete an alert
244244

245245
```sql
246246
/*+ delete */

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
@@ -109,7 +109,7 @@ AND endpoint = '{{ endpoint }}';
109109

110110
## `INSERT` example
111111

112-
Use the following StackQL query and manifest file to create a new <code>api_integrations</code> resource.
112+
Create an API integration
113113

114114
<Tabs
115115
defaultValue="all"
@@ -230,7 +230,7 @@ AND endpoint = '{{ endpoint }}';
230230

231231
## `DELETE` example
232232

233-
Deletes the specified <code>api_integrations</code> resource.
233+
Delete an API integration
234234

235235
```sql
236236
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ AND endpoint = '{{ endpoint }}';
111111

112112
## `INSERT` example
113113

114-
Use the following StackQL query and manifest file to create a new <code>catalog_integrations</code> resource.
114+
Create a catalog integration.
115115

116116
<Tabs
117117
defaultValue="all"
@@ -202,7 +202,7 @@ SELECT
202202
203203
## `DELETE` example
204204

205-
Deletes the specified <code>catalog_integrations</code> resource.
205+
Delete a catalog integration.
206206

207207
```sql
208208
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ AND endpoint = '{{ endpoint }}';
161161

162162
## `INSERT` example
163163

164-
Use the following StackQL query and manifest file to create a new <code>compute_pools</code> resource.
164+
Creates a compute pool, with standard create modifiers as query parameters. See the Compute Pool component definition for what is required to be provided in the request body.
165165

166166
<Tabs
167167
defaultValue="all"
@@ -291,7 +291,7 @@ AND endpoint = '{{ endpoint }}';
291291

292292
## `DELETE` example
293293

294-
Deletes the specified <code>compute_pools</code> resource.
294+
Deletes a compute pool with the given name. If you enable the `ifExists` parameter, the operation succeeds even if the object does not exist. Otherwise, a 404 failure is returned if the object does not exist.
295295

296296
```sql
297297
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ AND endpoint = '{{ endpoint }}';
175175

176176
## `INSERT` example
177177

178-
Use the following StackQL query and manifest file to create a new <code>databases</code> resource.
178+
Creates a database, with modifiers as query parameters. You must provide the full database definition when creating a database.
179179

180180
<Tabs
181181
defaultValue="all"
@@ -353,7 +353,7 @@ AND endpoint = '{{ endpoint }}';
353353

354354
## `DELETE` example
355355

356-
Deletes the specified <code>databases</code> resource.
356+
Deletes the specified database. If you enable the `ifExists` parameter, the operation succeeds even if the database does not exist. Otherwise, a 404 failure is returned if the database does not exist. if the drop is unsuccessful.
357357

358358
```sql
359359
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ AND endpoint = '{{ endpoint }}';
8484
```
8585
## `INSERT` example
8686

87-
Use the following StackQL query and manifest file to create a new <code>database_roles</code> resource.
87+
Create a database role
8888

8989
<Tabs
9090
defaultValue="all"
@@ -156,7 +156,7 @@ SELECT
156156
157157
## `DELETE` example
158158

159-
Deletes the specified <code>database_roles</code> resource.
159+
Delete a database role
160160

161161
```sql
162162
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ AND endpoint = '{{ endpoint }}';
7979
```
8080
## `INSERT` example
8181

82-
Use the following StackQL query and manifest file to create a new <code>future_grants</code> resource.
82+
Grant future privileges to the role
8383

8484
<Tabs
8585
defaultValue="all"
@@ -179,7 +179,7 @@ SELECT
179179
180180
## `DELETE` example
181181

182-
Deletes the specified <code>future_grants</code> resource.
182+
Revoke future grants from the role
183183

184184
```sql
185185
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ AND endpoint = '{{ endpoint }}';
7979
```
8080
## `INSERT` example
8181

82-
Use the following StackQL query and manifest file to create a new <code>grants</code> resource.
82+
Grant privileges to the role
8383

8484
<Tabs
8585
defaultValue="all"
@@ -179,7 +179,7 @@ SELECT
179179
180180
## `DELETE` example
181181

182-
Deletes the specified <code>grants</code> resource.
182+
Revoke grants from the role
183183

184184
```sql
185185
/*+ delete */

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ AND endpoint = '{{ endpoint }}';
172172

173173
## `INSERT` example
174174

175-
Use the following StackQL query and manifest file to create a new <code>dynamic_tables</code> resource.
175+
Create a dynamic table, with standard create modifiers as query parameters. See the Dynamic Table component definition for what is required to be provided in the request body.
176176

177177
<Tabs
178178
defaultValue="all"
@@ -339,7 +339,7 @@ SELECT
339339
340340
## `DELETE` example
341341

342-
Deletes the specified <code>dynamic_tables</code> resource.
342+
Delete a dynamic table with the given name. If ifExists is used, the operation will succeed even if the object does not exist. Otherwise, there will be a failure if the drop is unsuccessful.
343343

344344
```sql
345345
/*+ delete */

0 commit comments

Comments
 (0)