Skip to content

Commit 3151bd7

Browse files
feat(all): auto-regenerate discovery clients (#2240)
1 parent cf09469 commit 3151bd7

File tree

12 files changed

+337
-27
lines changed

12 files changed

+337
-27
lines changed

connectors/v1/connectors-api.json

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@
18321832
}
18331833
}
18341834
},
1835-
"revision": "20231011",
1835+
"revision": "20231024",
18361836
"rootUrl": "https://connectors.googleapis.com/",
18371837
"schemas": {
18381838
"AuditConfig": {
@@ -2371,12 +2371,22 @@
23712371
"enum": [
23722372
"STATE_UNSPECIFIED",
23732373
"REFRESHING",
2374-
"UPDATED"
2374+
"UPDATED",
2375+
"REFRESHING_SCHEMA_METADATA",
2376+
"UPDATED_SCHEMA_METADATA",
2377+
"REFRESH_SCHEMA_METADATA_FAILED",
2378+
"REFRESHING_FULL_SCHEMA",
2379+
"UPDATED_FULL_SCHEMA"
23752380
],
23762381
"enumDescriptions": [
23772382
"Default state.",
23782383
"Schema refresh is in progress.",
2379-
"Schema has been updated."
2384+
"Schema has been updated.",
2385+
"Schema refresh for metadata is in progress.",
2386+
"Schema metadata has been updated.",
2387+
"Failed to refresh schema metadata",
2388+
"Triggered full schema refresh",
2389+
"Updated full schema"
23802390
],
23812391
"readOnly": true,
23822392
"type": "string"
@@ -2978,6 +2988,10 @@
29782988
"description": "Optional. Event type id of the event of current EventSubscription.",
29792989
"type": "string"
29802990
},
2991+
"jms": {
2992+
"$ref": "JMS",
2993+
"description": "Optional. JMS is the source for the event listener."
2994+
},
29812995
"name": {
29822996
"description": "Required. Resource name of the EventSubscription. Format: projects/{project}/locations/{location}/connections/{connection}/eventSubscriptions/{event_subscription}",
29832997
"type": "string"
@@ -3184,6 +3198,20 @@
31843198
"description": "Enrichment Supported.",
31853199
"type": "boolean"
31863200
},
3201+
"eventListenerType": {
3202+
"description": "The type of the event listener for a specific connector.",
3203+
"enum": [
3204+
"EVENT_LISTENER_TYPE_UNSPECIFIED",
3205+
"WEBHOOK_LISTENER",
3206+
"JMS_LISTENER"
3207+
],
3208+
"enumDescriptions": [
3209+
"Default value.",
3210+
"Webhook listener. e.g. Jira, Zendesk, Servicenow etc.,",
3211+
"JMS Listener. e.g. IBM MQ, Rabbit MQ etc.,"
3212+
],
3213+
"type": "string"
3214+
},
31873215
"isEventingSupported": {
31883216
"description": "Is Eventing Supported.",
31893217
"type": "boolean"
@@ -3789,6 +3817,31 @@
37893817
},
37903818
"type": "object"
37913819
},
3820+
"JMS": {
3821+
"description": "JMS message denotes the source of the event",
3822+
"id": "JMS",
3823+
"properties": {
3824+
"name": {
3825+
"description": "Optional. Name of the JMS source. i.e. queueName or topicName",
3826+
"type": "string"
3827+
},
3828+
"type": {
3829+
"description": "Optional. Type of the JMS Source. i.e. Queue or Topic",
3830+
"enum": [
3831+
"TYPE_UNSPECIFIED",
3832+
"QUEUE",
3833+
"TOPIC"
3834+
],
3835+
"enumDescriptions": [
3836+
"Default state.",
3837+
"JMS Queue.",
3838+
"JMS Topic."
3839+
],
3840+
"type": "string"
3841+
}
3842+
},
3843+
"type": "object"
3844+
},
37923845
"JsonSchema": {
37933846
"description": "JsonSchema representation of schema metadata",
37943847
"id": "JsonSchema",

connectors/v1/connectors-gen.go

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

domains/v1/domains-api.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
}
844844
}
845845
},
846-
"revision": "20230904",
846+
"revision": "20231018",
847847
"rootUrl": "https://domains.googleapis.com/",
848848
"schemas": {
849849
"AuditConfig": {
@@ -1834,7 +1834,8 @@
18341834
"IMPORT_PENDING",
18351835
"ACTIVE",
18361836
"SUSPENDED",
1837-
"EXPORTED"
1837+
"EXPORTED",
1838+
"EXPIRED"
18381839
],
18391840
"enumDescriptions": [
18401841
"The state is undefined.",
@@ -1845,7 +1846,8 @@
18451846
"The domain is being imported from Google Domains to Cloud Domains.",
18461847
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
18471848
"The domain is suspended and inoperative. For more details, see the `issues` field.",
1848-
"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."
1849+
"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.",
1850+
"The domain is expired."
18491851
],
18501852
"readOnly": true,
18511853
"type": "string"

domains/v1/domains-gen.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

domains/v1alpha2/domains-api.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
}
844844
}
845845
},
846-
"revision": "20230904",
846+
"revision": "20231018",
847847
"rootUrl": "https://domains.googleapis.com/",
848848
"schemas": {
849849
"AuditConfig": {
@@ -1834,7 +1834,8 @@
18341834
"IMPORT_PENDING",
18351835
"ACTIVE",
18361836
"SUSPENDED",
1837-
"EXPORTED"
1837+
"EXPORTED",
1838+
"EXPIRED"
18381839
],
18391840
"enumDescriptions": [
18401841
"The state is undefined.",
@@ -1845,7 +1846,8 @@
18451846
"The domain is being imported from Google Domains to Cloud Domains.",
18461847
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
18471848
"The domain is suspended and inoperative. For more details, see the `issues` field.",
1848-
"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."
1849+
"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.",
1850+
"The domain is expired."
18491851
],
18501852
"readOnly": true,
18511853
"type": "string"

domains/v1alpha2/domains-gen.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

domains/v1beta1/domains-api.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@
843843
}
844844
}
845845
},
846-
"revision": "20230904",
846+
"revision": "20231018",
847847
"rootUrl": "https://domains.googleapis.com/",
848848
"schemas": {
849849
"AuditConfig": {
@@ -1834,7 +1834,8 @@
18341834
"IMPORT_PENDING",
18351835
"ACTIVE",
18361836
"SUSPENDED",
1837-
"EXPORTED"
1837+
"EXPORTED",
1838+
"EXPIRED"
18381839
],
18391840
"enumDescriptions": [
18401841
"The state is undefined.",
@@ -1845,7 +1846,8 @@
18451846
"The domain is being imported from Google Domains to Cloud Domains.",
18461847
"The domain is registered and operational. The domain renews automatically as long as it remains in this state.",
18471848
"The domain is suspended and inoperative. For more details, see the `issues` field.",
1848-
"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."
1849+
"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.",
1850+
"The domain is expired."
18491851
],
18501852
"readOnly": true,
18511853
"type": "string"

domains/v1beta1/domains-gen.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

networkservices/v1beta1/networkservices-api.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2483,7 +2483,7 @@
24832483
}
24842484
}
24852485
},
2486-
"revision": "20230926",
2486+
"revision": "20231018",
24872487
"rootUrl": "https://networkservices.googleapis.com/",
24882488
"schemas": {
24892489
"AuditConfig": {
@@ -3685,7 +3685,7 @@
36853685
"type": "array"
36863686
},
36873687
"forwardingRules": {
3688-
"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.",
3688+
"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.",
36893689
"items": {
36903690
"type": "string"
36913691
},
@@ -3699,7 +3699,7 @@
36993699
"type": "object"
37003700
},
37013701
"loadBalancingScheme": {
3702-
"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`.",
3702+
"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).",
37033703
"enum": [
37043704
"LOAD_BALANCING_SCHEME_UNSPECIFIED",
37053705
"INTERNAL_MANAGED",
@@ -3747,7 +3747,7 @@
37473747
"type": "array"
37483748
},
37493749
"forwardingRules": {
3750-
"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.",
3750+
"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.",
37513751
"items": {
37523752
"type": "string"
37533753
},

networkservices/v1beta1/networkservices-gen.go

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)