Skip to content

Commit dd117d9

Browse files
authored
Merge pull request #187 from stackql/feature/doc-updates
updated google docs
2 parents e07cf5b + 771711f commit dd117d9

File tree

215 files changed

+11576
-4887
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

215 files changed

+11576
-4887
lines changed

docs/google-docs/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
2121

2222
Cloud services from Google.
2323

24-
:::info Provider Summary (v24.09.00251)
24+
:::info Provider Summary (v24.09.00254)
2525

2626
<div class="row">
2727
<div class="providerDocColumn">
28-
<span>total services:&nbsp;<b>167</b></span><br />
29-
<span>total resources:&nbsp;<b>1926</b></span><br />
28+
<span>total services:&nbsp;<b>168</b></span><br />
29+
<span>total resources:&nbsp;<b>1941</b></span><br />
3030
</div>
3131
</div>
3232

@@ -215,6 +215,7 @@ stackql.exe shell --auth=$Auth
215215
<a href="/providers/google/networkservices/">networkservices</a><br />
216216
<a href="/providers/google/notebooks/">notebooks</a><br />
217217
<a href="/providers/google/ondemandscanning/">ondemandscanning</a><br />
218+
<a href="/providers/google/oracledatabase/">oracledatabase</a><br />
218219
<a href="/providers/google/orgpolicy/">orgpolicy</a><br />
219220
<a href="/providers/google/osconfig/">osconfig</a><br />
220221
<a href="/providers/google/oslogin/">oslogin</a><br />

docs/google-docs/providers/google/advisorynotifications/notifications/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Creates, updates, deletes, gets or lists a <code>notifications</code> resource.
4040
## Methods
4141
| Name | Accessible by | Required Params | Description |
4242
|:-----|:--------------|:----------------|:------------|
43-
| <CopyableCode code="get" /> | `SELECT` | <CopyableCode code="locationsId, notificationsId, organizationsId" /> | Gets a notification. |
44-
| <CopyableCode code="list" /> | `SELECT` | <CopyableCode code="locationsId, organizationsId" /> | Lists notifications under a given parent. |
43+
| <CopyableCode code="get" /> | `SELECT` | <CopyableCode code="locationsId, notificationsId, projectsId" /> | Gets a notification. |
44+
| <CopyableCode code="list" /> | `SELECT` | <CopyableCode code="locationsId, projectsId" /> | Lists notifications under a given parent. |
4545

4646
## `SELECT` examples
4747

@@ -56,5 +56,5 @@ notificationType,
5656
subject
5757
FROM google.advisorynotifications.notifications
5858
WHERE locationsId = '{{ locationsId }}'
59-
AND organizationsId = '{{ organizationsId }}';
59+
AND projectsId = '{{ projectsId }}';
6060
```

docs/google-docs/providers/google/advisorynotifications/settings/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Creates, updates, deletes, gets or lists a <code>settings</code> resource.
3838
## Methods
3939
| Name | Accessible by | Required Params | Description |
4040
|:-----|:--------------|:----------------|:------------|
41-
| <CopyableCode code="get_settings" /> | `SELECT` | <CopyableCode code="locationsId, organizationsId" /> | Get notification settings. |
42-
| <CopyableCode code="update_settings" /> | `UPDATE` | <CopyableCode code="locationsId, organizationsId" /> | Update notification settings. |
41+
| <CopyableCode code="get_settings" /> | `SELECT` | <CopyableCode code="locationsId, projectsId" /> | Get notification settings. |
42+
| <CopyableCode code="update_settings" /> | `UPDATE` | <CopyableCode code="locationsId, projectsId" /> | Update notification settings. |
4343

4444
## `SELECT` examples
4545

@@ -52,7 +52,7 @@ etag,
5252
notificationSettings
5353
FROM google.advisorynotifications.settings
5454
WHERE locationsId = '{{ locationsId }}'
55-
AND organizationsId = '{{ organizationsId }}';
55+
AND projectsId = '{{ projectsId }}';
5656
```
5757

5858
## `UPDATE` example
@@ -64,9 +64,9 @@ Updates a <code>settings</code> resource.
6464
UPDATE google.advisorynotifications.settings
6565
SET
6666
etag = '{{ etag }}',
67-
name = '{{ name }}',
68-
notificationSettings = '{{ notificationSettings }}'
67+
notificationSettings = '{{ notificationSettings }}',
68+
name = '{{ name }}'
6969
WHERE
7070
locationsId = '{{ locationsId }}'
71-
AND organizationsId = '{{ organizationsId }}';
71+
AND projectsId = '{{ projectsId }}';
7272
```

docs/google-docs/providers/google/aiplatform/artifacts/index.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -98,47 +98,47 @@ INSERT INTO google.aiplatform.artifacts (
9898
locationsId,
9999
metadataStoresId,
100100
projectsId,
101-
etag,
102-
schemaTitle,
103-
metadata,
101+
uri,
104102
labels,
103+
metadata,
105104
schemaVersion,
106-
state,
105+
schemaTitle,
107106
displayName,
108-
description,
109-
uri
107+
state,
108+
etag,
109+
description
110110
)
111111
SELECT
112112
'{{ locationsId }}',
113113
'{{ metadataStoresId }}',
114114
'{{ projectsId }}',
115-
'{{ etag }}',
116-
'{{ schemaTitle }}',
117-
'{{ metadata }}',
115+
'{{ uri }}',
118116
'{{ labels }}',
117+
'{{ metadata }}',
119118
'{{ schemaVersion }}',
120-
'{{ state }}',
119+
'{{ schemaTitle }}',
121120
'{{ displayName }}',
122-
'{{ description }}',
123-
'{{ uri }}'
121+
'{{ state }}',
122+
'{{ etag }}',
123+
'{{ description }}'
124124
;
125125
```
126126
</TabItem>
127127
<TabItem value="manifest">
128128

129129
```yaml
130-
etag: string
131-
schemaTitle: string
132-
name: string
133-
metadata: object
134-
updateTime: string
130+
createTime: string
131+
uri: string
135132
labels: object
133+
metadata: object
136134
schemaVersion: string
137-
state: string
135+
schemaTitle: string
138136
displayName: string
137+
state: string
138+
name: string
139+
updateTime: string
140+
etag: string
139141
description: string
140-
uri: string
141-
createTime: string
142142

143143
```
144144
</TabItem>
@@ -152,15 +152,15 @@ Updates a <code>artifacts</code> resource.
152152
/*+ update */
153153
UPDATE google.aiplatform.artifacts
154154
SET
155-
etag = '{{ etag }}',
156-
schemaTitle = '{{ schemaTitle }}',
157-
metadata = '{{ metadata }}',
155+
uri = '{{ uri }}',
158156
labels = '{{ labels }}',
157+
metadata = '{{ metadata }}',
159158
schemaVersion = '{{ schemaVersion }}',
160-
state = '{{ state }}',
159+
schemaTitle = '{{ schemaTitle }}',
161160
displayName = '{{ displayName }}',
162-
description = '{{ description }}',
163-
uri = '{{ uri }}'
161+
state = '{{ state }}',
162+
etag = '{{ etag }}',
163+
description = '{{ description }}'
164164
WHERE
165165
artifactsId = '{{ artifactsId }}'
166166
AND locationsId = '{{ locationsId }}'

0 commit comments

Comments
 (0)