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

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

39
cdk/node_modules/aws-cdk-lib/aws-billing/README.md generated vendored Normal file
View File

@@ -0,0 +1,39 @@
# AWS::Billing Construct Library
<!--BEGIN STABILITY BANNER-->
---
![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge)
> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use.
>
> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib
---
<!--END STABILITY BANNER-->
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
```ts nofixture
import * as billing from 'aws-cdk-lib/aws-billing';
```
<!--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 Billing construct libraries](https://constructs.dev/search?q=billing)
- 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::Billing resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_Billing.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::Billing](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_Billing.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-billing/index.d.ts generated vendored Normal file
View File

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

1
cdk/node_modules/aws-cdk-lib/aws-billing/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.CfnBillingView=void 0,Object.defineProperty(exports,_noFold="CfnBillingView",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnBillingView;return Object.defineProperty(exports,_noFold="CfnBillingView",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,272 @@
import * as cdk from "../../core/lib";
import * as constructs from "constructs";
import * as cfn_parse from "../../core/lib/helpers-internal";
import { BillingViewReference, IBillingViewRef } from "../../interfaces/generated/aws-billing-interfaces.generated";
/**
* Creates a billing view with the specified billing view attributes.
*
* @cloudformationResource AWS::Billing::BillingView
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html
*/
export declare class CfnBillingView extends cdk.CfnResource implements cdk.IInspectable, IBillingViewRef, cdk.ITaggableV2 {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnBillingView 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): CfnBillingView;
/**
* Checks whether the given object is a CfnBillingView
*/
static isCfnBillingView(x: any): x is CfnBillingView;
static arnForBillingView(resource: IBillingViewRef): string;
/**
* Tag Manager which manages the tags for this resource
*/
readonly cdkTagManager: cdk.TagManager;
/**
* See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` .
*/
private _dataFilterExpression?;
/**
* The description of the billing view.
*/
private _description?;
/**
* The name of the billing view.
*/
private _name;
/**
* A list of billing views used as the data source for the custom billing view.
*/
private _sourceViews;
/**
* A list of key value map specifying tags associated to the billing view being created.
*/
private _tags?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::Billing::BillingView`.
*
* @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: CfnBillingViewProps);
get billingViewRef(): BillingViewReference;
/**
* See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` .
*/
get dataFilterExpression(): CfnBillingView.DataFilterExpressionProperty | cdk.IResolvable | undefined;
/**
* See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` .
*/
set dataFilterExpression(value: CfnBillingView.DataFilterExpressionProperty | cdk.IResolvable | undefined);
/**
* The description of the billing view.
*/
get description(): string | undefined;
/**
* The description of the billing view.
*/
set description(value: string | undefined);
/**
* The name of the billing view.
*/
get name(): string;
/**
* The name of the billing view.
*/
set name(value: string);
/**
* A list of billing views used as the data source for the custom billing view.
*/
get sourceViews(): Array<string>;
/**
* A list of billing views used as the data source for the custom billing view.
*/
set sourceViews(value: Array<string>);
/**
* A list of key value map specifying tags associated to the billing view being created.
*/
get tags(): Array<cdk.CfnTag> | undefined;
/**
* A list of key value map specifying tags associated to the billing view being created.
*/
set tags(value: Array<cdk.CfnTag> | undefined);
/**
* The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
*
* @cloudformationAttribute Arn
*/
get attrArn(): string;
/**
* The type of billing group.
*
* @cloudformationAttribute BillingViewType
*/
get attrBillingViewType(): string;
/**
* The time when the billing view was created.
*
* @cloudformationAttribute CreatedAt
*/
get attrCreatedAt(): cdk.IResolvable;
/**
* The account owner of the billing view.
*
* @cloudformationAttribute OwnerAccountId
*/
get attrOwnerAccountId(): string;
/**
* The time when the billing view was last updated.
*
* @cloudformationAttribute UpdatedAt
*/
get attrUpdatedAt(): cdk.IResolvable;
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 CfnBillingView {
/**
* See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` .
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-datafilterexpression.html
*/
interface DataFilterExpressionProperty {
/**
* The specific `Dimension` to use for `Expression` .
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-datafilterexpression.html#cfn-billing-billingview-datafilterexpression-dimensions
*/
readonly dimensions?: CfnBillingView.DimensionsProperty | cdk.IResolvable;
/**
* The specific `Tag` to use for `Expression` .
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-datafilterexpression.html#cfn-billing-billingview-datafilterexpression-tags
*/
readonly tags?: CfnBillingView.TagsProperty;
/**
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-datafilterexpression.html#cfn-billing-billingview-datafilterexpression-timerange
*/
readonly timeRange?: cdk.IResolvable | CfnBillingView.TimeRangeProperty;
}
/**
* The specific `Dimension` to use for `Expression` .
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-dimensions.html
*/
interface DimensionsProperty {
/**
* The key that's associated with the tag.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-dimensions.html#cfn-billing-billingview-dimensions-key
*/
readonly key?: string;
/**
* The metadata that you can use to filter and group your results.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-dimensions.html#cfn-billing-billingview-dimensions-values
*/
readonly values?: Array<string>;
}
/**
* Tags associated with the billing view resource.
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-tags.html
*/
interface TagsProperty {
/**
* A list of tag key value pairs that are associated with the resource.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-tags.html#cfn-billing-billingview-tags-key
*/
readonly key?: string;
/**
* The metadata values that you can use to filter and group your results.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-tags.html#cfn-billing-billingview-tags-values
*/
readonly values?: Array<string>;
}
/**
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-timerange.html
*/
interface TimeRangeProperty {
/**
* The time in ISO 8601 format, UTC time (YYYY-MM-DDTHH:MM:SSZ).
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-timerange.html#cfn-billing-billingview-timerange-begindateinclusive
*/
readonly beginDateInclusive?: string;
/**
* The time in ISO 8601 format, UTC time (YYYY-MM-DDTHH:MM:SSZ).
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-timerange.html#cfn-billing-billingview-timerange-enddateinclusive
*/
readonly endDateInclusive?: string;
}
}
/**
* Properties for defining a `CfnBillingView`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html
*/
export interface CfnBillingViewProps {
/**
* See [Expression](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_billing_Expression.html) . Billing view only supports `LINKED_ACCOUNT` and `Tags` .
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#cfn-billing-billingview-datafilterexpression
*/
readonly dataFilterExpression?: CfnBillingView.DataFilterExpressionProperty | cdk.IResolvable;
/**
* The description of the billing view.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#cfn-billing-billingview-description
*/
readonly description?: string;
/**
* The name of the billing view.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#cfn-billing-billingview-name
*/
readonly name: string;
/**
* A list of billing views used as the data source for the custom billing view.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#cfn-billing-billingview-sourceviews
*/
readonly sourceViews: Array<string>;
/**
* A list of key value map specifying tags associated to the billing view being created.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#cfn-billing-billingview-tags
*/
readonly tags?: Array<cdk.CfnTag>;
}
export type { IBillingViewRef, BillingViewReference };

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
export * from './billing.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.CfnBillingView=void 0,Object.defineProperty(exports,_noFold="CfnBillingView",{enumerable:!0,configurable:!0,get:()=>{var value=require("./billing.generated").CfnBillingView;return Object.defineProperty(exports,_noFold="CfnBillingView",{enumerable:!0,configurable:!0,value}),value}});