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,13 @@
{
"targets": {
"java": {
"package": "software.amazon.awscdk.services.sagemaker"
},
"dotnet": {
"namespace": "Amazon.CDK.AWS.Sagemaker"
},
"python": {
"module": "aws_cdk.aws_sagemaker"
}
}
}

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

@@ -0,0 +1,32 @@
# Amazon SageMaker Construct Library
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as sagemaker from 'aws-cdk-lib/aws-sagemaker';
```
<!--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 SageMaker construct libraries](https://constructs.dev/search?q=sagemaker)
- 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::SageMaker resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SageMaker.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-sagemaker-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::SageMaker](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SageMaker.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-->

View File

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

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

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,25 @@
import type * as iam from '../../aws-iam';
import type { IResource } from '../../core';
import type { IEndpointRef } from '../../interfaces/generated/aws-sagemaker-interfaces.generated';
/**
* The interface for a SageMaker Endpoint resource.
*/
export interface IEndpoint extends IResource, IEndpointRef {
/**
* The ARN of the endpoint.
*
* @attribute
*/
readonly endpointArn: string;
/**
* The name of the endpoint.
*
* @attribute
*/
readonly endpointName: string;
/**
* Permits an IAM principal to invoke this endpoint
* @param grantee The principal to grant access to
*/
grantInvoke(grantee: iam.IGrantable): iam.Grant;
}

View File

@@ -0,0 +1 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});

View File

@@ -0,0 +1,3 @@
export * from './sagemaker.generated';
export * from './endpoint';
export * from './pipeline';

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,25 @@
import type { Grant, IGrantable } from '../../aws-iam';
import type { IResource } from '../../core';
import type { IPipelineRef } from '../../interfaces/generated/aws-sagemaker-interfaces.generated';
/**
* The interface for a SageMaker Pipeline resource.
*/
export interface IPipeline extends IResource, IPipelineRef {
/**
* The ARN of the pipeline.
*
* @attribute
*/
readonly pipelineArn: string;
/**
* The name of the pipeline.
*
* @attribute
*/
readonly pipelineName: string;
/**
* Permits an IAM principal to start this pipeline execution
* @param grantee The principal to grant access to
*/
grantStartPipelineExecution(grantee: IGrantable): Grant;
}

View File

@@ -0,0 +1 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});

View File

@@ -0,0 +1,50 @@
export interface MetricWithDims<D> {
readonly namespace: string;
readonly metricName: string;
readonly statistic: string;
readonly dimensionsMap: D;
}
export declare class SageMakerMetrics {
static invocationsSum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
static invocation5XxErrorsSum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
static invocation4XxErrorsSum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
static invocationsPerInstanceSum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
static modelLatencySum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
static overheadLatencySum(this: void, dimensions: {
EndpointName: string;
VariantName: string;
}): MetricWithDims<{
EndpointName: string;
VariantName: string;
}>;
}

View File

@@ -0,0 +1 @@
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SageMakerMetrics=void 0;class SageMakerMetrics{static invocationsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocations",dimensionsMap:dimensions,statistic:"Sum"}}static invocation5XxErrorsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocation5XXErrors",dimensionsMap:dimensions,statistic:"Sum"}}static invocation4XxErrorsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocation4XXErrors",dimensionsMap:dimensions,statistic:"Sum"}}static invocationsPerInstanceSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"InvocationsPerInstance",dimensionsMap:dimensions,statistic:"Sum"}}static modelLatencySum(dimensions){return{namespace:"AWS/SageMaker",metricName:"ModelLatency",dimensionsMap:dimensions,statistic:"Sum"}}static overheadLatencySum(dimensions){return{namespace:"AWS/SageMaker",metricName:"OverheadLatency",dimensionsMap:dimensions,statistic:"Sum"}}}exports.SageMakerMetrics=SageMakerMetrics;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long