import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * @deprecated cloudflare.index/accessmutualtlshostnamesettings.AccessMutualTlsHostnameSettings has been deprecated in favor of cloudflare.index/zerotrustaccessmtlshostnamesettings.ZeroTrustAccessMtlsHostnameSettings */ export declare class AccessMutualTlsHostnameSettings extends pulumi.CustomResource { /** * Get an existing AccessMutualTlsHostnameSettings 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AccessMutualTlsHostnameSettingsState, opts?: pulumi.CustomResourceOptions): AccessMutualTlsHostnameSettings; /** * Returns true if the given object is an instance of AccessMutualTlsHostnameSettings. 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 AccessMutualTlsHostnameSettings; /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ readonly accountId: pulumi.Output; /** * Request client certificates for this hostname in China. Can only be set to true if this zone is china network enabled. */ readonly chinaNetwork: pulumi.Output; /** * Client Certificate Forwarding is a feature that takes the client cert provided by the eyeball to the edge, and forwards it to the origin as a HTTP header to allow logging on the origin. */ readonly clientCertificateForwarding: pulumi.Output; /** * The hostname that these settings apply to. */ readonly hostname: pulumi.Output; readonly settings: pulumi.Output; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ readonly zoneId: pulumi.Output; /** * Create a AccessMutualTlsHostnameSettings 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. */ /** @deprecated cloudflare.index/accessmutualtlshostnamesettings.AccessMutualTlsHostnameSettings has been deprecated in favor of cloudflare.index/zerotrustaccessmtlshostnamesettings.ZeroTrustAccessMtlsHostnameSettings */ constructor(name: string, args: AccessMutualTlsHostnameSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AccessMutualTlsHostnameSettings resources. */ export interface AccessMutualTlsHostnameSettingsState { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: pulumi.Input; /** * Request client certificates for this hostname in China. Can only be set to true if this zone is china network enabled. */ chinaNetwork?: pulumi.Input; /** * Client Certificate Forwarding is a feature that takes the client cert provided by the eyeball to the edge, and forwards it to the origin as a HTTP header to allow logging on the origin. */ clientCertificateForwarding?: pulumi.Input; /** * The hostname that these settings apply to. */ hostname?: pulumi.Input; settings?: pulumi.Input[]>; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a AccessMutualTlsHostnameSettings resource. */ export interface AccessMutualTlsHostnameSettingsArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: pulumi.Input; settings: pulumi.Input[]>; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: pulumi.Input; }