import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Creates a resilience-managed service with associated systems, input sources, assertions, and service functions. */ export declare class Service extends pulumi.CustomResource { /** * Get an existing Service 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): Service; /** * Returns true if the given object is an instance of Service. 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 Service; /** * Assertions associated with this service. */ readonly assertions: pulumi.Output; /** * Systems associated with this service. */ readonly associatedSystems: pulumi.Output; /** * The timestamp when the service was created. */ readonly createdAt: pulumi.Output; /** * Dependency discovery state. */ readonly dependencyDiscovery: pulumi.Output; /** * The description of the service. */ readonly description: pulumi.Output; readonly effectivePolicyValues: pulumi.Output; /** * Input sources for this service. */ readonly inputSources: pulumi.Output; /** * The KMS key ID for encrypting service data. */ readonly kmsKeyId: pulumi.Output; /** * The name of the service. */ readonly name: pulumi.Output; readonly permissionModel: pulumi.Output; /** * The ARN of the resilience policy to associate. */ readonly policyArn: pulumi.Output; /** * AWS regions for the service. */ readonly regions: pulumi.Output; readonly reportConfiguration: pulumi.Output; /** * The ARN of the service. */ readonly serviceArn: pulumi.Output; /** * Tags assigned to the service. */ readonly tags: pulumi.Output; /** * The timestamp when the service was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a Service 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: ServiceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Service resource. */ export interface ServiceArgs { /** * Assertions associated with this service. */ assertions?: pulumi.Input[]>; /** * Systems associated with this service. */ associatedSystems?: pulumi.Input[]>; /** * Dependency discovery state. */ dependencyDiscovery?: pulumi.Input; /** * The description of the service. */ description?: pulumi.Input; /** * Input sources for this service. */ inputSources?: pulumi.Input[]>; /** * The KMS key ID for encrypting service data. */ kmsKeyId?: pulumi.Input; /** * The name of the service. */ name?: pulumi.Input; permissionModel?: pulumi.Input; /** * The ARN of the resilience policy to associate. */ policyArn?: pulumi.Input; /** * AWS regions for the service. */ regions: pulumi.Input[]>; reportConfiguration?: pulumi.Input; /** * Tags assigned to the service. */ tags?: pulumi.Input[]>; }