agent-claw: automated task changes
This commit is contained in:
39
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.d.ts
generated
vendored
Normal file
39
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.d.ts
generated
vendored
Normal 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;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.js
generated
vendored
Normal 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;
|
||||
Reference in New Issue
Block a user