agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,79 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a Volume.
*
* @stability experimental
*/
export interface IVolumeRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Volume resource.
*/
readonly volumeRef: VolumeReference;
}
/**
* A reference to a Volume resource.
*
* @struct
* @stability external
*/
export interface VolumeReference {
/**
* The VolumeId of the Volume resource.
*/
readonly volumeId: string;
}
/**
* Indicates that this resource can be referenced as a VolumeAssociation.
*
* @stability experimental
*/
export interface IVolumeAssociationRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a VolumeAssociation resource.
*/
readonly volumeAssociationRef: VolumeAssociationReference;
}
/**
* A reference to a VolumeAssociation resource.
*
* @struct
* @stability external
*/
export interface VolumeAssociationReference {
/**
* The WorkspaceInstanceId of the VolumeAssociation resource.
*/
readonly workspaceInstanceId: string;
/**
* The VolumeId of the VolumeAssociation resource.
*/
readonly volumeId: string;
/**
* The Device of the VolumeAssociation resource.
*/
readonly device: string;
}
/**
* Indicates that this resource can be referenced as a WorkspaceInstance.
*
* @stability experimental
*/
export interface IWorkspaceInstanceRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a WorkspaceInstance resource.
*/
readonly workspaceInstanceRef: WorkspaceInstanceReference;
}
/**
* A reference to a WorkspaceInstance resource.
*
* @struct
* @stability external
*/
export interface WorkspaceInstanceReference {
/**
* The WorkspaceInstanceId of the WorkspaceInstance resource.
*/
readonly workspaceInstanceId: string;
}