@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
52 lines (51 loc) • 1.69 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Defines the recurrence pattern for the schedule. Specifies when deployments should be
* automatically triggered based on maintenance windows.
*/
export declare class FleetScheduleRecurrenceRule {
/**
* List of days of the week when the schedule should trigger. Valid values are:
* "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".
*/
"daysOfWeek": Array<string>;
/**
* Duration of the maintenance window in minutes.
*/
"maintenanceWindowDuration": number;
/**
* Start time of the maintenance window in 24-hour clock format (HH:MM).
* Deployments will be triggered at this time on the specified days.
*/
"startMaintenanceWindow": string;
/**
* Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").
*/
"timezone": string;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}