Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2180)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Sep 24, 2023
1 parent 1bca7ee commit e61e11b
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 5 deletions.
36 changes: 35 additions & 1 deletion eventarc/v1/eventarc-api.json
Expand Up @@ -1197,7 +1197,7 @@
}
}
},
"revision": "20230811",
"revision": "20230918",
"rootUrl": "https://eventarc.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1404,6 +1404,14 @@
"$ref": "GKE",
"description": "A GKE service capable of receiving events. The service should be running in the same project as the trigger."
},
"httpEndpoint": {
"$ref": "HttpEndpoint",
"description": "An HTTP endpoint destination described by an URI."
},
"networkConfig": {
"$ref": "NetworkConfig",
"description": "Optional. Network config is used to configure how Eventarc resolves and connect to a destination. This should only be used with HttpEndpoint destination type."
},
"workflow": {
"description": "The resource name of the Workflow whose Executions are triggered by the events. The Workflow resource should be deployed in the same project as the trigger. Format: `projects/{project}/locations/{location}/workflows/{workflow}`",
"type": "string"
Expand Down Expand Up @@ -1650,6 +1658,21 @@
},
"type": "object"
},
"HttpEndpoint": {
"description": "Represents a HTTP endpoint destination.",
"id": "HttpEndpoint",
"properties": {
"forwardDnsRequests": {
"description": "Optional. Forwards DNS requests to the VPC specified by network config to resolve the HTTP endpoint. Default to false. If set to true, Eventarc will create a peering zone to the consumer VPC and forward DNS requests. See: https://cloud.google.com/dns/docs/zones/zones-overview#peering_zones Enable this if the URI uses an internal DNS name or a private Cloud DNS zone.",
"type": "boolean"
},
"uri": {
"description": "Required. The URI of the HTTP enpdoint. The value must be a RFC2396 URI string. Examples: `http://10.10.10.8:80/route`, `http://svc.us-central1.p.local:8080/`. Only HTTP and HTTPS protocols are supported. The host can be either a static IP addressable from the VPC specified by the network config, or an internal DNS hostname of the service resolvable via Cloud DNS.",
"type": "string"
}
},
"type": "object"
},
"ListChannelConnectionsResponse": {
"description": "The response message for the `ListChannelConnections` method.",
"id": "ListChannelConnectionsResponse",
Expand Down Expand Up @@ -1802,6 +1825,17 @@
},
"type": "object"
},
"NetworkConfig": {
"description": "Represents a network config to be used for destination resolution and connectivity.",
"id": "NetworkConfig",
"properties": {
"networkAttachment": {
"description": "Required. Name of the NetworkAttachment that allows access to the destination VPC. Format: `projects/{PROJECT_ID}/regions/{REGION}/networkAttachments/{NETWORK_ATTACHMENT_NAME}`",
"type": "string"
}
},
"type": "object"
},
"OperationMetadata": {
"description": "Represents the metadata of the long-running operation.",
"id": "OperationMetadata",
Expand Down
84 changes: 84 additions & 0 deletions eventarc/v1/eventarc-gen.go

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

4 changes: 2 additions & 2 deletions gkeonprem/v1/gkeonprem-api.json
Expand Up @@ -2996,7 +2996,7 @@
}
}
},
"revision": "20230906",
"revision": "20230918",
"rootUrl": "https://gkeonprem.googleapis.com/",
"schemas": {
"Authorization": {
Expand Down Expand Up @@ -6003,7 +6003,7 @@
},
"vcenter": {
"$ref": "VmwareVCenterConfig",
"description": "VmwareVCenterConfig specifies vCenter config for the user cluster. Inherited from the admin cluster."
"description": "VmwareVCenterConfig specifies vCenter config for the user cluster. If unspecified, it is inherited from the admin cluster."
},
"vmTrackingEnabled": {
"description": "Enable VM tracking.",
Expand Down
2 changes: 1 addition & 1 deletion gkeonprem/v1/gkeonprem-gen.go

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

6 changes: 5 additions & 1 deletion networksecurity/v1beta1/networksecurity-api.json
Expand Up @@ -3162,7 +3162,7 @@
}
}
},
"revision": "20230831",
"revision": "20230918",
"rootUrl": "https://networksecurity.googleapis.com/",
"schemas": {
"AddAddressGroupItemsRequest": {
Expand Down Expand Up @@ -3458,6 +3458,10 @@
"readOnly": true,
"type": "array"
},
"billingProjectId": {
"description": "Optional. Project to bill on endpoint uptime usage.",
"type": "string"
},
"createTime": {
"description": "Output only. Create time stamp",
"format": "google-datetime",
Expand Down
3 changes: 3 additions & 0 deletions networksecurity/v1beta1/networksecurity-gen.go

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

0 comments on commit e61e11b

Please sign in to comment.