Skip to content

Commit

Permalink
updated google docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Sep 19, 2024
1 parent fa36ee2 commit 771711f
Show file tree
Hide file tree
Showing 215 changed files with 11,576 additions and 4,887 deletions.
7 changes: 4 additions & 3 deletions docs/google-docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';

Cloud services from Google.

:::info Provider Summary (v24.09.00251)
:::info Provider Summary (v24.09.00254)

<div class="row">
<div class="providerDocColumn">
<span>total services:&nbsp;<b>167</b></span><br />
<span>total resources:&nbsp;<b>1926</b></span><br />
<span>total services:&nbsp;<b>168</b></span><br />
<span>total resources:&nbsp;<b>1941</b></span><br />
</div>
</div>

Expand Down Expand Up @@ -215,6 +215,7 @@ stackql.exe shell --auth=$Auth
<a href="/providers/google/networkservices/">networkservices</a><br />
<a href="/providers/google/notebooks/">notebooks</a><br />
<a href="/providers/google/ondemandscanning/">ondemandscanning</a><br />
<a href="/providers/google/oracledatabase/">oracledatabase</a><br />
<a href="/providers/google/orgpolicy/">orgpolicy</a><br />
<a href="/providers/google/osconfig/">osconfig</a><br />
<a href="/providers/google/oslogin/">oslogin</a><br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Creates, updates, deletes, gets or lists a <code>notifications</code> resource.
## Methods
| Name | Accessible by | Required Params | Description |
|:-----|:--------------|:----------------|:------------|
| <CopyableCode code="get" /> | `SELECT` | <CopyableCode code="locationsId, notificationsId, organizationsId" /> | Gets a notification. |
| <CopyableCode code="list" /> | `SELECT` | <CopyableCode code="locationsId, organizationsId" /> | Lists notifications under a given parent. |
| <CopyableCode code="get" /> | `SELECT` | <CopyableCode code="locationsId, notificationsId, projectsId" /> | Gets a notification. |
| <CopyableCode code="list" /> | `SELECT` | <CopyableCode code="locationsId, projectsId" /> | Lists notifications under a given parent. |

## `SELECT` examples

Expand All @@ -56,5 +56,5 @@ notificationType,
subject
FROM google.advisorynotifications.notifications
WHERE locationsId = '{{ locationsId }}'
AND organizationsId = '{{ organizationsId }}';
AND projectsId = '{{ projectsId }}';
```
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Creates, updates, deletes, gets or lists a <code>settings</code> resource.
## Methods
| Name | Accessible by | Required Params | Description |
|:-----|:--------------|:----------------|:------------|
| <CopyableCode code="get_settings" /> | `SELECT` | <CopyableCode code="locationsId, organizationsId" /> | Get notification settings. |
| <CopyableCode code="update_settings" /> | `UPDATE` | <CopyableCode code="locationsId, organizationsId" /> | Update notification settings. |
| <CopyableCode code="get_settings" /> | `SELECT` | <CopyableCode code="locationsId, projectsId" /> | Get notification settings. |
| <CopyableCode code="update_settings" /> | `UPDATE` | <CopyableCode code="locationsId, projectsId" /> | Update notification settings. |

## `SELECT` examples

Expand All @@ -52,7 +52,7 @@ etag,
notificationSettings
FROM google.advisorynotifications.settings
WHERE locationsId = '{{ locationsId }}'
AND organizationsId = '{{ organizationsId }}';
AND projectsId = '{{ projectsId }}';
```

## `UPDATE` example
Expand All @@ -64,9 +64,9 @@ Updates a <code>settings</code> resource.
UPDATE google.advisorynotifications.settings
SET
etag = '{{ etag }}',
name = '{{ name }}',
notificationSettings = '{{ notificationSettings }}'
notificationSettings = '{{ notificationSettings }}',
name = '{{ name }}'
WHERE
locationsId = '{{ locationsId }}'
AND organizationsId = '{{ organizationsId }}';
AND projectsId = '{{ projectsId }}';
```
52 changes: 26 additions & 26 deletions docs/google-docs/providers/google/aiplatform/artifacts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,47 +98,47 @@ INSERT INTO google.aiplatform.artifacts (
locationsId,
metadataStoresId,
projectsId,
etag,
schemaTitle,
metadata,
uri,
labels,
metadata,
schemaVersion,
state,
schemaTitle,
displayName,
description,
uri
state,
etag,
description
)
SELECT
'{{ locationsId }}',
'{{ metadataStoresId }}',
'{{ projectsId }}',
'{{ etag }}',
'{{ schemaTitle }}',
'{{ metadata }}',
'{{ uri }}',
'{{ labels }}',
'{{ metadata }}',
'{{ schemaVersion }}',
'{{ state }}',
'{{ schemaTitle }}',
'{{ displayName }}',
'{{ description }}',
'{{ uri }}'
'{{ state }}',
'{{ etag }}',
'{{ description }}'
;
```
</TabItem>
<TabItem value="manifest">

```yaml
etag: string
schemaTitle: string
name: string
metadata: object
updateTime: string
createTime: string
uri: string
labels: object
metadata: object
schemaVersion: string
state: string
schemaTitle: string
displayName: string
state: string
name: string
updateTime: string
etag: string
description: string
uri: string
createTime: string

```
</TabItem>
Expand All @@ -152,15 +152,15 @@ Updates a <code>artifacts</code> resource.
/*+ update */
UPDATE google.aiplatform.artifacts
SET
etag = '{{ etag }}',
schemaTitle = '{{ schemaTitle }}',
metadata = '{{ metadata }}',
uri = '{{ uri }}',
labels = '{{ labels }}',
metadata = '{{ metadata }}',
schemaVersion = '{{ schemaVersion }}',
state = '{{ state }}',
schemaTitle = '{{ schemaTitle }}',
displayName = '{{ displayName }}',
description = '{{ description }}',
uri = '{{ uri }}'
state = '{{ state }}',
etag = '{{ etag }}',
description = '{{ description }}'
WHERE
artifactsId = '{{ artifactsId }}'
AND locationsId = '{{ locationsId }}'
Expand Down
Loading

0 comments on commit 771711f

Please sign in to comment.