@daocloud-proto/zestu 0.1.0-dev-48f51601 → 0.1.0-dev-b911cdc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -52,6 +52,8 @@ export enum NetworkProtocol {
|
|
|
52
52
|
PROTOCOL_UNSPECIFIED = "PROTOCOL_UNSPECIFIED",
|
|
53
53
|
HTTP = "HTTP",
|
|
54
54
|
HTTPS = "HTTPS",
|
|
55
|
+
TCP = "TCP",
|
|
56
|
+
UDP = "UDP",
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
export type ListContainerInstancesRequest = {
|
|
@@ -161,7 +163,15 @@ export type ListContainerInstanceNetworksRequest = {
|
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
export type ListContainerInstanceNetworksResponse = {
|
|
164
|
-
|
|
166
|
+
networks?: ContainerInstanceNetwork[]
|
|
167
|
+
ssh?: SSHInfo
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export type SSHInfo = {
|
|
171
|
+
username?: string
|
|
172
|
+
password?: string
|
|
173
|
+
host?: string
|
|
174
|
+
port?: number
|
|
165
175
|
}
|
|
166
176
|
|
|
167
177
|
export type ContainerInstanceNetwork = {
|