import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class KubernetesIngresses extends pulumi.CustomResource { /** * Get an existing KubernetesIngresses 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?: KubernetesIngressesState, opts?: pulumi.CustomResourceOptions): KubernetesIngresses; /** * Returns true if the given object is an instance of KubernetesIngresses. 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 KubernetesIngresses; /** * Annotations applied to the Ingress resource as key/value strings. */ readonly annotations: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Name of the IngressClass that should handle this Ingress (sets `spec.ingressClassName`). */ readonly className: pulumi.Output; /** * Identifier of the Portainer Kubernetes environment where the Ingress resource is managed. */ readonly environmentId: pulumi.Output; /** * List of hostnames associated with the Ingress. */ readonly hosts: pulumi.Output; readonly kubernetesIngressesId: pulumi.Output; /** * Labels applied to the Ingress resource as key/value strings. */ readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Name of the Kubernetes Ingress resource. */ readonly name: pulumi.Output; /** * Kubernetes namespace in which the Ingress is created. */ readonly namespace: pulumi.Output; /** * List of routing rules mapping host/path combinations to backend Kubernetes services. */ readonly paths: pulumi.Output; /** * TLS configuration blocks for the Ingress, each pairing a list of hosts with a TLS secret. */ readonly tls: pulumi.Output; /** * Create a KubernetesIngresses 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: KubernetesIngressesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KubernetesIngresses resources. */ export interface KubernetesIngressesState { /** * Annotations applied to the Ingress resource as key/value strings. */ annotations?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the IngressClass that should handle this Ingress (sets `spec.ingressClassName`). */ className?: pulumi.Input; /** * Identifier of the Portainer Kubernetes environment where the Ingress resource is managed. */ environmentId?: pulumi.Input; /** * List of hostnames associated with the Ingress. */ hosts?: pulumi.Input[] | undefined>; kubernetesIngressesId?: pulumi.Input; /** * Labels applied to the Ingress resource as key/value strings. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Kubernetes Ingress resource. */ name?: pulumi.Input; /** * Kubernetes namespace in which the Ingress is created. */ namespace?: pulumi.Input; /** * List of routing rules mapping host/path combinations to backend Kubernetes services. */ paths?: pulumi.Input[] | undefined>; /** * TLS configuration blocks for the Ingress, each pairing a list of hosts with a TLS secret. */ tls?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a KubernetesIngresses resource. */ export interface KubernetesIngressesArgs { /** * Annotations applied to the Ingress resource as key/value strings. */ annotations?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the IngressClass that should handle this Ingress (sets `spec.ingressClassName`). */ className?: pulumi.Input; /** * Identifier of the Portainer Kubernetes environment where the Ingress resource is managed. */ environmentId: pulumi.Input; /** * List of hostnames associated with the Ingress. */ hosts?: pulumi.Input[] | undefined>; kubernetesIngressesId?: pulumi.Input; /** * Labels applied to the Ingress resource as key/value strings. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Kubernetes Ingress resource. */ name?: pulumi.Input; /** * Kubernetes namespace in which the Ingress is created. */ namespace: pulumi.Input; /** * List of routing rules mapping host/path combinations to backend Kubernetes services. */ paths?: pulumi.Input[] | undefined>; /** * TLS configuration blocks for the Ingress, each pairing a list of hosts with a TLS secret. */ tls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=kubernetesIngresses.d.ts.map