Skip to content

Commit

Permalink
feat(connectors): update the API
Browse files Browse the repository at this point in the history
#### connectors:v1

The following keys were added:
- schemas.Connector.properties.category.description
- schemas.Connector.properties.category.readOnly
- schemas.Connector.properties.category.type
- schemas.Connector.properties.tags.description
- schemas.Connector.properties.tags.items.type
- schemas.Connector.properties.tags.readOnly
- schemas.Connector.properties.tags.type
  • Loading branch information
yoshi-automation authored and sofisl committed Jun 6, 2024
1 parent 8071314 commit 99eb514
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
15 changes: 14 additions & 1 deletion discovery/connectors-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2427,7 +2427,7 @@
}
}
},
"revision": "20240515",
"revision": "20240529",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3103,6 +3103,11 @@
"description": "Connectors indicates a specific connector type, e.x. Salesforce, SAP etc.",
"id": "Connector",
"properties": {
"category": {
"description": "Output only. Category of the connector.",
"readOnly": true,
"type": "string"
},
"createTime": {
"description": "Output only. Created time.",
"format": "google-datetime",
Expand Down Expand Up @@ -3166,6 +3171,14 @@
"readOnly": true,
"type": "string"
},
"tags": {
"description": "Output only. Tags of the connector.",
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"updateTime": {
"description": "Output only. Updated time.",
"format": "google-datetime",
Expand Down
8 changes: 8 additions & 0 deletions src/apis/connectors/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,10 @@ export namespace connectors_v1 {
* Connectors indicates a specific connector type, e.x. Salesforce, SAP etc.
*/
export interface Schema$Connector {
/**
* Output only. Category of the connector.
*/
category?: string | null;
/**
* Output only. Created time.
*/
Expand Down Expand Up @@ -560,6 +564,10 @@ export namespace connectors_v1 {
* Output only. Resource name of the Connector. Format: projects/{project\}/locations/{location\}/providers/{provider\}/connectors/{connector\} Only global location is supported for Connector resource.
*/
name?: string | null;
/**
* Output only. Tags of the connector.
*/
tags?: string[] | null;
/**
* Output only. Updated time.
*/
Expand Down

0 comments on commit 99eb514

Please sign in to comment.