12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- // Package cloudwatch provides a client for Amazon CloudWatch.
- package cloudwatch
- import (
- "time"
- "github.com/aws/aws-sdk-go/aws/awsutil"
- "github.com/aws/aws-sdk-go/aws/request"
- )
- const opDeleteAlarms = "DeleteAlarms"
- // DeleteAlarmsRequest generates a request for the DeleteAlarms operation.
- func (c *CloudWatch) DeleteAlarmsRequest(input *DeleteAlarmsInput) (req *request.Request, output *DeleteAlarmsOutput) {
- op := &request.Operation{
- Name: opDeleteAlarms,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &DeleteAlarmsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &DeleteAlarmsOutput{}
- req.Data = output
- return
- }
- // Deletes all specified alarms. In the event of an error, no alarms are deleted.
- func (c *CloudWatch) DeleteAlarms(input *DeleteAlarmsInput) (*DeleteAlarmsOutput, error) {
- req, out := c.DeleteAlarmsRequest(input)
- err := req.Send()
- return out, err
- }
- const opDescribeAlarmHistory = "DescribeAlarmHistory"
- // DescribeAlarmHistoryRequest generates a request for the DescribeAlarmHistory operation.
- func (c *CloudWatch) DescribeAlarmHistoryRequest(input *DescribeAlarmHistoryInput) (req *request.Request, output *DescribeAlarmHistoryOutput) {
- op := &request.Operation{
- Name: opDescribeAlarmHistory,
- HTTPMethod: "POST",
- HTTPPath: "/",
- Paginator: &request.Paginator{
- InputTokens: []string{"NextToken"},
- OutputTokens: []string{"NextToken"},
- LimitToken: "MaxRecords",
- TruncationToken: "",
- },
- }
- if input == nil {
- input = &DescribeAlarmHistoryInput{}
- }
- req = c.newRequest(op, input, output)
- output = &DescribeAlarmHistoryOutput{}
- req.Data = output
- return
- }
- // Retrieves history for the specified alarm. Filter alarms by date range or
- // item type. If an alarm name is not specified, Amazon CloudWatch returns histories
- // for all of the owner's alarms.
- func (c *CloudWatch) DescribeAlarmHistory(input *DescribeAlarmHistoryInput) (*DescribeAlarmHistoryOutput, error) {
- req, out := c.DescribeAlarmHistoryRequest(input)
- err := req.Send()
- return out, err
- }
- func (c *CloudWatch) DescribeAlarmHistoryPages(input *DescribeAlarmHistoryInput, fn func(p *DescribeAlarmHistoryOutput, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.DescribeAlarmHistoryRequest(input)
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.(*DescribeAlarmHistoryOutput), lastPage)
- })
- }
- const opDescribeAlarms = "DescribeAlarms"
- // DescribeAlarmsRequest generates a request for the DescribeAlarms operation.
- func (c *CloudWatch) DescribeAlarmsRequest(input *DescribeAlarmsInput) (req *request.Request, output *DescribeAlarmsOutput) {
- op := &request.Operation{
- Name: opDescribeAlarms,
- HTTPMethod: "POST",
- HTTPPath: "/",
- Paginator: &request.Paginator{
- InputTokens: []string{"NextToken"},
- OutputTokens: []string{"NextToken"},
- LimitToken: "MaxRecords",
- TruncationToken: "",
- },
- }
- if input == nil {
- input = &DescribeAlarmsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &DescribeAlarmsOutput{}
- req.Data = output
- return
- }
- // Retrieves alarms with the specified names. If no name is specified, all alarms
- // for the user are returned. Alarms can be retrieved by using only a prefix
- // for the alarm name, the alarm state, or a prefix for any action.
- func (c *CloudWatch) DescribeAlarms(input *DescribeAlarmsInput) (*DescribeAlarmsOutput, error) {
- req, out := c.DescribeAlarmsRequest(input)
- err := req.Send()
- return out, err
- }
- func (c *CloudWatch) DescribeAlarmsPages(input *DescribeAlarmsInput, fn func(p *DescribeAlarmsOutput, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.DescribeAlarmsRequest(input)
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.(*DescribeAlarmsOutput), lastPage)
- })
- }
- const opDescribeAlarmsForMetric = "DescribeAlarmsForMetric"
- // DescribeAlarmsForMetricRequest generates a request for the DescribeAlarmsForMetric operation.
- func (c *CloudWatch) DescribeAlarmsForMetricRequest(input *DescribeAlarmsForMetricInput) (req *request.Request, output *DescribeAlarmsForMetricOutput) {
- op := &request.Operation{
- Name: opDescribeAlarmsForMetric,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &DescribeAlarmsForMetricInput{}
- }
- req = c.newRequest(op, input, output)
- output = &DescribeAlarmsForMetricOutput{}
- req.Data = output
- return
- }
- // Retrieves all alarms for a single metric. Specify a statistic, period, or
- // unit to filter the set of alarms further.
- func (c *CloudWatch) DescribeAlarmsForMetric(input *DescribeAlarmsForMetricInput) (*DescribeAlarmsForMetricOutput, error) {
- req, out := c.DescribeAlarmsForMetricRequest(input)
- err := req.Send()
- return out, err
- }
- const opDisableAlarmActions = "DisableAlarmActions"
- // DisableAlarmActionsRequest generates a request for the DisableAlarmActions operation.
- func (c *CloudWatch) DisableAlarmActionsRequest(input *DisableAlarmActionsInput) (req *request.Request, output *DisableAlarmActionsOutput) {
- op := &request.Operation{
- Name: opDisableAlarmActions,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &DisableAlarmActionsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &DisableAlarmActionsOutput{}
- req.Data = output
- return
- }
- // Disables actions for the specified alarms. When an alarm's actions are disabled
- // the alarm's state may change, but none of the alarm's actions will execute.
- func (c *CloudWatch) DisableAlarmActions(input *DisableAlarmActionsInput) (*DisableAlarmActionsOutput, error) {
- req, out := c.DisableAlarmActionsRequest(input)
- err := req.Send()
- return out, err
- }
- const opEnableAlarmActions = "EnableAlarmActions"
- // EnableAlarmActionsRequest generates a request for the EnableAlarmActions operation.
- func (c *CloudWatch) EnableAlarmActionsRequest(input *EnableAlarmActionsInput) (req *request.Request, output *EnableAlarmActionsOutput) {
- op := &request.Operation{
- Name: opEnableAlarmActions,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &EnableAlarmActionsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &EnableAlarmActionsOutput{}
- req.Data = output
- return
- }
- // Enables actions for the specified alarms.
- func (c *CloudWatch) EnableAlarmActions(input *EnableAlarmActionsInput) (*EnableAlarmActionsOutput, error) {
- req, out := c.EnableAlarmActionsRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetMetricStatistics = "GetMetricStatistics"
- // GetMetricStatisticsRequest generates a request for the GetMetricStatistics operation.
- func (c *CloudWatch) GetMetricStatisticsRequest(input *GetMetricStatisticsInput) (req *request.Request, output *GetMetricStatisticsOutput) {
- op := &request.Operation{
- Name: opGetMetricStatistics,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &GetMetricStatisticsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &GetMetricStatisticsOutput{}
- req.Data = output
- return
- }
- // Gets statistics for the specified metric.
- //
- // The maximum number of data points returned from a single GetMetricStatistics
- // request is 1,440, wereas the maximum number of data points that can be queried
- // is 50,850. If you make a request that generates more than 1,440 data points,
- // Amazon CloudWatch returns an error. In such a case, you can alter the request
- // by narrowing the specified time range or increasing the specified period.
- // Alternatively, you can make multiple requests across adjacent time ranges.
- //
- // Amazon CloudWatch aggregates data points based on the length of the period
- // that you specify. For example, if you request statistics with a one-minute
- // granularity, Amazon CloudWatch aggregates data points with time stamps that
- // fall within the same one-minute period. In such a case, the data points queried
- // can greatly outnumber the data points returned.
- //
- // The following examples show various statistics allowed by the data point
- // query maximum of 50,850 when you call GetMetricStatistics on Amazon EC2 instances
- // with detailed (one-minute) monitoring enabled:
- //
- // Statistics for up to 400 instances for a span of one hour Statistics for
- // up to 35 instances over a span of 24 hours Statistics for up to 2 instances
- // over a span of 2 weeks For information about the namespace, metric names,
- // and dimensions that other Amazon Web Services products use to send metrics
- // to Cloudwatch, go to Amazon CloudWatch Metrics, Namespaces, and Dimensions
- // Reference (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html)
- // in the Amazon CloudWatch Developer Guide.
- func (c *CloudWatch) GetMetricStatistics(input *GetMetricStatisticsInput) (*GetMetricStatisticsOutput, error) {
- req, out := c.GetMetricStatisticsRequest(input)
- err := req.Send()
- return out, err
- }
- const opListMetrics = "ListMetrics"
- // ListMetricsRequest generates a request for the ListMetrics operation.
- func (c *CloudWatch) ListMetricsRequest(input *ListMetricsInput) (req *request.Request, output *ListMetricsOutput) {
- op := &request.Operation{
- Name: opListMetrics,
- HTTPMethod: "POST",
- HTTPPath: "/",
- Paginator: &request.Paginator{
- InputTokens: []string{"NextToken"},
- OutputTokens: []string{"NextToken"},
- LimitToken: "",
- TruncationToken: "",
- },
- }
- if input == nil {
- input = &ListMetricsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &ListMetricsOutput{}
- req.Data = output
- return
- }
- // Returns a list of valid metrics stored for the AWS account owner. Returned
- // metrics can be used with GetMetricStatistics to obtain statistical data for
- // a given metric.
- func (c *CloudWatch) ListMetrics(input *ListMetricsInput) (*ListMetricsOutput, error) {
- req, out := c.ListMetricsRequest(input)
- err := req.Send()
- return out, err
- }
- func (c *CloudWatch) ListMetricsPages(input *ListMetricsInput, fn func(p *ListMetricsOutput, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.ListMetricsRequest(input)
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.(*ListMetricsOutput), lastPage)
- })
- }
- const opPutMetricAlarm = "PutMetricAlarm"
- // PutMetricAlarmRequest generates a request for the PutMetricAlarm operation.
- func (c *CloudWatch) PutMetricAlarmRequest(input *PutMetricAlarmInput) (req *request.Request, output *PutMetricAlarmOutput) {
- op := &request.Operation{
- Name: opPutMetricAlarm,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &PutMetricAlarmInput{}
- }
- req = c.newRequest(op, input, output)
- output = &PutMetricAlarmOutput{}
- req.Data = output
- return
- }
- // Creates or updates an alarm and associates it with the specified Amazon CloudWatch
- // metric. Optionally, this operation can associate one or more Amazon Simple
- // Notification Service resources with the alarm.
- //
- // When this operation creates an alarm, the alarm state is immediately set
- // to INSUFFICIENT_DATA. The alarm is evaluated and its StateValue is set appropriately.
- // Any actions associated with the StateValue is then executed.
- func (c *CloudWatch) PutMetricAlarm(input *PutMetricAlarmInput) (*PutMetricAlarmOutput, error) {
- req, out := c.PutMetricAlarmRequest(input)
- err := req.Send()
- return out, err
- }
- const opPutMetricData = "PutMetricData"
- // PutMetricDataRequest generates a request for the PutMetricData operation.
- func (c *CloudWatch) PutMetricDataRequest(input *PutMetricDataInput) (req *request.Request, output *PutMetricDataOutput) {
- op := &request.Operation{
- Name: opPutMetricData,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &PutMetricDataInput{}
- }
- req = c.newRequest(op, input, output)
- output = &PutMetricDataOutput{}
- req.Data = output
- return
- }
- // Publishes metric data points to Amazon CloudWatch. Amazon Cloudwatch associates
- // the data points with the specified metric. If the specified metric does not
- // exist, Amazon CloudWatch creates the metric. It can take up to fifteen minutes
- // for a new metric to appear in calls to the ListMetrics action.
- //
- // The size of a PutMetricData request is limited to 8 KB for HTTP GET requests
- // and 40 KB for HTTP POST requests.
- //
- // Although the Value parameter accepts numbers of type Double, Amazon CloudWatch
- // truncates values with very large exponents. Values with base-10 exponents
- // greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10
- // exponents less than -130 (1 x 10^-130) are also truncated. Data that is
- // timestamped 24 hours or more in the past may take in excess of 48 hours to
- // become available from submission time using GetMetricStatistics.
- func (c *CloudWatch) PutMetricData(input *PutMetricDataInput) (*PutMetricDataOutput, error) {
- req, out := c.PutMetricDataRequest(input)
- err := req.Send()
- return out, err
- }
- const opSetAlarmState = "SetAlarmState"
- // SetAlarmStateRequest generates a request for the SetAlarmState operation.
- func (c *CloudWatch) SetAlarmStateRequest(input *SetAlarmStateInput) (req *request.Request, output *SetAlarmStateOutput) {
- op := &request.Operation{
- Name: opSetAlarmState,
- HTTPMethod: "POST",
- HTTPPath: "/",
- }
- if input == nil {
- input = &SetAlarmStateInput{}
- }
- req = c.newRequest(op, input, output)
- output = &SetAlarmStateOutput{}
- req.Data = output
- return
- }
- // Temporarily sets the state of an alarm. When the updated StateValue differs
- // from the previous value, the action configured for the appropriate state
- // is invoked. This is not a permanent change. The next periodic alarm check
- // (in about a minute) will set the alarm to its actual state.
- func (c *CloudWatch) SetAlarmState(input *SetAlarmStateInput) (*SetAlarmStateOutput, error) {
- req, out := c.SetAlarmStateRequest(input)
- err := req.Send()
- return out, err
- }
- // The AlarmHistoryItem data type contains descriptive information about the
- // history of a specific alarm. If you call DescribeAlarmHistory, Amazon CloudWatch
- // returns this data type as part of the DescribeAlarmHistoryResult data type.
- type AlarmHistoryItem struct {
- // The descriptive name for the alarm.
- AlarmName *string `type:"string"`
- // Machine-readable data about the alarm in JSON format.
- HistoryData *string `type:"string"`
- // The type of alarm history item.
- HistoryItemType *string `type:"string" enum:"HistoryItemType"`
- // A human-readable summary of the alarm history.
- HistorySummary *string `type:"string"`
- // The time stamp for the alarm history item. Amazon CloudWatch uses Coordinated
- // Universal Time (UTC) when returning time stamps, which do not accommodate
- // seasonal adjustments such as daylight savings time. For more information,
- // see Time stamps (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp)
- // in the Amazon CloudWatch Developer Guide.
- Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- metadataAlarmHistoryItem `json:"-" xml:"-"`
- }
- type metadataAlarmHistoryItem struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s AlarmHistoryItem) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s AlarmHistoryItem) GoString() string {
- return s.String()
- }
- // The Datapoint data type encapsulates the statistical data that Amazon CloudWatch
- // computes from metric data.
- type Datapoint struct {
- // The average of metric values that correspond to the datapoint.
- Average *float64 `type:"double"`
- // The maximum of the metric value used for the datapoint.
- Maximum *float64 `type:"double"`
- // The minimum metric value used for the datapoint.
- Minimum *float64 `type:"double"`
- // The number of metric values that contributed to the aggregate value of this
- // datapoint.
- SampleCount *float64 `type:"double"`
- // The sum of metric values used for the datapoint.
- Sum *float64 `type:"double"`
- // The time stamp used for the datapoint. Amazon CloudWatch uses Coordinated
- // Universal Time (UTC) when returning time stamps, which do not accommodate
- // seasonal adjustments such as daylight savings time. For more information,
- // see Time stamps (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp)
- // in the Amazon CloudWatch Developer Guide.
- Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- // The standard unit used for the datapoint.
- Unit *string `type:"string" enum:"StandardUnit"`
- metadataDatapoint `json:"-" xml:"-"`
- }
- type metadataDatapoint struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s Datapoint) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s Datapoint) GoString() string {
- return s.String()
- }
- type DeleteAlarmsInput struct {
- // A list of alarms to be deleted.
- AlarmNames []*string `type:"list" required:"true"`
- metadataDeleteAlarmsInput `json:"-" xml:"-"`
- }
- type metadataDeleteAlarmsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DeleteAlarmsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteAlarmsInput) GoString() string {
- return s.String()
- }
- type DeleteAlarmsOutput struct {
- metadataDeleteAlarmsOutput `json:"-" xml:"-"`
- }
- type metadataDeleteAlarmsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DeleteAlarmsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteAlarmsOutput) GoString() string {
- return s.String()
- }
- type DescribeAlarmHistoryInput struct {
- // The name of the alarm.
- AlarmName *string `type:"string"`
- // The ending date to retrieve alarm history.
- EndDate *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- // The type of alarm histories to retrieve.
- HistoryItemType *string `type:"string" enum:"HistoryItemType"`
- // The maximum number of alarm history records to retrieve.
- MaxRecords *int64 `type:"integer"`
- // The token returned by a previous call to indicate that there is more data
- // available.
- NextToken *string `type:"string"`
- // The starting date to retrieve alarm history.
- StartDate *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- metadataDescribeAlarmHistoryInput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmHistoryInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmHistoryInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmHistoryInput) GoString() string {
- return s.String()
- }
- // The output for the DescribeAlarmHistory action.
- type DescribeAlarmHistoryOutput struct {
- // A list of alarm histories in JSON format.
- AlarmHistoryItems []*AlarmHistoryItem `type:"list"`
- // A string that marks the start of the next batch of returned results.
- NextToken *string `type:"string"`
- metadataDescribeAlarmHistoryOutput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmHistoryOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmHistoryOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmHistoryOutput) GoString() string {
- return s.String()
- }
- type DescribeAlarmsForMetricInput struct {
- // The list of dimensions associated with the metric.
- Dimensions []*Dimension `type:"list"`
- // The name of the metric.
- MetricName *string `type:"string" required:"true"`
- // The namespace of the metric.
- Namespace *string `type:"string" required:"true"`
- // The period in seconds over which the statistic is applied.
- Period *int64 `type:"integer"`
- // The statistic for the metric.
- Statistic *string `type:"string" enum:"Statistic"`
- // The unit for the metric.
- Unit *string `type:"string" enum:"StandardUnit"`
- metadataDescribeAlarmsForMetricInput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmsForMetricInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmsForMetricInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmsForMetricInput) GoString() string {
- return s.String()
- }
- // The output for the DescribeAlarmsForMetric action.
- type DescribeAlarmsForMetricOutput struct {
- // A list of information for each alarm with the specified metric.
- MetricAlarms []*MetricAlarm `type:"list"`
- metadataDescribeAlarmsForMetricOutput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmsForMetricOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmsForMetricOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmsForMetricOutput) GoString() string {
- return s.String()
- }
- type DescribeAlarmsInput struct {
- // The action name prefix.
- ActionPrefix *string `type:"string"`
- // The alarm name prefix. AlarmNames cannot be specified if this parameter is
- // specified.
- AlarmNamePrefix *string `type:"string"`
- // A list of alarm names to retrieve information for.
- AlarmNames []*string `type:"list"`
- // The maximum number of alarm descriptions to retrieve.
- MaxRecords *int64 `type:"integer"`
- // The token returned by a previous call to indicate that there is more data
- // available.
- NextToken *string `type:"string"`
- // The state value to be used in matching alarms.
- StateValue *string `type:"string" enum:"StateValue"`
- metadataDescribeAlarmsInput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmsInput) GoString() string {
- return s.String()
- }
- // The output for the DescribeAlarms action.
- type DescribeAlarmsOutput struct {
- // A list of information for the specified alarms.
- MetricAlarms []*MetricAlarm `type:"list"`
- // A string that marks the start of the next batch of returned results.
- NextToken *string `type:"string"`
- metadataDescribeAlarmsOutput `json:"-" xml:"-"`
- }
- type metadataDescribeAlarmsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DescribeAlarmsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DescribeAlarmsOutput) GoString() string {
- return s.String()
- }
- // The Dimension data type further expands on the identity of a metric using
- // a Name, Value pair.
- //
- // For examples that use one or more dimensions, see PutMetricData.
- type Dimension struct {
- // The name of the dimension.
- Name *string `type:"string" required:"true"`
- // The value representing the dimension measurement
- Value *string `type:"string" required:"true"`
- metadataDimension `json:"-" xml:"-"`
- }
- type metadataDimension struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s Dimension) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s Dimension) GoString() string {
- return s.String()
- }
- // The DimensionFilter data type is used to filter ListMetrics results.
- type DimensionFilter struct {
- // The dimension name to be matched.
- Name *string `type:"string" required:"true"`
- // The value of the dimension to be matched.
- Value *string `type:"string"`
- metadataDimensionFilter `json:"-" xml:"-"`
- }
- type metadataDimensionFilter struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DimensionFilter) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DimensionFilter) GoString() string {
- return s.String()
- }
- type DisableAlarmActionsInput struct {
- // The names of the alarms to disable actions for.
- AlarmNames []*string `type:"list" required:"true"`
- metadataDisableAlarmActionsInput `json:"-" xml:"-"`
- }
- type metadataDisableAlarmActionsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DisableAlarmActionsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DisableAlarmActionsInput) GoString() string {
- return s.String()
- }
- type DisableAlarmActionsOutput struct {
- metadataDisableAlarmActionsOutput `json:"-" xml:"-"`
- }
- type metadataDisableAlarmActionsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s DisableAlarmActionsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DisableAlarmActionsOutput) GoString() string {
- return s.String()
- }
- type EnableAlarmActionsInput struct {
- // The names of the alarms to enable actions for.
- AlarmNames []*string `type:"list" required:"true"`
- metadataEnableAlarmActionsInput `json:"-" xml:"-"`
- }
- type metadataEnableAlarmActionsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s EnableAlarmActionsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s EnableAlarmActionsInput) GoString() string {
- return s.String()
- }
- type EnableAlarmActionsOutput struct {
- metadataEnableAlarmActionsOutput `json:"-" xml:"-"`
- }
- type metadataEnableAlarmActionsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s EnableAlarmActionsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s EnableAlarmActionsOutput) GoString() string {
- return s.String()
- }
- type GetMetricStatisticsInput struct {
- // A list of dimensions describing qualities of the metric.
- Dimensions []*Dimension `type:"list"`
- // The time stamp to use for determining the last datapoint to return. The value
- // specified is exclusive; results will include datapoints up to the time stamp
- // specified.
- EndTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`
- // The name of the metric, with or without spaces.
- MetricName *string `type:"string" required:"true"`
- // The namespace of the metric, with or without spaces.
- Namespace *string `type:"string" required:"true"`
- // The granularity, in seconds, of the returned datapoints. Period must be at
- // least 60 seconds and must be a multiple of 60. The default value is 60.
- Period *int64 `type:"integer" required:"true"`
- // The time stamp to use for determining the first datapoint to return. The
- // value specified is inclusive; results include datapoints with the time stamp
- // specified.
- StartTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`
- // The metric statistics to return. For information about specific statistics
- // returned by GetMetricStatistics, go to Statistics (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/index.html?CHAP_TerminologyandKeyConcepts.html#Statistic)
- // in the Amazon CloudWatch Developer Guide.
- //
- // Valid Values: Average | Sum | SampleCount | Maximum | Minimum
- Statistics []*string `type:"list" required:"true"`
- // The unit for the metric.
- Unit *string `type:"string" enum:"StandardUnit"`
- metadataGetMetricStatisticsInput `json:"-" xml:"-"`
- }
- type metadataGetMetricStatisticsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s GetMetricStatisticsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetMetricStatisticsInput) GoString() string {
- return s.String()
- }
- // The output for the GetMetricStatistics action.
- type GetMetricStatisticsOutput struct {
- // The datapoints for the specified metric.
- Datapoints []*Datapoint `type:"list"`
- // A label describing the specified metric.
- Label *string `type:"string"`
- metadataGetMetricStatisticsOutput `json:"-" xml:"-"`
- }
- type metadataGetMetricStatisticsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s GetMetricStatisticsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetMetricStatisticsOutput) GoString() string {
- return s.String()
- }
- type ListMetricsInput struct {
- // A list of dimensions to filter against.
- Dimensions []*DimensionFilter `type:"list"`
- // The name of the metric to filter against.
- MetricName *string `type:"string"`
- // The namespace to filter against.
- Namespace *string `type:"string"`
- // The token returned by a previous call to indicate that there is more data
- // available.
- NextToken *string `type:"string"`
- metadataListMetricsInput `json:"-" xml:"-"`
- }
- type metadataListMetricsInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s ListMetricsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListMetricsInput) GoString() string {
- return s.String()
- }
- // The output for the ListMetrics action.
- type ListMetricsOutput struct {
- // A list of metrics used to generate statistics for an AWS account.
- Metrics []*Metric `type:"list"`
- // A string that marks the start of the next batch of returned results.
- NextToken *string `type:"string"`
- metadataListMetricsOutput `json:"-" xml:"-"`
- }
- type metadataListMetricsOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s ListMetricsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListMetricsOutput) GoString() string {
- return s.String()
- }
- // The Metric data type contains information about a specific metric. If you
- // call ListMetrics, Amazon CloudWatch returns information contained by this
- // data type.
- //
- // The example in the Examples section publishes two metrics named buffers
- // and latency. Both metrics are in the examples namespace. Both metrics have
- // two dimensions, InstanceID and InstanceType.
- type Metric struct {
- // A list of dimensions associated with the metric.
- Dimensions []*Dimension `type:"list"`
- // The name of the metric.
- MetricName *string `type:"string"`
- // The namespace of the metric.
- Namespace *string `type:"string"`
- metadataMetric `json:"-" xml:"-"`
- }
- type metadataMetric struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s Metric) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s Metric) GoString() string {
- return s.String()
- }
- // The MetricAlarm data type represents an alarm. You can use PutMetricAlarm
- // to create or update an alarm.
- type MetricAlarm struct {
- // Indicates whether actions should be executed during any changes to the alarm's
- // state.
- ActionsEnabled *bool `type:"boolean"`
- // The list of actions to execute when this alarm transitions into an ALARM
- // state from any other state. Each action is specified as an Amazon Resource
- // Number (ARN). Currently the only actions supported are publishing to an Amazon
- // SNS topic and triggering an Auto Scaling policy.
- AlarmActions []*string `type:"list"`
- // The Amazon Resource Name (ARN) of the alarm.
- AlarmArn *string `type:"string"`
- // The time stamp of the last update to the alarm configuration. Amazon CloudWatch
- // uses Coordinated Universal Time (UTC) when returning time stamps, which do
- // not accommodate seasonal adjustments such as daylight savings time. For more
- // information, see Time stamps (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp)
- // in the Amazon CloudWatch Developer Guide.
- AlarmConfigurationUpdatedTimestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- // The description for the alarm.
- AlarmDescription *string `type:"string"`
- // The name of the alarm.
- AlarmName *string `type:"string"`
- // The arithmetic operation to use when comparing the specified Statistic and
- // Threshold. The specified Statistic value is used as the first operand.
- ComparisonOperator *string `type:"string" enum:"ComparisonOperator"`
- // The list of dimensions associated with the alarm's associated metric.
- Dimensions []*Dimension `type:"list"`
- // The number of periods over which data is compared to the specified threshold.
- EvaluationPeriods *int64 `type:"integer"`
- // The list of actions to execute when this alarm transitions into an INSUFFICIENT_DATA
- // state from any other state. Each action is specified as an Amazon Resource
- // Number (ARN). Currently the only actions supported are publishing to an Amazon
- // SNS topic or triggering an Auto Scaling policy.
- //
- // The current WSDL lists this attribute as UnknownActions.
- InsufficientDataActions []*string `type:"list"`
- // The name of the alarm's metric.
- MetricName *string `type:"string"`
- // The namespace of alarm's associated metric.
- Namespace *string `type:"string"`
- // The list of actions to execute when this alarm transitions into an OK state
- // from any other state. Each action is specified as an Amazon Resource Number
- // (ARN). Currently the only actions supported are publishing to an Amazon SNS
- // topic and triggering an Auto Scaling policy.
- OKActions []*string `type:"list"`
- // The period in seconds over which the statistic is applied.
- Period *int64 `type:"integer"`
- // A human-readable explanation for the alarm's state.
- StateReason *string `type:"string"`
- // An explanation for the alarm's state in machine-readable JSON format
- StateReasonData *string `type:"string"`
- // The time stamp of the last update to the alarm's state. Amazon CloudWatch
- // uses Coordinated Universal Time (UTC) when returning time stamps, which do
- // not accommodate seasonal adjustments such as daylight savings time. For more
- // information, see Time stamps (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp)
- // in the Amazon CloudWatch Developer Guide.
- StateUpdatedTimestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- // The state value for the alarm.
- StateValue *string `type:"string" enum:"StateValue"`
- // The statistic to apply to the alarm's associated metric.
- Statistic *string `type:"string" enum:"Statistic"`
- // The value against which the specified statistic is compared.
- Threshold *float64 `type:"double"`
- // The unit of the alarm's associated metric.
- Unit *string `type:"string" enum:"StandardUnit"`
- metadataMetricAlarm `json:"-" xml:"-"`
- }
- type metadataMetricAlarm struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s MetricAlarm) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s MetricAlarm) GoString() string {
- return s.String()
- }
- // The MetricDatum data type encapsulates the information sent with PutMetricData
- // to either create a new metric or add new values to be aggregated into an
- // existing metric.
- type MetricDatum struct {
- // A list of dimensions associated with the metric. Note, when using the Dimensions
- // value in a query, you need to append .member.N to it (e.g., Dimensions.member.N).
- Dimensions []*Dimension `type:"list"`
- // The name of the metric.
- MetricName *string `type:"string" required:"true"`
- // A set of statistical values describing the metric.
- StatisticValues *StatisticSet `type:"structure"`
- // The time stamp used for the metric. If not specified, the default value is
- // set to the time the metric data was received. Amazon CloudWatch uses Coordinated
- // Universal Time (UTC) when returning time stamps, which do not accommodate
- // seasonal adjustments such as daylight savings time. For more information,
- // see Time stamps (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp)
- // in the Amazon CloudWatch Developer Guide.
- Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
- // The unit of the metric.
- Unit *string `type:"string" enum:"StandardUnit"`
- // The value for the metric.
- //
- // Although the Value parameter accepts numbers of type Double, Amazon CloudWatch
- // truncates values with very large exponents. Values with base-10 exponents
- // greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10
- // exponents less than -130 (1 x 10^-130) are also truncated.
- Value *float64 `type:"double"`
- metadataMetricDatum `json:"-" xml:"-"`
- }
- type metadataMetricDatum struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s MetricDatum) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s MetricDatum) GoString() string {
- return s.String()
- }
- type PutMetricAlarmInput struct {
- // Indicates whether or not actions should be executed during any changes to
- // the alarm's state.
- ActionsEnabled *bool `type:"boolean"`
- // The list of actions to execute when this alarm transitions into an ALARM
- // state from any other state. Each action is specified as an Amazon Resource
- // Number (ARN). Currently the only action supported is publishing to an Amazon
- // SNS topic or an Amazon Auto Scaling policy.
- AlarmActions []*string `type:"list"`
- // The description for the alarm.
- AlarmDescription *string `type:"string"`
- // The descriptive name for the alarm. This name must be unique within the user's
- // AWS account
- AlarmName *string `type:"string" required:"true"`
- // The arithmetic operation to use when comparing the specified Statistic and
- // Threshold. The specified Statistic value is used as the first operand.
- ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"`
- // The dimensions for the alarm's associated metric.
- Dimensions []*Dimension `type:"list"`
- // The number of periods over which data is compared to the specified threshold.
- EvaluationPeriods *int64 `type:"integer" required:"true"`
- // The list of actions to execute when this alarm transitions into an INSUFFICIENT_DATA
- // state from any other state. Each action is specified as an Amazon Resource
- // Number (ARN). Currently the only action supported is publishing to an Amazon
- // SNS topic or an Amazon Auto Scaling policy.
- InsufficientDataActions []*string `type:"list"`
- // The name for the alarm's associated metric.
- MetricName *string `type:"string" required:"true"`
- // The namespace for the alarm's associated metric.
- Namespace *string `type:"string" required:"true"`
- // The list of actions to execute when this alarm transitions into an OK state
- // from any other state. Each action is specified as an Amazon Resource Number
- // (ARN). Currently the only action supported is publishing to an Amazon SNS
- // topic or an Amazon Auto Scaling policy.
- OKActions []*string `type:"list"`
- // The period in seconds over which the specified statistic is applied.
- Period *int64 `type:"integer" required:"true"`
- // The statistic to apply to the alarm's associated metric.
- Statistic *string `type:"string" required:"true" enum:"Statistic"`
- // The value against which the specified statistic is compared.
- Threshold *float64 `type:"double" required:"true"`
- // The unit for the alarm's associated metric.
- Unit *string `type:"string" enum:"StandardUnit"`
- metadataPutMetricAlarmInput `json:"-" xml:"-"`
- }
- type metadataPutMetricAlarmInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s PutMetricAlarmInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s PutMetricAlarmInput) GoString() string {
- return s.String()
- }
- type PutMetricAlarmOutput struct {
- metadataPutMetricAlarmOutput `json:"-" xml:"-"`
- }
- type metadataPutMetricAlarmOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s PutMetricAlarmOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s PutMetricAlarmOutput) GoString() string {
- return s.String()
- }
- type PutMetricDataInput struct {
- // A list of data describing the metric.
- MetricData []*MetricDatum `type:"list" required:"true"`
- // The namespace for the metric data.
- Namespace *string `type:"string" required:"true"`
- metadataPutMetricDataInput `json:"-" xml:"-"`
- }
- type metadataPutMetricDataInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s PutMetricDataInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s PutMetricDataInput) GoString() string {
- return s.String()
- }
- type PutMetricDataOutput struct {
- metadataPutMetricDataOutput `json:"-" xml:"-"`
- }
- type metadataPutMetricDataOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s PutMetricDataOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s PutMetricDataOutput) GoString() string {
- return s.String()
- }
- type SetAlarmStateInput struct {
- // The descriptive name for the alarm. This name must be unique within the user's
- // AWS account. The maximum length is 255 characters.
- AlarmName *string `type:"string" required:"true"`
- // The reason that this alarm is set to this specific state (in human-readable
- // text format)
- StateReason *string `type:"string" required:"true"`
- // The reason that this alarm is set to this specific state (in machine-readable
- // JSON format)
- StateReasonData *string `type:"string"`
- // The value of the state.
- StateValue *string `type:"string" required:"true" enum:"StateValue"`
- metadataSetAlarmStateInput `json:"-" xml:"-"`
- }
- type metadataSetAlarmStateInput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s SetAlarmStateInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s SetAlarmStateInput) GoString() string {
- return s.String()
- }
- type SetAlarmStateOutput struct {
- metadataSetAlarmStateOutput `json:"-" xml:"-"`
- }
- type metadataSetAlarmStateOutput struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s SetAlarmStateOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s SetAlarmStateOutput) GoString() string {
- return s.String()
- }
- // The StatisticSet data type describes the StatisticValues component of MetricDatum,
- // and represents a set of statistics that describes a specific metric.
- type StatisticSet struct {
- // The maximum value of the sample set.
- Maximum *float64 `type:"double" required:"true"`
- // The minimum value of the sample set.
- Minimum *float64 `type:"double" required:"true"`
- // The number of samples used for the statistic set.
- SampleCount *float64 `type:"double" required:"true"`
- // The sum of values for the sample set.
- Sum *float64 `type:"double" required:"true"`
- metadataStatisticSet `json:"-" xml:"-"`
- }
- type metadataStatisticSet struct {
- SDKShapeTraits bool `type:"structure"`
- }
- // String returns the string representation
- func (s StatisticSet) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s StatisticSet) GoString() string {
- return s.String()
- }
- const (
- // @enum ComparisonOperator
- ComparisonOperatorGreaterThanOrEqualToThreshold = "GreaterThanOrEqualToThreshold"
- // @enum ComparisonOperator
- ComparisonOperatorGreaterThanThreshold = "GreaterThanThreshold"
- // @enum ComparisonOperator
- ComparisonOperatorLessThanThreshold = "LessThanThreshold"
- // @enum ComparisonOperator
- ComparisonOperatorLessThanOrEqualToThreshold = "LessThanOrEqualToThreshold"
- )
- const (
- // @enum HistoryItemType
- HistoryItemTypeConfigurationUpdate = "ConfigurationUpdate"
- // @enum HistoryItemType
- HistoryItemTypeStateUpdate = "StateUpdate"
- // @enum HistoryItemType
- HistoryItemTypeAction = "Action"
- )
- const (
- // @enum StandardUnit
- StandardUnitSeconds = "Seconds"
- // @enum StandardUnit
- StandardUnitMicroseconds = "Microseconds"
- // @enum StandardUnit
- StandardUnitMilliseconds = "Milliseconds"
- // @enum StandardUnit
- StandardUnitBytes = "Bytes"
- // @enum StandardUnit
- StandardUnitKilobytes = "Kilobytes"
- // @enum StandardUnit
- StandardUnitMegabytes = "Megabytes"
- // @enum StandardUnit
- StandardUnitGigabytes = "Gigabytes"
- // @enum StandardUnit
- StandardUnitTerabytes = "Terabytes"
- // @enum StandardUnit
- StandardUnitBits = "Bits"
- // @enum StandardUnit
- StandardUnitKilobits = "Kilobits"
- // @enum StandardUnit
- StandardUnitMegabits = "Megabits"
- // @enum StandardUnit
- StandardUnitGigabits = "Gigabits"
- // @enum StandardUnit
- StandardUnitTerabits = "Terabits"
- // @enum StandardUnit
- StandardUnitPercent = "Percent"
- // @enum StandardUnit
- StandardUnitCount = "Count"
- // @enum StandardUnit
- StandardUnitBytesSecond = "Bytes/Second"
- // @enum StandardUnit
- StandardUnitKilobytesSecond = "Kilobytes/Second"
- // @enum StandardUnit
- StandardUnitMegabytesSecond = "Megabytes/Second"
- // @enum StandardUnit
- StandardUnitGigabytesSecond = "Gigabytes/Second"
- // @enum StandardUnit
- StandardUnitTerabytesSecond = "Terabytes/Second"
- // @enum StandardUnit
- StandardUnitBitsSecond = "Bits/Second"
- // @enum StandardUnit
- StandardUnitKilobitsSecond = "Kilobits/Second"
- // @enum StandardUnit
- StandardUnitMegabitsSecond = "Megabits/Second"
- // @enum StandardUnit
- StandardUnitGigabitsSecond = "Gigabits/Second"
- // @enum StandardUnit
- StandardUnitTerabitsSecond = "Terabits/Second"
- // @enum StandardUnit
- StandardUnitCountSecond = "Count/Second"
- // @enum StandardUnit
- StandardUnitNone = "None"
- )
- const (
- // @enum StateValue
- StateValueOk = "OK"
- // @enum StateValue
- StateValueAlarm = "ALARM"
- // @enum StateValue
- StateValueInsufficientData = "INSUFFICIENT_DATA"
- )
- const (
- // @enum Statistic
- StatisticSampleCount = "SampleCount"
- // @enum Statistic
- StatisticAverage = "Average"
- // @enum Statistic
- StatisticSum = "Sum"
- // @enum Statistic
- StatisticMinimum = "Minimum"
- // @enum Statistic
- StatisticMaximum = "Maximum"
- )
|