UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

145 lines (144 loc) 4.53 kB
import * as pulumi from "@pulumi/pulumi"; export declare class ServiceOverridesV2 extends pulumi.CustomResource { /** * Get an existing ServiceOverridesV2 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceOverridesV2State, opts?: pulumi.CustomResourceOptions): ServiceOverridesV2; /** * Returns true if the given object is an instance of ServiceOverridesV2. 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 ServiceOverridesV2; /** * The cluster ID to which the overrides are associated */ readonly clusterId: pulumi.Output<string>; /** * The env ID to which the overrides are associated. */ readonly envId: pulumi.Output<string>; /** * Unique identifier of the resource. */ readonly identifier: pulumi.Output<string>; /** * The infrastructure ID to which the overrides are associated */ readonly infraId: pulumi.Output<string>; /** * Unique identifier of the organization. */ readonly orgId: pulumi.Output<string | undefined>; /** * Unique identifier of the project. */ readonly projectId: pulumi.Output<string | undefined>; /** * The service ID to which the overrides applies. */ readonly serviceId: pulumi.Output<string>; /** * The overrides specification for the service. */ readonly spec: pulumi.Output<string>; /** * The type of the overrides */ readonly type: pulumi.Output<string>; /** * Create a ServiceOverridesV2 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: ServiceOverridesV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceOverridesV2 resources. */ export interface ServiceOverridesV2State { /** * The cluster ID to which the overrides are associated */ clusterId?: pulumi.Input<string>; /** * The env ID to which the overrides are associated. */ envId?: pulumi.Input<string>; /** * Unique identifier of the resource. */ identifier?: pulumi.Input<string>; /** * The infrastructure ID to which the overrides are associated */ infraId?: pulumi.Input<string>; /** * Unique identifier of the organization. */ orgId?: pulumi.Input<string>; /** * Unique identifier of the project. */ projectId?: pulumi.Input<string>; /** * The service ID to which the overrides applies. */ serviceId?: pulumi.Input<string>; /** * The overrides specification for the service. */ spec?: pulumi.Input<string>; /** * The type of the overrides */ type?: pulumi.Input<string>; } /** * The set of arguments for constructing a ServiceOverridesV2 resource. */ export interface ServiceOverridesV2Args { /** * The cluster ID to which the overrides are associated */ clusterId?: pulumi.Input<string>; /** * The env ID to which the overrides are associated. */ envId: pulumi.Input<string>; /** * Unique identifier of the resource. */ identifier: pulumi.Input<string>; /** * The infrastructure ID to which the overrides are associated */ infraId?: pulumi.Input<string>; /** * Unique identifier of the organization. */ orgId?: pulumi.Input<string>; /** * Unique identifier of the project. */ projectId?: pulumi.Input<string>; /** * The service ID to which the overrides applies. */ serviceId?: pulumi.Input<string>; /** * The overrides specification for the service. */ spec: pulumi.Input<string>; /** * The type of the overrides */ type: pulumi.Input<string>; }