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-emr/.jsiirc.json generated vendored Normal file
View File

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

27
cdk/node_modules/aws-cdk-lib/aws-emr/README.md generated vendored Normal file
View File

@@ -0,0 +1,27 @@
# Amazon EMR Construct Library
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as emr from 'aws-cdk-lib/aws-emr';
```
<!--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 EMR construct libraries](https://constructs.dev/search?q=emr)
- 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::EMR resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_EMR.html) directly.
<!--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::EMR](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_EMR.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-emr/index.d.ts generated vendored Normal file
View File

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

1
cdk/node_modules/aws-cdk-lib/aws-emr/index.js generated vendored Normal file
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.CfnCluster=void 0,Object.defineProperty(exports,_noFold="CfnCluster",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnCluster;return Object.defineProperty(exports,_noFold="CfnCluster",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnInstanceFleetConfig=void 0,Object.defineProperty(exports,_noFold="CfnInstanceFleetConfig",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnInstanceFleetConfig;return Object.defineProperty(exports,_noFold="CfnInstanceFleetConfig",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnInstanceGroupConfig=void 0,Object.defineProperty(exports,_noFold="CfnInstanceGroupConfig",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnInstanceGroupConfig;return Object.defineProperty(exports,_noFold="CfnInstanceGroupConfig",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnSecurityConfiguration=void 0,Object.defineProperty(exports,_noFold="CfnSecurityConfiguration",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnSecurityConfiguration;return Object.defineProperty(exports,_noFold="CfnSecurityConfiguration",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStep=void 0,Object.defineProperty(exports,_noFold="CfnStep",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnStep;return Object.defineProperty(exports,_noFold="CfnStep",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStudio=void 0,Object.defineProperty(exports,_noFold="CfnStudio",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnStudio;return Object.defineProperty(exports,_noFold="CfnStudio",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStudioSessionMapping=void 0,Object.defineProperty(exports,_noFold="CfnStudioSessionMapping",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnStudioSessionMapping;return Object.defineProperty(exports,_noFold="CfnStudioSessionMapping",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnWALWorkspace=void 0,Object.defineProperty(exports,_noFold="CfnWALWorkspace",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnWALWorkspace;return Object.defineProperty(exports,_noFold="CfnWALWorkspace",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,258 @@
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class ElasticMapReduceMetrics {
static appsCompletedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static appsFailedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static appsKilledSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static appsPendingSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static appsRunningSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static appsSubmittedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static backupFailedAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static capacityRemainingGbSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static containerAllocatedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static containerPendingSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static containerPendingRatioSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static containerReservedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static coreNodesPendingAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static coreNodesRunningAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static corruptBlocksSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static hbaseBackupFailedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static hdfsBytesReadSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static hdfsBytesWrittenSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static hdfsUtilizationAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static isIdleAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static jobsFailedAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static jobsRunningAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static liveDataNodesAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static liveTaskTrackersAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mapSlotsOpenAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static memoryAllocatedMbSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static memoryReservedMbSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static memoryTotalMbSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static missingBlocksAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mostRecentBackupDurationAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrActiveNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrDecommissionedNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrLostNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrRebootedNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrTotalNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static mrUnhealthyNodesSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static multiMasterInstanceGroupNodesRequestedSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static multiMasterInstanceGroupNodesRunningSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static multiMasterInstanceGroupNodesRunningPercentageAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static pendingDeletionBlocksSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static reduceSlotsOpenAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static remainingMapTasksPerSlotAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static s3BytesReadSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static s3BytesWrittenSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static taskNodesPendingAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static taskNodesRunningAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static timeSinceLastSuccessfulBackupAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static totalLoadAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static underReplicatedBlocksSum(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
static yarnMemoryAvailablePercentageAverage(this: void, dimensions: {
JobFlowId: string;
}): MetricWithDims<{
JobFlowId: string;
}>;
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

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

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

1
cdk/node_modules/aws-cdk-lib/aws-emr/lib/index.js generated vendored Normal file
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.CfnCluster=void 0,Object.defineProperty(exports,_noFold="CfnCluster",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnCluster;return Object.defineProperty(exports,_noFold="CfnCluster",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnInstanceFleetConfig=void 0,Object.defineProperty(exports,_noFold="CfnInstanceFleetConfig",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnInstanceFleetConfig;return Object.defineProperty(exports,_noFold="CfnInstanceFleetConfig",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnInstanceGroupConfig=void 0,Object.defineProperty(exports,_noFold="CfnInstanceGroupConfig",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnInstanceGroupConfig;return Object.defineProperty(exports,_noFold="CfnInstanceGroupConfig",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnSecurityConfiguration=void 0,Object.defineProperty(exports,_noFold="CfnSecurityConfiguration",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnSecurityConfiguration;return Object.defineProperty(exports,_noFold="CfnSecurityConfiguration",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStep=void 0,Object.defineProperty(exports,_noFold="CfnStep",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnStep;return Object.defineProperty(exports,_noFold="CfnStep",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStudio=void 0,Object.defineProperty(exports,_noFold="CfnStudio",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnStudio;return Object.defineProperty(exports,_noFold="CfnStudio",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnStudioSessionMapping=void 0,Object.defineProperty(exports,_noFold="CfnStudioSessionMapping",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnStudioSessionMapping;return Object.defineProperty(exports,_noFold="CfnStudioSessionMapping",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnWALWorkspace=void 0,Object.defineProperty(exports,_noFold="CfnWALWorkspace",{enumerable:!0,configurable:!0,get:()=>{var value=require("./emr.generated").CfnWALWorkspace;return Object.defineProperty(exports,_noFold="CfnWALWorkspace",{enumerable:!0,configurable:!0,value}),value}});