class Azure::Monitor::Mgmt::V2015_05_01::Models::ApplicationInsightsComponent
An Application Insights component definition.
Attributes
@return [String] Application Insights Unique ID for your Application.
@return [String] The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
@return [ApplicationType] Type of application being monitored. Possible values include: 'web', 'other'. Default value: 'web' .
@return [DateTime] Creation Date for the Application Insights component, in ISO 8601 format.
@return [FlowType] Used by the Application Insights system to determine what kind of flow this component was created by. This is to be set to 'Bluefield' when creating/updating a component via the REST API. Possible values include: 'Bluefield'. Default value: 'Bluefield' .
@return [String] The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
@return [String] Token used to authenticate communications with between Application Insights and HockeyApp.
@return [String] Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure
Application Insights. This value will be supplied upon construction of each new Application Insights component.
@return [String] The kind of application that this component refers to, used to customize UI. This value is a freeform string, values should typically be one of the following: web, ios, other, store, java, phone.
@return [String] Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
@return [RequestSource] Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'. Possible values include: 'rest'. Default value: 'rest' .
@return [Float] Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
@return [String] Azure
Tenant Id.
Public Class Methods
Mapper for ApplicationInsightsComponent
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01/generated/azure_mgmt_monitor/models/application_insights_component.rb, line 81 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationInsightsComponent', type: { name: 'Composite', class_name: 'ApplicationInsightsComponent', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, kind: { client_side_validation: true, required: true, serialized_name: 'kind', type: { name: 'String' } }, application_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.ApplicationId', type: { name: 'String' } }, app_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.AppId', type: { name: 'String' } }, application_type: { client_side_validation: true, required: true, serialized_name: 'properties.Application_Type', default_value: 'web', type: { name: 'String' } }, flow_type: { client_side_validation: true, required: false, serialized_name: 'properties.Flow_Type', default_value: 'Bluefield', type: { name: 'String' } }, request_source: { client_side_validation: true, required: false, serialized_name: 'properties.Request_Source', default_value: 'rest', type: { name: 'String' } }, instrumentation_key: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.InstrumentationKey', type: { name: 'String' } }, creation_date: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.CreationDate', type: { name: 'DateTime' } }, tenant_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.TenantId', type: { name: 'String' } }, hockey_app_id: { client_side_validation: true, required: false, serialized_name: 'properties.HockeyAppId', type: { name: 'String' } }, hockey_app_token: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.HockeyAppToken', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, sampling_percentage: { client_side_validation: true, required: false, serialized_name: 'properties.SamplingPercentage', type: { name: 'Double' } } } } } end