import * as pulumi from "@pulumi/pulumi"; export declare class EdgeUpdateSchedules extends pulumi.CustomResource { /** * Get an existing EdgeUpdateSchedules 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?: EdgeUpdateSchedulesState, opts?: pulumi.CustomResourceOptions): EdgeUpdateSchedules; /** * Returns true if the given object is an instance of EdgeUpdateSchedules. 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 EdgeUpdateSchedules; /** * Container image used as the target Portainer Edge agent image after the update runs. */ readonly agentImage: pulumi.Output; readonly edgeUpdateSchedulesId: pulumi.Output; /** * List of edge group identifiers targeted by the update schedule. */ readonly groupIds: pulumi.Output; /** * Name of the Portainer edge update schedule. */ readonly name: pulumi.Output; /** * Identifier of the Portainer registry from which the agent and updater images are pulled. */ readonly registryId: pulumi.Output; /** * Time in RFC3339 format */ readonly scheduledTime: pulumi.Output; /** * 0 = update, 1 = rollback */ readonly type: pulumi.Output; /** * Container image used to perform the Edge agent update. */ readonly updaterImage: pulumi.Output; /** * Create a EdgeUpdateSchedules 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: EdgeUpdateSchedulesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EdgeUpdateSchedules resources. */ export interface EdgeUpdateSchedulesState { /** * Container image used as the target Portainer Edge agent image after the update runs. */ agentImage?: pulumi.Input; edgeUpdateSchedulesId?: pulumi.Input; /** * List of edge group identifiers targeted by the update schedule. */ groupIds?: pulumi.Input[] | undefined>; /** * Name of the Portainer edge update schedule. */ name?: pulumi.Input; /** * Identifier of the Portainer registry from which the agent and updater images are pulled. */ registryId?: pulumi.Input; /** * Time in RFC3339 format */ scheduledTime?: pulumi.Input; /** * 0 = update, 1 = rollback */ type?: pulumi.Input; /** * Container image used to perform the Edge agent update. */ updaterImage?: pulumi.Input; } /** * The set of arguments for constructing a EdgeUpdateSchedules resource. */ export interface EdgeUpdateSchedulesArgs { /** * Container image used as the target Portainer Edge agent image after the update runs. */ agentImage: pulumi.Input; edgeUpdateSchedulesId?: pulumi.Input; /** * List of edge group identifiers targeted by the update schedule. */ groupIds: pulumi.Input[]>; /** * Name of the Portainer edge update schedule. */ name?: pulumi.Input; /** * Identifier of the Portainer registry from which the agent and updater images are pulled. */ registryId: pulumi.Input; /** * Time in RFC3339 format */ scheduledTime: pulumi.Input; /** * 0 = update, 1 = rollback */ type: pulumi.Input; /** * Container image used to perform the Edge agent update. */ updaterImage: pulumi.Input; } //# sourceMappingURL=edgeUpdateSchedules.d.ts.map