# WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::ApplicationInsights module Types # Describes a standalone resource or similarly grouped resources that # the application is made up of. # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @!attribute [rw] resource_type # The resource type. Supported resource types include EC2 instances, # Auto Scaling group, Classic ELB, Application ELB, and SQS Queue. # @return [String] # # @!attribute [rw] tier # The stack tier of the application component. # @return [String] # # @!attribute [rw] monitor # Indicates whether the application component is monitored. # @return [Boolean] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationComponent AWS API Documentation # class ApplicationComponent < Struct.new( :component_name, :resource_type, :tier, :monitor) include Aws::Structure end # Describes the status of the application. # # @!attribute [rw] resource_group_name # The name of the resource group used for the application. # @return [String] # # @!attribute [rw] life_cycle # The lifecycle of the application. # @return [String] # # @!attribute [rw] ops_item_sns_topic_arn # The SNS topic provided to Application Insights that is associated to # the created opsItems to receive SNS notifications for opsItem # updates. # @return [String] # # @!attribute [rw] ops_center_enabled # Indicates whether Application Insights will create opsItems for any # problem detected by Application Insights for an application. # @return [Boolean] # # @!attribute [rw] remarks # The issues on the user side that block Application Insights from # successfully monitoring an application. Example remarks include: # # * “Configuring application, detected 1 Errors, 3 Warnings” # # * “Configuring application, detected 1 Unconfigured Components” # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ApplicationInfo AWS API Documentation # class ApplicationInfo < Struct.new( :resource_group_name, :life_cycle, :ops_item_sns_topic_arn, :ops_center_enabled, :remarks) include Aws::Structure end # The request is not understood by the server. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/BadRequestException AWS API Documentation # class BadRequestException < Struct.new( :message) include Aws::Structure end # The event information. # # @!attribute [rw] monitored_resource_arn # The resource monitored by Application Insights. # @return [String] # # @!attribute [rw] event_status # The status of the configuration update event. Possible values # include INFO, WARN, and ERROR. # @return [String] # # @!attribute [rw] event_resource_type # The resource type that Application Insights attempted to configure, # for example, CLOUDWATCH\_ALARM. # @return [String] # # @!attribute [rw] event_time # The timestamp of the event. # @return [Time] # # @!attribute [rw] event_detail # The details of the event in plain text. # @return [String] # # @!attribute [rw] event_resource_name # The name of the resource Application Insights attempted to # configure. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ConfigurationEvent AWS API Documentation # class ConfigurationEvent < Struct.new( :monitored_resource_arn, :event_status, :event_resource_type, :event_time, :event_detail, :event_resource_name) include Aws::Structure end # @note When making an API call, you may pass CreateApplicationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # ops_center_enabled: false, # ops_item_sns_topic_arn: "OpsItemSNSTopicArn", # tags: [ # { # key: "TagKey", # required # value: "TagValue", # required # }, # ], # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] ops_center_enabled # When set to `true`, creates opsItems for any problems detected on an # application. # @return [Boolean] # # @!attribute [rw] ops_item_sns_topic_arn # The SNS topic provided to Application Insights that is associated to # the created opsItem. Allows you to receive notifications for updates # to the opsItem. # @return [String] # # @!attribute [rw] tags # List of tags to add to the application. tag key (`Key`) and an # associated tag value (`Value`). The maximum length of a tag key is # 128 characters. The maximum length of a tag value is 256 characters. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationRequest AWS API Documentation # class CreateApplicationRequest < Struct.new( :resource_group_name, :ops_center_enabled, :ops_item_sns_topic_arn, :tags) include Aws::Structure end # @!attribute [rw] application_info # Information about the application. # @return [Types::ApplicationInfo] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateApplicationResponse AWS API Documentation # class CreateApplicationResponse < Struct.new( :application_info) include Aws::Structure end # @note When making an API call, you may pass CreateComponentRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # resource_list: ["ResourceARN"], # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @!attribute [rw] resource_list # The list of resource ARNs that belong to the component. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateComponentRequest AWS API Documentation # class CreateComponentRequest < Struct.new( :resource_group_name, :component_name, :resource_list) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateComponentResponse AWS API Documentation # class CreateComponentResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass CreateLogPatternRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # pattern_set_name: "LogPatternSetName", # required # pattern_name: "LogPatternName", # required # pattern: "LogPatternRegex", # required # rank: 1, # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] pattern_set_name # The name of the log pattern set. # @return [String] # # @!attribute [rw] pattern_name # The name of the log pattern. # @return [String] # # @!attribute [rw] pattern # The log pattern. # @return [String] # # @!attribute [rw] rank # Rank of the log pattern. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateLogPatternRequest AWS API Documentation # class CreateLogPatternRequest < Struct.new( :resource_group_name, :pattern_set_name, :pattern_name, :pattern, :rank) include Aws::Structure end # @!attribute [rw] log_pattern # The successfully created log pattern. # @return [Types::LogPattern] # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/CreateLogPatternResponse AWS API Documentation # class CreateLogPatternResponse < Struct.new( :log_pattern, :resource_group_name) include Aws::Structure end # @note When making an API call, you may pass DeleteApplicationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteApplicationRequest AWS API Documentation # class DeleteApplicationRequest < Struct.new( :resource_group_name) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteApplicationResponse AWS API Documentation # class DeleteApplicationResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass DeleteComponentRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteComponentRequest AWS API Documentation # class DeleteComponentRequest < Struct.new( :resource_group_name, :component_name) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteComponentResponse AWS API Documentation # class DeleteComponentResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass DeleteLogPatternRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # pattern_set_name: "LogPatternSetName", # required # pattern_name: "LogPatternName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] pattern_set_name # The name of the log pattern set. # @return [String] # # @!attribute [rw] pattern_name # The name of the log pattern. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteLogPatternRequest AWS API Documentation # class DeleteLogPatternRequest < Struct.new( :resource_group_name, :pattern_set_name, :pattern_name) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DeleteLogPatternResponse AWS API Documentation # class DeleteLogPatternResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass DescribeApplicationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplicationRequest AWS API Documentation # class DescribeApplicationRequest < Struct.new( :resource_group_name) include Aws::Structure end # @!attribute [rw] application_info # Information about the application. # @return [Types::ApplicationInfo] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeApplicationResponse AWS API Documentation # class DescribeApplicationResponse < Struct.new( :application_info) include Aws::Structure end # @note When making an API call, you may pass DescribeComponentConfigurationRecommendationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # tier: "DEFAULT", # required, accepts DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB, SQL_SERVER # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @!attribute [rw] tier # The tier of the application component. Supported tiers include # `DOT_NET_CORE`, `DOT_NET_WORKER`, `DOT_NET_WEB`, `SQL_SERVER`, and # `DEFAULT`. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationRequest AWS API Documentation # class DescribeComponentConfigurationRecommendationRequest < Struct.new( :resource_group_name, :component_name, :tier) include Aws::Structure end # @!attribute [rw] component_configuration # The recommended configuration settings of the component. The value # is the escaped JSON of the configuration. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRecommendationResponse AWS API Documentation # class DescribeComponentConfigurationRecommendationResponse < Struct.new( :component_configuration) include Aws::Structure end # @note When making an API call, you may pass DescribeComponentConfigurationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationRequest AWS API Documentation # class DescribeComponentConfigurationRequest < Struct.new( :resource_group_name, :component_name) include Aws::Structure end # @!attribute [rw] monitor # Indicates whether the application component is monitored. # @return [Boolean] # # @!attribute [rw] tier # The tier of the application component. Supported tiers include # `DOT_NET_CORE`, `DOT_NET_WORKER`, `DOT_NET_WEB`, `SQL_SERVER`, and # `DEFAULT` # @return [String] # # @!attribute [rw] component_configuration # The configuration settings of the component. The value is the # escaped JSON of the configuration. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentConfigurationResponse AWS API Documentation # class DescribeComponentConfigurationResponse < Struct.new( :monitor, :tier, :component_configuration) include Aws::Structure end # @note When making an API call, you may pass DescribeComponentRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentRequest AWS API Documentation # class DescribeComponentRequest < Struct.new( :resource_group_name, :component_name) include Aws::Structure end # @!attribute [rw] application_component # Describes a standalone resource or similarly grouped resources that # the application is made up of. # @return [Types::ApplicationComponent] # # @!attribute [rw] resource_list # The list of resource ARNs that belong to the component. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeComponentResponse AWS API Documentation # class DescribeComponentResponse < Struct.new( :application_component, :resource_list) include Aws::Structure end # @note When making an API call, you may pass DescribeLogPatternRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # pattern_set_name: "LogPatternSetName", # required # pattern_name: "LogPatternName", # required # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] pattern_set_name # The name of the log pattern set. # @return [String] # # @!attribute [rw] pattern_name # The name of the log pattern. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeLogPatternRequest AWS API Documentation # class DescribeLogPatternRequest < Struct.new( :resource_group_name, :pattern_set_name, :pattern_name) include Aws::Structure end # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] log_pattern # The successfully created log pattern. # @return [Types::LogPattern] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeLogPatternResponse AWS API Documentation # class DescribeLogPatternResponse < Struct.new( :resource_group_name, :log_pattern) include Aws::Structure end # @note When making an API call, you may pass DescribeObservationRequest # data as a hash: # # { # observation_id: "ObservationId", # required # } # # @!attribute [rw] observation_id # The ID of the observation. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeObservationRequest AWS API Documentation # class DescribeObservationRequest < Struct.new( :observation_id) include Aws::Structure end # @!attribute [rw] observation # Information about the observation. # @return [Types::Observation] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeObservationResponse AWS API Documentation # class DescribeObservationResponse < Struct.new( :observation) include Aws::Structure end # @note When making an API call, you may pass DescribeProblemObservationsRequest # data as a hash: # # { # problem_id: "ProblemId", # required # } # # @!attribute [rw] problem_id # The ID of the problem. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemObservationsRequest AWS API Documentation # class DescribeProblemObservationsRequest < Struct.new( :problem_id) include Aws::Structure end # @!attribute [rw] related_observations # Observations related to the problem. # @return [Types::RelatedObservations] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemObservationsResponse AWS API Documentation # class DescribeProblemObservationsResponse < Struct.new( :related_observations) include Aws::Structure end # @note When making an API call, you may pass DescribeProblemRequest # data as a hash: # # { # problem_id: "ProblemId", # required # } # # @!attribute [rw] problem_id # The ID of the problem. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemRequest AWS API Documentation # class DescribeProblemRequest < Struct.new( :problem_id) include Aws::Structure end # @!attribute [rw] problem # Information about the problem. # @return [Types::Problem] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/DescribeProblemResponse AWS API Documentation # class DescribeProblemResponse < Struct.new( :problem) include Aws::Structure end # The server encountered an internal error and is unable to complete the # request. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/InternalServerException AWS API Documentation # class InternalServerException < Struct.new( :message) include Aws::Structure end # @note When making an API call, you may pass ListApplicationsRequest # data as a hash: # # { # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] max_results # The maximum number of results to return in a single call. To # retrieve the remaining results, make another call with the returned # `NextToken` value. # @return [Integer] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplicationsRequest AWS API Documentation # class ListApplicationsRequest < Struct.new( :max_results, :next_token) include Aws::Structure end # @!attribute [rw] application_info_list # The list of applications. # @return [Array] # # @!attribute [rw] next_token # The token used to retrieve the next page of results. This value is # `null` when there are no more results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListApplicationsResponse AWS API Documentation # class ListApplicationsResponse < Struct.new( :application_info_list, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListComponentsRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] max_results # The maximum number of results to return in a single call. To # retrieve the remaining results, make another call with the returned # `NextToken` value. # @return [Integer] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListComponentsRequest AWS API Documentation # class ListComponentsRequest < Struct.new( :resource_group_name, :max_results, :next_token) include Aws::Structure end # @!attribute [rw] application_component_list # The list of application components. # @return [Array] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListComponentsResponse AWS API Documentation # class ListComponentsResponse < Struct.new( :application_component_list, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListConfigurationHistoryRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # start_time: Time.now, # end_time: Time.now, # event_status: "INFO", # accepts INFO, WARN, ERROR # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] resource_group_name # Resource group to which the application belongs. # @return [String] # # @!attribute [rw] start_time # The start time of the event. # @return [Time] # # @!attribute [rw] end_time # The end time of the event. # @return [Time] # # @!attribute [rw] event_status # The status of the configuration update event. Possible values # include INFO, WARN, and ERROR. # @return [String] # # @!attribute [rw] max_results # The maximum number of results returned by `ListConfigurationHistory` # in paginated output. When this parameter is used, # `ListConfigurationHistory` returns only `MaxResults` in a single # page along with a `NextToken` response element. The remaining # results of the initial request can be seen by sending another # `ListConfigurationHistory` request with the returned `NextToken` # value. If this parameter is not used, then # `ListConfigurationHistory` returns all results. # @return [Integer] # # @!attribute [rw] next_token # The `NextToken` value returned from a previous paginated # `ListConfigurationHistory` request where `MaxResults` was used and # the results exceeded the value of that parameter. Pagination # continues from the end of the previous results that returned the # `NextToken` value. This value is `null` when there are no more # results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListConfigurationHistoryRequest AWS API Documentation # class ListConfigurationHistoryRequest < Struct.new( :resource_group_name, :start_time, :end_time, :event_status, :max_results, :next_token) include Aws::Structure end # @!attribute [rw] event_list # The list of configuration events and their corresponding details. # @return [Array] # # @!attribute [rw] next_token # The `NextToken` value to include in a future # `ListConfigurationHistory` request. When the results of a # `ListConfigurationHistory` request exceed `MaxResults`, this value # can be used to retrieve the next page of results. This value is # `null` when there are no more results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListConfigurationHistoryResponse AWS API Documentation # class ListConfigurationHistoryResponse < Struct.new( :event_list, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListLogPatternSetsRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] max_results # The maximum number of results to return in a single call. To # retrieve the remaining results, make another call with the returned # `NextToken` value. # @return [Integer] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternSetsRequest AWS API Documentation # class ListLogPatternSetsRequest < Struct.new( :resource_group_name, :max_results, :next_token) include Aws::Structure end # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] log_pattern_sets # The list of log pattern sets. # @return [Array] # # @!attribute [rw] next_token # The token used to retrieve the next page of results. This value is # `null` when there are no more results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternSetsResponse AWS API Documentation # class ListLogPatternSetsResponse < Struct.new( :resource_group_name, :log_pattern_sets, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListLogPatternsRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # pattern_set_name: "LogPatternSetName", # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] pattern_set_name # The name of the log pattern set. # @return [String] # # @!attribute [rw] max_results # The maximum number of results to return in a single call. To # retrieve the remaining results, make another call with the returned # `NextToken` value. # @return [Integer] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternsRequest AWS API Documentation # class ListLogPatternsRequest < Struct.new( :resource_group_name, :pattern_set_name, :max_results, :next_token) include Aws::Structure end # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] log_patterns # The list of log patterns. # @return [Array] # # @!attribute [rw] next_token # The token used to retrieve the next page of results. This value is # `null` when there are no more results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListLogPatternsResponse AWS API Documentation # class ListLogPatternsResponse < Struct.new( :resource_group_name, :log_patterns, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListProblemsRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # start_time: Time.now, # end_time: Time.now, # max_results: 1, # next_token: "PaginationToken", # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] start_time # The time when the problem was detected, in epoch seconds. If you # don't specify a time frame for the request, problems within the # past seven days are returned. # @return [Time] # # @!attribute [rw] end_time # The time when the problem ended, in epoch seconds. If not specified, # problems within the past seven days are returned. # @return [Time] # # @!attribute [rw] max_results # The maximum number of results to return in a single call. To # retrieve the remaining results, make another call with the returned # `NextToken` value. # @return [Integer] # # @!attribute [rw] next_token # The token to request the next page of results. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsRequest AWS API Documentation # class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token) include Aws::Structure end # @!attribute [rw] problem_list # The list of problems. # @return [Array] # # @!attribute [rw] next_token # The token used to retrieve the next page of results. This value is # `null` when there are no more results to return. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListProblemsResponse AWS API Documentation # class ListProblemsResponse < Struct.new( :problem_list, :next_token) include Aws::Structure end # @note When making an API call, you may pass ListTagsForResourceRequest # data as a hash: # # { # resource_arn: "AmazonResourceName", # required # } # # @!attribute [rw] resource_arn # The Amazon Resource Name (ARN) of the application that you want to # retrieve tag information for. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListTagsForResourceRequest AWS API Documentation # class ListTagsForResourceRequest < Struct.new( :resource_arn) include Aws::Structure end # @!attribute [rw] tags # An array that lists all the tags that are associated with the # application. Each tag consists of a required tag key (`Key`) and an # associated tag value (`Value`). # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ListTagsForResourceResponse AWS API Documentation # class ListTagsForResourceResponse < Struct.new( :tags) include Aws::Structure end # An object that defines the log patterns that belongs to a # `LogPatternSet`. # # @!attribute [rw] pattern_set_name # The name of the log pattern. A log pattern name can contains at many # as 30 characters, and it cannot be empty. The characters can be # Unicode letters, digits or one of the following symbols: period, # dash, underscore. # @return [String] # # @!attribute [rw] pattern_name # The name of the log pattern. A log pattern name can contains at many # as 50 characters, and it cannot be empty. The characters can be # Unicode letters, digits or one of the following symbols: period, # dash, underscore. # @return [String] # # @!attribute [rw] pattern # A regular expression that defines the log pattern. A log pattern can # contains at many as 50 characters, and it cannot be empty. # @return [String] # # @!attribute [rw] rank # Rank of the log pattern. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/LogPattern AWS API Documentation # class LogPattern < Struct.new( :pattern_set_name, :pattern_name, :pattern, :rank) include Aws::Structure end # Describes an anomaly or error with the application. # # @!attribute [rw] id # The ID of the observation type. # @return [String] # # @!attribute [rw] start_time # The time when the observation was first detected, in epoch seconds. # @return [Time] # # @!attribute [rw] end_time # The time when the observation ended, in epoch seconds. # @return [Time] # # @!attribute [rw] source_type # The source type of the observation. # @return [String] # # @!attribute [rw] source_arn # The source resource ARN of the observation. # @return [String] # # @!attribute [rw] log_group # The log group name. # @return [String] # # @!attribute [rw] line_time # The timestamp in the CloudWatch Logs that specifies when the matched # line occurred. # @return [Time] # # @!attribute [rw] log_text # The log text of the observation. # @return [String] # # @!attribute [rw] log_filter # The log filter of the observation. # @return [String] # # @!attribute [rw] metric_namespace # The namespace of the observation metric. # @return [String] # # @!attribute [rw] metric_name # The name of the observation metric. # @return [String] # # @!attribute [rw] unit # The unit of the source observation metric. # @return [String] # # @!attribute [rw] value # The value of the source observation metric. # @return [Float] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Observation AWS API Documentation # class Observation < Struct.new( :id, :start_time, :end_time, :source_type, :source_arn, :log_group, :line_time, :log_text, :log_filter, :metric_namespace, :metric_name, :unit, :value) include Aws::Structure end # Describes a problem that is detected by correlating observations. # # @!attribute [rw] id # The ID of the problem. # @return [String] # # @!attribute [rw] title # The name of the problem. # @return [String] # # @!attribute [rw] insights # A detailed analysis of the problem using machine learning. # @return [String] # # @!attribute [rw] status # The status of the problem. # @return [String] # # @!attribute [rw] affected_resource # The resource affected by the problem. # @return [String] # # @!attribute [rw] start_time # The time when the problem started, in epoch seconds. # @return [Time] # # @!attribute [rw] end_time # The time when the problem ended, in epoch seconds. # @return [Time] # # @!attribute [rw] severity_level # A measure of the level of impact of the problem. # @return [String] # # @!attribute [rw] resource_group_name # The name of the resource group affected by the problem. # @return [String] # # @!attribute [rw] feedback # Feedback provided by the user about the problem. # @return [Hash] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Problem AWS API Documentation # class Problem < Struct.new( :id, :title, :insights, :status, :affected_resource, :start_time, :end_time, :severity_level, :resource_group_name, :feedback) include Aws::Structure end # Describes observations related to the problem. # # @!attribute [rw] observation_list # The list of observations related to the problem. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/RelatedObservations AWS API Documentation # class RelatedObservations < Struct.new( :observation_list) include Aws::Structure end # The resource is already created or in use. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ResourceInUseException AWS API Documentation # class ResourceInUseException < Struct.new( :message) include Aws::Structure end # The resource does not exist in the customer account. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ResourceNotFoundException AWS API Documentation # class ResourceNotFoundException < Struct.new( :message) include Aws::Structure end # An object that defines the tags associated with an application. A # *tag* is a label that you optionally define and associate with an # application. Tags can help you categorize and manage resources 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 a more specific tag value. A tag value acts as # a descriptor within a tag key. A tag key can contain as many as 128 # characters. A tag value can contain as many as 256 characters. The # characters can be Unicode letters, digits, white space, or one of the # following symbols: \_ . : / = + -. The following additional # restrictions apply to tags: # # * Tag keys and values are case sensitive. # # * For each associated resource, each tag key must be unique and it can # have only one value. # # * The `aws:` prefix is reserved for use by AWS; you can’t use it in # any tag keys or values that you define. In addition, you can't edit # or remove tag keys or values that use this prefix. # # @note When making an API call, you may pass Tag # data as a hash: # # { # key: "TagKey", # required # value: "TagValue", # required # } # # @!attribute [rw] key # One part of a key-value pair that defines a tag. The maximum length # of a tag key is 128 characters. The minimum length is 1 character. # @return [String] # # @!attribute [rw] value # The optional part of a key-value pair that defines a tag. The # maximum length of a tag value is 256 characters. The minimum length # is 0 characters. If you don't want an application to have a # specific tag value, don't specify a value for this parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/Tag AWS API Documentation # class Tag < Struct.new( :key, :value) include Aws::Structure end # @note When making an API call, you may pass TagResourceRequest # data as a hash: # # { # resource_arn: "AmazonResourceName", # required # tags: [ # required # { # key: "TagKey", # required # value: "TagValue", # required # }, # ], # } # # @!attribute [rw] resource_arn # The Amazon Resource Name (ARN) of the application that you want to # add one or more tags to. # @return [String] # # @!attribute [rw] tags # A list of tags that to add to the application. A tag consists of a # required tag key (`Key`) and an associated tag value (`Value`). The # maximum length of a tag key is 128 characters. The maximum length of # a tag value is 256 characters. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/TagResourceRequest AWS API Documentation # class TagResourceRequest < Struct.new( :resource_arn, :tags) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/TagResourceResponse AWS API Documentation # class TagResourceResponse < Aws::EmptyStructure; end # Tags are already registered for the specified application ARN. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/TagsAlreadyExistException AWS API Documentation # class TagsAlreadyExistException < Struct.new( :message) include Aws::Structure end # The number of the provided tags is beyond the limit, or the number of # total tags you are trying to attach to the specified resource exceeds # the limit. # # @!attribute [rw] message # @return [String] # # @!attribute [rw] resource_name # The name of the resource with too many tags. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/TooManyTagsException AWS API Documentation # class TooManyTagsException < Struct.new( :message, :resource_name) include Aws::Structure end # @note When making an API call, you may pass UntagResourceRequest # data as a hash: # # { # resource_arn: "AmazonResourceName", # required # tag_keys: ["TagKey"], # required # } # # @!attribute [rw] resource_arn # The Amazon Resource Name (ARN) of the application that you want to # remove one or more tags from. # @return [String] # # @!attribute [rw] tag_keys # The tags (tag keys) that you want to remove from the resource. When # you specify a tag key, the action removes both that key and its # associated tag value. # # To remove more than one tag from the application, append the # `TagKeys` parameter and argument for each additional tag to remove, # separated by an ampersand. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UntagResourceRequest AWS API Documentation # class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UntagResourceResponse AWS API Documentation # class UntagResourceResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass UpdateApplicationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # ops_center_enabled: false, # ops_item_sns_topic_arn: "OpsItemSNSTopicArn", # remove_sns_topic: false, # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] ops_center_enabled # When set to `true`, creates opsItems for any problems detected on an # application. # @return [Boolean] # # @!attribute [rw] ops_item_sns_topic_arn # The SNS topic provided to Application Insights that is associated to # the created opsItem. Allows you to receive notifications for updates # to the opsItem. # @return [String] # # @!attribute [rw] remove_sns_topic # Disassociates the SNS topic from the opsItem created for detected # problems. # @return [Boolean] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationRequest AWS API Documentation # class UpdateApplicationRequest < Struct.new( :resource_group_name, :ops_center_enabled, :ops_item_sns_topic_arn, :remove_sns_topic) include Aws::Structure end # @!attribute [rw] application_info # Information about the application. # @return [Types::ApplicationInfo] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateApplicationResponse AWS API Documentation # class UpdateApplicationResponse < Struct.new( :application_info) include Aws::Structure end # @note When making an API call, you may pass UpdateComponentConfigurationRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # monitor: false, # tier: "DEFAULT", # accepts DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB, SQL_SERVER # component_configuration: "ComponentConfiguration", # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @!attribute [rw] monitor # Indicates whether the application component is monitored. # @return [Boolean] # # @!attribute [rw] tier # The tier of the application component. Supported tiers include # `DOT_NET_WORKER`, `DOT_NET_WEB`, `DOT_NET_CORE`, `SQL_SERVER`, and # `DEFAULT`. # @return [String] # # @!attribute [rw] component_configuration # The configuration settings of the component. The value is the # escaped JSON of the configuration. For more information about the # JSON format, see [Working with JSON][1]. You can send a request to # `DescribeComponentConfigurationRecommendation` to see the # recommended configuration for a component. For the complete format # of the component configuration file, see [Component # Configuration][2]. # # # # [1]: https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/component-config.html # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfigurationRequest AWS API Documentation # class UpdateComponentConfigurationRequest < Struct.new( :resource_group_name, :component_name, :monitor, :tier, :component_configuration) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentConfigurationResponse AWS API Documentation # class UpdateComponentConfigurationResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass UpdateComponentRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # component_name: "ComponentName", # required # new_component_name: "NewComponentName", # resource_list: ["ResourceARN"], # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] component_name # The name of the component. # @return [String] # # @!attribute [rw] new_component_name # The new name of the component. # @return [String] # # @!attribute [rw] resource_list # The list of resource ARNs that belong to the component. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentRequest AWS API Documentation # class UpdateComponentRequest < Struct.new( :resource_group_name, :component_name, :new_component_name, :resource_list) include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateComponentResponse AWS API Documentation # class UpdateComponentResponse < Aws::EmptyStructure; end # @note When making an API call, you may pass UpdateLogPatternRequest # data as a hash: # # { # resource_group_name: "ResourceGroupName", # required # pattern_set_name: "LogPatternSetName", # required # pattern_name: "LogPatternName", # required # pattern: "LogPatternRegex", # rank: 1, # } # # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] pattern_set_name # The name of the log pattern set. # @return [String] # # @!attribute [rw] pattern_name # The name of the log pattern. # @return [String] # # @!attribute [rw] pattern # The log pattern. # @return [String] # # @!attribute [rw] rank # Rank of the log pattern. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateLogPatternRequest AWS API Documentation # class UpdateLogPatternRequest < Struct.new( :resource_group_name, :pattern_set_name, :pattern_name, :pattern, :rank) include Aws::Structure end # @!attribute [rw] resource_group_name # The name of the resource group. # @return [String] # # @!attribute [rw] log_pattern # The successfully created log pattern. # @return [Types::LogPattern] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/UpdateLogPatternResponse AWS API Documentation # class UpdateLogPatternResponse < Struct.new( :resource_group_name, :log_pattern) include Aws::Structure end # The parameter is not valid. # # @!attribute [rw] message # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/application-insights-2018-11-25/ValidationException AWS API Documentation # class ValidationException < Struct.new( :message) include Aws::Structure end end end