UNPKG

cdk8s

Version:

This is the core library of Cloud Development Kit (CDK) for Kubernetes (cdk8s). cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster.

114 lines (113 loc) 3.62 kB
/** * Represents a length of time. * * The amount can be specified either as a literal value (e.g: `10`) which * cannot be negative. * */ export declare class Duration { /** * Create a Duration representing an amount of milliseconds * * @param amount the amount of Milliseconds the `Duration` will represent. * @returns a new `Duration` representing `amount` ms. */ static millis(amount: number): Duration; /** * Create a Duration representing an amount of seconds * * @param amount the amount of Seconds the `Duration` will represent. * @returns a new `Duration` representing `amount` Seconds. */ static seconds(amount: number): Duration; /** * Create a Duration representing an amount of minutes * * @param amount the amount of Minutes the `Duration` will represent. * @returns a new `Duration` representing `amount` Minutes. */ static minutes(amount: number): Duration; /** * Create a Duration representing an amount of hours * * @param amount the amount of Hours the `Duration` will represent. * @returns a new `Duration` representing `amount` Hours. */ static hours(amount: number): Duration; /** * Create a Duration representing an amount of days * * @param amount the amount of Days the `Duration` will represent. * @returns a new `Duration` representing `amount` Days. */ static days(amount: number): Duration; /** * Parse a period formatted according to the ISO 8601 standard * * @see https://www.iso.org/fr/standard/70907.html * @param duration an ISO-formtted duration to be parsed. * @returns the parsed `Duration`. */ static parse(duration: string): Duration; private readonly amount; private readonly unit; private constructor(); /** * Return the total number of milliseconds in this Duration * * @returns the value of this `Duration` expressed in Milliseconds. */ toMilliseconds(opts?: TimeConversionOptions): number; /** * Return the total number of seconds in this Duration * * @returns the value of this `Duration` expressed in Seconds. */ toSeconds(opts?: TimeConversionOptions): number; /** * Return the total number of minutes in this Duration * * @returns the value of this `Duration` expressed in Minutes. */ toMinutes(opts?: TimeConversionOptions): number; /** * Return the total number of hours in this Duration * * @returns the value of this `Duration` expressed in Hours. */ toHours(opts?: TimeConversionOptions): number; /** * Return the total number of days in this Duration * * @returns the value of this `Duration` expressed in Days. */ toDays(opts?: TimeConversionOptions): number; /** * Return an ISO 8601 representation of this period * * @returns a string starting with 'PT' describing the period * @see https://www.iso.org/fr/standard/70907.html */ toIsoString(): string; /** * Turn this duration into a human-readable string */ toHumanString(): string; /** * Return unit of Duration */ unitLabel(): string; private fractionDuration; } /** * Options for how to convert time to a different unit. */ export interface TimeConversionOptions { /** * If `true`, conversions into a larger time unit (e.g. `Seconds` to `Minutes`) will fail if the result is not an * integer. * * @default true */ readonly integral?: boolean; }