import * as ros from '@alicloud/ros-cdk-core'; import { RosBandwidthPackages } from './ga.generated'; export { RosBandwidthPackages as BandwidthPackagesProperty }; /** * Properties for defining a `BandwidthPackages`. * See https://www.alibabacloud.com/help/ros/developer-reference/datasource-ga-bandwidthpackages */ export interface BandwidthPackagesProps { /** * Property bandwidthPackageId: The Resource ID of the bandwidth. */ readonly bandwidthPackageId?: string | ros.IResolvable; /** * Property refreshOptions: The refresh strategy for the datasource resource when the stack is updated. Valid values: * - Never: Never refresh the datasource resource when the stack is updated. * - Always: Always refresh the datasource resource when the stack is updated. * Default is Never. */ readonly refreshOptions?: string | ros.IResolvable; /** * Property resourceGroupId: The ID of the resource group. */ readonly resourceGroupId?: string | ros.IResolvable; /** * Property type: The type of the bandwidth package. Value: * Basic: Basic bandwidth package. * CrossDomain: cross-region acceleration package. * China Station only supports Basic. */ readonly type?: string | ros.IResolvable; } /** * Represents a `BandwidthPackages`. */ export interface IBandwidthPackages extends ros.IResource { readonly props: BandwidthPackagesProps; /** * Attribute BandwidthPackageIds: The list of bandwidth package IDs. */ readonly attrBandwidthPackageIds: ros.IResolvable | string; /** * Attribute BandwidthPackages: The list of bandwidth packages. */ readonly attrBandwidthPackages: ros.IResolvable | string; } /** * This class encapsulates and extends the ROS resource type `DATASOURCE::GA::BandwidthPackages`. * @Note This class may have some new functions to facilitate development, so it is recommended to use this class instead of `RosBandwidthPackages`for a more convenient development experience. * See https://www.alibabacloud.com/help/ros/developer-reference/datasource-ga-bandwidthpackages */ export declare class BandwidthPackages extends ros.Resource implements IBandwidthPackages { protected scope: ros.Construct; protected id: string; readonly props: BandwidthPackagesProps; protected enableResourcePropertyConstraint: boolean; /** * Attribute BandwidthPackageIds: The list of bandwidth package IDs. */ readonly attrBandwidthPackageIds: ros.IResolvable | string; /** * Attribute BandwidthPackages: The list of bandwidth packages. */ readonly attrBandwidthPackages: ros.IResolvable | string; /** * Param scope - scope in which this resource is defined * Param id - scoped id of the resource * Param props - resource properties */ constructor(scope: ros.Construct, id: string, props?: BandwidthPackagesProps, enableResourcePropertyConstraint?: boolean); }