Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2240)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Oct 29, 2023
1 parent cf09469 commit 3151bd7
Show file tree
Hide file tree
Showing 12 changed files with 337 additions and 27 deletions.
59 changes: 56 additions & 3 deletions connectors/v1/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1832,7 +1832,7 @@
}
}
},
"revision": "20231011",
"revision": "20231024",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -2371,12 +2371,22 @@
"enum": [
"STATE_UNSPECIFIED",
"REFRESHING",
"UPDATED"
"UPDATED",
"REFRESHING_SCHEMA_METADATA",
"UPDATED_SCHEMA_METADATA",
"REFRESH_SCHEMA_METADATA_FAILED",
"REFRESHING_FULL_SCHEMA",
"UPDATED_FULL_SCHEMA"
],
"enumDescriptions": [
"Default state.",
"Schema refresh is in progress.",
"Schema has been updated."
"Schema has been updated.",
"Schema refresh for metadata is in progress.",
"Schema metadata has been updated.",
"Failed to refresh schema metadata",
"Triggered full schema refresh",
"Updated full schema"
],
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -2978,6 +2988,10 @@
"description": "Optional. Event type id of the event of current EventSubscription.",
"type": "string"
},
"jms": {
"$ref": "JMS",
"description": "Optional. JMS is the source for the event listener."
},
"name": {
"description": "Required. Resource name of the EventSubscription. Format: projects/{project}/locations/{location}/connections/{connection}/eventSubscriptions/{event_subscription}",
"type": "string"
Expand Down Expand Up @@ -3184,6 +3198,20 @@
"description": "Enrichment Supported.",
"type": "boolean"
},
"eventListenerType": {
"description": "The type of the event listener for a specific connector.",
"enum": [
"EVENT_LISTENER_TYPE_UNSPECIFIED",
"WEBHOOK_LISTENER",
"JMS_LISTENER"
],
"enumDescriptions": [
"Default value.",
"Webhook listener. e.g. Jira, Zendesk, Servicenow etc.,",
"JMS Listener. e.g. IBM MQ, Rabbit MQ etc.,"
],
"type": "string"
},
"isEventingSupported": {
"description": "Is Eventing Supported.",
"type": "boolean"
Expand Down Expand Up @@ -3789,6 +3817,31 @@
},
"type": "object"
},
"JMS": {
"description": "JMS message denotes the source of the event",
"id": "JMS",
"properties": {
"name": {
"description": "Optional. Name of the JMS source. i.e. queueName or topicName",
"type": "string"
},
"type": {
"description": "Optional. Type of the JMS Source. i.e. Queue or Topic",
"enum": [
"TYPE_UNSPECIFIED",
"QUEUE",
"TOPIC"
],
"enumDescriptions": [
"Default state.",
"JMS Queue.",
"JMS Topic."
],
"type": "string"
}
},
"type": "object"
},
"JsonSchema": {
"description": "JsonSchema representation of schema metadata",
"id": "JsonSchema",
Expand Down
56 changes: 56 additions & 0 deletions connectors/v1/connectors-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions domains/v1/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@
}
}
},
"revision": "20230904",
"revision": "20231018",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1834,7 +1834,8 @@
"IMPORT_PENDING",
"ACTIVE",
"SUSPENDED",
"EXPORTED"
"EXPORTED",
"EXPIRED"
],
"enumDescriptions": [
"The state is undefined.",
Expand All @@ -1845,7 +1846,8 @@
"The domain is being imported from Google Domains to Cloud Domains.",
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
"The domain is suspended and inoperative. For more details, see the `issues` field.",
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains."
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains.",
"The domain is expired."
],
"readOnly": true,
"type": "string"
Expand Down
1 change: 1 addition & 0 deletions domains/v1/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions domains/v1alpha2/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@
}
}
},
"revision": "20230904",
"revision": "20231018",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1834,7 +1834,8 @@
"IMPORT_PENDING",
"ACTIVE",
"SUSPENDED",
"EXPORTED"
"EXPORTED",
"EXPIRED"
],
"enumDescriptions": [
"The state is undefined.",
Expand All @@ -1845,7 +1846,8 @@
"The domain is being imported from Google Domains to Cloud Domains.",
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
"The domain is suspended and inoperative. For more details, see the `issues` field.",
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains."
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains.",
"The domain is expired."
],
"readOnly": true,
"type": "string"
Expand Down
1 change: 1 addition & 0 deletions domains/v1alpha2/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions domains/v1beta1/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@
}
}
},
"revision": "20230904",
"revision": "20231018",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1834,7 +1834,8 @@
"IMPORT_PENDING",
"ACTIVE",
"SUSPENDED",
"EXPORTED"
"EXPORTED",
"EXPIRED"
],
"enumDescriptions": [
"The state is undefined.",
Expand All @@ -1845,7 +1846,8 @@
"The domain is being imported from Google Domains to Cloud Domains.",
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
"The domain is suspended and inoperative. For more details, see the `issues` field.",
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains."
"The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains.",
"The domain is expired."
],
"readOnly": true,
"type": "string"
Expand Down
1 change: 1 addition & 0 deletions domains/v1beta1/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions networkservices/v1beta1/networkservices-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2483,7 +2483,7 @@
}
}
},
"revision": "20230926",
"revision": "20231018",
"rootUrl": "https://networkservices.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3685,7 +3685,7 @@
"type": "array"
},
"forwardingRules": {
"description": "Required. A list of references to the forwarding rules to which this service extension is attach to. At least one forwarding rule is required. There can be only one `LbRouteExtension` resource per forwarding rule.",
"description": "Required. A list of references to the forwarding rules to which this service extension is attached to. At least one forwarding rule is required. There can be only one `LbRouteExtension` resource per forwarding rule.",
"items": {
"type": "string"
},
Expand All @@ -3699,7 +3699,7 @@
"type": "object"
},
"loadBalancingScheme": {
"description": "Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `EXTERNAL_MANAGED`.",
"description": "Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `EXTERNAL_MANAGED`. For more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service).",
"enum": [
"LOAD_BALANCING_SCHEME_UNSPECIFIED",
"INTERNAL_MANAGED",
Expand Down Expand Up @@ -3747,7 +3747,7 @@
"type": "array"
},
"forwardingRules": {
"description": "Required. A list of references to the forwarding rules to which this service extension is attach to. At least one forwarding rule is required. There can be only one `LBTrafficExtension` resource per forwarding rule.",
"description": "Required. A list of references to the forwarding rules to which this service extension is attached to. At least one forwarding rule is required. There can be only one `LBTrafficExtension` resource per forwarding rule.",
"items": {
"type": "string"
},
Expand Down
8 changes: 5 additions & 3 deletions networkservices/v1beta1/networkservices-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3151bd7

Please sign in to comment.