Skip to content

Commit b7b124d

Browse files
feat(trafficdirector): update the API
#### trafficdirector:v3 The following keys were added: - schemas.SocketAddress.properties.networkNamespaceFilepath.description - schemas.SocketAddress.properties.networkNamespaceFilepath.type The following keys were changed: - schemas.SocketAddress.description
1 parent a7b08f5 commit b7b124d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

‎discovery/trafficdirector-v3.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
}
129129
}
130130
},
131-
"revision": "20250206",
131+
"revision": "20250423",
132132
"rootUrl": "https://trafficdirector.googleapis.com/",
133133
"schemas": {
134134
"Address": {
@@ -1102,7 +1102,7 @@
11021102
"type": "object"
11031103
},
11041104
"SocketAddress": {
1105-
"description": "[#next-free-field: 7]",
1105+
"description": "[#next-free-field: 8]",
11061106
"id": "SocketAddress",
11071107
"properties": {
11081108
"address": {
@@ -1117,6 +1117,10 @@
11171117
"description": "This is only valid if :ref:`resolver_name ` is specified below and the named resolver is capable of named port resolution.",
11181118
"type": "string"
11191119
},
1120+
"networkNamespaceFilepath": {
1121+
"description": "The Linux network namespace to bind the socket to. If this is set, Envoy will create the socket in the specified network namespace. Only supported on Linux. [#not-implemented-hide:]",
1122+
"type": "string"
1123+
},
11201124
"portValue": {
11211125
"format": "uint32",
11221126
"type": "integer"

‎src/apis/trafficdirector/v3.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ export namespace trafficdirector_v3 {
711711
patch?: number | null;
712712
}
713713
/**
714-
* [#next-free-field: 7]
714+
* [#next-free-field: 8]
715715
*/
716716
export interface Schema$SocketAddress {
717717
/**
@@ -726,6 +726,10 @@ export namespace trafficdirector_v3 {
726726
* This is only valid if :ref:`resolver_name ` is specified below and the named resolver is capable of named port resolution.
727727
*/
728728
namedPort?: string | null;
729+
/**
730+
* The Linux network namespace to bind the socket to. If this is set, Envoy will create the socket in the specified network namespace. Only supported on Linux. [#not-implemented-hide:]
731+
*/
732+
networkNamespaceFilepath?: string | null;
729733
portValue?: number | null;
730734
protocol?: string | null;
731735
/**

0 commit comments

Comments
 (0)