agent-claw: automated task changes
This commit is contained in:
200
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/backupgateway.generated.d.ts
generated
vendored
Normal file
200
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/backupgateway.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,200 @@
|
||||
import * as cdk from "../../core/lib";
|
||||
import * as constructs from "constructs";
|
||||
import * as cfn_parse from "../../core/lib/helpers-internal";
|
||||
import { HypervisorReference, IHypervisorRef } from "../../interfaces/generated/aws-backupgateway-interfaces.generated";
|
||||
/**
|
||||
* Represents the hypervisor's permissions to which the gateway will connect.
|
||||
*
|
||||
* A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.
|
||||
*
|
||||
* @cloudformationResource AWS::BackupGateway::Hypervisor
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html
|
||||
*/
|
||||
export declare class CfnHypervisor extends cdk.CfnResource implements cdk.IInspectable, IHypervisorRef, cdk.ITaggable {
|
||||
/**
|
||||
* The CloudFormation resource type name for this resource class.
|
||||
*/
|
||||
static readonly CFN_RESOURCE_TYPE_NAME: string;
|
||||
/**
|
||||
* Build a CfnHypervisor 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): CfnHypervisor;
|
||||
/**
|
||||
* Checks whether the given object is a CfnHypervisor
|
||||
*/
|
||||
static isCfnHypervisor(x: any): x is CfnHypervisor;
|
||||
static arnForHypervisor(resource: IHypervisorRef): string;
|
||||
/**
|
||||
* The server host of the hypervisor.
|
||||
*/
|
||||
private _host?;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
|
||||
*/
|
||||
private _kmsKeyArn?;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the group of gateways within the requested log.
|
||||
*/
|
||||
private _logGroupArn?;
|
||||
/**
|
||||
* The name of the hypervisor.
|
||||
*/
|
||||
private _name?;
|
||||
/**
|
||||
* The password for the hypervisor.
|
||||
*/
|
||||
private _password?;
|
||||
/**
|
||||
* Tag Manager which manages the tags for this resource
|
||||
*/
|
||||
readonly tags: cdk.TagManager;
|
||||
/**
|
||||
* The tags of the hypervisor configuration to import.
|
||||
*/
|
||||
private _tagsRaw?;
|
||||
/**
|
||||
* The username for the hypervisor.
|
||||
*/
|
||||
private _username?;
|
||||
protected readonly cfnPropertyNames: Record<string, string>;
|
||||
/**
|
||||
* Create a new `AWS::BackupGateway::Hypervisor`.
|
||||
*
|
||||
* @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?: CfnHypervisorProps);
|
||||
get hypervisorRef(): HypervisorReference;
|
||||
/**
|
||||
* The server host of the hypervisor.
|
||||
*/
|
||||
get host(): string | undefined;
|
||||
/**
|
||||
* The server host of the hypervisor.
|
||||
*/
|
||||
set host(value: string | undefined);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
|
||||
*/
|
||||
get kmsKeyArn(): string | undefined;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
|
||||
*/
|
||||
set kmsKeyArn(value: string | undefined);
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the group of gateways within the requested log.
|
||||
*/
|
||||
get logGroupArn(): string | undefined;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the group of gateways within the requested log.
|
||||
*/
|
||||
set logGroupArn(value: string | undefined);
|
||||
/**
|
||||
* The name of the hypervisor.
|
||||
*/
|
||||
get name(): string | undefined;
|
||||
/**
|
||||
* The name of the hypervisor.
|
||||
*/
|
||||
set name(value: string | undefined);
|
||||
/**
|
||||
* The password for the hypervisor.
|
||||
*/
|
||||
get password(): string | undefined;
|
||||
/**
|
||||
* The password for the hypervisor.
|
||||
*/
|
||||
set password(value: string | undefined);
|
||||
/**
|
||||
* The tags of the hypervisor configuration to import.
|
||||
*/
|
||||
get tagsRaw(): Array<cdk.CfnTag> | undefined;
|
||||
/**
|
||||
* The tags of the hypervisor configuration to import.
|
||||
*/
|
||||
set tagsRaw(value: Array<cdk.CfnTag> | undefined);
|
||||
/**
|
||||
* The username for the hypervisor.
|
||||
*/
|
||||
get username(): string | undefined;
|
||||
/**
|
||||
* The username for the hypervisor.
|
||||
*/
|
||||
set username(value: string | undefined);
|
||||
/**
|
||||
* Returns `HypervisorArn` , an Amazon Resource Name (ARN) that uniquely identifies a Hypervisor. For example: `arn:aws:backup-gateway:us-east-1:123456789012:hypervisor/hype-1234D67D`
|
||||
*
|
||||
* @cloudformationAttribute HypervisorArn
|
||||
*/
|
||||
get attrHypervisorArn(): 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>;
|
||||
}
|
||||
/**
|
||||
* Properties for defining a `CfnHypervisor`
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html
|
||||
*/
|
||||
export interface CfnHypervisorProps {
|
||||
/**
|
||||
* The server host of the hypervisor.
|
||||
*
|
||||
* This can be either an IP address or a fully-qualified domain name (FQDN).
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-host
|
||||
*/
|
||||
readonly host?: string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-kmskeyarn
|
||||
*/
|
||||
readonly kmsKeyArn?: string;
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the group of gateways within the requested log.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-loggrouparn
|
||||
*/
|
||||
readonly logGroupArn?: string;
|
||||
/**
|
||||
* The name of the hypervisor.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-name
|
||||
*/
|
||||
readonly name?: string;
|
||||
/**
|
||||
* The password for the hypervisor.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-password
|
||||
*/
|
||||
readonly password?: string;
|
||||
/**
|
||||
* The tags of the hypervisor configuration to import.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-tags
|
||||
*/
|
||||
readonly tags?: Array<cdk.CfnTag>;
|
||||
/**
|
||||
* The username for the hypervisor.
|
||||
*
|
||||
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-username
|
||||
*/
|
||||
readonly username?: string;
|
||||
}
|
||||
export type { IHypervisorRef, HypervisorReference };
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/backupgateway.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/backupgateway.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-backupgateway/lib/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './backupgateway.generated';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-backupgateway/lib/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-backupgateway/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.CfnHypervisor=void 0,Object.defineProperty(exports,_noFold="CfnHypervisor",{enumerable:!0,configurable:!0,get:()=>{var value=require("./backupgateway.generated").CfnHypervisor;return Object.defineProperty(exports,_noFold="CfnHypervisor",{enumerable:!0,configurable:!0,value}),value}});
|
||||
Reference in New Issue
Block a user