@codiac.io/codiac-cli 1.3.102 → 1.3.104
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/README.md +1 -1
- package/dist/apis/codiac-api/gen/contracts/types.gen.d.ts +3 -2
- package/dist/apis/codiac-api/gen/contracts/types.gen.js +1 -0
- package/dist/apis/codiac-api/gen/contracts/types.gen.js.map +1 -1
- package/dist/apis/codiac-api-nats/gen/contracts/types.gen.d.ts +3 -2
- package/dist/apis/codiac-api-nats/gen/contracts/types.gen.js +1 -0
- package/dist/apis/codiac-api-nats/gen/contracts/types.gen.js.map +1 -1
- package/dist/apis/codiac-api-nats/gen/contracts.ng.d.ts +2 -1
- package/dist/apis/codiac-api-nats/gen/contracts.ng.js +1 -0
- package/dist/apis/codiac-api-nats/gen/contracts.ng.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts/types.gen.d.ts +5 -3
- package/dist/apis/codiac-relay/gen/contracts/types.gen.js +2 -0
- package/dist/apis/codiac-relay/gen/contracts/types.gen.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts-legacy.js +233 -232
- package/dist/apis/codiac-relay/gen/contracts-legacy.js.map +1 -1
- package/dist/commands/config/add.js +9 -8
- package/dist/commands/config/add.js.map +1 -1
- package/dist/relay/relay-container.js +1 -1
- package/dist/uilogic/builtin-config-schemas.js +84 -3
- package/dist/uilogic/builtin-config-schemas.js.map +1 -1
- package/dist/uilogic/config-ui-utils.js +1 -0
- package/dist/uilogic/config-ui-utils.js.map +1 -1
- package/oclif.manifest.json +6 -1
- package/package.json +2 -2
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
// first: object;
|
|
24
24
|
// /** Iterates over elements of collection invoking iteratee for each element. The iteratee is invoked with three arguments:
|
|
25
25
|
// * (value, index|key, collection). Iteratee functions may exit iteration early by explicitly returning false.
|
|
26
|
-
// *
|
|
26
|
+
// *
|
|
27
27
|
// * Note: As with other "Collections" methods, objects with a "length" property are iterated like arrays. To
|
|
28
28
|
// * avoid this behavior _.forIn or _.forOwn may be used for object iteration. */
|
|
29
29
|
// each: object;
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
// eachRight: object;
|
|
32
32
|
// /** Creates a function that invokes func with the this binding of thisArg and prepends any additional _.bind
|
|
33
33
|
// * arguments to those provided to the bound function.
|
|
34
|
-
// *
|
|
34
|
+
// *
|
|
35
35
|
// * The _.bind.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder for
|
|
36
36
|
// * partially applied arguments.
|
|
37
|
-
// *
|
|
37
|
+
// *
|
|
38
38
|
// * Note: Unlike native Function#bind this method does not set the "length" property of bound functions. */
|
|
39
39
|
// bind: _.FunctionBind;
|
|
40
40
|
// /** Creates a function that invokes the method at object[key] and prepends any additional _.bindKey arguments
|
|
41
41
|
// * to those provided to the bound function.
|
|
42
|
-
// *
|
|
42
|
+
// *
|
|
43
43
|
// * This method differs from _.bind by allowing bound functions to reference methods that may be redefined
|
|
44
44
|
// * or don’t yet exist. See Peter Michaux’s article for more details.
|
|
45
|
-
// *
|
|
45
|
+
// *
|
|
46
46
|
// * The _.bindKey.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder
|
|
47
47
|
// * for partially applied arguments. */
|
|
48
48
|
// bindKey: _.FunctionBindKey;
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
// }
|
|
103
103
|
// /** An expiring token scoped for a specific repository and actions within it. */
|
|
104
104
|
// export interface ApiAuthToken {
|
|
105
|
-
// /** The content of a bearer token without its header prefix.
|
|
105
|
+
// /** The content of a bearer token without its header prefix.
|
|
106
106
|
// * ie: the Authorization http header will need this value to be prefixed with "Bearer". */
|
|
107
107
|
// token: string;
|
|
108
108
|
// /** The name of the entity on/in which actions will be performed with this token (eg: for a registry token, this would be the image name). */
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
// currentState: ApiReadyStateEnum;
|
|
119
119
|
// }
|
|
120
120
|
// export enum ApiReadyStateEnum {
|
|
121
|
-
// bootstrapping = "bootstrapping",
|
|
122
|
-
// initializingPlugins = "initializingPlugins",
|
|
123
|
-
// instantiated = "instantiated",
|
|
124
|
-
// ready = "ready",
|
|
121
|
+
// bootstrapping = "bootstrapping",
|
|
122
|
+
// initializingPlugins = "initializingPlugins",
|
|
123
|
+
// instantiated = "instantiated",
|
|
124
|
+
// ready = "ready",
|
|
125
125
|
// reflecting = "reflecting"
|
|
126
126
|
// }
|
|
127
127
|
// export interface AssetConfigSchemaRequest {
|
|
@@ -197,8 +197,8 @@
|
|
|
197
197
|
// correlationId?: string | undefined;
|
|
198
198
|
// }
|
|
199
199
|
// export enum AssetTypesEnum {
|
|
200
|
-
// helm = "helm",
|
|
201
|
-
// job = "job",
|
|
200
|
+
// helm = "helm",
|
|
201
|
+
// job = "job",
|
|
202
202
|
// service = "service"
|
|
203
203
|
// }
|
|
204
204
|
// export interface AssetVersion {
|
|
@@ -290,8 +290,8 @@
|
|
|
290
290
|
// loginServer: string;
|
|
291
291
|
// }
|
|
292
292
|
// /** Use the `name` property as the human readable identifier to declare a location in a contract.
|
|
293
|
-
// *
|
|
294
|
-
// * EXAMPLE:
|
|
293
|
+
// *
|
|
294
|
+
// * EXAMPLE:
|
|
295
295
|
// * ```
|
|
296
296
|
// * {
|
|
297
297
|
// * "displayName": "Jio India West",
|
|
@@ -340,8 +340,8 @@
|
|
|
340
340
|
// * "regionalDisplayName": "(US) East US",
|
|
341
341
|
// * "subscriptionId": null
|
|
342
342
|
// * }
|
|
343
|
-
// * ```
|
|
344
|
-
// * EXAMPLE 3:
|
|
343
|
+
// * ```
|
|
344
|
+
// * EXAMPLE 3:
|
|
345
345
|
// * ```
|
|
346
346
|
// * {
|
|
347
347
|
// * "displayName": "Canada",
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
// regionCategory: string;
|
|
378
378
|
// regionType: string;
|
|
379
379
|
// }
|
|
380
|
-
// /** The mem, disk, and cpu specs for a given type of vm, for use as nodes in k8s.
|
|
380
|
+
// /** The mem, disk, and cpu specs for a given type of vm, for use as nodes in k8s.
|
|
381
381
|
// * Pricing is NOT part of this class. */
|
|
382
382
|
// export interface AzureNodeType {
|
|
383
383
|
// maxDataDiskCount: number;
|
|
@@ -443,11 +443,11 @@
|
|
|
443
443
|
// footprints: object[];
|
|
444
444
|
// defaultFootprint?: object | undefined;
|
|
445
445
|
// /** **DEPRECATED: Use hostNaming instead!!!**
|
|
446
|
-
// *
|
|
446
|
+
// *
|
|
447
447
|
// * Domain names that route ONLY to this cabinet. */
|
|
448
448
|
// domains?: object[] | undefined;
|
|
449
449
|
// /** All of the applicable domain names and their strategies for routing assets.
|
|
450
|
-
// *
|
|
450
|
+
// *
|
|
451
451
|
// * This list is the end result of a smash-merge of all ScopedHostNameConfigs that apply to this cabinet,
|
|
452
452
|
// * and it is able to be kept in sync by embedding and cascading. */
|
|
453
453
|
// hostNaming?: object[] | undefined;
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
// * "lastModified": "desc"
|
|
537
537
|
// * }
|
|
538
538
|
// * ```
|
|
539
|
-
// *
|
|
539
|
+
// *
|
|
540
540
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
541
541
|
// sort?: string[] | object | string | undefined;
|
|
542
542
|
// skip?: number | undefined;
|
|
@@ -555,11 +555,11 @@
|
|
|
555
555
|
// enterprise: string;
|
|
556
556
|
// environment?: string | undefined;
|
|
557
557
|
// cabinet?: string | undefined;
|
|
558
|
-
// /** Searches cabinets with "OR" logic
|
|
558
|
+
// /** Searches cabinets with "OR" logic
|
|
559
559
|
// * (ie: returns cabinet records that contain ANY of the tags specified in this property) */
|
|
560
560
|
// tags?: string[] | undefined;
|
|
561
561
|
// /** (Optional: Defaults to `any`) Declares the logic that will be used to select cabinets from the given tags.
|
|
562
|
-
// *
|
|
562
|
+
// *
|
|
563
563
|
// * * `any`: targets cabinets with **any** of the given tags (aka: OR logic).
|
|
564
564
|
// * * `all`: targets only cabinets that have **all** of the given tags (aka: AND logic).
|
|
565
565
|
// * * `none`: targets only cabinets that have **none** of the given tags (aka: NOT logic). */
|
|
@@ -567,11 +567,11 @@
|
|
|
567
567
|
// }
|
|
568
568
|
// /** Identifier for a supported cloud service provider, for use in selecting infrastructure clients, provisioners, and credentials. */
|
|
569
569
|
// export enum CloudProviderEnum {
|
|
570
|
-
// artifactHub = "artifactHub",
|
|
571
|
-
// aws = "aws",
|
|
572
|
-
// azure = "azure",
|
|
573
|
-
// dockerHub = "dockerHub",
|
|
574
|
-
// localMachine = "localMachine",
|
|
570
|
+
// artifactHub = "artifactHub",
|
|
571
|
+
// aws = "aws",
|
|
572
|
+
// azure = "azure",
|
|
573
|
+
// dockerHub = "dockerHub",
|
|
574
|
+
// localMachine = "localMachine",
|
|
575
575
|
// other = "other"
|
|
576
576
|
// }
|
|
577
577
|
// export interface Cluster {
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
// /** Node pools in addition to the default node pool created with the cluster. */
|
|
644
644
|
// nodePools?: object[] | undefined;
|
|
645
645
|
// /** Credentials applied to new Windows VMs to enable administrative capabilities required for cluster management.
|
|
646
|
-
// *
|
|
646
|
+
// *
|
|
647
647
|
// * Backward compatibility for a legacy image format called "Windows",
|
|
648
648
|
// * which is required to run outdated Microsoft proprietary software
|
|
649
649
|
// * such as Microsoft WCF and classic .Net Framework applications.
|
|
@@ -658,7 +658,7 @@
|
|
|
658
658
|
// enableRbac?: boolean | undefined;
|
|
659
659
|
// /** (Advanced) (optional: defaults to false)
|
|
660
660
|
// * Enable this setting to remove support for https (aka: SSL/TLS) in the ingress controller.
|
|
661
|
-
// *
|
|
661
|
+
// *
|
|
662
662
|
// * Use this setting when tls terminates upstream of the cluster and its ingress controller. */
|
|
663
663
|
// disableHttps?: boolean | undefined;
|
|
664
664
|
// /** Indicates that this entity exists and is to be stored solely on the local machine
|
|
@@ -701,7 +701,7 @@
|
|
|
701
701
|
// * "lastModified": "desc"
|
|
702
702
|
// * }
|
|
703
703
|
// * ```
|
|
704
|
-
// *
|
|
704
|
+
// *
|
|
705
705
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
706
706
|
// sort?: string[] | object | string | undefined;
|
|
707
707
|
// skip?: number | undefined;
|
|
@@ -724,14 +724,14 @@
|
|
|
724
724
|
// socketId: string;
|
|
725
725
|
// /** (Optional: if not provided the relay will generate one and return it in the ack/response) */
|
|
726
726
|
// correlationId?: string | undefined;
|
|
727
|
-
// /** Url to which to publish the ultimate result.
|
|
728
|
-
// * Upon completion, this url will be requested with an http POST method,
|
|
729
|
-
// * and the result object as the body of the request.
|
|
730
|
-
// *
|
|
731
|
-
// * (Optional: it is not necessary to provide a callback url,
|
|
732
|
-
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
733
|
-
// * since the ultimate result gets published to the status stream.
|
|
734
|
-
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
727
|
+
// /** Url to which to publish the ultimate result.
|
|
728
|
+
// * Upon completion, this url will be requested with an http POST method,
|
|
729
|
+
// * and the result object as the body of the request.
|
|
730
|
+
// *
|
|
731
|
+
// * (Optional: it is not necessary to provide a callback url,
|
|
732
|
+
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
733
|
+
// * since the ultimate result gets published to the status stream.
|
|
734
|
+
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
735
735
|
// * and do not want to monitor the status stream.) */
|
|
736
736
|
// callbackUrl?: string | undefined;
|
|
737
737
|
// }
|
|
@@ -746,18 +746,18 @@
|
|
|
746
746
|
// socketId: string;
|
|
747
747
|
// /** (Optional: if not provided the relay will generate one and return it in the ack/response) */
|
|
748
748
|
// correlationId?: string | undefined;
|
|
749
|
-
// /** Url to which to publish the ultimate result.
|
|
750
|
-
// * Upon completion, this url will be requested with an http POST method,
|
|
751
|
-
// * and the result object as the body of the request.
|
|
752
|
-
// *
|
|
753
|
-
// * (Optional: it is not necessary to provide a callback url,
|
|
754
|
-
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
755
|
-
// * since the ultimate result gets published to the status stream.
|
|
756
|
-
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
749
|
+
// /** Url to which to publish the ultimate result.
|
|
750
|
+
// * Upon completion, this url will be requested with an http POST method,
|
|
751
|
+
// * and the result object as the body of the request.
|
|
752
|
+
// *
|
|
753
|
+
// * (Optional: it is not necessary to provide a callback url,
|
|
754
|
+
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
755
|
+
// * since the ultimate result gets published to the status stream.
|
|
756
|
+
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
757
757
|
// * and do not want to monitor the status stream.) */
|
|
758
758
|
// callbackUrl?: string | undefined;
|
|
759
759
|
// }
|
|
760
|
-
// /** Specs describing an available WebSocket on which the client and server
|
|
760
|
+
// /** Specs describing an available WebSocket on which the client and server
|
|
761
761
|
// * can exchange messages related to a given transaction. */
|
|
762
762
|
// export interface CommChannelRef {
|
|
763
763
|
// socketId: string;
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
// enterprise?: string | undefined;
|
|
797
797
|
// asset?: string | undefined;
|
|
798
798
|
// /** Values of ScopedSetting.targetFile for NON-FILE configs. */
|
|
799
|
-
// type?: "annotation" | "env" | "file" | "filestore" | "footprint" | "helm" | "label" | "permit" | "probing" | undefined;
|
|
799
|
+
// type?: "annotation" | "env" | "file" | "filestore" | "footprint" | "helm" | "k8spatch" | "label" | "permit" | "probing" | undefined;
|
|
800
800
|
// targetFile?: string | undefined;
|
|
801
801
|
// format?: "ini" | "json" | "toml" | "xml" | "yaml" | undefined;
|
|
802
802
|
// ids?: string[] | undefined;
|
|
@@ -816,7 +816,7 @@
|
|
|
816
816
|
// * "lastModified": "desc"
|
|
817
817
|
// * }
|
|
818
818
|
// * ```
|
|
819
|
-
// *
|
|
819
|
+
// *
|
|
820
820
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
821
821
|
// sort?: string[] | object | string | undefined;
|
|
822
822
|
// skip?: number | undefined;
|
|
@@ -826,13 +826,14 @@
|
|
|
826
826
|
// }
|
|
827
827
|
// /** Values of ScopedSetting.targetFile for NON-FILE configs. */
|
|
828
828
|
// export enum ConfigDefTypesEnum {
|
|
829
|
-
// annotation = "annotation",
|
|
830
|
-
// env = "env",
|
|
831
|
-
// file = "file",
|
|
832
|
-
// filestore = "filestore",
|
|
833
|
-
// footprint = "footprint",
|
|
834
|
-
// helm = "helm",
|
|
835
|
-
//
|
|
829
|
+
// annotation = "annotation",
|
|
830
|
+
// env = "env",
|
|
831
|
+
// file = "file",
|
|
832
|
+
// filestore = "filestore",
|
|
833
|
+
// footprint = "footprint",
|
|
834
|
+
// helm = "helm",
|
|
835
|
+
// k8spatch = "k8spatch",
|
|
836
|
+
// label = "label",
|
|
836
837
|
// probing = "probing"
|
|
837
838
|
// }
|
|
838
839
|
// /** An object representation of a config file, assembled from ScopedSettings.
|
|
@@ -865,7 +866,7 @@
|
|
|
865
866
|
// * "lastModified": "desc"
|
|
866
867
|
// * }
|
|
867
868
|
// * ```
|
|
868
|
-
// *
|
|
869
|
+
// *
|
|
869
870
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
870
871
|
// sort?: string[] | object | string | undefined;
|
|
871
872
|
// skip?: number | undefined;
|
|
@@ -875,10 +876,10 @@
|
|
|
875
876
|
// }
|
|
876
877
|
// /** Serializer declaration for a data document. */
|
|
877
878
|
// export enum ConfigFormatsEnum {
|
|
878
|
-
// ini = "ini",
|
|
879
|
-
// json = "json",
|
|
880
|
-
// toml = "toml",
|
|
881
|
-
// xml = "xml",
|
|
879
|
+
// ini = "ini",
|
|
880
|
+
// json = "json",
|
|
881
|
+
// toml = "toml",
|
|
882
|
+
// xml = "xml",
|
|
882
883
|
// yaml = "yaml"
|
|
883
884
|
// }
|
|
884
885
|
// /** The resource allocation profile that will be assigned
|
|
@@ -911,25 +912,25 @@
|
|
|
911
912
|
// correlationId?: string | undefined;
|
|
912
913
|
// /** The websocket opened by a client for real time status messages. */
|
|
913
914
|
// socketId: string;
|
|
914
|
-
// /** Url to which to publish the ultimate result.
|
|
915
|
-
// * Upon completion, this url will be requested with an http POST method,
|
|
916
|
-
// * and the result object as the body of the request.
|
|
917
|
-
// *
|
|
918
|
-
// * (Optional: it is not necessary to provide a callback url,
|
|
919
|
-
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
920
|
-
// * since the ultimate result gets published to the status stream.
|
|
921
|
-
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
915
|
+
// /** Url to which to publish the ultimate result.
|
|
916
|
+
// * Upon completion, this url will be requested with an http POST method,
|
|
917
|
+
// * and the result object as the body of the request.
|
|
918
|
+
// *
|
|
919
|
+
// * (Optional: it is not necessary to provide a callback url,
|
|
920
|
+
// * and if subscribing to the async status stream, a callbackUrl is probably redundant,
|
|
921
|
+
// * since the ultimate result gets published to the status stream.
|
|
922
|
+
// * That is, you may only want to provide a callbackUrl if you are running async
|
|
922
923
|
// * and do not want to monitor the status stream.) */
|
|
923
924
|
// callbackUrl?: string | undefined;
|
|
924
925
|
// acrs?: object[] | undefined;
|
|
925
926
|
// userContext?: UserContext | undefined;
|
|
926
927
|
// codiacAPiUrl?: string | undefined;
|
|
927
928
|
// }
|
|
928
|
-
// /** This is actually the result returned (via querystring params on a redirect)
|
|
929
|
-
// * by the external csp login service,
|
|
930
|
-
// * in response to an interactive authorization code request
|
|
931
|
-
// * (within the sequence of an interactive OAuth 2.0 authorization code flow).
|
|
932
|
-
// *
|
|
929
|
+
// /** This is actually the result returned (via querystring params on a redirect)
|
|
930
|
+
// * by the external csp login service,
|
|
931
|
+
// * in response to an interactive authorization code request
|
|
932
|
+
// * (within the sequence of an interactive OAuth 2.0 authorization code flow).
|
|
933
|
+
// *
|
|
933
934
|
// * These properties were ripped straight out of M$ docs: https://learn.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow#successful-response */
|
|
934
935
|
// export interface CspLoginAuthCodeCatcherRequest {
|
|
935
936
|
// /** (Successful scenario) The authorization_code that the app requested.
|
|
@@ -939,32 +940,32 @@
|
|
|
939
940
|
// /** (Successful scenario) If a state parameter is included in the request, the same value should appear in the response.
|
|
940
941
|
// * The app should verify that the state values in the request and response are identical. */
|
|
941
942
|
// state?: string | undefined;
|
|
942
|
-
// /** (Common Error scenario) An error code string that can be used to classify types of errors, and to react to errors.
|
|
943
|
+
// /** (Common Error scenario) An error code string that can be used to classify types of errors, and to react to errors.
|
|
943
944
|
// * This part of the error is provided so that the app can react appropriately to the error, but does not explain in depth why an error occurred. */
|
|
944
945
|
// error?: "access_denied" | "interaction_required" | "invalid_request" | "invalid_resource" | "login_required" | "server_error" | "temporarily_unavailable" | "unauthorized_client" | "unsupported_response_type" | undefined;
|
|
945
|
-
// /** (Common Error scenario) A specific error message that can help a developer identify the cause of an authentication error.
|
|
946
|
+
// /** (Common Error scenario) A specific error message that can help a developer identify the cause of an authentication error.
|
|
946
947
|
// * This part of the error contains most of the useful information about why the error occurred. */
|
|
947
948
|
// error_description?: string | undefined;
|
|
948
|
-
// /** (Access Token Success Scenario) The requested access token. The app can use this token to authenticate to the secured resource,
|
|
949
|
+
// /** (Access Token Success Scenario) The requested access token. The app can use this token to authenticate to the secured resource,
|
|
949
950
|
// * such as a web API. */
|
|
950
951
|
// access_token?: string | undefined;
|
|
951
952
|
// /** (Access Token Success Scenario) Indicates the token type value. The only type that Azure AD supports is Bearer. */
|
|
952
953
|
// token_type?: string | undefined;
|
|
953
954
|
// /** (Access Token Success Scenario) How long the access token is valid, in seconds. */
|
|
954
955
|
// expires_in?: number | undefined;
|
|
955
|
-
// /** (Access Token Success Scenario) The scopes that the access_token is valid for. Optional. This parameter is non-standard
|
|
956
|
+
// /** (Access Token Success Scenario) The scopes that the access_token is valid for. Optional. This parameter is non-standard
|
|
956
957
|
// * and, if omitted, the token is for the scopes requested on the initial leg of the flow. */
|
|
957
958
|
// scope?: string | undefined;
|
|
958
|
-
// /** (Access Token Success Scenario) An OAuth 2.0 refresh token. The app can use this token to acquire other access tokens after the current access token expires.
|
|
959
|
-
// * Refresh tokens are long-lived. They can maintain access to resources for extended periods.
|
|
960
|
-
// * For more detail on refreshing an access token, refer to Refresh the access token later in this article.
|
|
961
|
-
// *
|
|
959
|
+
// /** (Access Token Success Scenario) An OAuth 2.0 refresh token. The app can use this token to acquire other access tokens after the current access token expires.
|
|
960
|
+
// * Refresh tokens are long-lived. They can maintain access to resources for extended periods.
|
|
961
|
+
// * For more detail on refreshing an access token, refer to Refresh the access token later in this article.
|
|
962
|
+
// *
|
|
962
963
|
// * Note: Only provided if offline_access scope was requested. */
|
|
963
964
|
// refresh_token?: string | undefined;
|
|
964
|
-
// /** (Access Token Success Scenario) A JSON Web Token. The app can decode the segments of this token to request information about the user who signed in.
|
|
965
|
-
// * The app can cache the values and display them, and confidential clients can use this token for authorization.
|
|
966
|
-
// * For more information about id_tokens, see the id_token reference.
|
|
967
|
-
// *
|
|
965
|
+
// /** (Access Token Success Scenario) A JSON Web Token. The app can decode the segments of this token to request information about the user who signed in.
|
|
966
|
+
// * The app can cache the values and display them, and confidential clients can use this token for authorization.
|
|
967
|
+
// * For more information about id_tokens, see the id_token reference.
|
|
968
|
+
// *
|
|
968
969
|
// * Note: Only provided if openid scope was requested. */
|
|
969
970
|
// id_token?: string | undefined;
|
|
970
971
|
// /** (Successful scenario) */
|
|
@@ -992,9 +993,9 @@
|
|
|
992
993
|
// correlationId: string;
|
|
993
994
|
// loginUrl: string;
|
|
994
995
|
// }
|
|
995
|
-
// /** This is actually the result returned (via querystring params on a redirect)
|
|
996
|
-
// * by the external csp login service,
|
|
997
|
-
// * in response to an interactive sign-out request
|
|
996
|
+
// /** This is actually the result returned (via querystring params on a redirect)
|
|
997
|
+
// * by the external csp login service,
|
|
998
|
+
// * in response to an interactive sign-out request
|
|
998
999
|
// * (within the sequence of an interactive OAuth 2.0 logout flow). */
|
|
999
1000
|
// export interface CspLogoutCatcherRequest {
|
|
1000
1001
|
// socketId: string;
|
|
@@ -1031,7 +1032,7 @@
|
|
|
1031
1032
|
// cspUser: ICspPrimaryCredsMeta;
|
|
1032
1033
|
// }
|
|
1033
1034
|
// /** Access Control List (ACL) to be applied to any new child entity created within the parent.
|
|
1034
|
-
// *
|
|
1035
|
+
// *
|
|
1035
1036
|
// * Only stands as a default template for permissions on FUTURE new child entities;
|
|
1036
1037
|
// * DOES NOT get directly used to enforce permissions on any existing ones. */
|
|
1037
1038
|
// export interface DefaultChildAcl {
|
|
@@ -1069,7 +1070,7 @@
|
|
|
1069
1070
|
// * "lastModified": "desc"
|
|
1070
1071
|
// * }
|
|
1071
1072
|
// * ```
|
|
1072
|
-
// *
|
|
1073
|
+
// *
|
|
1073
1074
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1074
1075
|
// sort?: string[] | object | string | undefined;
|
|
1075
1076
|
// skip?: number | undefined;
|
|
@@ -1124,7 +1125,7 @@
|
|
|
1124
1125
|
// * "lastModified": "desc"
|
|
1125
1126
|
// * }
|
|
1126
1127
|
// * ```
|
|
1127
|
-
// *
|
|
1128
|
+
// *
|
|
1128
1129
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1129
1130
|
// sort?: string[] | object | string | undefined;
|
|
1130
1131
|
// skip?: number | undefined;
|
|
@@ -1167,7 +1168,7 @@
|
|
|
1167
1168
|
// * "lastModified": "desc"
|
|
1168
1169
|
// * }
|
|
1169
1170
|
// * ```
|
|
1170
|
-
// *
|
|
1171
|
+
// *
|
|
1171
1172
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1172
1173
|
// sort?: string[] | object | string | undefined;
|
|
1173
1174
|
// skip?: number | undefined;
|
|
@@ -1180,7 +1181,7 @@
|
|
|
1180
1181
|
// * Though the deployment does necessarily reflect the comprehensive collection of Snapshot and ConfigChanges to date of its creation,
|
|
1181
1182
|
// * it does NOT necessarily reflect the entire enterprise: a deployment can certainly be a partial deployment of an enterprise.
|
|
1182
1183
|
// * eg: a deployment may ony be deploying an upgrade to a single service in the enterprise rather than the whole thing.
|
|
1183
|
-
// *
|
|
1184
|
+
// *
|
|
1184
1185
|
// * TODO: Provide for specificying hings other than services: eg ConfigMaps, Secrets, Ingress Routes, Footprint mods? */
|
|
1185
1186
|
// export interface Deployment {
|
|
1186
1187
|
// name: string;
|
|
@@ -1221,7 +1222,7 @@
|
|
|
1221
1222
|
// * "lastModified": "desc"
|
|
1222
1223
|
// * }
|
|
1223
1224
|
// * ```
|
|
1224
|
-
// *
|
|
1225
|
+
// *
|
|
1225
1226
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1226
1227
|
// sort?: string[] | object | string | undefined;
|
|
1227
1228
|
// skip?: number | undefined;
|
|
@@ -1299,7 +1300,7 @@
|
|
|
1299
1300
|
// * "lastModified": "desc"
|
|
1300
1301
|
// * }
|
|
1301
1302
|
// * ```
|
|
1302
|
-
// *
|
|
1303
|
+
// *
|
|
1303
1304
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1304
1305
|
// sort?: string[] | object | string | undefined;
|
|
1305
1306
|
// skip?: number | undefined;
|
|
@@ -1391,7 +1392,7 @@
|
|
|
1391
1392
|
// clusterDefs: object[];
|
|
1392
1393
|
// defaultFootprint?: object | undefined;
|
|
1393
1394
|
// /** Access Control List (ACL) to be applied to any new child entity created within the parent.
|
|
1394
|
-
// *
|
|
1395
|
+
// *
|
|
1395
1396
|
// * Only stands as a default template for permissions on FUTURE new child entities;
|
|
1396
1397
|
// * DOES NOT get directly used to enforce permissions on any existing ones. */
|
|
1397
1398
|
// defaultCabinetAcl?: object | undefined;
|
|
@@ -1425,7 +1426,7 @@
|
|
|
1425
1426
|
// * "lastModified": "desc"
|
|
1426
1427
|
// * }
|
|
1427
1428
|
// * ```
|
|
1428
|
-
// *
|
|
1429
|
+
// *
|
|
1429
1430
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1430
1431
|
// sort?: string[] | object | string | undefined;
|
|
1431
1432
|
// skip?: number | undefined;
|
|
@@ -1532,7 +1533,7 @@
|
|
|
1532
1533
|
// }
|
|
1533
1534
|
// /** Abstraction and specification for a share on a file store,
|
|
1534
1535
|
// * to be mapped to a reserved folder on an asset.
|
|
1535
|
-
// *
|
|
1536
|
+
// *
|
|
1536
1537
|
// * This class can be used as the specification
|
|
1537
1538
|
// * to programmatically put up and take down concrete file stores.
|
|
1538
1539
|
// * As such, it outlives the actual entity described by its "instance" property. */
|
|
@@ -1557,7 +1558,7 @@
|
|
|
1557
1558
|
// export interface FileStoreDefCriteria {
|
|
1558
1559
|
// name?: StringFilter | undefined;
|
|
1559
1560
|
// /** Supported file store adapters that can be mapped to a reserved folder on an asset.
|
|
1560
|
-
// *
|
|
1561
|
+
// *
|
|
1561
1562
|
// * IMPORTANT!!! Key names are `"camelCase"`, whereas the values are `"PascalCase"`.
|
|
1562
1563
|
// * This mismatching is the result of a late change after values had already been written the the production database. */
|
|
1563
1564
|
// type?: "AwsEbs" | "AwsEfs" | "AwsS3Bucket" | "AzureBlobStorage" | "AzureDisk" | "AzureFileStorage" | "HostMachineFolder" | undefined;
|
|
@@ -1583,7 +1584,7 @@
|
|
|
1583
1584
|
// * "lastModified": "desc"
|
|
1584
1585
|
// * }
|
|
1585
1586
|
// * ```
|
|
1586
|
-
// *
|
|
1587
|
+
// *
|
|
1587
1588
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
1588
1589
|
// sort?: string[] | object | string | undefined;
|
|
1589
1590
|
// skip?: number | undefined;
|
|
@@ -1592,16 +1593,16 @@
|
|
|
1592
1593
|
// reverse?: any | undefined;
|
|
1593
1594
|
// }
|
|
1594
1595
|
// /** Supported file store adapters that can be mapped to a reserved folder on an asset.
|
|
1595
|
-
// *
|
|
1596
|
+
// *
|
|
1596
1597
|
// * IMPORTANT!!! Key names are `"camelCase"`, whereas the values are `"PascalCase"`.
|
|
1597
1598
|
// * This mismatching is the result of a late change after values had already been written the the production database. */
|
|
1598
1599
|
// export enum FileStoreTypeEnum {
|
|
1599
|
-
// AwsEbs = "AwsEbs",
|
|
1600
|
-
// AwsEfs = "AwsEfs",
|
|
1601
|
-
// AwsS3Bucket = "AwsS3Bucket",
|
|
1602
|
-
// AzureBlobStorage = "AzureBlobStorage",
|
|
1603
|
-
// AzureDisk = "AzureDisk",
|
|
1604
|
-
// AzureFileStorage = "AzureFileStorage",
|
|
1600
|
+
// AwsEbs = "AwsEbs",
|
|
1601
|
+
// AwsEfs = "AwsEfs",
|
|
1602
|
+
// AwsS3Bucket = "AwsS3Bucket",
|
|
1603
|
+
// AzureBlobStorage = "AzureBlobStorage",
|
|
1604
|
+
// AzureDisk = "AzureDisk",
|
|
1605
|
+
// AzureFileStorage = "AzureFileStorage",
|
|
1605
1606
|
// HostMachineFolder = "HostMachineFolder"
|
|
1606
1607
|
// }
|
|
1607
1608
|
// /** Calls out the cabinet and its parent structures. */
|
|
@@ -1716,7 +1717,7 @@
|
|
|
1716
1717
|
// }
|
|
1717
1718
|
// /** Declaration of a domain name to use and the specification
|
|
1718
1719
|
// * for how host names will be created for services and cabinets.
|
|
1719
|
-
// *
|
|
1720
|
+
// *
|
|
1720
1721
|
// * NOTE: This entity is the RESULT of a smash-merge of the applicable ScopedHostNameConfig instances. */
|
|
1721
1722
|
// export interface HostNameConfig {
|
|
1722
1723
|
// domainName: string;
|
|
@@ -1729,13 +1730,13 @@
|
|
|
1729
1730
|
// property?: string | undefined;
|
|
1730
1731
|
// }
|
|
1731
1732
|
// export enum HostNameStrategyEnum {
|
|
1732
|
-
// cab_dot_cluster_dot_domain_slash_service = "cab_dot_cluster_dot_domain_slash_service",
|
|
1733
|
-
// cab_dot_cluster_dot_enterprise_dot_domain_slash_service = "cab_dot_cluster_dot_enterprise_dot_domain_slash_service",
|
|
1734
|
-
// cab_dot_domain_slash_service = "cab_dot_domain_slash_service",
|
|
1735
|
-
// domain_slash_service = "domain_slash_service",
|
|
1736
|
-
// globally_shared_domain_slash_service = "globally_shared_domain_slash_service",
|
|
1737
|
-
// service_dot_domain = "service_dot_domain",
|
|
1738
|
-
// shared_ingress_ip = "shared_ingress_ip",
|
|
1733
|
+
// cab_dot_cluster_dot_domain_slash_service = "cab_dot_cluster_dot_domain_slash_service",
|
|
1734
|
+
// cab_dot_cluster_dot_enterprise_dot_domain_slash_service = "cab_dot_cluster_dot_enterprise_dot_domain_slash_service",
|
|
1735
|
+
// cab_dot_domain_slash_service = "cab_dot_domain_slash_service",
|
|
1736
|
+
// domain_slash_service = "domain_slash_service",
|
|
1737
|
+
// globally_shared_domain_slash_service = "globally_shared_domain_slash_service",
|
|
1738
|
+
// service_dot_domain = "service_dot_domain",
|
|
1739
|
+
// shared_ingress_ip = "shared_ingress_ip",
|
|
1739
1740
|
// svc_dot_cab_dot_domain = "svc_dot_cab_dot_domain"
|
|
1740
1741
|
// }
|
|
1741
1742
|
// export interface IApiAuthTokenMeta {
|
|
@@ -1746,7 +1747,7 @@
|
|
|
1746
1747
|
// /** The ApplicationId assigned to Codiac when it was registered in AzureAD. */
|
|
1747
1748
|
// clientId: string;
|
|
1748
1749
|
// /** Azure TenantId.
|
|
1749
|
-
// * Id code for the tenant account with the cloud service provider
|
|
1750
|
+
// * Id code for the tenant account with the cloud service provider
|
|
1750
1751
|
// * (This is NOT the Codiac tenant code). */
|
|
1751
1752
|
// cspTenantId: string;
|
|
1752
1753
|
// }
|
|
@@ -1763,7 +1764,7 @@
|
|
|
1763
1764
|
// }
|
|
1764
1765
|
// export interface ICommandLineProbeAction {
|
|
1765
1766
|
// /** The command line to execute inside the container.
|
|
1766
|
-
// *
|
|
1767
|
+
// *
|
|
1767
1768
|
// * The working directory for the command is root ('/') in the container's filesystem.
|
|
1768
1769
|
// * The command is simply exec'd, it is not run inside a shell,
|
|
1769
1770
|
// * so traditional shell instructions ('|', etc) won't work.
|
|
@@ -1779,7 +1780,7 @@
|
|
|
1779
1780
|
// tenantCode: string;
|
|
1780
1781
|
// provider: CloudProviderEnum;
|
|
1781
1782
|
// /** eg: The AccountId in AWS or SubscriptionId in Azure.
|
|
1782
|
-
// *
|
|
1783
|
+
// *
|
|
1783
1784
|
// * TODO: Make this required. */
|
|
1784
1785
|
// subscriptionId?: string | undefined;
|
|
1785
1786
|
// }
|
|
@@ -1825,7 +1826,7 @@
|
|
|
1825
1826
|
// pullSecret?: PullSecretRef | undefined;
|
|
1826
1827
|
// /** The backup token to be used by the cluster to authenticate when pulling images from this registry.
|
|
1827
1828
|
// * This property references a secret record in a SecretStore.
|
|
1828
|
-
// *
|
|
1829
|
+
// *
|
|
1829
1830
|
// * NOTE: The secondary pull secret is available for seamless transitions when replacing the primary.
|
|
1830
1831
|
// * The primary and secondary should never have the same expiration dates. */
|
|
1831
1832
|
// pullSecretSecondary?: PullSecretRef | undefined;
|
|
@@ -1857,10 +1858,10 @@
|
|
|
1857
1858
|
// /** IMPORTANT!!! Key names are `"camelCase"`, whereas the values are `"PascalCase"`.
|
|
1858
1859
|
// * This mismatching is the result of a late change after values had already been written the the production database. */
|
|
1859
1860
|
// export enum ImageRegistryTypes {
|
|
1860
|
-
// AmazonEcr = "AmazonEcr",
|
|
1861
|
-
// AzureCr = "AzureCr",
|
|
1862
|
-
// DockerHub = "DockerHub",
|
|
1863
|
-
// Other = "Other",
|
|
1861
|
+
// AmazonEcr = "AmazonEcr",
|
|
1862
|
+
// AzureCr = "AzureCr",
|
|
1863
|
+
// DockerHub = "DockerHub",
|
|
1864
|
+
// Other = "Other",
|
|
1864
1865
|
// helm = "helm"
|
|
1865
1866
|
// }
|
|
1866
1867
|
// export interface ImageRepository {
|
|
@@ -1895,9 +1896,9 @@
|
|
|
1895
1896
|
// created: Date;
|
|
1896
1897
|
// modified: Date;
|
|
1897
1898
|
// }
|
|
1898
|
-
// /** Distribution of domain names and host mappings across clusters, environments, and assets.
|
|
1899
|
-
// *
|
|
1900
|
-
// * Describes the entry points for routing traffic to services in the cabinets,
|
|
1899
|
+
// /** Distribution of domain names and host mappings across clusters, environments, and assets.
|
|
1900
|
+
// *
|
|
1901
|
+
// * Describes the entry points for routing traffic to services in the cabinets,
|
|
1901
1902
|
// * as well as the required dns records to support it. */
|
|
1902
1903
|
// export interface IngressMap {
|
|
1903
1904
|
// strategies: object;
|
|
@@ -1908,7 +1909,7 @@
|
|
|
1908
1909
|
// lastModified?: Date | undefined;
|
|
1909
1910
|
// /** Last time we checked for staleness */
|
|
1910
1911
|
// lastRefresh?: Date | undefined;
|
|
1911
|
-
// /** Unique identifier for the content of this class,
|
|
1912
|
+
// /** Unique identifier for the content of this class,
|
|
1912
1913
|
// * for use in determining whether the content is stale. */
|
|
1913
1914
|
// hashCode?: string | undefined;
|
|
1914
1915
|
// /** hashcode on the environment tree */
|
|
@@ -1917,7 +1918,7 @@
|
|
|
1917
1918
|
// hashcodeOnDomainState?: string | undefined;
|
|
1918
1919
|
// /** Does this one care about versions and config? A: Versions no, but assets YES, tho only checks assets deployed, and their code, port numbers, hasIngress, routedWithoutName, and allowHttp */
|
|
1919
1920
|
// hashcodeOnRunState?: string | undefined;
|
|
1920
|
-
// /** Human readable notes about potential ingress mapping conflicts
|
|
1921
|
+
// /** Human readable notes about potential ingress mapping conflicts
|
|
1921
1922
|
// * (eg: dns pointed to more than a single ingressIp) */
|
|
1922
1923
|
// warnings?: string[] | undefined;
|
|
1923
1924
|
// }
|
|
@@ -1931,9 +1932,9 @@
|
|
|
1931
1932
|
// excludeAssetRoutes?: boolean | undefined;
|
|
1932
1933
|
// }
|
|
1933
1934
|
// /** A script or program to run (from within a given container) before an asset's main container is started.
|
|
1934
|
-
// *
|
|
1935
|
+
// *
|
|
1935
1936
|
// * Failure of this container DOES prevent the asset's main container from starting.
|
|
1936
|
-
// *
|
|
1937
|
+
// *
|
|
1937
1938
|
// * In Kubernetes, this gets implemented as an [Init Container](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) */
|
|
1938
1939
|
// export interface InitContainer {
|
|
1939
1940
|
// name: string;
|
|
@@ -1943,15 +1944,15 @@
|
|
|
1943
1944
|
// created: Date;
|
|
1944
1945
|
// modified: Date;
|
|
1945
1946
|
// /** Fully-qualified name of the image whose entrypoint command is to be run,
|
|
1946
|
-
// *
|
|
1947
|
+
// *
|
|
1947
1948
|
// * Format: `[registryUrl]/[imageName]` (DockerHub is used by default).
|
|
1948
|
-
// *
|
|
1949
|
+
// *
|
|
1949
1950
|
// * eg:
|
|
1950
1951
|
// * * `busybox`
|
|
1951
1952
|
// * * `myazAcr.azurecr.io/my-favorite-image` */
|
|
1952
1953
|
// image: string;
|
|
1953
1954
|
// /** Command run on container startup (Optional; defaults to the image's ENTRYPOINT, and if null, defaults to `/bin/sh -c`)
|
|
1954
|
-
// *
|
|
1955
|
+
// *
|
|
1955
1956
|
// * Description from k8s docs:
|
|
1956
1957
|
// * Not executed within a shell. The container image\'s ENTRYPOINT is used if this is not provided.
|
|
1957
1958
|
// * Variable references $(VAR_NAME) are expanded using the container\'s environment.
|
|
@@ -1963,7 +1964,7 @@
|
|
|
1963
1964
|
// entryPointCommand?: string[] | undefined;
|
|
1964
1965
|
// /** (Optional; defaults to whatever the image has as its "CMD")
|
|
1965
1966
|
// * Gets passed to the entryPointCommand. Often, the entrypointCommand opens a shell, allowing this to be the command to run inside the shell,
|
|
1966
|
-
// *
|
|
1967
|
+
// *
|
|
1967
1968
|
// * eg: `entryPointCommand="/bin/sh -c"` and `entryPointArgs="ls -a"` which yields: `/bin/sh -c ls -a` */
|
|
1968
1969
|
// entryPointArgs?: string[] | undefined;
|
|
1969
1970
|
// /** Container\'s working directory. If not specified, the container runtime\'s default will be used,
|
|
@@ -2001,12 +2002,12 @@
|
|
|
2001
2002
|
// /** (Optional: defaults to built-in deploymment-labeling convention) Boolean logic by which to recognize the pods
|
|
2002
2003
|
// * that belong to this asset among all the other pods in a namespace.
|
|
2003
2004
|
// * This property is an array type to allow for an asset to have multiple pod specs that each may have their own replicas.
|
|
2004
|
-
// *
|
|
2005
|
+
// *
|
|
2005
2006
|
// * eg: a simple asset just looks for...
|
|
2006
2007
|
// * ```
|
|
2007
2008
|
// * (p,a) => x.metadata?labels["AssetName"] == a
|
|
2008
2009
|
// * ```
|
|
2009
|
-
// *
|
|
2010
|
+
// *
|
|
2010
2011
|
// * eg: an asset, such as cert manager, with multiple kinds of pods, would have multiple custom pod filters, such as...
|
|
2011
2012
|
// * ```
|
|
2012
2013
|
// * (p,a) => p.metadata?labels["app.kubernetes.io/component"] == "cainjector" && p.metadata?labels["app.kubernetes.io/name"] == "cert-manager"
|
|
@@ -2016,7 +2017,7 @@
|
|
|
2016
2017
|
// customPodFilters?: object[] | undefined;
|
|
2017
2018
|
// /** Abstract declarations of folder paths inside the image
|
|
2018
2019
|
// * that are to be later mapped (at configuration time) to file store definitions.
|
|
2019
|
-
// *
|
|
2020
|
+
// *
|
|
2020
2021
|
// * NOTE: These reservations only OPTIONALLY reference existing file stores;
|
|
2021
2022
|
// * they merely declare a folder path for a file store to be mapped
|
|
2022
2023
|
// * later, when the asset gets configured for use in various cabinets. */
|
|
@@ -2031,16 +2032,16 @@
|
|
|
2031
2032
|
// beforeStartup?: InitContainer[] | undefined;
|
|
2032
2033
|
// /** Command line script (NOT run within a shell) to run within the asset container
|
|
2033
2034
|
// * AFTER the asset has succcessfully completed its startup.
|
|
2034
|
-
// *
|
|
2035
|
+
// *
|
|
2035
2036
|
// * From K8s Docs:
|
|
2036
2037
|
// * Management of the container blocks until this action is complete,
|
|
2037
2038
|
// * unless the container process fails, in which case the handler is aborted.
|
|
2038
|
-
// *
|
|
2039
|
+
// *
|
|
2039
2040
|
// * called immediately after a container is created.
|
|
2040
2041
|
// * If the handler fails, the container is terminated and restarted according to its restart policy.
|
|
2041
2042
|
// * Other management of the container blocks until the hook completes.
|
|
2042
2043
|
// * More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
|
|
2043
|
-
// *
|
|
2044
|
+
// *
|
|
2044
2045
|
// * The working directory for the command is root ('/') in the container's filesystem.
|
|
2045
2046
|
// * The command is simply exec'd, it is NOT run inside a shell,
|
|
2046
2047
|
// * so traditional shell instructions ('|', etc) won't work.
|
|
@@ -2048,13 +2049,13 @@
|
|
|
2048
2049
|
// * Exit status of 0 is treated as live/healthy and non-zero is unhealthy. */
|
|
2049
2050
|
// postStartup?: string[] | undefined;
|
|
2050
2051
|
// /** Enable this setting to allow http (ie: non-SSL/TLS) requests in through the ingress controller without getting redirected to https.
|
|
2051
|
-
// *
|
|
2052
|
+
// *
|
|
2052
2053
|
// * That is, Setting this to true will prevent the ingress controller from invoking an automatic redirect to https on any inbound http requests. */
|
|
2053
2054
|
// allowHttp?: boolean | undefined;
|
|
2054
2055
|
// /** (Applies only when `hasIngress=true`, defaults to false, aka: external)
|
|
2055
2056
|
// * indicates whether this asset shall be available
|
|
2056
2057
|
// * only through the internal ingress controller.
|
|
2057
|
-
// *
|
|
2058
|
+
// *
|
|
2058
2059
|
// * NOTE: When set, this asset will only be accessible
|
|
2059
2060
|
// * on a cluster with an internal ingress controller. */
|
|
2060
2061
|
// ingressInternal?: boolean | undefined;
|
|
@@ -2063,26 +2064,26 @@
|
|
|
2063
2064
|
// * for domain mapping strategies
|
|
2064
2065
|
// * that place the "service" segment
|
|
2065
2066
|
// * into the url path.
|
|
2066
|
-
// *
|
|
2067
|
+
// *
|
|
2067
2068
|
// * *NOTE: Each entry must be unique within the enterprise,
|
|
2068
2069
|
// * cannot be null or empty,
|
|
2069
2070
|
// * cannot start or end with a slash character,
|
|
2070
2071
|
// * and must uniquely identify this asset within the enterprise.*
|
|
2071
|
-
// *
|
|
2072
|
+
// *
|
|
2072
2073
|
// * eg:
|
|
2073
|
-
// *
|
|
2074
|
+
// *
|
|
2074
2075
|
// * For a domain mapping strategy: `cab-dot-domain-slash-service`
|
|
2075
|
-
// *
|
|
2076
|
+
// *
|
|
2076
2077
|
// * and an asset with code: `my-api`
|
|
2077
|
-
// *
|
|
2078
|
+
// *
|
|
2078
2079
|
// * When `mydomain.com` gets applied to cabinet `dev`,
|
|
2079
2080
|
// * default ingress routing will yield: `dev.mydomain.com/my-api`
|
|
2080
|
-
// *
|
|
2081
|
+
// *
|
|
2081
2082
|
// * So. Adding a path `v1/the-api` to this property
|
|
2082
2083
|
// * will INSTEAD yield an ingress rule supporting this url:
|
|
2083
|
-
// *
|
|
2084
|
+
// *
|
|
2084
2085
|
// * `dev.domain.com/v1/the-api`
|
|
2085
|
-
// *
|
|
2086
|
+
// *
|
|
2086
2087
|
// * NOTE: *Adding paths to this list prevents the default ingress path (as `Asset.code`) from being mapped in the ingress. If you still want that behavior in the ingress rules, you will have to add it to this list.* */
|
|
2087
2088
|
// ingressPaths?: string[] | undefined;
|
|
2088
2089
|
// createdBy?: string | undefined;
|
|
@@ -2150,11 +2151,11 @@
|
|
|
2150
2151
|
// containerName: string;
|
|
2151
2152
|
// }
|
|
2152
2153
|
// /** A marketplace entity.
|
|
2153
|
-
// *
|
|
2154
|
+
// *
|
|
2154
2155
|
// * An abstract specification for an asset,
|
|
2155
2156
|
// * to be used as the instructions for the creation
|
|
2156
2157
|
// * of a concrete asset in an enterprise.
|
|
2157
|
-
// *
|
|
2158
|
+
// *
|
|
2158
2159
|
// * Allows the avilability to reuse an asset
|
|
2159
2160
|
// * in separate enterprises (and tenants). */
|
|
2160
2161
|
// export interface Kit {
|
|
@@ -2177,12 +2178,12 @@
|
|
|
2177
2178
|
// }
|
|
2178
2179
|
// /** Indicates who in the Codiac universe is allowed to view and use a Kit. */
|
|
2179
2180
|
// export enum KitAccessibilityEnum {
|
|
2180
|
-
// friends = "friends",
|
|
2181
|
-
// private = "private",
|
|
2181
|
+
// friends = "friends",
|
|
2182
|
+
// private = "private",
|
|
2182
2183
|
// public = "public"
|
|
2183
2184
|
// }
|
|
2184
|
-
// /** A shorthand view of the IanaPortNumber class.
|
|
2185
|
-
// * AKA: an association of a service with a single or range of port numbers.
|
|
2185
|
+
// /** A shorthand view of the IanaPortNumber class.
|
|
2186
|
+
// * AKA: an association of a service with a single or range of port numbers.
|
|
2186
2187
|
// * the IANA registry of port numbers:
|
|
2187
2188
|
// * "Service Name and Transport Protocol Port Number Registry" (ref: RFC6335)... */
|
|
2188
2189
|
// export interface KnownPortNumberAssignment {
|
|
@@ -2232,11 +2233,11 @@
|
|
|
2232
2233
|
// /** List of codenames for supported KeyValue stores.
|
|
2233
2234
|
// * eg: Clients for these types of stores are registered under these values. */
|
|
2234
2235
|
// export enum KvpStoreTypesEnum {
|
|
2235
|
-
// awsKeyVault = "awsKeyVault",
|
|
2236
|
-
// azBlob = "azBlob",
|
|
2237
|
-
// azKeyVault = "azKeyVault",
|
|
2238
|
-
// etcd = "etcd",
|
|
2239
|
-
// mongoCollection = "mongoCollection",
|
|
2236
|
+
// awsKeyVault = "awsKeyVault",
|
|
2237
|
+
// azBlob = "azBlob",
|
|
2238
|
+
// azKeyVault = "azKeyVault",
|
|
2239
|
+
// etcd = "etcd",
|
|
2240
|
+
// mongoCollection = "mongoCollection",
|
|
2240
2241
|
// mongoDocument = "mongoDocument"
|
|
2241
2242
|
// }
|
|
2242
2243
|
// export interface LogintoCloudProviderRequest {
|
|
@@ -2265,16 +2266,16 @@
|
|
|
2265
2266
|
// timestamps?: boolean | undefined;
|
|
2266
2267
|
// }
|
|
2267
2268
|
// export enum NativeDataTypeEnum {
|
|
2268
|
-
// boolean = "boolean",
|
|
2269
|
-
// float32 = "float32",
|
|
2270
|
-
// float64 = "float64",
|
|
2271
|
-
// int16 = "int16",
|
|
2272
|
-
// int32 = "int32",
|
|
2273
|
-
// int8 = "int8",
|
|
2274
|
-
// string = "string",
|
|
2275
|
-
// timestamp = "timestamp",
|
|
2276
|
-
// uint16 = "uint16",
|
|
2277
|
-
// uint32 = "uint32",
|
|
2269
|
+
// boolean = "boolean",
|
|
2270
|
+
// float32 = "float32",
|
|
2271
|
+
// float64 = "float64",
|
|
2272
|
+
// int16 = "int16",
|
|
2273
|
+
// int32 = "int32",
|
|
2274
|
+
// int8 = "int8",
|
|
2275
|
+
// string = "string",
|
|
2276
|
+
// timestamp = "timestamp",
|
|
2277
|
+
// uint16 = "uint16",
|
|
2278
|
+
// uint32 = "uint32",
|
|
2278
2279
|
// uint8 = "uint8"
|
|
2279
2280
|
// }
|
|
2280
2281
|
// export interface NodePlacement {
|
|
@@ -2286,7 +2287,7 @@
|
|
|
2286
2287
|
// nodeSelector?: object | undefined;
|
|
2287
2288
|
// /** Controls how Pods are spread across your cluster among failure-domains such as regions, zones, nodes,
|
|
2288
2289
|
// * and other user-defined topology domains.
|
|
2289
|
-
// *
|
|
2290
|
+
// *
|
|
2290
2291
|
// * This can help to achieve high availability as well as efficient resource utilization. */
|
|
2291
2292
|
// spread?: PodTopologySpreadConstraint[] | undefined;
|
|
2292
2293
|
// /** Semantic version range of the asset in which this node placement is applicable. */
|
|
@@ -2314,7 +2315,7 @@
|
|
|
2314
2315
|
// }
|
|
2315
2316
|
// /** Specifies the direction that a single property should be sorted. */
|
|
2316
2317
|
// export enum OrderEnum {
|
|
2317
|
-
// asc = "asc",
|
|
2318
|
+
// asc = "asc",
|
|
2318
2319
|
// desc = "desc"
|
|
2319
2320
|
// }
|
|
2320
2321
|
// export interface patchOperation {
|
|
@@ -2323,11 +2324,11 @@
|
|
|
2323
2324
|
// value: any;
|
|
2324
2325
|
// }
|
|
2325
2326
|
// export enum patchOperationType {
|
|
2326
|
-
// add = "add",
|
|
2327
|
-
// copy = "copy",
|
|
2328
|
-
// move = "move",
|
|
2329
|
-
// remove = "remove",
|
|
2330
|
-
// replace = "replace",
|
|
2327
|
+
// add = "add",
|
|
2328
|
+
// copy = "copy",
|
|
2329
|
+
// move = "move",
|
|
2330
|
+
// remove = "remove",
|
|
2331
|
+
// replace = "replace",
|
|
2331
2332
|
// test = "test"
|
|
2332
2333
|
// }
|
|
2333
2334
|
// /** The granting of privileges to a given Role. */
|
|
@@ -2336,7 +2337,7 @@
|
|
|
2336
2337
|
// privileges: Privilege[];
|
|
2337
2338
|
// }
|
|
2338
2339
|
// /** Instructs the kube-scheduler how to place each incoming Pod in relation to the existing Pods across your cluster.
|
|
2339
|
-
// *
|
|
2340
|
+
// *
|
|
2340
2341
|
// * These can be assigned at the pod level or at the cluster level ([via a KubeSchedulerConfiguration entity](https://v1-24.docs.kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/#cluster-level-default-constraints)). */
|
|
2341
2342
|
// export interface PodTopologySpreadConstraint {
|
|
2342
2343
|
// maxSkew: number;
|
|
@@ -2353,14 +2354,14 @@
|
|
|
2353
2354
|
// internal?: number | undefined;
|
|
2354
2355
|
// }
|
|
2355
2356
|
// /** A type of operation that a given Role is allowed to perform on a securable object.
|
|
2356
|
-
// *
|
|
2357
|
+
// *
|
|
2357
2358
|
// * IMPORTANT!!! Key names are `"camelCase"`, whereas the values are `"PascalCase"`.
|
|
2358
2359
|
// * This mismatching is the result of a late change after values had already been written the the production database. */
|
|
2359
2360
|
// export enum Privilege {
|
|
2360
|
-
// Create = "Create",
|
|
2361
|
-
// Delete = "Delete",
|
|
2362
|
-
// Execute = "Execute",
|
|
2363
|
-
// Read = "Read",
|
|
2361
|
+
// Create = "Create",
|
|
2362
|
+
// Delete = "Delete",
|
|
2363
|
+
// Execute = "Execute",
|
|
2364
|
+
// Read = "Read",
|
|
2364
2365
|
// Update = "Update"
|
|
2365
2366
|
// }
|
|
2366
2367
|
// /** Declares a probe action and when to run it against an asset. */
|
|
@@ -2369,7 +2370,7 @@
|
|
|
2369
2370
|
// asset: string;
|
|
2370
2371
|
// type: ProbeUsageTypesEnum;
|
|
2371
2372
|
// /** EITHER: Immutable unique human-readable identifier for a standard or otherwise predefined probe action.
|
|
2372
|
-
// *
|
|
2373
|
+
// *
|
|
2373
2374
|
// * OR: an inline probe action declaration. */
|
|
2374
2375
|
// action: ICommandLineProbeAction | IGrpcProbeAction | IHttpProbeAction | ISocketProbeAction | string;
|
|
2375
2376
|
// /** Semantic version range in which this probe is applicable. */
|
|
@@ -2386,7 +2387,7 @@
|
|
|
2386
2387
|
// * Default to 10 seconds. The minimum value is 1. */
|
|
2387
2388
|
// periodSeconds?: number | undefined;
|
|
2388
2389
|
// /** How long to wait (in seconds) for a probe to respond before declaring it a failed execution.
|
|
2389
|
-
// *
|
|
2390
|
+
// *
|
|
2390
2391
|
// * From [K8s docs](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes):
|
|
2391
2392
|
// * Number of seconds after which the probe times out.
|
|
2392
2393
|
// * Defaults to 1 second. Minimum value is 1. */
|
|
@@ -2396,7 +2397,7 @@
|
|
|
2396
2397
|
// * Must be 1 for liveness and startup Probes. Minimum value is 1. */
|
|
2397
2398
|
// successThreshold?: number | undefined;
|
|
2398
2399
|
// /** The number of probe executions to allow before determining the pod unhealthy.
|
|
2399
|
-
// *
|
|
2400
|
+
// *
|
|
2400
2401
|
// * From [K8s docs](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes):
|
|
2401
2402
|
// * After a probe fails failureThreshold times in a row, Kubernetes considers that the overall check has failed:
|
|
2402
2403
|
// * the container is not ready/healthy/live.
|
|
@@ -2416,16 +2417,16 @@
|
|
|
2416
2417
|
// }
|
|
2417
2418
|
// /** Type declaration for the Probe sub-class, determining the nature of its behavior and handling. */
|
|
2418
2419
|
// export enum ProbeActionTypesEnum {
|
|
2419
|
-
// exec = "exec",
|
|
2420
|
-
// grpc = "grpc",
|
|
2421
|
-
// http = "http",
|
|
2420
|
+
// exec = "exec",
|
|
2421
|
+
// grpc = "grpc",
|
|
2422
|
+
// http = "http",
|
|
2422
2423
|
// socket = "socket"
|
|
2423
2424
|
// }
|
|
2424
2425
|
// /** Declaration of what purpose the probe serves,
|
|
2425
2426
|
// * ie: where a probe is fired in the runtime lifecycle of an asset. */
|
|
2426
2427
|
// export enum ProbeUsageTypesEnum {
|
|
2427
|
-
// liveness = "liveness",
|
|
2428
|
-
// readiness = "readiness",
|
|
2428
|
+
// liveness = "liveness",
|
|
2429
|
+
// readiness = "readiness",
|
|
2429
2430
|
// startup = "startup"
|
|
2430
2431
|
// }
|
|
2431
2432
|
// /** Metadata for the credentials that a cluster will use when pulling images from an image registry.
|
|
@@ -2440,8 +2441,8 @@
|
|
|
2440
2441
|
// modified: Date;
|
|
2441
2442
|
// /** Applies to the creation of this instance of PullSecretRef, not necessarily the same as the secret itself in the secret store. */
|
|
2442
2443
|
// modifiedBy: string;
|
|
2443
|
-
// /** (Optional, defaults to `PullSecretScopesEnum.everywhere`)
|
|
2444
|
-
// * Declares the applicability of the pull secrets,
|
|
2444
|
+
// /** (Optional, defaults to `PullSecretScopesEnum.everywhere`)
|
|
2445
|
+
// * Declares the applicability of the pull secrets,
|
|
2445
2446
|
// * allowing teams to reserve the need for pullsecrets for just the cases
|
|
2446
2447
|
// * in which clusters have to cross CSP subscription boundaries to access the image registry. */
|
|
2447
2448
|
// scope?: "everywhere" | "unmatchingSubx" | undefined;
|
|
@@ -2515,7 +2516,7 @@
|
|
|
2515
2516
|
// }
|
|
2516
2517
|
// /** All the enterprises, assets, cabinets, environments, and clusters for a given tenant.
|
|
2517
2518
|
// * That is, a semi-detailed list of all the primary entities of a tenant's software organization.
|
|
2518
|
-
// *
|
|
2519
|
+
// *
|
|
2519
2520
|
// * NOTE: Though this is a domain entity, it is an emergent entity, so it will never need an id.
|
|
2520
2521
|
// * It gets assembled from the tenant code and is filtered within itself. */
|
|
2521
2522
|
// export interface RootMap {
|
|
@@ -2546,7 +2547,7 @@
|
|
|
2546
2547
|
// * "lastModified": "desc"
|
|
2547
2548
|
// * }
|
|
2548
2549
|
// * ```
|
|
2549
|
-
// *
|
|
2550
|
+
// *
|
|
2550
2551
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
2551
2552
|
// sort?: string[] | object | string | undefined;
|
|
2552
2553
|
// skip?: number | undefined;
|
|
@@ -2610,7 +2611,7 @@
|
|
|
2610
2611
|
// * "lastModified": "desc"
|
|
2611
2612
|
// * }
|
|
2612
2613
|
// * ```
|
|
2613
|
-
// *
|
|
2614
|
+
// *
|
|
2614
2615
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
2615
2616
|
// sort?: string[] | object | string | undefined;
|
|
2616
2617
|
// skip?: number | undefined;
|
|
@@ -2673,7 +2674,7 @@
|
|
|
2673
2674
|
// * "lastModified": "desc"
|
|
2674
2675
|
// * }
|
|
2675
2676
|
// * ```
|
|
2676
|
-
// *
|
|
2677
|
+
// *
|
|
2677
2678
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
2678
2679
|
// sort?: string[] | object | string | undefined;
|
|
2679
2680
|
// skip?: number | undefined;
|
|
@@ -2735,7 +2736,7 @@
|
|
|
2735
2736
|
// * "lastModified": "desc"
|
|
2736
2737
|
// * }
|
|
2737
2738
|
// * ```
|
|
2738
|
-
// *
|
|
2739
|
+
// *
|
|
2739
2740
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
2740
2741
|
// sort?: string[] | object | string | undefined;
|
|
2741
2742
|
// skip?: number | undefined;
|
|
@@ -2763,8 +2764,8 @@
|
|
|
2763
2764
|
// $not?: ScopeFilter | undefined;
|
|
2764
2765
|
// }
|
|
2765
2766
|
// export enum ScopeLevel {
|
|
2766
|
-
// cabinet = "cabinet",
|
|
2767
|
-
// enterprise = "enterprise",
|
|
2767
|
+
// cabinet = "cabinet",
|
|
2768
|
+
// enterprise = "enterprise",
|
|
2768
2769
|
// environment = "environment"
|
|
2769
2770
|
// }
|
|
2770
2771
|
// export interface SecretStore {
|
|
@@ -2802,7 +2803,7 @@
|
|
|
2802
2803
|
// * indictating which type of security account
|
|
2803
2804
|
// * will be used to identify the cluster and enforce its authorizations. */
|
|
2804
2805
|
// export enum SecurityAccountTypeEnum {
|
|
2805
|
-
// managedIdentity = "managedIdentity",
|
|
2806
|
+
// managedIdentity = "managedIdentity",
|
|
2806
2807
|
// servicePrincipal = "servicePrincipal"
|
|
2807
2808
|
// }
|
|
2808
2809
|
// /** Component-by-component history of a multi-step infrastructure provisioning operation. */
|
|
@@ -2836,7 +2837,7 @@
|
|
|
2836
2837
|
// * "lastModified": "desc"
|
|
2837
2838
|
// * }
|
|
2838
2839
|
// * ```
|
|
2839
|
-
// *
|
|
2840
|
+
// *
|
|
2840
2841
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
2841
2842
|
// sort?: string[] | object | string | undefined;
|
|
2842
2843
|
// skip?: number | undefined;
|
|
@@ -2874,24 +2875,24 @@
|
|
|
2874
2875
|
// }
|
|
2875
2876
|
// export interface T_1 {
|
|
2876
2877
|
// }
|
|
2877
|
-
// /** Hierarchy of opCodes by which status messages
|
|
2878
|
-
// * will be marked within the overall correlation.
|
|
2879
|
-
// *
|
|
2880
|
-
// * In other words, a user-friendly rendition of the intended call stack,
|
|
2881
|
-
// * so that real-time status messages can be rendered in sequential order
|
|
2878
|
+
// /** Hierarchy of opCodes by which status messages
|
|
2879
|
+
// * will be marked within the overall correlation.
|
|
2880
|
+
// *
|
|
2881
|
+
// * In other words, a user-friendly rendition of the intended call stack,
|
|
2882
|
+
// * so that real-time status messages can be rendered in sequential order
|
|
2882
2883
|
// * by any client listening to the status stream. */
|
|
2883
2884
|
// export interface TaskMap {
|
|
2884
|
-
// /** Human-readable identifier for the operation
|
|
2885
|
-
// * being described by this object.
|
|
2886
|
-
// *
|
|
2887
|
-
// * Must be 1-40 alphanumeric or underscore characters,
|
|
2888
|
-
// * no spaces or special characters
|
|
2885
|
+
// /** Human-readable identifier for the operation
|
|
2886
|
+
// * being described by this object.
|
|
2887
|
+
// *
|
|
2888
|
+
// * Must be 1-40 alphanumeric or underscore characters,
|
|
2889
|
+
// * no spaces or special characters
|
|
2889
2890
|
// * (RegEx: `/^\w{1,40}$/` or: `/^[A-Za-z0-9_]{1,40}$/`). */
|
|
2890
2891
|
// opCode: string;
|
|
2891
|
-
// /** Friendly, plain-language, present-tense heading for the operation,
|
|
2892
|
-
// * verb-"ing"-noun, and with NO trailing ellipsis.
|
|
2893
|
-
// * eg: `"Creating cluster"`
|
|
2894
|
-
// *
|
|
2892
|
+
// /** Friendly, plain-language, present-tense heading for the operation,
|
|
2893
|
+
// * verb-"ing"-noun, and with NO trailing ellipsis.
|
|
2894
|
+
// * eg: `"Creating cluster"`
|
|
2895
|
+
// *
|
|
2895
2896
|
// * *(aka: present-participle, or gerund)*. */
|
|
2896
2897
|
// opIngTitle: string;
|
|
2897
2898
|
// /** (optional) The ordered list of sub processes called by this one. */
|
|
@@ -2901,7 +2902,7 @@
|
|
|
2901
2902
|
// }
|
|
2902
2903
|
// /** Type definition for config objects
|
|
2903
2904
|
// * (eg: config files, environment variables, Asset properties, etc)
|
|
2904
|
-
// *
|
|
2905
|
+
// *
|
|
2905
2906
|
// * (TBD: Duck-typeable/convertible to a Json Type Definition (JTD) or a JsonSchema) */
|
|
2906
2907
|
// export interface TypeDefBase {
|
|
2907
2908
|
// }
|
|
@@ -2913,7 +2914,7 @@
|
|
|
2913
2914
|
// /** Archived identifier for a Toyhauler user and their accumulated tenant tokens.
|
|
2914
2915
|
// * NOTE: This data is simply archived and is likely to be stale,
|
|
2915
2916
|
// * so it should be refreshed frequently.
|
|
2916
|
-
// *
|
|
2917
|
+
// *
|
|
2917
2918
|
// * TODO: Crud the stored tenant contexts */
|
|
2918
2919
|
// export interface UserContext {
|
|
2919
2920
|
// currentTenantCode?: string | undefined;
|
|
@@ -3358,10 +3359,10 @@
|
|
|
3358
3359
|
// }
|
|
3359
3360
|
// /** Kubernetes
|
|
3360
3361
|
// * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3361
|
-
// *
|
|
3362
|
+
// *
|
|
3362
3363
|
// * The version of the OpenAPI document: release-1.24
|
|
3363
|
-
// *
|
|
3364
|
-
// *
|
|
3364
|
+
// *
|
|
3365
|
+
// *
|
|
3365
3366
|
// * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3366
3367
|
// * https://openapi-generator.tech
|
|
3367
3368
|
// * Do not edit the class manually. */
|
|
@@ -3859,10 +3860,10 @@
|
|
|
3859
3860
|
// failureThreshold?: number | undefined;
|
|
3860
3861
|
// /** Kubernetes
|
|
3861
3862
|
// * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3862
|
-
// *
|
|
3863
|
+
// *
|
|
3863
3864
|
// * The version of the OpenAPI document: release-1.24
|
|
3864
|
-
// *
|
|
3865
|
-
// *
|
|
3865
|
+
// *
|
|
3866
|
+
// *
|
|
3866
3867
|
// * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3867
3868
|
// * https://openapi-generator.tech
|
|
3868
3869
|
// * Do not edit the class manually. */
|
|
@@ -4236,7 +4237,7 @@
|
|
|
4236
4237
|
// runAsUserName?: string | undefined;
|
|
4237
4238
|
// }
|
|
4238
4239
|
// /** Credentials applied to new Windows VMs to enable administrative capabilities required for cluster management.
|
|
4239
|
-
// *
|
|
4240
|
+
// *
|
|
4240
4241
|
// * Backward compatibility for a legacy image format called "Windows",
|
|
4241
4242
|
// * which is required to run outdated Microsoft proprietary software
|
|
4242
4243
|
// * such as Microsoft WCF and classic .Net Framework applications.
|
|
@@ -4252,13 +4253,13 @@
|
|
|
4252
4253
|
// scope: ScopeLevel;
|
|
4253
4254
|
// target: string;
|
|
4254
4255
|
// /** A time signature declaring an hour of the day for a day of the week (eg: "Mondays at 8am").
|
|
4255
|
-
// *
|
|
4256
|
+
// *
|
|
4256
4257
|
// * This entity is NOT an actual in time, but instead is essentially a template,
|
|
4257
4258
|
// * which, only when applied to an actual calendar,
|
|
4258
4259
|
// * can then produce a concrete point in time. */
|
|
4259
4260
|
// start: object;
|
|
4260
4261
|
// /** A time signature declaring an hour of the day for a day of the week (eg: "Mondays at 8am").
|
|
4261
|
-
// *
|
|
4262
|
+
// *
|
|
4262
4263
|
// * This entity is NOT an actual in time, but instead is essentially a template,
|
|
4263
4264
|
// * which, only when applied to an actual calendar,
|
|
4264
4265
|
// * can then produce a concrete point in time. */
|
|
@@ -4295,7 +4296,7 @@
|
|
|
4295
4296
|
// * "lastModified": "desc"
|
|
4296
4297
|
// * }
|
|
4297
4298
|
// * ```
|
|
4298
|
-
// *
|
|
4299
|
+
// *
|
|
4299
4300
|
// * NOTE: Regarding sort field order, (aka: `asc|desc`) : Sort field names can be specified as EITHER: field name alone (implies asc order), eg: `"favColor"`, OR field name with order suffix `asc|desc` (delimited by tilde). eg: `"favColor~desc"`. */
|
|
4300
4301
|
// sort?: string[] | object | string | undefined;
|
|
4301
4302
|
// skip?: number | undefined;
|
|
@@ -4675,7 +4676,7 @@
|
|
|
4675
4676
|
// // GENERICS
|
|
4676
4677
|
// //
|
|
4677
4678
|
// // ============================================================================================
|
|
4678
|
-
// // Dictionary
|
|
4679
|
+
// // Dictionary
|
|
4679
4680
|
// // [any]
|
|
4680
4681
|
// // [Partial<AuthRole>]
|
|
4681
4682
|
// // [Partial<Cabinet>]
|
|
@@ -4691,6 +4692,6 @@
|
|
|
4691
4692
|
// // [Partial<ScopedSetting>]
|
|
4692
4693
|
// // [Partial<SetupJournal>]
|
|
4693
4694
|
// // [Partial<ZombiePeriod>]
|
|
4694
|
-
// //
|
|
4695
|
+
// //
|
|
4695
4696
|
// // Total contract count: 372
|
|
4696
4697
|
//# sourceMappingURL=contracts-legacy.js.map
|