@codiac.io/codiac-cli 1.3.168 → 1.3.169

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 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.168 linux-x64 node-v22.15.1
24
+ @codiac.io/codiac-cli/1.3.169 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* () {