import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class EndpointSettings extends pulumi.CustomResource { /** * Get an existing EndpointSettings 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?: EndpointSettingsState, opts?: pulumi.CustomResourceOptions): EndpointSettings; /** * Returns true if the given object is an instance of EndpointSettings. 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 EndpointSettings; /** * Maintenance change window during which automatic updates may run on the environment. */ readonly changeWindow: pulumi.Output; /** * Per-environment overrides for stack and application deployment UI options. */ readonly deploymentOptions: pulumi.Output; /** * Whether GPU management is enabled for the Portainer environment. */ readonly enableGpuManagement: pulumi.Output; /** * Whether image update notifications are enabled for the Portainer environment. */ readonly enableImageNotification: pulumi.Output; /** * ID of the Portainer environment whose runtime settings are managed. */ readonly endpointId: pulumi.Output; readonly endpointSettingsId: pulumi.Output; /** * List of GPU devices exposed to Portainer for this environment. */ readonly gpuses: pulumi.Output; /** * Per-environment security settings controlling what regular (non-admin) users may do. */ readonly securitySettings: pulumi.Output; /** * Create a EndpointSettings 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: EndpointSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EndpointSettings resources. */ export interface EndpointSettingsState { /** * Maintenance change window during which automatic updates may run on the environment. */ changeWindow?: pulumi.Input; /** * Per-environment overrides for stack and application deployment UI options. */ deploymentOptions?: pulumi.Input; /** * Whether GPU management is enabled for the Portainer environment. */ enableGpuManagement?: pulumi.Input; /** * Whether image update notifications are enabled for the Portainer environment. */ enableImageNotification?: pulumi.Input; /** * ID of the Portainer environment whose runtime settings are managed. */ endpointId?: pulumi.Input; endpointSettingsId?: pulumi.Input; /** * List of GPU devices exposed to Portainer for this environment. */ gpuses?: pulumi.Input[] | undefined>; /** * Per-environment security settings controlling what regular (non-admin) users may do. */ securitySettings?: pulumi.Input; } /** * The set of arguments for constructing a EndpointSettings resource. */ export interface EndpointSettingsArgs { /** * Maintenance change window during which automatic updates may run on the environment. */ changeWindow?: pulumi.Input; /** * Per-environment overrides for stack and application deployment UI options. */ deploymentOptions?: pulumi.Input; /** * Whether GPU management is enabled for the Portainer environment. */ enableGpuManagement?: pulumi.Input; /** * Whether image update notifications are enabled for the Portainer environment. */ enableImageNotification?: pulumi.Input; /** * ID of the Portainer environment whose runtime settings are managed. */ endpointId: pulumi.Input; endpointSettingsId?: pulumi.Input; /** * List of GPU devices exposed to Portainer for this environment. */ gpuses?: pulumi.Input[] | undefined>; /** * Per-environment security settings controlling what regular (non-admin) users may do. */ securitySettings?: pulumi.Input; } //# sourceMappingURL=endpointSettings.d.ts.map