@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 6.79 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";
/**
* The profile resource format.
*
* Uses Azure REST API version 2017-04-26. In version 2.x of the Azure Native provider, it used API version 2017-04-26.
*/
export declare class Profile extends pulumi.CustomResource {
/**
* Get an existing Profile 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): Profile;
/**
* Returns true if the given object is an instance of Profile. 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 Profile;
/**
* The api entity set name. This becomes the odata entity set name for the entity Type being referred in this object.
*/
readonly apiEntitySetName: pulumi.Output<string | undefined>;
/**
* The attributes for the Type.
*/
readonly attributes: pulumi.Output<{
[key: string]: string[];
} | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Localized descriptions for the property.
*/
readonly description: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Localized display names for the property.
*/
readonly displayName: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Type of entity.
*/
readonly entityType: pulumi.Output<string | undefined>;
/**
* The properties of the Profile.
*/
readonly fields: pulumi.Output<outputs.customerinsights.PropertyDefinitionResponse[] | undefined>;
/**
* The instance count.
*/
readonly instancesCount: pulumi.Output<number | undefined>;
/**
* Large Image associated with the Property or EntityType.
*/
readonly largeImage: pulumi.Output<string | undefined>;
/**
* The last changed time for the type definition.
*/
readonly lastChangedUtc: pulumi.Output<string>;
/**
* Any custom localized attributes for the Type.
*/
readonly localizedAttributes: pulumi.Output<{
[key: string]: {
[key: string]: string;
};
} | undefined>;
/**
* Medium Image associated with the Property or EntityType.
*/
readonly mediumImage: pulumi.Output<string | undefined>;
/**
* Resource name.
*/
readonly name: pulumi.Output<string>;
/**
* Provisioning state.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* The schema org link. This helps ACI identify and suggest semantic models.
*/
readonly schemaItemTypeLink: pulumi.Output<string | undefined>;
/**
* Small Image associated with the Property or EntityType.
*/
readonly smallImage: pulumi.Output<string | undefined>;
/**
* The strong IDs.
*/
readonly strongIds: pulumi.Output<outputs.customerinsights.StrongIdResponse[] | undefined>;
/**
* The hub name.
*/
readonly tenantId: pulumi.Output<string>;
/**
* The timestamp property name. Represents the time when the interaction or profile update happened.
*/
readonly timestampFieldName: pulumi.Output<string | undefined>;
/**
* Resource type.
*/
readonly type: pulumi.Output<string>;
/**
* The name of the entity.
*/
readonly typeName: pulumi.Output<string | undefined>;
/**
* Create a Profile 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: ProfileArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Profile resource.
*/
export interface ProfileArgs {
/**
* The api entity set name. This becomes the odata entity set name for the entity Type being referred in this object.
*/
apiEntitySetName?: pulumi.Input<string>;
/**
* The attributes for the Type.
*/
attributes?: pulumi.Input<{
[key: string]: pulumi.Input<pulumi.Input<string>[]>;
}>;
/**
* Localized descriptions for the property.
*/
description?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Localized display names for the property.
*/
displayName?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Type of entity.
*/
entityType?: pulumi.Input<enums.customerinsights.EntityTypes>;
/**
* The properties of the Profile.
*/
fields?: pulumi.Input<pulumi.Input<inputs.customerinsights.PropertyDefinitionArgs>[]>;
/**
* The name of the hub.
*/
hubName: pulumi.Input<string>;
/**
* The instance count.
*/
instancesCount?: pulumi.Input<number>;
/**
* Large Image associated with the Property or EntityType.
*/
largeImage?: pulumi.Input<string>;
/**
* Any custom localized attributes for the Type.
*/
localizedAttributes?: pulumi.Input<{
[key: string]: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}>;
/**
* Medium Image associated with the Property or EntityType.
*/
mediumImage?: pulumi.Input<string>;
/**
* The name of the profile.
*/
profileName?: pulumi.Input<string>;
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The schema org link. This helps ACI identify and suggest semantic models.
*/
schemaItemTypeLink?: pulumi.Input<string>;
/**
* Small Image associated with the Property or EntityType.
*/
smallImage?: pulumi.Input<string>;
/**
* The strong IDs.
*/
strongIds?: pulumi.Input<pulumi.Input<inputs.customerinsights.StrongIdArgs>[]>;
/**
* The timestamp property name. Represents the time when the interaction or profile update happened.
*/
timestampFieldName?: pulumi.Input<string>;
/**
* The name of the entity.
*/
typeName?: pulumi.Input<string>;
}