@codiac.io/codiac-cli 1.3.168 → 1.3.170
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-relay/gen/client.d.ts +3 -1
- package/dist/apis/codiac-relay/gen/client.js +6 -0
- package/dist/apis/codiac-relay/gen/client.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts/types.gen.d.ts +17 -0
- package/dist/apis/codiac-relay/gen/contracts/types.gen.js.map +1 -1
- package/dist/apis/codiac-relay-nats/gen/client.d.ts +2 -0
- package/dist/apis/codiac-relay-nats/gen/client.js +7 -0
- package/dist/apis/codiac-relay-nats/gen/client.js.map +1 -1
- package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.d.ts +17 -0
- package/dist/apis/codiac-relay-nats/gen/contracts/types.gen.js.map +1 -1
- package/dist/codiac-constants.d.ts +2 -0
- package/dist/codiac-constants.js +2 -0
- package/dist/codiac-constants.js.map +1 -1
- package/dist/commands/cluster/stack/capture.d.ts +24 -0
- package/dist/commands/cluster/stack/capture.js +109 -0
- package/dist/commands/cluster/stack/capture.js.map +1 -0
- package/oclif.manifest.json +62 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
|
|
|
21
21
|
$ codiac COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ codiac (--version|-v)
|
|
24
|
-
@codiac.io/codiac-cli/1.3.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.170 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -45,7 +45,7 @@ export declare class RelayClient extends ApiCrudClientBase implements IRelayClie
|
|
|
45
45
|
SetupJournal: SetupJournalCruds;
|
|
46
46
|
ZombiePeriod: ZombiePeriodCruds;
|
|
47
47
|
}
|
|
48
|
-
import { AuthRole, AuthRoleCriteria, CspLogoutRequest, CspLogoutResponse, DefaultChildAcl, DefaultChildAclCriteria, EntityAcl, EntityAclCriteria, ExecuteClusterInitRequestAsync, ExecuteClusterDeinitRequestAsync } from "../contracts";
|
|
48
|
+
import { AuthRole, AuthRoleCriteria, CspLogoutRequest, CspLogoutResponse, DefaultChildAcl, DefaultChildAclCriteria, EntityAcl, EntityAclCriteria, ExecuteClusterInitRequestAsync, ExecuteClusterDeinitRequestAsync, ClusterStackCaptureRequest, ClusterStackMeta } from "../contracts";
|
|
49
49
|
declare class AuthOperations {
|
|
50
50
|
private core;
|
|
51
51
|
protected logger: IBetterLogger;
|
|
@@ -798,6 +798,8 @@ import { AccessGrant, ActivateBusListenerRequest, ApiReadyState, AssetConfigSche
|
|
|
798
798
|
declare class OtherOperations {
|
|
799
799
|
private core;
|
|
800
800
|
constructor(core: ApiCrudClientBase);
|
|
801
|
+
/** Fetches, creates, and configures each component of the given cluster stack. */
|
|
802
|
+
clusterStackCapture(request: ClusterStackCaptureRequest, options?: IRepoOptions): Promise<SingleResult<ClusterStackMeta>>;
|
|
801
803
|
/** Includes the given cluster within the given environment. */
|
|
802
804
|
EnvironmentClusterAttach(request: ClusterAttachRequest, options?: IRepoOptions): Promise<SingleResult<Partial<Environment>>>;
|
|
803
805
|
/** Removes the linkage between the given environment and the given cluster. */
|
|
@@ -5065,6 +5065,12 @@ class OtherOperations {
|
|
|
5065
5065
|
this.core = core;
|
|
5066
5066
|
}
|
|
5067
5067
|
;
|
|
5068
|
+
/** Fetches, creates, and configures each component of the given cluster stack. */
|
|
5069
|
+
clusterStackCapture(request, options) {
|
|
5070
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
5071
|
+
return yield this.core.makeAnyRestCall({ entityTypeName: "", isMany: false, op: "clusterStackCapture", route: "/execute-cluster-stack-capture", verb: codiac_common_1.httpRestVerb.POST }, request, options);
|
|
5072
|
+
});
|
|
5073
|
+
}
|
|
5068
5074
|
/** Includes the given cluster within the given environment. */
|
|
5069
5075
|
EnvironmentClusterAttach(request, options) {
|
|
5070
5076
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|