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,39 @@
import type { Construct } from 'constructs';
import * as codepipeline from '../../../aws-codepipeline';
import { Action } from '../action';
/**
* Construction properties of the `ServiceCatalogDeployActionBeta1 ServiceCatalog deploy CodePipeline Action`.
*/
export interface ServiceCatalogDeployActionBeta1Props extends codepipeline.CommonAwsActionProps {
/**
* The path to the cloudformation artifact.
*/
readonly templatePath: codepipeline.ArtifactPath;
/**
* The name of the version of the Service Catalog product to be deployed.
*/
readonly productVersionName: string;
/**
* The optional description of this version of the Service Catalog product.
* @default ''
*/
readonly productVersionDescription?: string;
/**
* The identifier of the product in the Service Catalog. This product must already exist.
*/
readonly productId: string;
}
/**
* CodePipeline action to connect to an existing ServiceCatalog product.
*
* **Note**: this class is still experimental, and may have breaking changes in the future!
*/
export declare class ServiceCatalogDeployActionBeta1 extends Action {
private readonly templatePath;
private readonly productVersionName;
private readonly productVersionDescription?;
private readonly productId;
private readonly productType;
constructor(props: ServiceCatalogDeployActionBeta1Props);
protected bound(_scope: Construct, _stage: codepipeline.IStage, options: codepipeline.ActionBindOptions): codepipeline.ActionConfig;
}

View File

@@ -0,0 +1 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ServiceCatalogDeployActionBeta1=void 0;var jsiiDeprecationWarnings=()=>{var tmp=require("../../../.warnings.jsii.js");return jsiiDeprecationWarnings=()=>tmp,tmp};const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti");var codepipeline=()=>{var tmp=require("../../../aws-codepipeline");return codepipeline=()=>tmp,tmp},iam=()=>{var tmp=require("../../../aws-iam");return iam=()=>tmp,tmp},action_1=()=>{var tmp=require("../action");return action_1=()=>tmp,tmp};class ServiceCatalogDeployActionBeta1 extends action_1().Action{static[JSII_RTTI_SYMBOL_1]={fqn:"aws-cdk-lib.aws_codepipeline_actions.ServiceCatalogDeployActionBeta1",version:"2.252.0"};templatePath;productVersionName;productVersionDescription;productId;productType;constructor(props){super({...props,provider:"ServiceCatalog",category:codepipeline().ActionCategory.DEPLOY,artifactBounds:{minInputs:1,maxInputs:1,minOutputs:0,maxOutputs:0},inputs:[props.templatePath.artifact]});try{jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_actions_ServiceCatalogDeployActionBeta1Props(props)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,ServiceCatalogDeployActionBeta1),error}this.templatePath=props.templatePath.fileName,this.productVersionName=props.productVersionName,this.productVersionDescription=props.productVersionDescription,this.productId=props.productId,this.productType="CLOUD_FORMATION_TEMPLATE"}bound(_scope,_stage,options){try{jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_IStage(_stage),jsiiDeprecationWarnings().aws_cdk_lib_aws_codepipeline_ActionBindOptions(options)}catch(error){throw process.env.JSII_DEBUG!=="1"&&error.name==="DeprecationError"&&Error.captureStackTrace(error,this.bound),error}return options.role.addManagedPolicy(iam().ManagedPolicy.fromAwsManagedPolicyName("AWSServiceCatalogAdminFullAccess")),options.bucket.grantRead(options.role),{configuration:{TemplateFilePath:this.templatePath,ProductVersionName:this.productVersionName,ProductVersionDescription:this.productVersionDescription,ProductType:this.productType,ProductId:this.productId}}}}exports.ServiceCatalogDeployActionBeta1=ServiceCatalogDeployActionBeta1;