Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-applicationinsights/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the Microsoft Azure Application Insights Client Library.
Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.

For the older Azure Service Management (ASM) libraries, see
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(

super(ApplicationInsightsDataClientConfiguration, self).__init__(base_url)

self.add_user_agent('azure-applicationinsights/{}'.format(VERSION))
self.add_user_agent('azure-applicationinsights-query/{}'.format(VERSION))

self.credentials = credentials

Expand All @@ -51,11 +51,11 @@ class ApplicationInsightsDataClient(SDKClient):
:vartype config: ApplicationInsightsDataClientConfiguration

:ivar metrics: Metrics operations
:vartype metrics: azure.applicationinsights.operations.MetricsOperations
:vartype metrics: azure.applicationinsights.query.operations.MetricsOperations
:ivar events: Events operations
:vartype events: azure.applicationinsights.operations.EventsOperations
:vartype events: azure.applicationinsights.query.operations.EventsOperations
:ivar query: Query operations
:vartype query: azure.applicationinsights.operations.QueryOperations
:vartype query: azure.applicationinsights.query.operations.QueryOperations

:param credentials: Subscription credentials which uniquely identify
client subscription.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class ErrorInfo(Model):
:param message: Required. A human readable error message.
:type message: str
:param details: error details.
:type details: list[~azure.applicationinsights.models.ErrorDetail]
:type details: list[~azure.applicationinsights.query.models.ErrorDetail]
:param innererror: Inner error details if they exist.
:type innererror: ~azure.applicationinsights.models.ErrorInfo
:type innererror: ~azure.applicationinsights.query.models.ErrorInfo
:param additional_properties:
:type additional_properties: object
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class ErrorInfo(Model):
:param message: Required. A human readable error message.
:type message: str
:param details: error details.
:type details: list[~azure.applicationinsights.models.ErrorDetail]
:type details: list[~azure.applicationinsights.query.models.ErrorDetail]
:param innererror: Inner error details if they exist.
:type innererror: ~azure.applicationinsights.models.ErrorInfo
:type innererror: ~azure.applicationinsights.query.models.ErrorInfo
:param additional_properties:
:type additional_properties: object
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ErrorResponse(Model):
All required parameters must be populated in order to send to Azure.

:param error: Required. The error details.
:type error: ~azure.applicationinsights.models.ErrorInfo
:type error: ~azure.applicationinsights.query.models.ErrorInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ErrorResponse(Model):
All required parameters must be populated in order to send to Azure.

:param error: Required. The error details.
:type error: ~azure.applicationinsights.models.ErrorInfo
:type error: ~azure.applicationinsights.query.models.ErrorInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,31 @@ class EventsAvailabilityResultResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param availability_result:
:type availability_result:
~azure.applicationinsights.models.EventsAvailabilityResultInfo
~azure.applicationinsights.query.models.EventsAvailabilityResultInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,31 @@ class EventsAvailabilityResultResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param availability_result:
:type availability_result:
~azure.applicationinsights.models.EventsAvailabilityResultInfo
~azure.applicationinsights.query.models.EventsAvailabilityResultInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,34 @@ class EventsBrowserTimingResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param browser_timing:
:type browser_timing:
~azure.applicationinsights.models.EventsBrowserTimingInfo
~azure.applicationinsights.query.models.EventsBrowserTimingInfo
:param client_performance:
:type client_performance:
~azure.applicationinsights.models.EventsClientPerformanceInfo
~azure.applicationinsights.query.models.EventsClientPerformanceInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,34 @@ class EventsBrowserTimingResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param browser_timing:
:type browser_timing:
~azure.applicationinsights.models.EventsBrowserTimingInfo
~azure.applicationinsights.query.models.EventsBrowserTimingInfo
:param client_performance:
:type client_performance:
~azure.applicationinsights.models.EventsClientPerformanceInfo
~azure.applicationinsights.query.models.EventsClientPerformanceInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,31 @@ class EventsCustomEventResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param custom_event:
:type custom_event:
~azure.applicationinsights.models.EventsCustomEventInfo
~azure.applicationinsights.query.models.EventsCustomEventInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,31 @@ class EventsCustomEventResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param custom_event:
:type custom_event:
~azure.applicationinsights.models.EventsCustomEventInfo
~azure.applicationinsights.query.models.EventsCustomEventInfo
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,31 @@ class EventsCustomMetricResult(EventsResultData):
:type timestamp: datetime
:param custom_dimensions: Custom dimensions of the event
:type custom_dimensions:
~azure.applicationinsights.models.EventsResultDataCustomDimensions
~azure.applicationinsights.query.models.EventsResultDataCustomDimensions
:param custom_measurements: Custom measurements of the event
:type custom_measurements:
~azure.applicationinsights.models.EventsResultDataCustomMeasurements
~azure.applicationinsights.query.models.EventsResultDataCustomMeasurements
:param operation: Operation info of the event
:type operation: ~azure.applicationinsights.models.EventsOperationInfo
:type operation:
~azure.applicationinsights.query.models.EventsOperationInfo
:param session: Session info of the event
:type session: ~azure.applicationinsights.models.EventsSessionInfo
:type session: ~azure.applicationinsights.query.models.EventsSessionInfo
:param user: User info of the event
:type user: ~azure.applicationinsights.models.EventsUserInfo
:type user: ~azure.applicationinsights.query.models.EventsUserInfo
:param cloud: Cloud info of the event
:type cloud: ~azure.applicationinsights.models.EventsCloudInfo
:type cloud: ~azure.applicationinsights.query.models.EventsCloudInfo
:param ai: AI info of the event
:type ai: ~azure.applicationinsights.models.EventsAiInfo
:type ai: ~azure.applicationinsights.query.models.EventsAiInfo
:param application: Application info of the event
:type application: ~azure.applicationinsights.models.EventsApplicationInfo
:type application:
~azure.applicationinsights.query.models.EventsApplicationInfo
:param client: Client info of the event
:type client: ~azure.applicationinsights.models.EventsClientInfo
:type client: ~azure.applicationinsights.query.models.EventsClientInfo
:param type: Required. Constant filled by server.
:type type: str
:param custom_metric:
:type custom_metric:
~azure.applicationinsights.models.EventsCustomMetricInfo
~azure.applicationinsights.query.models.EventsCustomMetricInfo
"""

_validation = {
Expand Down
Loading