the-moby-effect 1.51.0 → 1.51.1
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/dist/Callbacks.d.ts +3 -3
- package/dist/DindEngine.d.ts +3 -3
- package/dist/DockerComposeEngine.d.ts +4 -4
- package/dist/DockerEngine.d.ts +12 -5
- package/dist/DockerEngine.d.ts.map +1 -1
- package/dist/DockerEngine.js +7 -0
- package/dist/DockerEngine.js.map +1 -1
- package/dist/MobyConvey.d.ts +1 -1
- package/dist/MobyDemux.d.ts +21 -1
- package/dist/MobyDemux.d.ts.map +1 -1
- package/dist/MobyDemux.js +20 -0
- package/dist/MobyDemux.js.map +1 -1
- package/dist/MobyEndpoints.d.ts +15 -15
- package/dist/MobyPlatforms.d.ts +1 -1
- package/dist/MobySchemas.d.ts +1 -1
- package/dist/PodmanEngine.d.ts +2 -2
- package/dist/Promises.d.ts +3 -3
- package/dist/internal/demux/multiplexed.js +4 -0
- package/dist/internal/demux/multiplexed.js.map +1 -1
- package/dist/internal/demux/raw.js +4 -0
- package/dist/internal/demux/raw.js.map +1 -1
- package/dist/internal/endpoints/auth.d.ts +56 -0
- package/dist/internal/endpoints/auth.d.ts.map +1 -0
- package/dist/internal/endpoints/auth.js +82 -0
- package/dist/internal/endpoints/auth.js.map +1 -0
- package/dist/internal/endpoints/containers.d.ts.map +1 -1
- package/dist/internal/endpoints/containers.js +3 -3
- package/dist/internal/endpoints/containers.js.map +1 -1
- package/dist/internal/endpoints/execs.d.ts.map +1 -1
- package/dist/internal/endpoints/execs.js +1 -1
- package/dist/internal/endpoints/execs.js.map +1 -1
- package/dist/internal/endpoints/images.d.ts +8 -8
- package/dist/internal/endpoints/images.d.ts.map +1 -1
- package/dist/internal/endpoints/images.js +21 -17
- package/dist/internal/endpoints/images.js.map +1 -1
- package/dist/internal/endpoints/networks.d.ts +26 -4
- package/dist/internal/endpoints/networks.d.ts.map +1 -1
- package/dist/internal/endpoints/networks.js +5 -5
- package/dist/internal/endpoints/networks.js.map +1 -1
- package/dist/internal/endpoints/plugins.d.ts +3 -3
- package/dist/internal/endpoints/plugins.d.ts.map +1 -1
- package/dist/internal/endpoints/plugins.js +12 -11
- package/dist/internal/endpoints/plugins.js.map +1 -1
- package/dist/internal/endpoints/services.d.ts +25 -3
- package/dist/internal/endpoints/services.d.ts.map +1 -1
- package/dist/internal/endpoints/services.js +8 -11
- package/dist/internal/endpoints/services.js.map +1 -1
- package/dist/internal/endpoints/system.d.ts +1 -1
- package/dist/internal/endpoints/system.d.ts.map +1 -1
- package/dist/internal/endpoints/system.js.map +1 -1
- package/dist/internal/engines/dind.js +9 -2
- package/dist/internal/engines/dind.js.map +1 -1
- package/dist/internal/generated/ContainerConfig.generated.d.ts +3 -3
- package/dist/internal/generated/ContainerConfig.generated.js +1 -1
- package/dist/internal/generated/ContainerConfig.generated.js.map +1 -1
- package/dist/internal/generated/ContainerContainerJSONBase.generated.d.ts +3 -3
- package/dist/internal/generated/ContainerContainerJSONBase.generated.js +2 -1
- package/dist/internal/generated/ContainerContainerJSONBase.generated.js.map +1 -1
- package/dist/internal/generated/ContainerCreateRequest.generated.d.ts +3 -3
- package/dist/internal/generated/ContainerDefaultNetworkSettings.generated.d.ts +24 -24
- package/dist/internal/generated/ContainerDefaultNetworkSettings.generated.js +15 -8
- package/dist/internal/generated/ContainerDefaultNetworkSettings.generated.js.map +1 -1
- package/dist/internal/generated/ContainerInspectResponse.generated.d.ts +3 -3
- package/dist/internal/generated/ContainerNetworkSettings.generated.d.ts +45 -45
- package/dist/internal/generated/ContainerNetworkSettingsBase.generated.d.ts +21 -21
- package/dist/internal/generated/ContainerNetworkSettingsBase.generated.js +11 -6
- package/dist/internal/generated/ContainerNetworkSettingsBase.generated.js.map +1 -1
- package/dist/internal/generated/ImageInspectResponse.generated.d.ts +14 -14
- package/dist/internal/generated/ImageInspectResponse.generated.js +8 -4
- package/dist/internal/generated/ImageInspectResponse.generated.js.map +1 -1
- package/dist/internal/generated/NetworkCreateOptions.generated.d.ts +66 -34
- package/dist/internal/generated/NetworkCreateOptions.generated.d.ts.map +1 -1
- package/dist/internal/generated/NetworkCreateOptions.generated.js +28 -12
- package/dist/internal/generated/NetworkCreateOptions.generated.js.map +1 -1
- package/dist/internal/generated/NetworkCreateRequest.generated.d.ts +66 -34
- package/dist/internal/generated/NetworkCreateRequest.generated.d.ts.map +1 -1
- package/dist/internal/generated/NetworkInspect.generated.d.ts +11 -11
- package/dist/internal/generated/NetworkInspect.generated.js +5 -3
- package/dist/internal/generated/NetworkInspect.generated.js.map +1 -1
- package/dist/internal/generated/TypesDiskUsage.generated.d.ts +3 -3
- package/dist/internal/generated/TypesDiskUsage.generated.js +2 -1
- package/dist/internal/generated/TypesDiskUsage.generated.js.map +1 -1
- package/dist/internal/platforms/undici.js +88 -59
- package/dist/internal/platforms/undici.js.map +1 -1
- package/dist/internal/schemas/id.js +1 -1
- package/dist/internal/schemas/id.js.map +1 -1
- package/package.json +1 -1
- package/src/Callbacks.ts +3 -3
- package/src/DindEngine.ts +4 -4
- package/src/DockerComposeEngine.ts +4 -4
- package/src/DockerEngine.ts +16 -7
- package/src/MobyConnection.ts +1 -1
- package/src/MobyConvey.ts +2 -2
- package/src/MobyDemux.ts +31 -7
- package/src/MobyEndpoints.ts +15 -15
- package/src/MobyPlatforms.ts +8 -8
- package/src/MobySchemas.ts +1 -1
- package/src/PodmanEngine.ts +3 -3
- package/src/Promises.ts +3 -3
- package/src/internal/demux/multiplexed.ts +9 -0
- package/src/internal/demux/raw.ts +6 -0
- package/src/internal/endpoints/auth.ts +120 -0
- package/src/internal/endpoints/containers.ts +7 -4
- package/src/internal/endpoints/execs.ts +7 -2
- package/src/internal/endpoints/images.ts +59 -24
- package/src/internal/endpoints/networks.ts +11 -5
- package/src/internal/endpoints/plugins.ts +17 -7
- package/src/internal/endpoints/services.ts +21 -6
- package/src/internal/endpoints/system.ts +1 -1
- package/src/internal/engines/dind.ts +8 -2
- package/src/internal/generated/ContainerConfig.generated.ts +1 -1
- package/src/internal/generated/ContainerContainerJSONBase.generated.ts +1 -1
- package/src/internal/generated/ContainerDefaultNetworkSettings.generated.ts +8 -8
- package/src/internal/generated/ContainerNetworkSettingsBase.generated.ts +6 -6
- package/src/internal/generated/ImageInspectResponse.generated.ts +4 -4
- package/src/internal/generated/NetworkCreateOptions.generated.ts +10 -10
- package/src/internal/generated/NetworkInspect.generated.ts +3 -3
- package/src/internal/generated/TypesDiskUsage.generated.ts +1 -1
- package/src/internal/platforms/undici.ts +121 -90
- package/src/internal/schemas/id.ts +1 -1
|
@@ -3,15 +3,20 @@ import * as Schema from "effect/Schema";
|
|
|
3
3
|
import * as PortSchemas from "../schemas/port.js";
|
|
4
4
|
import * as NetworkAddress from "./NetworkAddress.generated.js";
|
|
5
5
|
export class ContainerNetworkSettingsBase extends /*#__PURE__*/Schema.Class("ContainerNetworkSettingsBase")({
|
|
6
|
-
Bridge: Schema.String,
|
|
6
|
+
Bridge: /*#__PURE__*/Schema.optional(Schema.String),
|
|
7
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
7
8
|
SandboxID: Schema.String,
|
|
8
9
|
SandboxKey: Schema.String,
|
|
9
10
|
Ports: /*#__PURE__*/Schema.NullOr(PortSchemas.PortMap),
|
|
10
|
-
HairpinMode: Schema.Boolean,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
HairpinMode: /*#__PURE__*/Schema.optional(Schema.Boolean),
|
|
12
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
13
|
+
LinkLocalIPv6Address: /*#__PURE__*/Schema.optional(Schema.String),
|
|
14
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
15
|
+
LinkLocalIPv6PrefixLen: /*#__PURE__*/Schema.optional(EffectSchemas.Number.I64),
|
|
16
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
17
|
+
SecondaryIPAddresses: /*#__PURE__*/Schema.NullishOr(/*#__PURE__*/Schema.Array(/*#__PURE__*/Schema.NullOr(NetworkAddress.NetworkAddress))),
|
|
18
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
19
|
+
SecondaryIPv6Addresses: /*#__PURE__*/Schema.NullishOr(/*#__PURE__*/Schema.Array(/*#__PURE__*/Schema.NullOr(NetworkAddress.NetworkAddress))) // optional for docker.io/library/docker:26-dind-rootless
|
|
15
20
|
}, {
|
|
16
21
|
identifier: "ContainerNetworkSettingsBase",
|
|
17
22
|
title: "container.NetworkSettingsBase",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContainerNetworkSettingsBase.generated.js","names":["EffectSchemas","Schema","PortSchemas","NetworkAddress","ContainerNetworkSettingsBase","Class","Bridge","String","SandboxID","SandboxKey","Ports","NullOr","PortMap","HairpinMode","Boolean","LinkLocalIPv6Address","LinkLocalIPv6PrefixLen","Number","I64","SecondaryIPAddresses","Array","SecondaryIPv6Addresses","identifier","title","documentation"],"sources":["../../../src/internal/generated/ContainerNetworkSettingsBase.generated.ts"],"sourcesContent":[null],"mappings":"AAAA,OAAO,KAAKA,aAAa,MAAM,gBAAgB;AAC/C,OAAO,KAAKC,MAAM,MAAM,eAAe;AACvC,OAAO,KAAKC,WAAW,MAAM,oBAAoB;AACjD,OAAO,KAAKC,cAAc,MAAM,+BAA+B;AAE/D,OAAM,MAAOC,4BAA6B,sBAAQH,MAAM,CAACI,KAAK,CAC1D,8BAA8B,CACjC,CACG;EACIC,MAAM,
|
|
1
|
+
{"version":3,"file":"ContainerNetworkSettingsBase.generated.js","names":["EffectSchemas","Schema","PortSchemas","NetworkAddress","ContainerNetworkSettingsBase","Class","Bridge","optional","String","SandboxID","SandboxKey","Ports","NullOr","PortMap","HairpinMode","Boolean","LinkLocalIPv6Address","LinkLocalIPv6PrefixLen","Number","I64","SecondaryIPAddresses","NullishOr","Array","SecondaryIPv6Addresses","identifier","title","documentation"],"sources":["../../../src/internal/generated/ContainerNetworkSettingsBase.generated.ts"],"sourcesContent":[null],"mappings":"AAAA,OAAO,KAAKA,aAAa,MAAM,gBAAgB;AAC/C,OAAO,KAAKC,MAAM,MAAM,eAAe;AACvC,OAAO,KAAKC,WAAW,MAAM,oBAAoB;AACjD,OAAO,KAAKC,cAAc,MAAM,+BAA+B;AAE/D,OAAM,MAAOC,4BAA6B,sBAAQH,MAAM,CAACI,KAAK,CAC1D,8BAA8B,CACjC,CACG;EACIC,MAAM,eAAEL,MAAM,CAACM,QAAQ,CAACN,MAAM,CAACO,MAAM,CAAC;EAAE;EACxCC,SAAS,EAAER,MAAM,CAACO,MAAM;EACxBE,UAAU,EAAET,MAAM,CAACO,MAAM;EACzBG,KAAK,eAAEV,MAAM,CAACW,MAAM,CAACV,WAAW,CAACW,OAAO,CAAC;EACzCC,WAAW,eAAEb,MAAM,CAACM,QAAQ,CAACN,MAAM,CAACc,OAAO,CAAC;EAAE;EAC9CC,oBAAoB,eAAEf,MAAM,CAACM,QAAQ,CAACN,MAAM,CAACO,MAAM,CAAC;EAAE;EACtDS,sBAAsB,eAAEhB,MAAM,CAACM,QAAQ,CAACP,aAAa,CAACkB,MAAM,CAACC,GAAG,CAAC;EAAE;EACnEC,oBAAoB,eAAEnB,MAAM,CAACoB,SAAS,cAACpB,MAAM,CAACqB,KAAK,cAACrB,MAAM,CAACW,MAAM,CAACT,cAAc,CAACA,cAAc,CAAC,CAAC,CAAC;EAAE;EACpGoB,sBAAsB,eAAEtB,MAAM,CAACoB,SAAS,cAACpB,MAAM,CAACqB,KAAK,cAACrB,MAAM,CAACW,MAAM,CAACT,cAAc,CAACA,cAAc,CAAC,CAAC,CAAC,CAAE;CACzG,EACD;EACIqB,UAAU,EAAE,8BAA8B;EAC1CC,KAAK,EAAE,+BAA+B;EACtCC,aAAa,EACT;CACP,CACJ","ignoreList":[]}
|
|
@@ -11,15 +11,15 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
11
11
|
Id: typeof Schema.String;
|
|
12
12
|
RepoTags: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
|
|
13
13
|
RepoDigests: Schema.NullOr<Schema.Array$<Schema.brand<Schema.filter<typeof Schema.String>, "Digest">>>;
|
|
14
|
-
Parent: typeof Schema.String
|
|
14
|
+
Parent: Schema.optional<typeof Schema.String>;
|
|
15
15
|
Comment: typeof Schema.String;
|
|
16
16
|
Created: Schema.optional<typeof Schema.String>;
|
|
17
17
|
Container: Schema.optional<typeof Schema.String>;
|
|
18
18
|
ContainerConfig: Schema.optionalWith<typeof ContainerConfig.ContainerConfig, {
|
|
19
19
|
nullable: true;
|
|
20
20
|
}>;
|
|
21
|
-
DockerVersion: typeof Schema.String
|
|
22
|
-
Author: typeof Schema.String
|
|
21
|
+
DockerVersion: Schema.optional<typeof Schema.String>;
|
|
22
|
+
Author: Schema.optional<typeof Schema.String>;
|
|
23
23
|
Config: Schema.NullOr<typeof V1DockerOCIImageConfig.V1DockerOCIImageConfig>;
|
|
24
24
|
Architecture: typeof Schema.String;
|
|
25
25
|
Variant: Schema.optional<typeof Schema.String>;
|
|
@@ -27,7 +27,7 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
27
27
|
OsVersion: Schema.optional<typeof Schema.String>;
|
|
28
28
|
Size: typeof EffectSchemas.Number.I64;
|
|
29
29
|
VirtualSize: Schema.optional<typeof EffectSchemas.Number.I64>;
|
|
30
|
-
GraphDriver: Schema.
|
|
30
|
+
GraphDriver: Schema.NullishOr<typeof StorageDriverData.StorageDriverData>;
|
|
31
31
|
RootFS: Schema.NullOr<typeof ImageRootFS.ImageRootFS>;
|
|
32
32
|
Metadata: Schema.NullOr<typeof ImageMetadata.ImageMetadata>;
|
|
33
33
|
Descriptor: Schema.optionalWith<typeof V1Descriptor.V1Descriptor, {
|
|
@@ -40,15 +40,15 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
40
40
|
Id: typeof Schema.String;
|
|
41
41
|
RepoTags: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
|
|
42
42
|
RepoDigests: Schema.NullOr<Schema.Array$<Schema.brand<Schema.filter<typeof Schema.String>, "Digest">>>;
|
|
43
|
-
Parent: typeof Schema.String
|
|
43
|
+
Parent: Schema.optional<typeof Schema.String>;
|
|
44
44
|
Comment: typeof Schema.String;
|
|
45
45
|
Created: Schema.optional<typeof Schema.String>;
|
|
46
46
|
Container: Schema.optional<typeof Schema.String>;
|
|
47
47
|
ContainerConfig: Schema.optionalWith<typeof ContainerConfig.ContainerConfig, {
|
|
48
48
|
nullable: true;
|
|
49
49
|
}>;
|
|
50
|
-
DockerVersion: typeof Schema.String
|
|
51
|
-
Author: typeof Schema.String
|
|
50
|
+
DockerVersion: Schema.optional<typeof Schema.String>;
|
|
51
|
+
Author: Schema.optional<typeof Schema.String>;
|
|
52
52
|
Config: Schema.NullOr<typeof V1DockerOCIImageConfig.V1DockerOCIImageConfig>;
|
|
53
53
|
Architecture: typeof Schema.String;
|
|
54
54
|
Variant: Schema.optional<typeof Schema.String>;
|
|
@@ -56,7 +56,7 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
56
56
|
OsVersion: Schema.optional<typeof Schema.String>;
|
|
57
57
|
Size: typeof EffectSchemas.Number.I64;
|
|
58
58
|
VirtualSize: Schema.optional<typeof EffectSchemas.Number.I64>;
|
|
59
|
-
GraphDriver: Schema.
|
|
59
|
+
GraphDriver: Schema.NullishOr<typeof StorageDriverData.StorageDriverData>;
|
|
60
60
|
RootFS: Schema.NullOr<typeof ImageRootFS.ImageRootFS>;
|
|
61
61
|
Metadata: Schema.NullOr<typeof ImageMetadata.ImageMetadata>;
|
|
62
62
|
Descriptor: Schema.optionalWith<typeof V1Descriptor.V1Descriptor, {
|
|
@@ -68,7 +68,7 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
68
68
|
}>, never, {
|
|
69
69
|
readonly Size: bigint & import("effect/Brand").Brand<"I64">;
|
|
70
70
|
} & {
|
|
71
|
-
readonly Parent
|
|
71
|
+
readonly Parent?: string | undefined;
|
|
72
72
|
} & {
|
|
73
73
|
readonly ContainerConfig?: ContainerConfig.ContainerConfig | undefined;
|
|
74
74
|
} & {
|
|
@@ -78,15 +78,11 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
78
78
|
} & {
|
|
79
79
|
readonly Created?: string | undefined;
|
|
80
80
|
} & {
|
|
81
|
-
readonly GraphDriver: StorageDriverData.StorageDriverData | null;
|
|
81
|
+
readonly GraphDriver: StorageDriverData.StorageDriverData | null | undefined;
|
|
82
82
|
} & {
|
|
83
83
|
readonly Comment: string;
|
|
84
84
|
} & {
|
|
85
85
|
readonly Descriptor?: V1Descriptor.V1Descriptor | undefined;
|
|
86
|
-
} & {
|
|
87
|
-
readonly DockerVersion: string;
|
|
88
|
-
} & {
|
|
89
|
-
readonly Author: string;
|
|
90
86
|
} & {
|
|
91
87
|
readonly Architecture: string;
|
|
92
88
|
} & {
|
|
@@ -97,6 +93,10 @@ declare const ImageInspectResponse_base: Schema.Class<ImageInspectResponse, {
|
|
|
97
93
|
readonly RepoDigests: readonly (string & import("effect/Brand").Brand<"Digest">)[] | null;
|
|
98
94
|
} & {
|
|
99
95
|
readonly Container?: string | undefined;
|
|
96
|
+
} & {
|
|
97
|
+
readonly DockerVersion?: string | undefined;
|
|
98
|
+
} & {
|
|
99
|
+
readonly Author?: string | undefined;
|
|
100
100
|
} & {
|
|
101
101
|
readonly Variant?: string | undefined;
|
|
102
102
|
} & {
|
|
@@ -12,15 +12,18 @@ export class ImageInspectResponse extends /*#__PURE__*/Schema.Class("ImageInspec
|
|
|
12
12
|
Id: Schema.String,
|
|
13
13
|
RepoTags: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String)),
|
|
14
14
|
RepoDigests: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(MobyIdentifiers.Digest)),
|
|
15
|
-
Parent: Schema.String,
|
|
15
|
+
Parent: /*#__PURE__*/Schema.optional(Schema.String),
|
|
16
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
16
17
|
Comment: Schema.String,
|
|
17
18
|
Created: /*#__PURE__*/Schema.optional(Schema.String),
|
|
18
19
|
Container: /*#__PURE__*/Schema.optional(Schema.String),
|
|
19
20
|
ContainerConfig: /*#__PURE__*/Schema.optionalWith(ContainerConfig.ContainerConfig, {
|
|
20
21
|
nullable: true
|
|
21
22
|
}),
|
|
22
|
-
DockerVersion: Schema.String,
|
|
23
|
-
|
|
23
|
+
DockerVersion: /*#__PURE__*/Schema.optional(Schema.String),
|
|
24
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
25
|
+
Author: /*#__PURE__*/Schema.optional(Schema.String),
|
|
26
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
24
27
|
Config: /*#__PURE__*/Schema.NullOr(V1DockerOCIImageConfig.V1DockerOCIImageConfig),
|
|
25
28
|
Architecture: Schema.String,
|
|
26
29
|
Variant: /*#__PURE__*/Schema.optional(Schema.String),
|
|
@@ -28,7 +31,8 @@ export class ImageInspectResponse extends /*#__PURE__*/Schema.Class("ImageInspec
|
|
|
28
31
|
OsVersion: /*#__PURE__*/Schema.optional(Schema.String),
|
|
29
32
|
Size: EffectSchemas.Number.I64,
|
|
30
33
|
VirtualSize: /*#__PURE__*/Schema.optional(EffectSchemas.Number.I64),
|
|
31
|
-
GraphDriver: /*#__PURE__*/Schema.
|
|
34
|
+
GraphDriver: /*#__PURE__*/Schema.NullishOr(StorageDriverData.StorageDriverData),
|
|
35
|
+
// optional for docker.io/library/docker:26-dind-rootless
|
|
32
36
|
RootFS: /*#__PURE__*/Schema.NullOr(ImageRootFS.ImageRootFS),
|
|
33
37
|
Metadata: /*#__PURE__*/Schema.NullOr(ImageMetadata.ImageMetadata),
|
|
34
38
|
Descriptor: /*#__PURE__*/Schema.optionalWith(V1Descriptor.V1Descriptor, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageInspectResponse.generated.js","names":["EffectSchemas","Schema","MobyIdentifiers","ContainerConfig","ImageManifestSummary","ImageMetadata","ImageRootFS","StorageDriverData","V1Descriptor","V1DockerOCIImageConfig","ImageInspectResponse","Class","Id","String","RepoTags","NullOr","Array","RepoDigests","Digest","Parent","
|
|
1
|
+
{"version":3,"file":"ImageInspectResponse.generated.js","names":["EffectSchemas","Schema","MobyIdentifiers","ContainerConfig","ImageManifestSummary","ImageMetadata","ImageRootFS","StorageDriverData","V1Descriptor","V1DockerOCIImageConfig","ImageInspectResponse","Class","Id","String","RepoTags","NullOr","Array","RepoDigests","Digest","Parent","optional","Comment","Created","Container","optionalWith","nullable","DockerVersion","Author","Config","Architecture","Variant","Os","OsVersion","Size","Number","I64","VirtualSize","GraphDriver","NullishOr","RootFS","Metadata","Descriptor","Manifests","identifier","title","documentation"],"sources":["../../../src/internal/generated/ImageInspectResponse.generated.ts"],"sourcesContent":[null],"mappings":"AAAA,OAAO,KAAKA,aAAa,MAAM,gBAAgB;AAC/C,OAAO,KAAKC,MAAM,MAAM,eAAe;AACvC,OAAO,KAAKC,eAAe,MAAM,kBAAkB;AACnD,OAAO,KAAKC,eAAe,MAAM,gCAAgC;AACjE,OAAO,KAAKC,oBAAoB,MAAM,qCAAqC;AAC3E,OAAO,KAAKC,aAAa,MAAM,8BAA8B;AAC7D,OAAO,KAAKC,WAAW,MAAM,4BAA4B;AACzD,OAAO,KAAKC,iBAAiB,MAAM,kCAAkC;AACrE,OAAO,KAAKC,YAAY,MAAM,6BAA6B;AAC3D,OAAO,KAAKC,sBAAsB,MAAM,uCAAuC;AAE/E,OAAM,MAAOC,oBAAqB,sBAAQT,MAAM,CAACU,KAAK,CAAuB,sBAAsB,CAAC,CAChG;EACIC,EAAE,EAAEX,MAAM,CAACY,MAAM;EACjBC,QAAQ,eAAEb,MAAM,CAACc,MAAM,cAACd,MAAM,CAACe,KAAK,CAACf,MAAM,CAACY,MAAM,CAAC,CAAC;EACpDI,WAAW,eAAEhB,MAAM,CAACc,MAAM,cAACd,MAAM,CAACe,KAAK,CAACd,eAAe,CAACgB,MAAM,CAAC,CAAC;EAChEC,MAAM,eAAElB,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EAAE;EACxCQ,OAAO,EAAEpB,MAAM,CAACY,MAAM;EACtBS,OAAO,eAAErB,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EACvCU,SAAS,eAAEtB,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EACzCV,eAAe,eAAEF,MAAM,CAACuB,YAAY,CAACrB,eAAe,CAACA,eAAe,EAAE;IAAEsB,QAAQ,EAAE;EAAI,CAAE,CAAC;EACzFC,aAAa,eAAEzB,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EAAE;EAC/Cc,MAAM,eAAE1B,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EAAE;EACxCe,MAAM,eAAE3B,MAAM,CAACc,MAAM,CAACN,sBAAsB,CAACA,sBAAsB,CAAC;EACpEoB,YAAY,EAAE5B,MAAM,CAACY,MAAM;EAC3BiB,OAAO,eAAE7B,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EACvCkB,EAAE,EAAE9B,MAAM,CAACY,MAAM;EACjBmB,SAAS,eAAE/B,MAAM,CAACmB,QAAQ,CAACnB,MAAM,CAACY,MAAM,CAAC;EACzCoB,IAAI,EAAEjC,aAAa,CAACkC,MAAM,CAACC,GAAG;EAC9BC,WAAW,eAAEnC,MAAM,CAACmB,QAAQ,CAACpB,aAAa,CAACkC,MAAM,CAACC,GAAG,CAAC;EACtDE,WAAW,eAAEpC,MAAM,CAACqC,SAAS,CAAC/B,iBAAiB,CAACA,iBAAiB,CAAC;EAAE;EACpEgC,MAAM,eAAEtC,MAAM,CAACc,MAAM,CAACT,WAAW,CAACA,WAAW,CAAC;EAC9CkC,QAAQ,eAAEvC,MAAM,CAACc,MAAM,CAACV,aAAa,CAACA,aAAa,CAAC;EACpDoC,UAAU,eAAExC,MAAM,CAACuB,YAAY,CAAChB,YAAY,CAACA,YAAY,EAAE;IAAEiB,QAAQ,EAAE;EAAI,CAAE,CAAC;EAC9EiB,SAAS,eAAEzC,MAAM,CAACuB,YAAY,cAACvB,MAAM,CAACe,KAAK,cAACf,MAAM,CAACc,MAAM,CAACX,oBAAoB,CAACA,oBAAoB,CAAC,CAAC,EAAE;IACnGqB,QAAQ,EAAE;GACb;CACJ,EACD;EACIkB,UAAU,EAAE,sBAAsB;EAClCC,KAAK,EAAE,uBAAuB;EAC9BC,aAAa,EACT;CACP,CACJ","ignoreList":[]}
|
|
@@ -2,67 +2,99 @@ import * as Schema from "effect/Schema";
|
|
|
2
2
|
import * as NetworkConfigReference from "./NetworkConfigReference.generated.js";
|
|
3
3
|
import * as NetworkIPAM from "./NetworkIPAM.generated.js";
|
|
4
4
|
declare const NetworkCreateOptions_base: Schema.Class<NetworkCreateOptions, {
|
|
5
|
-
Driver:
|
|
6
|
-
Scope: typeof Schema.String
|
|
5
|
+
Driver: Schema.PropertySignature<":", string, never, ":", string, true, never>;
|
|
6
|
+
Scope: Schema.optionalWith<typeof Schema.String, {
|
|
7
|
+
nullable: true;
|
|
8
|
+
}>;
|
|
7
9
|
EnableIPv4: Schema.optionalWith<typeof Schema.Boolean, {
|
|
8
10
|
nullable: true;
|
|
9
11
|
}>;
|
|
10
12
|
EnableIPv6: Schema.optionalWith<typeof Schema.Boolean, {
|
|
11
13
|
nullable: true;
|
|
12
14
|
}>;
|
|
13
|
-
IPAM: Schema.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
IPAM: Schema.optionalWith<typeof NetworkIPAM.NetworkIPAM, {
|
|
16
|
+
nullable: true;
|
|
17
|
+
}>;
|
|
18
|
+
Internal: Schema.optionalWith<typeof Schema.Boolean, {
|
|
19
|
+
nullable: true;
|
|
20
|
+
}>;
|
|
21
|
+
Attachable: Schema.optionalWith<typeof Schema.Boolean, {
|
|
22
|
+
nullable: true;
|
|
23
|
+
}>;
|
|
24
|
+
Ingress: Schema.optionalWith<typeof Schema.Boolean, {
|
|
25
|
+
nullable: true;
|
|
26
|
+
}>;
|
|
27
|
+
ConfigOnly: Schema.PropertySignature<":", boolean, never, ":", boolean, true, never>;
|
|
28
|
+
ConfigFrom: Schema.optionalWith<typeof NetworkConfigReference.NetworkConfigReference, {
|
|
29
|
+
nullable: true;
|
|
30
|
+
}>;
|
|
31
|
+
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
32
|
+
nullable: true;
|
|
33
|
+
}>;
|
|
34
|
+
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
35
|
+
nullable: true;
|
|
36
|
+
}>;
|
|
21
37
|
}, Schema.Struct.Encoded<{
|
|
22
|
-
Driver:
|
|
23
|
-
Scope: typeof Schema.String
|
|
38
|
+
Driver: Schema.PropertySignature<":", string, never, ":", string, true, never>;
|
|
39
|
+
Scope: Schema.optionalWith<typeof Schema.String, {
|
|
40
|
+
nullable: true;
|
|
41
|
+
}>;
|
|
24
42
|
EnableIPv4: Schema.optionalWith<typeof Schema.Boolean, {
|
|
25
43
|
nullable: true;
|
|
26
44
|
}>;
|
|
27
45
|
EnableIPv6: Schema.optionalWith<typeof Schema.Boolean, {
|
|
28
46
|
nullable: true;
|
|
29
47
|
}>;
|
|
30
|
-
IPAM: Schema.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
48
|
+
IPAM: Schema.optionalWith<typeof NetworkIPAM.NetworkIPAM, {
|
|
49
|
+
nullable: true;
|
|
50
|
+
}>;
|
|
51
|
+
Internal: Schema.optionalWith<typeof Schema.Boolean, {
|
|
52
|
+
nullable: true;
|
|
53
|
+
}>;
|
|
54
|
+
Attachable: Schema.optionalWith<typeof Schema.Boolean, {
|
|
55
|
+
nullable: true;
|
|
56
|
+
}>;
|
|
57
|
+
Ingress: Schema.optionalWith<typeof Schema.Boolean, {
|
|
58
|
+
nullable: true;
|
|
59
|
+
}>;
|
|
60
|
+
ConfigOnly: Schema.PropertySignature<":", boolean, never, ":", boolean, true, never>;
|
|
61
|
+
ConfigFrom: Schema.optionalWith<typeof NetworkConfigReference.NetworkConfigReference, {
|
|
62
|
+
nullable: true;
|
|
63
|
+
}>;
|
|
64
|
+
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
65
|
+
nullable: true;
|
|
66
|
+
}>;
|
|
67
|
+
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
68
|
+
nullable: true;
|
|
69
|
+
}>;
|
|
38
70
|
}>, never, {
|
|
39
|
-
readonly Labels
|
|
71
|
+
readonly Labels?: {
|
|
40
72
|
readonly [x: string]: string;
|
|
41
|
-
} |
|
|
73
|
+
} | undefined;
|
|
42
74
|
} & {
|
|
43
|
-
readonly Driver
|
|
75
|
+
readonly Driver?: string;
|
|
44
76
|
} & {
|
|
45
|
-
readonly Options
|
|
77
|
+
readonly Options?: {
|
|
46
78
|
readonly [x: string]: string;
|
|
47
|
-
} |
|
|
79
|
+
} | undefined;
|
|
48
80
|
} & {
|
|
49
|
-
readonly Scope
|
|
81
|
+
readonly Scope?: string | undefined;
|
|
50
82
|
} & {
|
|
51
|
-
readonly
|
|
83
|
+
readonly EnableIPv4?: boolean | undefined;
|
|
52
84
|
} & {
|
|
53
|
-
readonly
|
|
85
|
+
readonly EnableIPv6?: boolean | undefined;
|
|
54
86
|
} & {
|
|
55
|
-
readonly
|
|
87
|
+
readonly IPAM?: NetworkIPAM.NetworkIPAM | undefined;
|
|
56
88
|
} & {
|
|
57
|
-
readonly
|
|
89
|
+
readonly Internal?: boolean | undefined;
|
|
58
90
|
} & {
|
|
59
|
-
readonly
|
|
91
|
+
readonly Attachable?: boolean | undefined;
|
|
60
92
|
} & {
|
|
61
|
-
readonly
|
|
93
|
+
readonly Ingress?: boolean | undefined;
|
|
62
94
|
} & {
|
|
63
|
-
readonly
|
|
95
|
+
readonly ConfigOnly?: boolean;
|
|
64
96
|
} & {
|
|
65
|
-
readonly ConfigFrom
|
|
97
|
+
readonly ConfigFrom?: NetworkConfigReference.NetworkConfigReference | undefined;
|
|
66
98
|
}, {}, {}>;
|
|
67
99
|
export declare class NetworkCreateOptions extends NetworkCreateOptions_base {
|
|
68
100
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkCreateOptions.generated.d.ts","sourceRoot":"","sources":["../../../src/internal/generated/NetworkCreateOptions.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,sBAAsB,MAAM,uCAAuC,CAAC;AAChF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC
|
|
1
|
+
{"version":3,"file":"NetworkCreateOptions.generated.d.ts","sourceRoot":"","sources":["../../../src/internal/generated/NetworkCreateOptions.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,sBAAsB,MAAM,uCAAuC,CAAC;AAChF,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1D,qBAAa,oBAAqB,SAAQ,yBAqBzC;CAAG"}
|
|
@@ -2,28 +2,44 @@ import * as Schema from "effect/Schema";
|
|
|
2
2
|
import * as NetworkConfigReference from "./NetworkConfigReference.generated.js";
|
|
3
3
|
import * as NetworkIPAM from "./NetworkIPAM.generated.js";
|
|
4
4
|
export class NetworkCreateOptions extends /*#__PURE__*/Schema.Class("NetworkCreateOptions")({
|
|
5
|
-
Driver: Schema.String,
|
|
6
|
-
Scope: Schema.String,
|
|
5
|
+
Driver: /*#__PURE__*/Schema.String.pipe(Schema.propertySignature).pipe(/*#__PURE__*/Schema.withConstructorDefault(() => "bridge")),
|
|
6
|
+
Scope: /*#__PURE__*/Schema.optionalWith(Schema.String, {
|
|
7
|
+
nullable: true
|
|
8
|
+
}),
|
|
7
9
|
EnableIPv4: /*#__PURE__*/Schema.optionalWith(Schema.Boolean, {
|
|
8
10
|
nullable: true
|
|
9
11
|
}),
|
|
10
12
|
EnableIPv6: /*#__PURE__*/Schema.optionalWith(Schema.Boolean, {
|
|
11
13
|
nullable: true
|
|
12
14
|
}),
|
|
13
|
-
IPAM: /*#__PURE__*/Schema.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
IPAM: /*#__PURE__*/Schema.optionalWith(NetworkIPAM.NetworkIPAM, {
|
|
16
|
+
nullable: true
|
|
17
|
+
}),
|
|
18
|
+
Internal: /*#__PURE__*/Schema.optionalWith(Schema.Boolean, {
|
|
19
|
+
nullable: true
|
|
20
|
+
}),
|
|
21
|
+
Attachable: /*#__PURE__*/Schema.optionalWith(Schema.Boolean, {
|
|
22
|
+
nullable: true
|
|
23
|
+
}),
|
|
24
|
+
Ingress: /*#__PURE__*/Schema.optionalWith(Schema.Boolean, {
|
|
25
|
+
nullable: true
|
|
26
|
+
}),
|
|
27
|
+
ConfigOnly: /*#__PURE__*/Schema.Boolean.pipe(Schema.propertySignature).pipe(/*#__PURE__*/Schema.withConstructorDefault(() => false)),
|
|
28
|
+
ConfigFrom: /*#__PURE__*/Schema.optionalWith(NetworkConfigReference.NetworkConfigReference, {
|
|
29
|
+
nullable: true
|
|
30
|
+
}),
|
|
31
|
+
Options: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Record({
|
|
20
32
|
key: Schema.String,
|
|
21
33
|
value: Schema.String
|
|
22
|
-
})
|
|
23
|
-
|
|
34
|
+
}), {
|
|
35
|
+
nullable: true
|
|
36
|
+
}),
|
|
37
|
+
Labels: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Record({
|
|
24
38
|
key: Schema.String,
|
|
25
39
|
value: Schema.String
|
|
26
|
-
})
|
|
40
|
+
}), {
|
|
41
|
+
nullable: true
|
|
42
|
+
})
|
|
27
43
|
}, {
|
|
28
44
|
identifier: "NetworkCreateOptions",
|
|
29
45
|
title: "network.CreateOptions",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkCreateOptions.generated.js","names":["Schema","NetworkConfigReference","NetworkIPAM","NetworkCreateOptions","Class","Driver","String","
|
|
1
|
+
{"version":3,"file":"NetworkCreateOptions.generated.js","names":["Schema","NetworkConfigReference","NetworkIPAM","NetworkCreateOptions","Class","Driver","String","pipe","propertySignature","withConstructorDefault","Scope","optionalWith","nullable","EnableIPv4","Boolean","EnableIPv6","IPAM","Internal","Attachable","Ingress","ConfigOnly","ConfigFrom","Options","Record","key","value","Labels","identifier","title","documentation"],"sources":["../../../src/internal/generated/NetworkCreateOptions.generated.ts"],"sourcesContent":[null],"mappings":"AAAA,OAAO,KAAKA,MAAM,MAAM,eAAe;AACvC,OAAO,KAAKC,sBAAsB,MAAM,uCAAuC;AAC/E,OAAO,KAAKC,WAAW,MAAM,4BAA4B;AAEzD,OAAM,MAAOC,oBAAqB,sBAAQH,MAAM,CAACI,KAAK,CAAuB,sBAAsB,CAAC,CAChG;EACIC,MAAM,eAAEL,MAAM,CAACM,MAAM,CAACC,IAAI,CAACP,MAAM,CAACQ,iBAAiB,CAAC,CAACD,IAAI,cAACP,MAAM,CAACS,sBAAsB,CAAC,MAAM,QAAQ,CAAC,CAAC;EACxGC,KAAK,eAAEV,MAAM,CAACW,YAAY,CAACX,MAAM,CAACM,MAAM,EAAE;IAAEM,QAAQ,EAAE;EAAI,CAAE,CAAC;EAC7DC,UAAU,eAAEb,MAAM,CAACW,YAAY,CAACX,MAAM,CAACc,OAAO,EAAE;IAAEF,QAAQ,EAAE;EAAI,CAAE,CAAC;EACnEG,UAAU,eAAEf,MAAM,CAACW,YAAY,CAACX,MAAM,CAACc,OAAO,EAAE;IAAEF,QAAQ,EAAE;EAAI,CAAE,CAAC;EACnEI,IAAI,eAAEhB,MAAM,CAACW,YAAY,CAACT,WAAW,CAACA,WAAW,EAAE;IAAEU,QAAQ,EAAE;EAAI,CAAE,CAAC;EACtEK,QAAQ,eAAEjB,MAAM,CAACW,YAAY,CAACX,MAAM,CAACc,OAAO,EAAE;IAAEF,QAAQ,EAAE;EAAI,CAAE,CAAC;EACjEM,UAAU,eAAElB,MAAM,CAACW,YAAY,CAACX,MAAM,CAACc,OAAO,EAAE;IAAEF,QAAQ,EAAE;EAAI,CAAE,CAAC;EACnEO,OAAO,eAAEnB,MAAM,CAACW,YAAY,CAACX,MAAM,CAACc,OAAO,EAAE;IAAEF,QAAQ,EAAE;EAAI,CAAE,CAAC;EAChEQ,UAAU,eAAEpB,MAAM,CAACc,OAAO,CAACP,IAAI,CAACP,MAAM,CAACQ,iBAAiB,CAAC,CAACD,IAAI,cAACP,MAAM,CAACS,sBAAsB,CAAC,MAAM,KAAK,CAAC,CAAC;EAC1GY,UAAU,eAAErB,MAAM,CAACW,YAAY,CAACV,sBAAsB,CAACA,sBAAsB,EAAE;IAAEW,QAAQ,EAAE;EAAI,CAAE,CAAC;EAClGU,OAAO,eAAEtB,MAAM,CAACW,YAAY,cAACX,MAAM,CAACuB,MAAM,CAAC;IAAEC,GAAG,EAAExB,MAAM,CAACM,MAAM;IAAEmB,KAAK,EAAEzB,MAAM,CAACM;EAAM,CAAE,CAAC,EAAE;IAAEM,QAAQ,EAAE;EAAI,CAAE,CAAC;EAC7Gc,MAAM,eAAE1B,MAAM,CAACW,YAAY,cAACX,MAAM,CAACuB,MAAM,CAAC;IAAEC,GAAG,EAAExB,MAAM,CAACM,MAAM;IAAEmB,KAAK,EAAEzB,MAAM,CAACM;EAAM,CAAE,CAAC,EAAE;IAAEM,QAAQ,EAAE;EAAI,CAAE;CAC9G,EACD;EACIe,UAAU,EAAE,sBAAsB;EAClCC,KAAK,EAAE,uBAAuB;EAC9BC,aAAa,EACT;CACP,CACJ","ignoreList":[]}
|
|
@@ -4,73 +4,105 @@ declare const NetworkCreateRequest_base: Schema.Class<NetworkCreateRequest, {
|
|
|
4
4
|
CheckDuplicate: Schema.optionalWith<typeof Schema.Boolean, {
|
|
5
5
|
nullable: true;
|
|
6
6
|
}>;
|
|
7
|
-
Driver:
|
|
8
|
-
Scope: typeof Schema.String
|
|
7
|
+
Driver: Schema.PropertySignature<":", string, never, ":", string, true, never>;
|
|
8
|
+
Scope: Schema.optionalWith<typeof Schema.String, {
|
|
9
|
+
nullable: true;
|
|
10
|
+
}>;
|
|
9
11
|
EnableIPv4: Schema.optionalWith<typeof Schema.Boolean, {
|
|
10
12
|
nullable: true;
|
|
11
13
|
}>;
|
|
12
14
|
EnableIPv6: Schema.optionalWith<typeof Schema.Boolean, {
|
|
13
15
|
nullable: true;
|
|
14
16
|
}>;
|
|
15
|
-
IPAM: Schema.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
IPAM: Schema.optionalWith<typeof import("./NetworkIPAM.generated.ts").NetworkIPAM, {
|
|
18
|
+
nullable: true;
|
|
19
|
+
}>;
|
|
20
|
+
Internal: Schema.optionalWith<typeof Schema.Boolean, {
|
|
21
|
+
nullable: true;
|
|
22
|
+
}>;
|
|
23
|
+
Attachable: Schema.optionalWith<typeof Schema.Boolean, {
|
|
24
|
+
nullable: true;
|
|
25
|
+
}>;
|
|
26
|
+
Ingress: Schema.optionalWith<typeof Schema.Boolean, {
|
|
27
|
+
nullable: true;
|
|
28
|
+
}>;
|
|
29
|
+
ConfigOnly: Schema.PropertySignature<":", boolean, never, ":", boolean, true, never>;
|
|
30
|
+
ConfigFrom: Schema.optionalWith<typeof import("./NetworkConfigReference.generated.ts").NetworkConfigReference, {
|
|
31
|
+
nullable: true;
|
|
32
|
+
}>;
|
|
33
|
+
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
34
|
+
nullable: true;
|
|
35
|
+
}>;
|
|
36
|
+
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
37
|
+
nullable: true;
|
|
38
|
+
}>;
|
|
23
39
|
}, Schema.Struct.Encoded<{
|
|
24
40
|
Name: typeof Schema.String;
|
|
25
41
|
CheckDuplicate: Schema.optionalWith<typeof Schema.Boolean, {
|
|
26
42
|
nullable: true;
|
|
27
43
|
}>;
|
|
28
|
-
Driver:
|
|
29
|
-
Scope: typeof Schema.String
|
|
44
|
+
Driver: Schema.PropertySignature<":", string, never, ":", string, true, never>;
|
|
45
|
+
Scope: Schema.optionalWith<typeof Schema.String, {
|
|
46
|
+
nullable: true;
|
|
47
|
+
}>;
|
|
30
48
|
EnableIPv4: Schema.optionalWith<typeof Schema.Boolean, {
|
|
31
49
|
nullable: true;
|
|
32
50
|
}>;
|
|
33
51
|
EnableIPv6: Schema.optionalWith<typeof Schema.Boolean, {
|
|
34
52
|
nullable: true;
|
|
35
53
|
}>;
|
|
36
|
-
IPAM: Schema.
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
54
|
+
IPAM: Schema.optionalWith<typeof import("./NetworkIPAM.generated.ts").NetworkIPAM, {
|
|
55
|
+
nullable: true;
|
|
56
|
+
}>;
|
|
57
|
+
Internal: Schema.optionalWith<typeof Schema.Boolean, {
|
|
58
|
+
nullable: true;
|
|
59
|
+
}>;
|
|
60
|
+
Attachable: Schema.optionalWith<typeof Schema.Boolean, {
|
|
61
|
+
nullable: true;
|
|
62
|
+
}>;
|
|
63
|
+
Ingress: Schema.optionalWith<typeof Schema.Boolean, {
|
|
64
|
+
nullable: true;
|
|
65
|
+
}>;
|
|
66
|
+
ConfigOnly: Schema.PropertySignature<":", boolean, never, ":", boolean, true, never>;
|
|
67
|
+
ConfigFrom: Schema.optionalWith<typeof import("./NetworkConfigReference.generated.ts").NetworkConfigReference, {
|
|
68
|
+
nullable: true;
|
|
69
|
+
}>;
|
|
70
|
+
Options: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
71
|
+
nullable: true;
|
|
72
|
+
}>;
|
|
73
|
+
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
|
|
74
|
+
nullable: true;
|
|
75
|
+
}>;
|
|
44
76
|
}>, never, {
|
|
45
|
-
readonly Labels
|
|
77
|
+
readonly Labels?: {
|
|
46
78
|
readonly [x: string]: string;
|
|
47
|
-
} |
|
|
79
|
+
} | undefined;
|
|
48
80
|
} & {
|
|
49
|
-
readonly Driver
|
|
81
|
+
readonly Driver?: string;
|
|
50
82
|
} & {
|
|
51
|
-
readonly Options
|
|
83
|
+
readonly Options?: {
|
|
52
84
|
readonly [x: string]: string;
|
|
53
|
-
} |
|
|
85
|
+
} | undefined;
|
|
54
86
|
} & {
|
|
55
87
|
readonly Name: string;
|
|
56
88
|
} & {
|
|
57
|
-
readonly Scope
|
|
89
|
+
readonly Scope?: string | undefined;
|
|
58
90
|
} & {
|
|
59
|
-
readonly
|
|
91
|
+
readonly EnableIPv4?: boolean | undefined;
|
|
60
92
|
} & {
|
|
61
|
-
readonly
|
|
93
|
+
readonly EnableIPv6?: boolean | undefined;
|
|
62
94
|
} & {
|
|
63
|
-
readonly
|
|
95
|
+
readonly IPAM?: import("./NetworkIPAM.generated.ts").NetworkIPAM | undefined;
|
|
64
96
|
} & {
|
|
65
|
-
readonly
|
|
97
|
+
readonly Internal?: boolean | undefined;
|
|
66
98
|
} & {
|
|
67
|
-
readonly
|
|
99
|
+
readonly Attachable?: boolean | undefined;
|
|
68
100
|
} & {
|
|
69
|
-
readonly
|
|
101
|
+
readonly Ingress?: boolean | undefined;
|
|
70
102
|
} & {
|
|
71
|
-
readonly
|
|
103
|
+
readonly ConfigOnly?: boolean;
|
|
72
104
|
} & {
|
|
73
|
-
readonly ConfigFrom
|
|
105
|
+
readonly ConfigFrom?: import("./NetworkConfigReference.generated.ts").NetworkConfigReference | undefined;
|
|
74
106
|
} & {
|
|
75
107
|
readonly CheckDuplicate?: boolean | undefined;
|
|
76
108
|
}, {}, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkCreateRequest.generated.d.ts","sourceRoot":"","sources":["../../../src/internal/generated/NetworkCreateRequest.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"NetworkCreateRequest.generated.d.ts","sourceRoot":"","sources":["../../../src/internal/generated/NetworkCreateRequest.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGxC,qBAAa,oBAAqB,SAAQ,yBAYzC;CAAG"}
|
|
@@ -10,7 +10,7 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
10
10
|
Created: Schema.NullOr<typeof Schema.DateFromString>;
|
|
11
11
|
Scope: typeof Schema.String;
|
|
12
12
|
Driver: typeof Schema.String;
|
|
13
|
-
EnableIPv4: typeof Schema.Boolean
|
|
13
|
+
EnableIPv4: Schema.optional<typeof Schema.Boolean>;
|
|
14
14
|
EnableIPv6: typeof Schema.Boolean;
|
|
15
15
|
IPAM: Schema.NullOr<typeof NetworkIPAM.NetworkIPAM>;
|
|
16
16
|
Internal: typeof Schema.Boolean;
|
|
@@ -18,7 +18,7 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
18
18
|
Ingress: typeof Schema.Boolean;
|
|
19
19
|
ConfigFrom: Schema.NullOr<typeof NetworkConfigReference.NetworkConfigReference>;
|
|
20
20
|
ConfigOnly: typeof Schema.Boolean;
|
|
21
|
-
Containers: Schema.
|
|
21
|
+
Containers: Schema.NullishOr<Schema.Record$<typeof Schema.String, Schema.NullOr<typeof NetworkEndpointResource.NetworkEndpointResource>>>;
|
|
22
22
|
Options: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
23
23
|
Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
24
24
|
Peers: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof NetworkPeerInfo.NetworkPeerInfo>>, {
|
|
@@ -33,7 +33,7 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
33
33
|
Created: Schema.NullOr<typeof Schema.DateFromString>;
|
|
34
34
|
Scope: typeof Schema.String;
|
|
35
35
|
Driver: typeof Schema.String;
|
|
36
|
-
EnableIPv4: typeof Schema.Boolean
|
|
36
|
+
EnableIPv4: Schema.optional<typeof Schema.Boolean>;
|
|
37
37
|
EnableIPv6: typeof Schema.Boolean;
|
|
38
38
|
IPAM: Schema.NullOr<typeof NetworkIPAM.NetworkIPAM>;
|
|
39
39
|
Internal: typeof Schema.Boolean;
|
|
@@ -41,7 +41,7 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
41
41
|
Ingress: typeof Schema.Boolean;
|
|
42
42
|
ConfigFrom: Schema.NullOr<typeof NetworkConfigReference.NetworkConfigReference>;
|
|
43
43
|
ConfigOnly: typeof Schema.Boolean;
|
|
44
|
-
Containers: Schema.
|
|
44
|
+
Containers: Schema.NullishOr<Schema.Record$<typeof Schema.String, Schema.NullOr<typeof NetworkEndpointResource.NetworkEndpointResource>>>;
|
|
45
45
|
Options: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
46
46
|
Labels: Schema.NullOr<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
47
47
|
Peers: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof NetworkPeerInfo.NetworkPeerInfo>>, {
|
|
@@ -69,9 +69,15 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
69
69
|
} & {
|
|
70
70
|
readonly Containers: {
|
|
71
71
|
readonly [x: string]: NetworkEndpointResource.NetworkEndpointResource | null;
|
|
72
|
-
} | null;
|
|
72
|
+
} | null | undefined;
|
|
73
73
|
} & {
|
|
74
74
|
readonly Scope: string;
|
|
75
|
+
} & {
|
|
76
|
+
readonly EnableIPv4?: boolean | undefined;
|
|
77
|
+
} & {
|
|
78
|
+
readonly EnableIPv6: boolean;
|
|
79
|
+
} & {
|
|
80
|
+
readonly IPAM: NetworkIPAM.NetworkIPAM | null;
|
|
75
81
|
} & {
|
|
76
82
|
readonly Internal: boolean;
|
|
77
83
|
} & {
|
|
@@ -80,12 +86,6 @@ declare const NetworkInspect_base: Schema.Class<NetworkInspect, {
|
|
|
80
86
|
readonly Ingress: boolean;
|
|
81
87
|
} & {
|
|
82
88
|
readonly ConfigOnly: boolean;
|
|
83
|
-
} & {
|
|
84
|
-
readonly EnableIPv4: boolean;
|
|
85
|
-
} & {
|
|
86
|
-
readonly EnableIPv6: boolean;
|
|
87
|
-
} & {
|
|
88
|
-
readonly IPAM: NetworkIPAM.NetworkIPAM | null;
|
|
89
89
|
} & {
|
|
90
90
|
readonly ConfigFrom: NetworkConfigReference.NetworkConfigReference | null;
|
|
91
91
|
} & {
|
|
@@ -10,7 +10,8 @@ export class NetworkInspect extends /*#__PURE__*/Schema.Class("NetworkInspect")(
|
|
|
10
10
|
Created: /*#__PURE__*/Schema.NullOr(Schema.DateFromString),
|
|
11
11
|
Scope: Schema.String,
|
|
12
12
|
Driver: Schema.String,
|
|
13
|
-
EnableIPv4: Schema.Boolean,
|
|
13
|
+
EnableIPv4: /*#__PURE__*/Schema.optional(Schema.Boolean),
|
|
14
|
+
// optional for docker.io/library/docker:27-dind-rootless
|
|
14
15
|
EnableIPv6: Schema.Boolean,
|
|
15
16
|
IPAM: /*#__PURE__*/Schema.NullOr(NetworkIPAM.NetworkIPAM),
|
|
16
17
|
Internal: Schema.Boolean,
|
|
@@ -18,10 +19,11 @@ export class NetworkInspect extends /*#__PURE__*/Schema.Class("NetworkInspect")(
|
|
|
18
19
|
Ingress: Schema.Boolean,
|
|
19
20
|
ConfigFrom: /*#__PURE__*/Schema.NullOr(NetworkConfigReference.NetworkConfigReference),
|
|
20
21
|
ConfigOnly: Schema.Boolean,
|
|
21
|
-
Containers: /*#__PURE__*/Schema.
|
|
22
|
+
Containers: /*#__PURE__*/Schema.NullishOr(/*#__PURE__*/Schema.Record({
|
|
22
23
|
key: Schema.String,
|
|
23
24
|
value: /*#__PURE__*/Schema.NullOr(NetworkEndpointResource.NetworkEndpointResource)
|
|
24
|
-
})
|
|
25
|
+
}) // optional for docker.io/library/docker:26-dind-rootless
|
|
26
|
+
),
|
|
25
27
|
Options: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Record({
|
|
26
28
|
key: Schema.String,
|
|
27
29
|
value: Schema.String
|