@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.92 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* An Application Insights private workbook definition.
*
* Uses Azure REST API version 2021-03-08.
*
* Other available API versions: 2015-05-01, 2020-10-20. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native applicationinsights [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare class MyWorkbook extends pulumi.CustomResource {
/**
* Get an existing MyWorkbook 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): MyWorkbook;
/**
* Returns true if the given object is an instance of MyWorkbook. 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 MyWorkbook;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Workbook category, as defined by the user at creation time.
*/
readonly category: pulumi.Output<string>;
/**
* The user-defined name of the private workbook.
*/
readonly displayName: pulumi.Output<string>;
/**
* Resource etag
*/
readonly etag: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Identity used for BYOS
*/
readonly identity: pulumi.Output<outputs.applicationinsights.MyWorkbookManagedIdentityResponse | undefined>;
/**
* The kind of workbook. Choices are user and shared.
*/
readonly kind: pulumi.Output<string | undefined>;
/**
* Resource location
*/
readonly location: pulumi.Output<string | undefined>;
/**
* Azure resource name
*/
readonly name: pulumi.Output<string | undefined>;
/**
* Configuration of this particular private workbook. Configuration data is a string containing valid JSON
*/
readonly serializedData: pulumi.Output<string>;
/**
* Optional resourceId for a source resource.
*/
readonly sourceId: pulumi.Output<string | undefined>;
/**
* BYOS Storage Account URI
*/
readonly storageUri: pulumi.Output<string | undefined>;
/**
* Metadata pertaining to creation and last modification of the resource.
*/
readonly systemData: pulumi.Output<outputs.applicationinsights.SystemDataResponse>;
/**
* Resource tags
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Date and time in UTC of the last modification that was made to this private workbook definition.
*/
readonly timeModified: pulumi.Output<string>;
/**
* Azure resource type
*/
readonly type: pulumi.Output<string | undefined>;
/**
* Unique user id of the specific user that owns this private workbook.
*/
readonly userId: pulumi.Output<string>;
/**
* This instance's version of the data model. This can change as new features are added that can be marked private workbook.
*/
readonly version: pulumi.Output<string | undefined>;
/**
* Create a MyWorkbook 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: MyWorkbookArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a MyWorkbook resource.
*/
export interface MyWorkbookArgs {
/**
* Workbook category, as defined by the user at creation time.
*/
category: pulumi.Input<string>;
/**
* The user-defined name of the private workbook.
*/
displayName: pulumi.Input<string>;
/**
* Azure resource Id
*/
id?: pulumi.Input<string>;
/**
* Identity used for BYOS
*/
identity?: pulumi.Input<inputs.applicationinsights.MyWorkbookManagedIdentityArgs>;
/**
* The kind of workbook. Choices are user and shared.
*/
kind?: pulumi.Input<string | enums.applicationinsights.Kind>;
/**
* Resource location
*/
location?: pulumi.Input<string>;
/**
* Azure resource name
*/
name?: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the Application Insights component resource.
*/
resourceName?: pulumi.Input<string>;
/**
* Configuration of this particular private workbook. Configuration data is a string containing valid JSON
*/
serializedData: pulumi.Input<string>;
/**
* Optional resourceId for a source resource.
*/
sourceId?: pulumi.Input<string>;
/**
* BYOS Storage Account URI
*/
storageUri?: pulumi.Input<string>;
/**
* Resource tags
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Azure resource type
*/
type?: pulumi.Input<string>;
/**
* This instance's version of the data model. This can change as new features are added that can be marked private workbook.
*/
version?: pulumi.Input<string>;
}