import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Digital Twin Instance Invoke Raw Command resource in Oracle Cloud Infrastructure Iot service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/iot/latest/DigitalTwinInstance/InvokeRawCommand * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/iot * * Invokes the raw command on the specified digital twin instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinInstanceInvokeRawCommand = new oci.oci.IotDigitalTwinInstanceInvokeRawCommand("test_digital_twin_instance_invoke_raw_command", { * digitalTwinInstanceId: testDigitalTwinInstance.id, * requestDataFormat: digitalTwinInstanceInvokeRawCommandRequestDataFormat, * requestEndpoint: digitalTwinInstanceInvokeRawCommandRequestEndpoint, * requestData: digitalTwinInstanceInvokeRawCommandRequestData, * requestDataContentType: digitalTwinInstanceInvokeRawCommandRequestDataContentType, * requestDuration: digitalTwinInstanceInvokeRawCommandRequestDuration, * responseDuration: digitalTwinInstanceInvokeRawCommandResponseDuration, * responseEndpoint: digitalTwinInstanceInvokeRawCommandResponseEndpoint, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class IotDigitalTwinInstanceInvokeRawCommand extends pulumi.CustomResource { /** * Get an existing IotDigitalTwinInstanceInvokeRawCommand 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, state?: IotDigitalTwinInstanceInvokeRawCommandState, opts?: pulumi.CustomResourceOptions): IotDigitalTwinInstanceInvokeRawCommand; /** * Returns true if the given object is an instance of IotDigitalTwinInstanceInvokeRawCommand. 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 IotDigitalTwinInstanceInvokeRawCommand; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of digital twin instance. */ readonly digitalTwinInstanceId: pulumi.Output; /** * base 64 encoded request data */ readonly requestData: pulumi.Output; /** * Mime content type of data encoded using base64, default is application/octet-stream */ readonly requestDataContentType: pulumi.Output; /** * data format: json, binary, text */ readonly requestDataFormat: pulumi.Output; /** * Specified duration by which to send the request by. */ readonly requestDuration: pulumi.Output; /** * Device endpoint where request should be forwarded to. */ readonly requestEndpoint: pulumi.Output; /** * Specified duration by which to receive the response by. */ readonly responseDuration: pulumi.Output; /** * Device endpoint from which response is expected to come. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly responseEndpoint: pulumi.Output; /** * Create a IotDigitalTwinInstanceInvokeRawCommand 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: IotDigitalTwinInstanceInvokeRawCommandArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IotDigitalTwinInstanceInvokeRawCommand resources. */ export interface IotDigitalTwinInstanceInvokeRawCommandState { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of digital twin instance. */ digitalTwinInstanceId?: pulumi.Input; /** * base 64 encoded request data */ requestData?: pulumi.Input; /** * Mime content type of data encoded using base64, default is application/octet-stream */ requestDataContentType?: pulumi.Input; /** * data format: json, binary, text */ requestDataFormat?: pulumi.Input; /** * Specified duration by which to send the request by. */ requestDuration?: pulumi.Input; /** * Device endpoint where request should be forwarded to. */ requestEndpoint?: pulumi.Input; /** * Specified duration by which to receive the response by. */ responseDuration?: pulumi.Input; /** * Device endpoint from which response is expected to come. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ responseEndpoint?: pulumi.Input; } /** * The set of arguments for constructing a IotDigitalTwinInstanceInvokeRawCommand resource. */ export interface IotDigitalTwinInstanceInvokeRawCommandArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of digital twin instance. */ digitalTwinInstanceId: pulumi.Input; /** * base 64 encoded request data */ requestData?: pulumi.Input; /** * Mime content type of data encoded using base64, default is application/octet-stream */ requestDataContentType?: pulumi.Input; /** * data format: json, binary, text */ requestDataFormat: pulumi.Input; /** * Specified duration by which to send the request by. */ requestDuration?: pulumi.Input; /** * Device endpoint where request should be forwarded to. */ requestEndpoint: pulumi.Input; /** * Specified duration by which to receive the response by. */ responseDuration?: pulumi.Input; /** * Device endpoint from which response is expected to come. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ responseEndpoint?: pulumi.Input; } //# sourceMappingURL=iotDigitalTwinInstanceInvokeRawCommand.d.ts.map