Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages_generated/autoscaling/src/index.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
* PLEASE DO NOT EDIT HERE
*/

export * as Autoscalingv1alpha1 from './v1alpha1/index.gen'
export * as Autoscalingv1alpha1 from './v1alpha1/index.gen'
2 changes: 2 additions & 0 deletions packages_generated/lb/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ const unmarshalRouteMatch = (data: unknown): RouteMatch => {
return {
hostHeader: data.host_header,
matchSubdomains: data.match_subdomains,
pathBegin: data.path_begin,
sni: data.sni,
} as RouteMatch
}
Expand Down Expand Up @@ -1194,6 +1195,7 @@ const marshalRouteMatch = (
...resolveOneOf([
{ param: 'sni', value: request.sni },
{ param: 'host_header', value: request.hostHeader },
{ param: 'path_begin', value: request.pathBegin },
]),
})

Expand Down
10 changes: 8 additions & 2 deletions packages_generated/lb/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -733,19 +733,25 @@ export interface RouteMatch {
/**
* Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer. This field should be set for routes on TCP Load Balancers.
*
* One-of ('matchType'): at most one of 'sni', 'hostHeader' could be set.
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
*/
sni?: string
/**
* Value to match in the HTTP Host request header from an incoming request. This field should be set for routes on HTTP Load Balancers.
*
* One-of ('matchType'): at most one of 'sni', 'hostHeader' could be set.
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
*/
hostHeader?: string
/**
* If true, all subdomains will match.
*/
matchSubdomains: boolean
/**
* Value to match in the URL beginning path from an incoming request.
*
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
*/
pathBegin?: string
}

export interface CreateCertificateRequestCustomCertificate {
Expand Down
Loading