import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * The AWS::ODB::OdbNetwork resource creates an ODB Network */ export declare class OdbNetwork extends pulumi.CustomResource { /** * Get an existing OdbNetwork resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): OdbNetwork; /** * Returns true if the given object is an instance of OdbNetwork. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is OdbNetwork; /** * The AWS Availability Zone (AZ) where the ODB network is located. */ readonly availabilityZone: pulumi.Output; /** * The AZ ID of the AZ where the ODB network is located. */ readonly availabilityZoneId: pulumi.Output; /** * The CIDR range of the backup subnet in the ODB network. */ readonly backupSubnetCidr: pulumi.Output; /** * The CIDR range of the client subnet in the ODB network. */ readonly clientSubnetCidr: pulumi.Output; /** * The cross-Region Amazon S3 restore sources for the ODB network. */ readonly crossRegionS3RestoreSources: pulumi.Output; /** * The domain name to use for the resources in the ODB network. */ readonly customDomainName: pulumi.Output; /** * The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com. */ readonly defaultDnsPrefix: pulumi.Output; /** * Specifies whether to delete associated OCI networking resources along with the ODB network. */ readonly deleteAssociatedResources: pulumi.Output; /** * The user-friendly name of the ODB network. */ readonly displayName: pulumi.Output; /** * The list of EC2 placement group IDs associated with your ODB network. */ readonly ec2PlacementGroupIds: pulumi.Output; /** * The AWS Key Management Service (KMS) access configuration for the ODB network. */ readonly kmsAccess: pulumi.Output; /** * The AWS Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network. */ readonly kmsPolicyDocument: pulumi.Output; readonly managedServices: pulumi.Output; /** * The unique identifier of the OCI network anchor for the ODB network. */ readonly ociNetworkAnchorId: pulumi.Output; /** * The name of the OCI resource anchor that's associated with the ODB network. */ readonly ociResourceAnchorName: pulumi.Output; /** * The URL for the VCN that's associated with the ODB network. */ readonly ociVcnUrl: pulumi.Output; /** * The Amazon Resource Name (ARN) of the ODB network. */ readonly odbNetworkArn: pulumi.Output; /** * The unique identifier of the ODB network. */ readonly odbNetworkId: pulumi.Output; /** * Specifies the configuration for Amazon S3 access from the ODB network. */ readonly s3Access: pulumi.Output; /** * Specifies the endpoint policy for Amazon S3 access from the ODB network. */ readonly s3PolicyDocument: pulumi.Output; /** * The AWS Security Token Service (STS) access configuration for the ODB network. */ readonly stsAccess: pulumi.Output; /** * The AWS Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network. */ readonly stsPolicyDocument: pulumi.Output; /** * Tags to assign to the Odb Network. */ readonly tags: pulumi.Output; /** * Specifies the configuration for Zero-ETL access from the ODB network. */ readonly zeroEtlAccess: pulumi.Output; /** * Create a OdbNetwork resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: OdbNetworkArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a OdbNetwork resource. */ export interface OdbNetworkArgs { /** * The AWS Availability Zone (AZ) where the ODB network is located. */ availabilityZone?: pulumi.Input; /** * The AZ ID of the AZ where the ODB network is located. */ availabilityZoneId?: pulumi.Input; /** * The CIDR range of the backup subnet in the ODB network. */ backupSubnetCidr?: pulumi.Input; /** * The CIDR range of the client subnet in the ODB network. */ clientSubnetCidr?: pulumi.Input; /** * The cross-Region Amazon S3 restore sources for the ODB network. */ crossRegionS3RestoreSources?: pulumi.Input[]>; /** * The domain name to use for the resources in the ODB network. */ customDomainName?: pulumi.Input; /** * The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com. */ defaultDnsPrefix?: pulumi.Input; /** * Specifies whether to delete associated OCI networking resources along with the ODB network. */ deleteAssociatedResources?: pulumi.Input; /** * The user-friendly name of the ODB network. */ displayName?: pulumi.Input; /** * The AWS Key Management Service (KMS) access configuration for the ODB network. */ kmsAccess?: pulumi.Input; /** * The AWS Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network. */ kmsPolicyDocument?: pulumi.Input; /** * Specifies the configuration for Amazon S3 access from the ODB network. */ s3Access?: pulumi.Input; /** * Specifies the endpoint policy for Amazon S3 access from the ODB network. */ s3PolicyDocument?: pulumi.Input; /** * The AWS Security Token Service (STS) access configuration for the ODB network. */ stsAccess?: pulumi.Input; /** * The AWS Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network. */ stsPolicyDocument?: pulumi.Input; /** * Tags to assign to the Odb Network. */ tags?: pulumi.Input[]>; /** * Specifies the configuration for Zero-ETL access from the ODB network. */ zeroEtlAccess?: pulumi.Input; }