import * as pulumi from "@pulumi/pulumi"; export interface GetHttpRetry { /** * The number of times the request is to be retried. For example, if 2 is specified, the request will be tried a maximum of 3 times. */ attempts?: number; /** * The maximum delay between retry requests in milliseconds. */ maxDelayMs?: number; /** * The minimum delay between retry requests in milliseconds. */ minDelayMs?: number; } export interface GetHttpRetryArgs { /** * The number of times the request is to be retried. For example, if 2 is specified, the request will be tried a maximum of 3 times. */ attempts?: pulumi.Input; /** * The maximum delay between retry requests in milliseconds. */ maxDelayMs?: pulumi.Input; /** * The minimum delay between retry requests in milliseconds. */ minDelayMs?: pulumi.Input; }