import * as pulumi from "@pulumi/pulumi"; export declare class AutomationWorkflowK8sConnections extends pulumi.CustomResource { /** * Get an existing AutomationWorkflowK8sConnections 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?: AutomationWorkflowK8sConnectionsState, opts?: pulumi.CustomResourceOptions): AutomationWorkflowK8sConnections; /** * Returns true if the given object is an instance of AutomationWorkflowK8sConnections. 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 AutomationWorkflowK8sConnections; /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched * * @deprecated This resource is no longer ordered, please remove this attribute from the configuration */ readonly insertAfter: pulumi.Output; /** * The name of the EdgeConnect deployment */ readonly name: pulumi.Output; /** * The namespace where EdgeConnect is deployed */ readonly namespace: pulumi.Output; /** * Token */ readonly token: pulumi.Output; /** * A pseudo-ID for the cluster, set to the UID of the kube-system namespace */ readonly uid: pulumi.Output; /** * Create a AutomationWorkflowK8sConnections 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: AutomationWorkflowK8sConnectionsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AutomationWorkflowK8sConnections resources. */ export interface AutomationWorkflowK8sConnectionsState { /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched * * @deprecated This resource is no longer ordered, please remove this attribute from the configuration */ insertAfter?: pulumi.Input; /** * The name of the EdgeConnect deployment */ name?: pulumi.Input; /** * The namespace where EdgeConnect is deployed */ namespace?: pulumi.Input; /** * Token */ token?: pulumi.Input; /** * A pseudo-ID for the cluster, set to the UID of the kube-system namespace */ uid?: pulumi.Input; } /** * The set of arguments for constructing a AutomationWorkflowK8sConnections resource. */ export interface AutomationWorkflowK8sConnectionsArgs { /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched * * @deprecated This resource is no longer ordered, please remove this attribute from the configuration */ insertAfter?: pulumi.Input; /** * The name of the EdgeConnect deployment */ name?: pulumi.Input; /** * The namespace where EdgeConnect is deployed */ namespace: pulumi.Input; /** * Token */ token: pulumi.Input; /** * A pseudo-ID for the cluster, set to the UID of the kube-system namespace */ uid: pulumi.Input; }