diff --git a/discovery/connectors-v1.json b/discovery/connectors-v1.json index f1b64859de..da2d3da6af 100644 --- a/discovery/connectors-v1.json +++ b/discovery/connectors-v1.json @@ -2427,7 +2427,7 @@ } } }, - "revision": "20240515", + "revision": "20240529", "rootUrl": "https://connectors.googleapis.com/", "schemas": { "AuditConfig": { @@ -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", @@ -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", diff --git a/src/apis/connectors/v1.ts b/src/apis/connectors/v1.ts index 260a089432..3ca323f9b4 100644 --- a/src/apis/connectors/v1.ts +++ b/src/apis/connectors/v1.ts @@ -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. */ @@ -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. */