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

13
cdk/node_modules/aws-cdk-lib/aws-iot/.jsiirc.json generated vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"targets": {
"java": {
"package": "software.amazon.awscdk.services.iot"
},
"dotnet": {
"namespace": "Amazon.CDK.AWS.IoT"
},
"python": {
"module": "aws_cdk.aws_iot"
}
}
}

32
cdk/node_modules/aws-cdk-lib/aws-iot/README.md generated vendored Normal file
View File

@@ -0,0 +1,32 @@
# AWS IoT Construct Library
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as iot from 'aws-cdk-lib/aws-iot';
```
<!--BEGIN CFNONLY DISCLAIMER-->
There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed:
- Search [Construct Hub for IoT construct libraries](https://constructs.dev/search?q=iot)
- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::IoT resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_IoT.html) directly.
> An experimental construct library for this service is available in preview. Since it is not stable yet, it is distributed
> as a separate package so that you can pin its version independently of the rest of the CDK. See the package:
>
> <span class="package-reference">@aws-cdk/aws-iot-alpha</span>
<!--BEGIN CFNONLY DISCLAIMER-->
There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet.
However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly.
For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::IoT](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_IoT.html).
(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.)
<!--END CFNONLY DISCLAIMER-->

1
cdk/node_modules/aws-cdk-lib/aws-iot/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from './lib';

1
cdk/node_modules/aws-cdk-lib/aws-iot/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
cdk/node_modules/aws-cdk-lib/aws-iot/lib/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from './iot.generated';

1
cdk/node_modules/aws-cdk-lib/aws-iot/lib/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,28 @@
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class IoTMetrics {
static topicMatchSum(this: void, dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static parseErrorSum(this: void, dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static ruleEvaluationThrottledSum(this: void, dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
static ruleNotFoundSum(this: void, dimensions: {
RuleName: string;
}): MetricWithDims<{
RuleName: string;
}>;
}

View File

@@ -0,0 +1 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.IoTMetrics=void 0;class IoTMetrics{static topicMatchSum(dimensions){return{namespace:"AWS/IoT",metricName:"TopicMatch",dimensionsMap:dimensions,statistic:"Sum"}}static parseErrorSum(dimensions){return{namespace:"AWS/IoT",metricName:"ParseError",dimensionsMap:dimensions,statistic:"Sum"}}static ruleEvaluationThrottledSum(dimensions){return{namespace:"AWS/IoT",metricName:"RuleEvaluationThrottled",dimensionsMap:dimensions,statistic:"Sum"}}static ruleNotFoundSum(dimensions){return{namespace:"AWS/IoT",metricName:"RuleNotFound",dimensionsMap:dimensions,statistic:"Sum"}}}exports.IoTMetrics=IoTMetrics;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long