@pulumi/consul
Version:
A Pulumi package for creating and managing consul resources.
108 lines (107 loc) • 3.87 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* ## Example Usage
*/
export declare class ConfigEntryServiceRouter extends pulumi.CustomResource {
/**
* Get an existing ConfigEntryServiceRouter 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<pulumi.ID>, state?: ConfigEntryServiceRouterState, opts?: pulumi.CustomResourceOptions): ConfigEntryServiceRouter;
/**
* Returns true if the given object is an instance of ConfigEntryServiceRouter. 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 ConfigEntryServiceRouter;
/**
* Specifies key-value pairs to add to the KV store.
*/
readonly meta: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Specifies a name for the configuration entry.
*/
readonly name: pulumi.Output<string>;
/**
* Specifies the namespace to apply the configuration entry.
*/
readonly namespace: pulumi.Output<string | undefined>;
/**
* Specifies the admin partition to apply the configuration entry.
*/
readonly partition: pulumi.Output<string | undefined>;
/**
* Defines the possible routes for L7 requests.
*/
readonly routes: pulumi.Output<outputs.ConfigEntryServiceRouterRoute[] | undefined>;
/**
* Create a ConfigEntryServiceRouter 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?: ConfigEntryServiceRouterArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ConfigEntryServiceRouter resources.
*/
export interface ConfigEntryServiceRouterState {
/**
* Specifies key-value pairs to add to the KV store.
*/
meta?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Specifies a name for the configuration entry.
*/
name?: pulumi.Input<string>;
/**
* Specifies the namespace to apply the configuration entry.
*/
namespace?: pulumi.Input<string>;
/**
* Specifies the admin partition to apply the configuration entry.
*/
partition?: pulumi.Input<string>;
/**
* Defines the possible routes for L7 requests.
*/
routes?: pulumi.Input<pulumi.Input<inputs.ConfigEntryServiceRouterRoute>[]>;
}
/**
* The set of arguments for constructing a ConfigEntryServiceRouter resource.
*/
export interface ConfigEntryServiceRouterArgs {
/**
* Specifies key-value pairs to add to the KV store.
*/
meta?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Specifies a name for the configuration entry.
*/
name?: pulumi.Input<string>;
/**
* Specifies the namespace to apply the configuration entry.
*/
namespace?: pulumi.Input<string>;
/**
* Specifies the admin partition to apply the configuration entry.
*/
partition?: pulumi.Input<string>;
/**
* Defines the possible routes for L7 requests.
*/
routes?: pulumi.Input<pulumi.Input<inputs.ConfigEntryServiceRouterRoute>[]>;
}