diff --git a/azure-applicationinsights/README.rst b/azure-applicationinsights/README.rst index 47d9a1fe69b3..01181cde9839 100644 --- a/azure-applicationinsights/README.rst +++ b/azure-applicationinsights/README.rst @@ -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 `__ library. diff --git a/azure-applicationinsights/azure/applicationinsights/application_insights_data_client.py b/azure-applicationinsights/azure/applicationinsights/application_insights_data_client.py index 83328895f60f..27c449d23c94 100644 --- a/azure-applicationinsights/azure/applicationinsights/application_insights_data_client.py +++ b/azure-applicationinsights/azure/applicationinsights/application_insights_data_client.py @@ -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 @@ -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. diff --git a/azure-applicationinsights/azure/applicationinsights/models/error_info.py b/azure-applicationinsights/azure/applicationinsights/models/error_info.py index 4e6ef3ba78fc..14f34f097774 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/error_info.py +++ b/azure-applicationinsights/azure/applicationinsights/models/error_info.py @@ -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 """ diff --git a/azure-applicationinsights/azure/applicationinsights/models/error_info_py3.py b/azure-applicationinsights/azure/applicationinsights/models/error_info_py3.py index ff3307147518..8d01ca19f1b8 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/error_info_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/error_info_py3.py @@ -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 """ diff --git a/azure-applicationinsights/azure/applicationinsights/models/error_response.py b/azure-applicationinsights/azure/applicationinsights/models/error_response.py index 5a1e0b618bbe..4461869de892 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/error_response.py +++ b/azure-applicationinsights/azure/applicationinsights/models/error_response.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/error_response_py3.py b/azure-applicationinsights/azure/applicationinsights/models/error_response_py3.py index f239ac315377..af501a2f5965 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/error_response_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/error_response_py3.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result.py index ab85901d2211..729504b268e8 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result_py3.py index c1fd4fc00842..9a6da5a4488d 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_availability_result_result_py3.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result.py index d5183eb49d0e..15bada46f728 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result_py3.py index 0a65ce9632e2..9779c8903b85 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_browser_timing_result_py3.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result.py index 05fd0a74ec54..f8e3739c4ead 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result_py3.py index 0cc02be6bb95..56f817395111 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_custom_event_result_py3.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result.py index 12c87e84ba55..d420605530a8 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result_py3.py index fd67a16f53f3..1ee698b7826d 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_custom_metric_result_py3.py @@ -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 = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result.py index eeece68c5cc1..f8fa5ff21abf 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result.py @@ -25,28 +25,31 @@ class EventsDependencyResult(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 dependency: - :type dependency: ~azure.applicationinsights.models.EventsDependencyInfo + :type dependency: + ~azure.applicationinsights.query.models.EventsDependencyInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result_py3.py index 363232fa0e2c..6e70948305d5 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_dependency_result_py3.py @@ -25,28 +25,31 @@ class EventsDependencyResult(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 dependency: - :type dependency: ~azure.applicationinsights.models.EventsDependencyInfo + :type dependency: + ~azure.applicationinsights.query.models.EventsDependencyInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail.py index d51c5357a013..6a6547a733fd 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail.py @@ -27,7 +27,7 @@ class EventsExceptionDetail(Model): :type id: str :param parsed_stack: The parsed stack :type parsed_stack: - list[~azure.applicationinsights.models.EventsExceptionDetailsParsedStack] + list[~azure.applicationinsights.query.models.EventsExceptionDetailsParsedStack] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail_py3.py index 875aae356549..0d1b2a90958e 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_detail_py3.py @@ -27,7 +27,7 @@ class EventsExceptionDetail(Model): :type id: str :param parsed_stack: The parsed stack :type parsed_stack: - list[~azure.applicationinsights.models.EventsExceptionDetailsParsedStack] + list[~azure.applicationinsights.query.models.EventsExceptionDetailsParsedStack] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_info.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_info.py index dac282869db6..986f82cbc365 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_info.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_info.py @@ -47,7 +47,7 @@ class EventsExceptionInfo(Model): :type innermost_assembly: str :param details: The details of the exception :type details: - list[~azure.applicationinsights.models.EventsExceptionDetail] + list[~azure.applicationinsights.query.models.EventsExceptionDetail] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_info_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_info_py3.py index dc575c2c0f3f..8c77597625c2 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_info_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_info_py3.py @@ -47,7 +47,7 @@ class EventsExceptionInfo(Model): :type innermost_assembly: str :param details: The details of the exception :type details: - list[~azure.applicationinsights.models.EventsExceptionDetail] + list[~azure.applicationinsights.query.models.EventsExceptionDetail] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_result.py index a1b2d90f062e..33c1ad89bf4a 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_result.py @@ -25,28 +25,31 @@ class EventsExceptionResult(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 exception: - :type exception: ~azure.applicationinsights.models.EventsExceptionInfo + :type exception: + ~azure.applicationinsights.query.models.EventsExceptionInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_exception_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_exception_result_py3.py index 6e908a1e8659..88ea880b0e72 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_exception_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_exception_result_py3.py @@ -25,28 +25,31 @@ class EventsExceptionResult(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 exception: - :type exception: ~azure.applicationinsights.models.EventsExceptionInfo + :type exception: + ~azure.applicationinsights.query.models.EventsExceptionInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result.py index e8ccba7aa68e..c8f859844aad 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result.py @@ -25,28 +25,31 @@ class EventsPageViewResult(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 page_view: - :type page_view: ~azure.applicationinsights.models.EventsPageViewInfo + :type page_view: + ~azure.applicationinsights.query.models.EventsPageViewInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result_py3.py index 1d998146fbf8..c2d34a33f671 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_page_view_result_py3.py @@ -25,28 +25,31 @@ class EventsPageViewResult(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 page_view: - :type page_view: ~azure.applicationinsights.models.EventsPageViewInfo + :type page_view: + ~azure.applicationinsights.query.models.EventsPageViewInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result.py index f57be3ebca70..d53b447a2f3c 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result.py @@ -25,29 +25,31 @@ class EventsPerformanceCounterResult(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 performance_counter: :type performance_counter: - ~azure.applicationinsights.models.EventsPerformanceCounterInfo + ~azure.applicationinsights.query.models.EventsPerformanceCounterInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result_py3.py index 6dd2a97f220d..81a891767c69 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_performance_counter_result_py3.py @@ -25,29 +25,31 @@ class EventsPerformanceCounterResult(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 performance_counter: :type performance_counter: - ~azure.applicationinsights.models.EventsPerformanceCounterInfo + ~azure.applicationinsights.query.models.EventsPerformanceCounterInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_request_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_request_result.py index 0df622bcb775..a57798516548 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_request_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_request_result.py @@ -25,28 +25,30 @@ class EventsRequestResult(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 request: - :type request: ~azure.applicationinsights.models.EventsRequestInfo + :type request: ~azure.applicationinsights.query.models.EventsRequestInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_request_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_request_result_py3.py index 1f6041d37ab7..972054958ce4 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_request_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_request_result_py3.py @@ -25,28 +25,30 @@ class EventsRequestResult(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 request: - :type request: ~azure.applicationinsights.models.EventsRequestInfo + :type request: ~azure.applicationinsights.query.models.EventsRequestInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_result.py index 4700fc598860..b84d8c770a35 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_result.py @@ -16,9 +16,9 @@ class EventsResult(Model): """An event query result. :param aimessages: OData messages for this response. - :type aimessages: list[~azure.applicationinsights.models.ErrorInfo] + :type aimessages: list[~azure.applicationinsights.query.models.ErrorInfo] :param value: - :type value: ~azure.applicationinsights.models.EventsResultData + :type value: ~azure.applicationinsights.query.models.EventsResultData """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_result_data.py b/azure-applicationinsights/azure/applicationinsights/models/events_result_data.py index 97d6cfb22070..c4cf3b6ebe09 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_result_data.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_result_data.py @@ -32,24 +32,26 @@ class EventsResultData(Model): :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 """ diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_result_data_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_result_data_py3.py index dd76e288e5d4..34ec898acd06 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_result_data_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_result_data_py3.py @@ -32,24 +32,26 @@ class EventsResultData(Model): :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 """ diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_result_py3.py index 3c66e4efaf26..a154e05aef55 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_result_py3.py @@ -16,9 +16,9 @@ class EventsResult(Model): """An event query result. :param aimessages: OData messages for this response. - :type aimessages: list[~azure.applicationinsights.models.ErrorInfo] + :type aimessages: list[~azure.applicationinsights.query.models.ErrorInfo] :param value: - :type value: ~azure.applicationinsights.models.EventsResultData + :type value: ~azure.applicationinsights.query.models.EventsResultData """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_results.py b/azure-applicationinsights/azure/applicationinsights/models/events_results.py index cc066b4b9d36..8b9a2228d1b4 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_results.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_results.py @@ -18,9 +18,10 @@ class EventsResults(Model): :param odatacontext: OData context metadata endpoint for this response :type odatacontext: str :param aimessages: OData messages for this response. - :type aimessages: list[~azure.applicationinsights.models.ErrorInfo] + :type aimessages: list[~azure.applicationinsights.query.models.ErrorInfo] :param value: Contents of the events query result. - :type value: list[~azure.applicationinsights.models.EventsResultData] + :type value: + list[~azure.applicationinsights.query.models.EventsResultData] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_results_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_results_py3.py index 97e9c80082cd..65a22168d007 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_results_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_results_py3.py @@ -18,9 +18,10 @@ class EventsResults(Model): :param odatacontext: OData context metadata endpoint for this response :type odatacontext: str :param aimessages: OData messages for this response. - :type aimessages: list[~azure.applicationinsights.models.ErrorInfo] + :type aimessages: list[~azure.applicationinsights.query.models.ErrorInfo] :param value: Contents of the events query result. - :type value: list[~azure.applicationinsights.models.EventsResultData] + :type value: + list[~azure.applicationinsights.query.models.EventsResultData] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_trace_result.py b/azure-applicationinsights/azure/applicationinsights/models/events_trace_result.py index f71782577c5c..2d26495c9f82 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_trace_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_trace_result.py @@ -25,28 +25,30 @@ class EventsTraceResult(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 trace: - :type trace: ~azure.applicationinsights.models.EventsTraceInfo + :type trace: ~azure.applicationinsights.query.models.EventsTraceInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/events_trace_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/events_trace_result_py3.py index d322f2e104b9..681f33d29018 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/events_trace_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/events_trace_result_py3.py @@ -25,28 +25,30 @@ class EventsTraceResult(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 trace: - :type trace: ~azure.applicationinsights.models.EventsTraceInfo + :type trace: ~azure.applicationinsights.query.models.EventsTraceInfo """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema.py index cacd7e4b3f1d..130ecf0ba8c3 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema.py @@ -23,7 +23,7 @@ class MetricsPostBodySchema(Model): :type id: str :param parameters: Required. The parameters for a single metrics query :type parameters: - ~azure.applicationinsights.models.MetricsPostBodySchemaParameters + ~azure.applicationinsights.query.models.MetricsPostBodySchemaParameters """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters.py index 79965b86de8f..2431f9a36184 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters.py @@ -36,17 +36,17 @@ class MetricsPostBodySchemaParameters(Model): 'availabilityResults/availabilityPercentage', 'availabilityResults/duration', 'billing/telemetryCount', 'customEvents/count' - :type metric_id: str or ~azure.applicationinsights.models.MetricId + :type metric_id: str or ~azure.applicationinsights.query.models.MetricId :param timespan: :type timespan: str :param aggregation: :type aggregation: list[str or - ~azure.applicationinsights.models.MetricsAggregation] + ~azure.applicationinsights.query.models.MetricsAggregation] :param interval: :type interval: timedelta :param segment: :type segment: list[str or - ~azure.applicationinsights.models.MetricsSegment] + ~azure.applicationinsights.query.models.MetricsSegment] :param top: :type top: int :param orderby: @@ -62,7 +62,7 @@ class MetricsPostBodySchemaParameters(Model): _attribute_map = { 'metric_id': {'key': 'metricId', 'type': 'str'}, 'timespan': {'key': 'timespan', 'type': 'str'}, - 'aggregation': {'key': 'aggregation', 'type': '[MetricsAggregation]'}, + 'aggregation': {'key': 'aggregation', 'type': '[str]'}, 'interval': {'key': 'interval', 'type': 'duration'}, 'segment': {'key': 'segment', 'type': '[str]'}, 'top': {'key': 'top', 'type': 'int'}, diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters_py3.py index 1643e880ee2e..7329e3052166 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_parameters_py3.py @@ -36,17 +36,17 @@ class MetricsPostBodySchemaParameters(Model): 'availabilityResults/availabilityPercentage', 'availabilityResults/duration', 'billing/telemetryCount', 'customEvents/count' - :type metric_id: str or ~azure.applicationinsights.models.MetricId + :type metric_id: str or ~azure.applicationinsights.query.models.MetricId :param timespan: :type timespan: str :param aggregation: :type aggregation: list[str or - ~azure.applicationinsights.models.MetricsAggregation] + ~azure.applicationinsights.query.models.MetricsAggregation] :param interval: :type interval: timedelta :param segment: :type segment: list[str or - ~azure.applicationinsights.models.MetricsSegment] + ~azure.applicationinsights.query.models.MetricsSegment] :param top: :type top: int :param orderby: @@ -62,7 +62,7 @@ class MetricsPostBodySchemaParameters(Model): _attribute_map = { 'metric_id': {'key': 'metricId', 'type': 'str'}, 'timespan': {'key': 'timespan', 'type': 'str'}, - 'aggregation': {'key': 'aggregation', 'type': '[MetricsAggregation]'}, + 'aggregation': {'key': 'aggregation', 'type': '[str]'}, 'interval': {'key': 'interval', 'type': 'duration'}, 'segment': {'key': 'segment', 'type': '[str]'}, 'top': {'key': 'top', 'type': 'int'}, diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_py3.py index 971b301e1c9d..0a4fe848984b 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_post_body_schema_py3.py @@ -23,7 +23,7 @@ class MetricsPostBodySchema(Model): :type id: str :param parameters: Required. The parameters for a single metrics query :type parameters: - ~azure.applicationinsights.models.MetricsPostBodySchemaParameters + ~azure.applicationinsights.query.models.MetricsPostBodySchemaParameters """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_result.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_result.py index 9f7ba4cb04d9..6c8de065aa0f 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_result.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_result.py @@ -16,7 +16,7 @@ class MetricsResult(Model): """A metric result. :param value: - :type value: ~azure.applicationinsights.models.MetricsResultInfo + :type value: ~azure.applicationinsights.query.models.MetricsResultInfo """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info.py index 62cb46940985..69f9b4ca3861 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info.py @@ -25,7 +25,8 @@ class MetricsResultInfo(Model): :param interval: The interval used to segment the metric data. :type interval: timedelta :param segments: Segmented metric data (if segmented). - :type segments: list[~azure.applicationinsights.models.MetricsSegmentInfo] + :type segments: + list[~azure.applicationinsights.query.models.MetricsSegmentInfo] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info_py3.py index 816274f7d803..e4005451e9b6 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_info_py3.py @@ -25,7 +25,8 @@ class MetricsResultInfo(Model): :param interval: The interval used to segment the metric data. :type interval: timedelta :param segments: Segmented metric data (if segmented). - :type segments: list[~azure.applicationinsights.models.MetricsSegmentInfo] + :type segments: + list[~azure.applicationinsights.query.models.MetricsSegmentInfo] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_py3.py index eb4095d987b1..caad749117bf 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_result_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_result_py3.py @@ -16,7 +16,7 @@ class MetricsResult(Model): """A metric result. :param value: - :type value: ~azure.applicationinsights.models.MetricsResultInfo + :type value: ~azure.applicationinsights.query.models.MetricsResultInfo """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item.py index 41d359351403..05367f7646cf 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item.py @@ -22,7 +22,7 @@ class MetricsResultsItem(Model): :param status: Required. The HTTP status code of this metric query. :type status: int :param body: Required. The results of this metric query. - :type body: ~azure.applicationinsights.models.MetricsResult + :type body: ~azure.applicationinsights.query.models.MetricsResult """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item_py3.py index f5c311907771..69d079f49b10 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_results_item_py3.py @@ -22,7 +22,7 @@ class MetricsResultsItem(Model): :param status: Required. The HTTP status code of this metric query. :type status: int :param body: Required. The results of this metric query. - :type body: ~azure.applicationinsights.models.MetricsResult + :type body: ~azure.applicationinsights.query.models.MetricsResult """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info.py index 2b59be2e86dc..9fc5d23a86d1 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info.py @@ -25,7 +25,8 @@ class MetricsSegmentInfo(Model): specified). :type end: datetime :param segments: Segmented metric data (if further segmented). - :type segments: list[~azure.applicationinsights.models.MetricsSegmentInfo] + :type segments: + list[~azure.applicationinsights.query.models.MetricsSegmentInfo] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info_py3.py b/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info_py3.py index c9b91967b630..0fa80b9df930 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/metrics_segment_info_py3.py @@ -25,7 +25,8 @@ class MetricsSegmentInfo(Model): specified). :type end: datetime :param segments: Segmented metric data (if further segmented). - :type segments: list[~azure.applicationinsights.models.MetricsSegmentInfo] + :type segments: + list[~azure.applicationinsights.query.models.MetricsSegmentInfo] """ _attribute_map = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/query_results.py b/azure-applicationinsights/azure/applicationinsights/models/query_results.py index cd70e17383b3..e2f709b3bbb7 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/query_results.py +++ b/azure-applicationinsights/azure/applicationinsights/models/query_results.py @@ -20,7 +20,7 @@ class QueryResults(Model): All required parameters must be populated in order to send to Azure. :param tables: Required. The list of tables, columns and rows. - :type tables: list[~azure.applicationinsights.models.Table] + :type tables: list[~azure.applicationinsights.query.models.Table] """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/query_results_py3.py b/azure-applicationinsights/azure/applicationinsights/models/query_results_py3.py index a1ff010ef1d3..eb60942e72d9 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/query_results_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/query_results_py3.py @@ -20,7 +20,7 @@ class QueryResults(Model): All required parameters must be populated in order to send to Azure. :param tables: Required. The list of tables, columns and rows. - :type tables: list[~azure.applicationinsights.models.Table] + :type tables: list[~azure.applicationinsights.query.models.Table] """ _validation = { diff --git a/azure-applicationinsights/azure/applicationinsights/models/table.py b/azure-applicationinsights/azure/applicationinsights/models/table.py index 8acce07b8fa5..8dfb68e9a880 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/table.py +++ b/azure-applicationinsights/azure/applicationinsights/models/table.py @@ -22,7 +22,7 @@ class Table(Model): :param name: Required. The name of the table. :type name: str :param columns: Required. The list of columns in this table. - :type columns: list[~azure.applicationinsights.models.Column] + :type columns: list[~azure.applicationinsights.query.models.Column] :param rows: Required. The resulting rows from this query. :type rows: list[list[object]] """ diff --git a/azure-applicationinsights/azure/applicationinsights/models/table_py3.py b/azure-applicationinsights/azure/applicationinsights/models/table_py3.py index b6e86d86036f..d829ede6f2b1 100644 --- a/azure-applicationinsights/azure/applicationinsights/models/table_py3.py +++ b/azure-applicationinsights/azure/applicationinsights/models/table_py3.py @@ -22,7 +22,7 @@ class Table(Model): :param name: Required. The name of the table. :type name: str :param columns: Required. The list of columns in this table. - :type columns: list[~azure.applicationinsights.models.Column] + :type columns: list[~azure.applicationinsights.query.models.Column] :param rows: Required. The resulting rows from this query. :type rows: list[list[object]] """ diff --git a/azure-applicationinsights/azure/applicationinsights/operations/events_operations.py b/azure-applicationinsights/azure/applicationinsights/operations/events_operations.py index 08a70504d336..a4e9050e661d 100644 --- a/azure-applicationinsights/azure/applicationinsights/operations/events_operations.py +++ b/azure-applicationinsights/azure/applicationinsights/operations/events_operations.py @@ -49,7 +49,8 @@ def get_by_type( 'traces', 'customEvents', 'pageViews', 'browserTimings', 'requests', 'dependencies', 'exceptions', 'availabilityResults', 'performanceCounters', 'customMetrics' - :type event_type: str or ~azure.applicationinsights.models.EventType + :type event_type: str or + ~azure.applicationinsights.query.models.EventType :param timespan: Optional. The timespan over which to retrieve events. This is an ISO8601 time period value. This timespan is applied in addition to any that are specified in the Odata expression. @@ -82,10 +83,10 @@ def get_by_type( :param operation_config: :ref:`Operation configuration overrides`. :return: EventsResults or ClientRawResponse if raw=true - :rtype: ~azure.applicationinsights.models.EventsResults or + :rtype: ~azure.applicationinsights.query.models.EventsResults or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get_by_type.metadata['url'] @@ -159,7 +160,8 @@ def get( 'traces', 'customEvents', 'pageViews', 'browserTimings', 'requests', 'dependencies', 'exceptions', 'availabilityResults', 'performanceCounters', 'customMetrics' - :type event_type: str or ~azure.applicationinsights.models.EventType + :type event_type: str or + ~azure.applicationinsights.query.models.EventType :param event_id: ID of event. :type event_id: str :param timespan: Optional. The timespan over which to retrieve events. @@ -172,10 +174,10 @@ def get( :param operation_config: :ref:`Operation configuration overrides`. :return: EventsResults or ClientRawResponse if raw=true - :rtype: ~azure.applicationinsights.models.EventsResults or + :rtype: ~azure.applicationinsights.query.models.EventsResults or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get.metadata['url'] @@ -233,7 +235,7 @@ def get_odata_metadata( :return: object or ClientRawResponse if raw=true :rtype: object or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get_odata_metadata.metadata['url'] diff --git a/azure-applicationinsights/azure/applicationinsights/operations/metrics_operations.py b/azure-applicationinsights/azure/applicationinsights/operations/metrics_operations.py index 82a011e0601e..79eecf0a68fa 100644 --- a/azure-applicationinsights/azure/applicationinsights/operations/metrics_operations.py +++ b/azure-applicationinsights/azure/applicationinsights/operations/metrics_operations.py @@ -63,7 +63,8 @@ def get( 'availabilityResults/availabilityPercentage', 'availabilityResults/duration', 'billing/telemetryCount', 'customEvents/count' - :type metric_id: str or ~azure.applicationinsights.models.MetricId + :type metric_id: str or + ~azure.applicationinsights.query.models.MetricId :param timespan: The timespan over which to retrieve metric values. This is an ISO8601 time period value. If timespan is omitted, a default time range of `PT12H` ("last 12 hours") is used. The actual @@ -83,14 +84,14 @@ def get( with a comma. If no aggregation is specified, then the default aggregation for the metric is used. :type aggregation: list[str or - ~azure.applicationinsights.models.MetricsAggregation] + ~azure.applicationinsights.query.models.MetricsAggregation] :param segment: The name of the dimension to segment the metric values by. This dimension must be applicable to the metric you are retrieving. To segment by more than one dimension at a time, separate them with a comma (,). In this case, the metric data will be segmented in the order the dimensions are listed in the parameter. :type segment: list[str or - ~azure.applicationinsights.models.MetricsSegment] + ~azure.applicationinsights.query.models.MetricsSegment] :param top: The number of segments to return. This value is only valid when segment is specified. :type top: int @@ -108,10 +109,10 @@ def get( :param operation_config: :ref:`Operation configuration overrides`. :return: MetricsResult or ClientRawResponse if raw=true - :rtype: ~azure.applicationinsights.models.MetricsResult or + :rtype: ~azure.applicationinsights.query.models.MetricsResult or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get.metadata['url'] @@ -128,7 +129,7 @@ def get( if interval is not None: query_parameters['interval'] = self._serialize.query("interval", interval, 'duration') if aggregation is not None: - query_parameters['aggregation'] = self._serialize.query("aggregation", aggregation, '[MetricsAggregation]', div=',', min_items=1) + query_parameters['aggregation'] = self._serialize.query("aggregation", aggregation, '[str]', div=',', min_items=1) if segment is not None: query_parameters['segment'] = self._serialize.query("segment", segment, '[str]', div=',', min_items=1) if top is not None: @@ -174,17 +175,18 @@ def get_multiple( :type app_id: str :param body: The batched metrics query. :type body: - list[~azure.applicationinsights.models.MetricsPostBodySchema] + list[~azure.applicationinsights.query.models.MetricsPostBodySchema] :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response :param operation_config: :ref:`Operation configuration overrides`. :return: list or ClientRawResponse if raw=true - :rtype: list[~azure.applicationinsights.models.MetricsResultsItem] or + :rtype: + list[~azure.applicationinsights.query.models.MetricsResultsItem] or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get_multiple.metadata['url'] @@ -242,7 +244,7 @@ def get_metadata( :return: object or ClientRawResponse if raw=true :rtype: object or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.get_metadata.metadata['url'] diff --git a/azure-applicationinsights/azure/applicationinsights/operations/query_operations.py b/azure-applicationinsights/azure/applicationinsights/operations/query_operations.py index f08c7f7ffe6c..7250d777b407 100644 --- a/azure-applicationinsights/azure/applicationinsights/operations/query_operations.py +++ b/azure-applicationinsights/azure/applicationinsights/operations/query_operations.py @@ -47,17 +47,17 @@ def execute( :param body: The Analytics query. Learn more about the [Analytics query syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) - :type body: ~azure.applicationinsights.models.QueryBody + :type body: ~azure.applicationinsights.query.models.QueryBody :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response :param operation_config: :ref:`Operation configuration overrides`. :return: QueryResults or ClientRawResponse if raw=true - :rtype: ~azure.applicationinsights.models.QueryResults or + :rtype: ~azure.applicationinsights.query.models.QueryResults or ~msrest.pipeline.ClientRawResponse :raises: - :class:`ErrorResponseException` + :class:`ErrorResponseException` """ # Construct URL url = self.execute.metadata['url'] diff --git a/azure-applicationinsights/setup.py b/azure-applicationinsights/setup.py index ea6a093aaec1..ffe84fc2eb9f 100644 --- a/azure-applicationinsights/setup.py +++ b/azure-applicationinsights/setup.py @@ -78,7 +78,8 @@ zip_safe=False, packages=find_packages(exclude=["tests"]), install_requires=[ - 'msrest>=0.5.4,<2.0.0', + 'msrest>=0.5.0', + 'msrestazure>=0.4.32,<2.0.0', 'azure-common~=1.1', ], cmdclass=cmdclass