import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Nat Gateway resource in Oracle Cloud Infrastructure Core service. * * Gets the specified NAT gateway's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNatGateway = oci.core.getNatGateway({ * natGatewayId: testNatGatewayOciCoreNatGateway.id, * }); * ``` */ export declare function getNatGateway(args: GetNatGatewayArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNatGateway. */ export interface GetNatGatewayArgs { /** * The NAT gateway's [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ natGatewayId: string; } /** * A collection of values returned by getNatGateway. */ export interface GetNatGatewayResult { /** * Whether the NAT gateway blocks traffic through it. The default is `false`. Example: `true` */ readonly blockTraffic: boolean; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the NAT gateway. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the NAT gateway. */ readonly id: string; readonly natGatewayId: string; /** * The IP address associated with the NAT gateway. */ readonly natIp: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the public IP address associated with the NAT gateway. */ readonly publicIpId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table used by the NAT gateway. */ readonly routeTableId: string; /** * The NAT gateway's current state. */ readonly state: string; /** * The date and time the NAT gateway was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN the NAT gateway belongs to. */ readonly vcnId: string; } /** * This data source provides details about a specific Nat Gateway resource in Oracle Cloud Infrastructure Core service. * * Gets the specified NAT gateway's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNatGateway = oci.core.getNatGateway({ * natGatewayId: testNatGatewayOciCoreNatGateway.id, * }); * ``` */ export declare function getNatGatewayOutput(args: GetNatGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNatGateway. */ export interface GetNatGatewayOutputArgs { /** * The NAT gateway's [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ natGatewayId: pulumi.Input; } //# sourceMappingURL=getNatGateway.d.ts.map