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 @@
export * from './iotthingsgraph.generated';

View File

@@ -0,0 +1 @@
"use strict";var __createBinding=exports&&exports.__createBinding||(Object.create?(function(o,m,k,k2){k2===void 0&&(k2=k);var desc=Object.getOwnPropertyDescriptor(m,k);(!desc||("get"in desc?!m.__esModule:desc.writable||desc.configurable))&&(desc={enumerable:!0,get:function(){return m[k]}}),Object.defineProperty(o,k2,desc)}):(function(o,m,k,k2){k2===void 0&&(k2=k),o[k2]=m[k]})),__exportStar=exports&&exports.__exportStar||function(m,exports2){for(var p in m)p!=="default"&&!Object.prototype.hasOwnProperty.call(exports2,p)&&__createBinding(exports2,m,p)};Object.defineProperty(exports,"__esModule",{value:!0});var _noFold;exports.CfnFlowTemplate=void 0,Object.defineProperty(exports,_noFold="CfnFlowTemplate",{enumerable:!0,configurable:!0,get:()=>{var value=require("./iotthingsgraph.generated").CfnFlowTemplate;return Object.defineProperty(exports,_noFold="CfnFlowTemplate",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,94 @@
import * as cdk from "../../core/lib";
import * as constructs from "constructs";
import * as cfn_parse from "../../core/lib/helpers-internal";
import { FlowTemplateReference, IFlowTemplateRef } from "../../interfaces/generated/aws-iotthingsgraph-interfaces.generated";
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html.
*
* @cloudformationResource AWS::IoTThingsGraph::FlowTemplate
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html
*/
export declare class CfnFlowTemplate extends cdk.CfnResource implements cdk.IInspectable, IFlowTemplateRef {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnFlowTemplate from CloudFormation properties
*
* A factory method that creates a new instance of this class from an object
* containing the CloudFormation properties of this resource.
* Used in the @aws-cdk/cloudformation-include module.
*
* @internal
*/
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnFlowTemplate;
/**
* Checks whether the given object is a CfnFlowTemplate
*/
static isCfnFlowTemplate(x: any): x is CfnFlowTemplate;
private _compatibleNamespaceVersion?;
private _definition;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::IoTThingsGraph::FlowTemplate`.
*
* @param scope Scope in which this resource is defined
* @param id Construct identifier for this resource (unique in its scope)
* @param props Resource properties
*/
constructor(scope: constructs.Construct, id: string, props: CfnFlowTemplateProps);
get flowTemplateRef(): FlowTemplateReference;
get compatibleNamespaceVersion(): number | undefined;
set compatibleNamespaceVersion(value: number | undefined);
get definition(): CfnFlowTemplate.DefinitionDocumentProperty | cdk.IResolvable;
set definition(value: CfnFlowTemplate.DefinitionDocumentProperty | cdk.IResolvable);
/**
* @cloudformationAttribute Id
*/
get attrId(): string;
protected get cfnProperties(): Record<string, any>;
/**
* Examines the CloudFormation resource and discloses attributes
*
* @param inspector tree inspector to collect and process attributes
*/
inspect(inspector: cdk.TreeInspector): void;
protected renderProperties(props: Record<string, any>): Record<string, any>;
}
export declare namespace CfnFlowTemplate {
/**
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html
*/
interface DefinitionDocumentProperty {
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-language
*/
readonly language: string;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotthingsgraph-flowtemplate-definitiondocument.html#cfn-iotthingsgraph-flowtemplate-definitiondocument-text
*/
readonly text: string;
}
}
/**
* Properties for defining a `CfnFlowTemplate`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html
*/
export interface CfnFlowTemplateProps {
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-compatiblenamespaceversion
*/
readonly compatibleNamespaceVersion?: number;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotthingsgraph-flowtemplate.html#cfn-iotthingsgraph-flowtemplate-definition
*/
readonly definition: CfnFlowTemplate.DefinitionDocumentProperty | cdk.IResolvable;
}
export type { IFlowTemplateRef, FlowTemplateReference };

File diff suppressed because one or more lines are too long