import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages ACI Model Objects via REST API calls. This resource can only manage a single API object. */ export declare class Rest extends pulumi.CustomResource { /** * Get an existing Rest 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): Rest; /** * Returns true if the given object is an instance of Rest. 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 Rest; /** * List of child objects to be created. Each child object must have a unique relative name. */ readonly children: pulumi.Output; /** * Which class object is being created. (Make sure there is no colon in the classname) */ readonly class_name: pulumi.Output; /** * Map of key-value pairs those needed to be passed to the Model object as parameters. Make sure the key name matches the name with the object parameter in ACI. */ readonly content: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Distinguished name of object being managed including its relative name, e.g. uni/tn-EXAMPLE_TENANT. */ readonly dn: pulumi.Output; /** * Create a Rest 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: RestArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Rest resource. */ export interface RestArgs { /** * List of child objects to be created. Each child object must have a unique relative name. */ children?: pulumi.Input[]>; /** * Which class object is being created. (Make sure there is no colon in the classname) */ class_name: pulumi.Input; /** * Map of key-value pairs those needed to be passed to the Model object as parameters. Make sure the key name matches the name with the object parameter in ACI. */ content?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Distinguished name of object being managed including its relative name, e.g. uni/tn-EXAMPLE_TENANT. */ dn: pulumi.Input; }