import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Create a ServiceLevelObjective for the given Service. */ export declare class ServiceServiceLevelObjective extends pulumi.CustomResource { /** * Get an existing ServiceServiceLevelObjective 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ServiceServiceLevelObjective; /** * Returns true if the given object is an instance of ServiceServiceLevelObjective. 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 ServiceServiceLevelObjective; /** * A calendar period, semantically "since the start of the current ". At this time, only DAY, WEEK, FORTNIGHT, and MONTH are supported. */ readonly calendarPeriod: pulumi.Output; /** * Name used for UI elements listing this SLO. */ readonly displayName: pulumi.Output; /** * The fraction of service that must be good in order for this objective to be met. 0 < goal <= 0.999. */ readonly goal: pulumi.Output; /** * Resource name for this ServiceLevelObjective. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME] */ readonly name: pulumi.Output; /** * A rolling time period, semantically "in the past ". Must be an integer multiple of 1 day no larger than 30 days. */ readonly rollingPeriod: pulumi.Output; /** * The definition of good service, used to measure and calculate the quality of the Service's performance with respect to a single aspect of service quality. */ readonly serviceLevelIndicator: pulumi.Output; /** * Create a ServiceServiceLevelObjective 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: ServiceServiceLevelObjectiveArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ServiceServiceLevelObjective resource. */ export interface ServiceServiceLevelObjectiveArgs { /** * A calendar period, semantically "since the start of the current ". At this time, only DAY, WEEK, FORTNIGHT, and MONTH are supported. */ readonly calendarPeriod?: pulumi.Input; /** * Name used for UI elements listing this SLO. */ readonly displayName?: pulumi.Input; /** * The fraction of service that must be good in order for this objective to be met. 0 < goal <= 0.999. */ readonly goal?: pulumi.Input; /** * Resource name for this ServiceLevelObjective. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME] */ readonly name?: pulumi.Input; /** * A rolling time period, semantically "in the past ". Must be an integer multiple of 1 day no larger than 30 days. */ readonly rollingPeriod?: pulumi.Input; /** * The definition of good service, used to measure and calculate the quality of the Service's performance with respect to a single aspect of service quality. */ readonly serviceLevelIndicator?: pulumi.Input; readonly serviceLevelObjectivesId: pulumi.Input; readonly servicesId: pulumi.Input; readonly v3Id: pulumi.Input; readonly v3Id1: pulumi.Input; }