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 */

docs/snowflake-docs/providers/snowflake/event_table/event_tables/index.md

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

154154
## `INSERT` example
155155

156-
Use the following StackQL query and manifest file to create a new <code>event_tables</code> resource.
156+
Create an event table
157157

158158
<Tabs
159159
defaultValue="all"
@@ -263,7 +263,7 @@ SELECT
263263
264264
## `DELETE` example
265265

266-
Deletes the specified <code>event_tables</code> resource.
266+
Delete an event table
267267

268268
```sql
269269
/*+ delete */

docs/snowflake-docs/providers/snowflake/external_volume/external_volumes/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>external_volumes</code> resource.
112+
Create an external volume
113113

114114
<Tabs
115115
defaultValue="all"
@@ -200,7 +200,7 @@ SELECT
200200
201201
## `DELETE` example
202202

203-
Deletes the specified <code>external_volumes</code> resource.
203+
Delete an external volume
204204

205205
```sql
206206
/*+ delete */

docs/snowflake-docs/providers/snowflake/function/functions/index.md

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

120120
## `INSERT` example
121121

122-
Use the following StackQL query and manifest file to create a new <code>functions</code> resource.
122+
Create a function.
123123

124124
<Tabs
125125
defaultValue="all"
@@ -253,7 +253,7 @@ SELECT
253253
254254
## `DELETE` example
255255

256-
Deletes the specified <code>functions</code> resource.
256+
Delete a function with the given name and args.
257257

258258
```sql
259259
/*+ delete */

docs/snowflake-docs/providers/snowflake/grant/grant_options/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Creates, updates, deletes, gets or lists a <code>grant_options</code> resource.
5151

5252
## `DELETE` example
5353

54-
Deletes the specified <code>grant_options</code> resource.
54+
Endpoint to indicate that the grant option for the privilege listed in the path should be revoked.
5555

5656
```sql
5757
/*+ delete */

docs/snowflake-docs/providers/snowflake/grant/privileges/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Creates, updates, deletes, gets or lists a <code>privileges</code> resource.
5353

5454
## `INSERT` example
5555

56-
Use the following StackQL query and manifest file to create a new <code>privileges</code> resource.
56+
Endpoint to indicate that the privileges listed in the request body should be granted.
5757

5858
<Tabs
5959
defaultValue="all"
@@ -176,7 +176,7 @@ SELECT
176176
177177
## `DELETE` example
178178

179-
Deletes the specified <code>privileges</code> resource.
179+
Endpoint to indicate that the privilege listed in the path should be revoked.
180180

181181
```sql
182182
/*+ delete */

docs/snowflake-docs/providers/snowflake/iceberg_table/iceberg_tables/index.md

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

187187
## `INSERT` example
188188

189-
Use the following StackQL query and manifest file to create a new <code>iceberg_tables</code> resource.
189+
Create a snowflake managed iceberg table (clone and undrop are separate subresources)
190190

191191
<Tabs
192192
defaultValue="all"
@@ -380,7 +380,7 @@ SELECT
380380
381381
## `DELETE` example
382382

383-
Deletes the specified <code>iceberg_tables</code> resource.
383+
Drop an iceberg table
384384

385385
```sql
386386
/*+ delete */

docs/snowflake-docs/providers/snowflake/image_repository/image_repositories/index.md

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

113113
## `INSERT` example
114114

115-
Use the following StackQL query and manifest file to create a new <code>image_repositories</code> resource.
115+
Creates an image repository in the specified database, schema, and create mode. The `createMode` query parameter specifies what action to take based on whether the repository already exists. See the ImageRepository component definition for what is required to be provided in the request body.
116116

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

205-
Deletes the specified <code>image_repositories</code> resource.
205+
Deletes an image repository with the given name. If you enable the `ifExists` query parameter, the operation succeeds even if the object does not exist. Otherwise, a 404 failure is returned if the object does not exist.
206206

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

docs/snowflake-docs/providers/snowflake/managed_account/managed_accounts/index.md

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

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

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

182-
Deletes the specified <code>managed_accounts</code> resource.
182+
Removes a managed account, including all objects created in the account, and immediately restricts access to the account. Currently used by data providers to create reader accounts for their consumers. For more details, see Manage reader accounts.
183183

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

docs/snowflake-docs/providers/snowflake/network_policy/network_policies/index.md

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

114114
## `INSERT` example
115115

116-
Use the following StackQL query and manifest file to create a new <code>network_policies</code> resource.
116+
Create a network policy
117117

118118
<Tabs
119119
defaultValue="all"
@@ -198,7 +198,7 @@ SELECT
198198
199199
## `DELETE` example
200200

201-
Deletes the specified <code>network_policies</code> resource.
201+
Delete a network policy
202202

203203
```sql
204204
/*+ delete */

docs/snowflake-docs/providers/snowflake/notebook/notebooks/index.md

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

183183
## `INSERT` example
184184

185-
Use the following StackQL query and manifest file to create a new <code>notebooks</code> resource.
185+
Create a notebook
186186

187187
<Tabs
188188
defaultValue="all"
@@ -296,7 +296,7 @@ SELECT
296296
297297
## `DELETE` example
298298

299-
Deletes the specified <code>notebooks</code> resource.
299+
Delete a notebook
300300

301301
```sql
302302
/*+ delete */

docs/snowflake-docs/providers/snowflake/notification_integration/notification_integrations/index.md

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

103103
## `INSERT` example
104104

105-
Use the following StackQL query and manifest file to create a new <code>notification_integrations</code> resource.
105+
Create a notification integration
106106

107107
<Tabs
108108
defaultValue="all"
@@ -180,7 +180,7 @@ SELECT
180180
181181
## `DELETE` example
182182

183-
Deletes the specified <code>notification_integrations</code> resource.
183+
Delete a notification integration
184184

185185
```sql
186186
/*+ delete */

docs/snowflake-docs/providers/snowflake/pipe/pipes/index.md

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

140140
## `INSERT` example
141141

142-
Use the following StackQL query and manifest file to create a new <code>pipes</code> resource.
142+
Create a pipe
143143

144144
<Tabs
145145
defaultValue="all"
@@ -255,7 +255,7 @@ SELECT
255255
256256
## `DELETE` example
257257

258-
Deletes the specified <code>pipes</code> resource.
258+
Delete a pipe
259259

260260
```sql
261261
/*+ delete */

0 commit comments

Comments
 (0)