agent-claw: automated task changes
This commit is contained in:
13
cdk/node_modules/aws-cdk-lib/aws-codestar/.jsiirc.json
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk-lib/aws-codestar/.jsiirc.json
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"targets": {
|
||||
"java": {
|
||||
"package": "software.amazon.awscdk.services.codestar"
|
||||
},
|
||||
"dotnet": {
|
||||
"namespace": "Amazon.CDK.AWS.Codestar"
|
||||
},
|
||||
"python": {
|
||||
"module": "aws_cdk.aws_codestar"
|
||||
}
|
||||
}
|
||||
}
|
||||
32
cdk/node_modules/aws-cdk-lib/aws-codestar/README.md
generated
vendored
Normal file
32
cdk/node_modules/aws-cdk-lib/aws-codestar/README.md
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# AWS::CodeStar Construct Library
|
||||
|
||||
|
||||
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
||||
|
||||
```ts nofixture
|
||||
import * as codestar from 'aws-cdk-lib/aws-codestar';
|
||||
```
|
||||
|
||||
<!--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 CodeStar construct libraries](https://constructs.dev/search?q=codestar)
|
||||
- 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::CodeStar resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeStar.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-codestar-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::CodeStar](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_CodeStar.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-codestar/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestar/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestar/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestar/index.js
generated
vendored
Normal 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.CfnGitHubRepository=void 0,Object.defineProperty(exports,_noFold="CfnGitHubRepository",{enumerable:!0,configurable:!0,get:()=>{var value=require("./lib").CfnGitHubRepository;return Object.defineProperty(exports,_noFold="CfnGitHubRepository",{enumerable:!0,configurable:!0,value}),value}});
|
||||
256
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.d.ts
generated
vendored
Normal file
256
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,256 @@
|
||||
import * as cdk from "../../core/lib";
|
||||
import * as constructs from "constructs";
|
||||
import * as cfn_parse from "../../core/lib/helpers-internal";
|
||||
import { GitHubRepositoryReference, IGitHubRepositoryRef } from "../../interfaces/generated/aws-codestar-interfaces.generated";
|
||||
/**
|
||||
* The `AWS::CodeStar::GitHubRepository` resource creates a GitHub repository where users can store source code for use with AWS workflows.
|
||||
*
|
||||
* You must provide a location for the source code ZIP file in the CloudFormation template, so the code can be uploaded to the created repository. You must have created a personal access token in GitHub to provide in the CloudFormation template. AWS uses this token to connect to GitHub on your behalf.
|
||||
*
|
||||
* @cloudformationResource AWS::CodeStar::GitHubRepository
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html
|
||||
*/
|
||||
export declare class CfnGitHubRepository extends cdk.CfnResource implements cdk.IInspectable, IGitHubRepositoryRef {
|
||||
/**
|
||||
* The CloudFormation resource type name for this resource class.
|
||||
*/
|
||||
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
||||
/**
|
||||
* Build a CfnGitHubRepository 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): CfnGitHubRepository;
|
||||
/**
|
||||
* Checks whether the given object is a CfnGitHubRepository
|
||||
*/
|
||||
static isCfnGitHubRepository(x: any): x is CfnGitHubRepository;
|
||||
/**
|
||||
* Information about code to be committed to a repository after it is created in an CloudFormation stack.
|
||||
*/
|
||||
private _code?;
|
||||
private _connectionArn?;
|
||||
/**
|
||||
* Indicates whether to enable issues for the GitHub repository.
|
||||
*/
|
||||
private _enableIssues?;
|
||||
/**
|
||||
* Indicates whether the GitHub repository is a private repository.
|
||||
*/
|
||||
private _isPrivate?;
|
||||
/**
|
||||
* The GitHub user's personal access token for the GitHub repository.
|
||||
*/
|
||||
private _repositoryAccessToken?;
|
||||
/**
|
||||
* A comment or description about the new repository.
|
||||
*/
|
||||
private _repositoryDescription?;
|
||||
/**
|
||||
* The name of the repository you want to create in GitHub with CloudFormation stack creation.
|
||||
*/
|
||||
private _repositoryName;
|
||||
/**
|
||||
* The GitHub user name for the owner of the GitHub repository to be created.
|
||||
*/
|
||||
private _repositoryOwner;
|
||||
protected readonly cfnPropertyNames: Record<string, string>;
|
||||
/**
|
||||
* Create a new `AWS::CodeStar::GitHubRepository`.
|
||||
*
|
||||
* @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: CfnGitHubRepositoryProps);
|
||||
get gitHubRepositoryRef(): GitHubRepositoryReference;
|
||||
/**
|
||||
* Information about code to be committed to a repository after it is created in an CloudFormation stack.
|
||||
*/
|
||||
get code(): CfnGitHubRepository.CodeProperty | cdk.IResolvable | undefined;
|
||||
/**
|
||||
* Information about code to be committed to a repository after it is created in an CloudFormation stack.
|
||||
*/
|
||||
set code(value: CfnGitHubRepository.CodeProperty | cdk.IResolvable | undefined);
|
||||
get connectionArn(): string | undefined;
|
||||
set connectionArn(value: string | undefined);
|
||||
/**
|
||||
* Indicates whether to enable issues for the GitHub repository.
|
||||
*/
|
||||
get enableIssues(): boolean | cdk.IResolvable | undefined;
|
||||
/**
|
||||
* Indicates whether to enable issues for the GitHub repository.
|
||||
*/
|
||||
set enableIssues(value: boolean | cdk.IResolvable | undefined);
|
||||
/**
|
||||
* Indicates whether the GitHub repository is a private repository.
|
||||
*/
|
||||
get isPrivate(): boolean | cdk.IResolvable | undefined;
|
||||
/**
|
||||
* Indicates whether the GitHub repository is a private repository.
|
||||
*/
|
||||
set isPrivate(value: boolean | cdk.IResolvable | undefined);
|
||||
/**
|
||||
* The GitHub user's personal access token for the GitHub repository.
|
||||
*/
|
||||
get repositoryAccessToken(): string | undefined;
|
||||
/**
|
||||
* The GitHub user's personal access token for the GitHub repository.
|
||||
*/
|
||||
set repositoryAccessToken(value: string | undefined);
|
||||
/**
|
||||
* A comment or description about the new repository.
|
||||
*/
|
||||
get repositoryDescription(): string | undefined;
|
||||
/**
|
||||
* A comment or description about the new repository.
|
||||
*/
|
||||
set repositoryDescription(value: string | undefined);
|
||||
/**
|
||||
* The name of the repository you want to create in GitHub with CloudFormation stack creation.
|
||||
*/
|
||||
get repositoryName(): string;
|
||||
/**
|
||||
* The name of the repository you want to create in GitHub with CloudFormation stack creation.
|
||||
*/
|
||||
set repositoryName(value: string);
|
||||
/**
|
||||
* The GitHub user name for the owner of the GitHub repository to be created.
|
||||
*/
|
||||
get repositoryOwner(): string;
|
||||
/**
|
||||
* The GitHub user name for the owner of the GitHub repository to be created.
|
||||
*/
|
||||
set repositoryOwner(value: string);
|
||||
/**
|
||||
* The repository ID.
|
||||
*
|
||||
* @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 CfnGitHubRepository {
|
||||
/**
|
||||
* The `Code` property type specifies information about code to be committed.
|
||||
*
|
||||
* `Code` is a property of the `AWS::CodeStar::GitHubRepository` resource.
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-code.html
|
||||
*/
|
||||
interface CodeProperty {
|
||||
/**
|
||||
* Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-code.html#cfn-codestar-githubrepository-code-s3
|
||||
*/
|
||||
readonly s3: cdk.IResolvable | CfnGitHubRepository.S3Property;
|
||||
}
|
||||
/**
|
||||
* The `S3` property type specifies information about the Amazon S3 bucket that contains the code to be committed to the new repository.
|
||||
*
|
||||
* `S3` is a property of the `AWS::CodeStar::GitHubRepository` resource.
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html
|
||||
*/
|
||||
interface S3Property {
|
||||
/**
|
||||
* The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-bucket
|
||||
*/
|
||||
readonly bucket: string;
|
||||
/**
|
||||
* The S3 object key or file name for the ZIP file.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-key
|
||||
*/
|
||||
readonly key: string;
|
||||
/**
|
||||
* The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestar-githubrepository-s3.html#cfn-codestar-githubrepository-s3-objectversion
|
||||
*/
|
||||
readonly objectVersion?: string;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Properties for defining a `CfnGitHubRepository`
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html
|
||||
*/
|
||||
export interface CfnGitHubRepositoryProps {
|
||||
/**
|
||||
* Information about code to be committed to a repository after it is created in an CloudFormation stack.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-code
|
||||
*/
|
||||
readonly code?: CfnGitHubRepository.CodeProperty | cdk.IResolvable;
|
||||
/**
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-connectionarn
|
||||
*/
|
||||
readonly connectionArn?: string;
|
||||
/**
|
||||
* Indicates whether to enable issues for the GitHub repository.
|
||||
*
|
||||
* You can use GitHub issues to track information and bugs for your repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-enableissues
|
||||
*/
|
||||
readonly enableIssues?: boolean | cdk.IResolvable;
|
||||
/**
|
||||
* Indicates whether the GitHub repository is a private repository.
|
||||
*
|
||||
* If so, you choose who can see and commit to this repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-isprivate
|
||||
*/
|
||||
readonly isPrivate?: boolean | cdk.IResolvable;
|
||||
/**
|
||||
* The GitHub user's personal access token for the GitHub repository.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryaccesstoken
|
||||
*/
|
||||
readonly repositoryAccessToken?: string;
|
||||
/**
|
||||
* A comment or description about the new repository.
|
||||
*
|
||||
* This description is displayed in GitHub after the repository is created.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositorydescription
|
||||
*/
|
||||
readonly repositoryDescription?: string;
|
||||
/**
|
||||
* The name of the repository you want to create in GitHub with CloudFormation stack creation.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryname
|
||||
*/
|
||||
readonly repositoryName: string;
|
||||
/**
|
||||
* The GitHub user name for the owner of the GitHub repository to be created.
|
||||
*
|
||||
* If this repository should be owned by a GitHub organization, provide its name.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestar-githubrepository.html#cfn-codestar-githubrepository-repositoryowner
|
||||
*/
|
||||
readonly repositoryOwner: string;
|
||||
}
|
||||
export type { IGitHubRepositoryRef, GitHubRepositoryReference };
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './codestar.generated';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-codestar/lib/index.js
generated
vendored
Normal 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.CfnGitHubRepository=void 0,Object.defineProperty(exports,_noFold="CfnGitHubRepository",{enumerable:!0,configurable:!0,get:()=>{var value=require("./codestar.generated").CfnGitHubRepository;return Object.defineProperty(exports,_noFold="CfnGitHubRepository",{enumerable:!0,configurable:!0,value}),value}});
|
||||
Reference in New Issue
Block a user