[][src]Struct rusoto_application_insights::ApplicationInsightsClient

pub struct ApplicationInsightsClient { /* fields omitted */ }

A client for the Application Insights API.

Implementations

impl ApplicationInsightsClient[src]

pub fn new(region: Region) -> ApplicationInsightsClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> ApplicationInsightsClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(
    client: Client,
    region: Region
) -> ApplicationInsightsClient
[src]

Trait Implementations

impl ApplicationInsights for ApplicationInsightsClient[src]

pub fn create_application<'life0, 'async_trait>(
    &'life0 self,
    input: CreateApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<CreateApplicationResponse, RusotoError<CreateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds an application that is created from a resource group.

pub fn create_component<'life0, 'async_trait>(
    &'life0 self,
    input: CreateComponentRequest
) -> Pin<Box<dyn Future<Output = Result<CreateComponentResponse, RusotoError<CreateComponentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a custom component by grouping similar standalone instances to monitor.

pub fn create_log_pattern<'life0, 'async_trait>(
    &'life0 self,
    input: CreateLogPatternRequest
) -> Pin<Box<dyn Future<Output = Result<CreateLogPatternResponse, RusotoError<CreateLogPatternError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds an log pattern to a LogPatternSet.

pub fn delete_application<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationResponse, RusotoError<DeleteApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes the specified application from monitoring. Does not delete the application.

pub fn delete_component<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteComponentRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteComponentResponse, RusotoError<DeleteComponentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Ungroups a custom component. When you ungroup custom components, all applicable monitors that are set up for the component are removed and the instances revert to their standalone status.

pub fn delete_log_pattern<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteLogPatternRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteLogPatternResponse, RusotoError<DeleteLogPatternError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes the specified log pattern from a LogPatternSet.

pub fn describe_application<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeApplicationResponse, RusotoError<DescribeApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the application.

pub fn describe_component<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeComponentRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeComponentResponse, RusotoError<DescribeComponentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes a component and lists the resources that are grouped together in a component.

pub fn describe_component_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeComponentConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeComponentConfigurationResponse, RusotoError<DescribeComponentConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the monitoring configuration of the component.

pub fn describe_component_configuration_recommendation<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeComponentConfigurationRecommendationRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeComponentConfigurationRecommendationResponse, RusotoError<DescribeComponentConfigurationRecommendationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the recommended monitoring configuration of the component.

pub fn describe_log_pattern<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeLogPatternRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeLogPatternResponse, RusotoError<DescribeLogPatternError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describe a specific log pattern from a LogPatternSet.

pub fn describe_observation<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeObservationRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeObservationResponse, RusotoError<DescribeObservationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes an anomaly or error with the application.

pub fn describe_problem<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeProblemRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeProblemResponse, RusotoError<DescribeProblemError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes an application problem.

pub fn describe_problem_observations<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeProblemObservationsRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeProblemObservationsResponse, RusotoError<DescribeProblemObservationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describes the anomalies or errors associated with the problem.

pub fn list_applications<'life0, 'async_trait>(
    &'life0 self,
    input: ListApplicationsRequest
) -> Pin<Box<dyn Future<Output = Result<ListApplicationsResponse, RusotoError<ListApplicationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the IDs of the applications that you are monitoring.

pub fn list_components<'life0, 'async_trait>(
    &'life0 self,
    input: ListComponentsRequest
) -> Pin<Box<dyn Future<Output = Result<ListComponentsResponse, RusotoError<ListComponentsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the auto-grouped, standalone, and custom components of the application.

pub fn list_configuration_history<'life0, 'async_trait>(
    &'life0 self,
    input: ListConfigurationHistoryRequest
) -> Pin<Box<dyn Future<Output = Result<ListConfigurationHistoryResponse, RusotoError<ListConfigurationHistoryError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are:

  • INFO: creating a new alarm or updating an alarm threshold.

  • WARN: alarm not created due to insufficient data points used to predict thresholds.

  • ERROR: alarm not created due to permission errors or exceeding quotas.

pub fn list_log_pattern_sets<'life0, 'async_trait>(
    &'life0 self,
    input: ListLogPatternSetsRequest
) -> Pin<Box<dyn Future<Output = Result<ListLogPatternSetsResponse, RusotoError<ListLogPatternSetsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the log pattern sets in the specific application.

pub fn list_log_patterns<'life0, 'async_trait>(
    &'life0 self,
    input: ListLogPatternsRequest
) -> Pin<Box<dyn Future<Output = Result<ListLogPatternsResponse, RusotoError<ListLogPatternsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the log patterns in the specific log LogPatternSet.

pub fn list_problems<'life0, 'async_trait>(
    &'life0 self,
    input: ListProblemsRequest
) -> Pin<Box<dyn Future<Output = Result<ListProblemsResponse, RusotoError<ListProblemsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the problems with your application.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieve a list of the tags (keys and values) that are associated with a specified application. A tag is a label that you optionally define and associate with an application. Each tag consists of a required tag key and an optional associated tag value. A tag key is a general label that acts as a category for more specific tag values. A tag value acts as a descriptor within a tag key.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Add one or more tags (keys and values) to a specified application. A tag is a label that you optionally define and associate with an application. Tags can help you categorize and manage application in different ways, such as by purpose, owner, environment, or other criteria.

Each tag consists of a required tag key and an associated tag value, both of which you define. A tag key is a general label that acts as a category for more specific tag values. A tag value acts as a descriptor within a tag key.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Remove one or more tags (keys and values) from a specified application.

pub fn update_application<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateApplicationResponse, RusotoError<UpdateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the application.

pub fn update_component<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateComponentRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateComponentResponse, RusotoError<UpdateComponentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the custom component name and/or the list of resources that make up the component.

pub fn update_component_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateComponentConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateComponentConfigurationResponse, RusotoError<UpdateComponentConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the monitoring configurations for the component. The configuration input parameter is an escaped JSON of the configuration and should match the schema of what is returned by DescribeComponentConfigurationRecommendation.

pub fn update_log_pattern<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateLogPatternRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateLogPatternResponse, RusotoError<UpdateLogPatternError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a log pattern to a LogPatternSet.

impl Clone for ApplicationInsightsClient[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.