import * as pulumi from "@pulumi/pulumi"; export declare namespace apic { interface ChildArgs { /** * 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; }>; /** * Relative name of child object. */ rn: pulumi.Input; } }