o
    rMf<X                     @   sX   d dl Z d dlmZ d dlmZ d dlmZ d dlmZ d dl	m
Z
 G dd deZdS )	    N)AWSQueryConnection)
RegionInfo)JSONResponseError)
exceptions)jsonc                
       s  e Zd ZdZdZdZdZdZdZe	Z
ejejejejejejejejejd	Z fdd	Zd
d Zdd Zdd Zdd Zdd Zdd Zdd Z		d-ddZ		d-ddZ		d-ddZ 		d.dd Z!	d/d!d"Z"d#d$ Z#d%d& Z$d'd( Z%d)d* Z&d+d, Z'  Z(S )0CloudWatchLogsConnectiona  
    Amazon CloudWatch Logs Service API Reference
    This is the Amazon CloudWatch Logs API Reference . Amazon
    CloudWatch Logs is a managed service for real time monitoring and
    archival of application logs. This guide provides detailed
    information about Amazon CloudWatch Logs actions, data types,
    parameters, and errors. For detailed information about Amazon
    CloudWatch Logs features and their associated API calls, go to the
    `Amazon CloudWatch Logs Developer Guide`_.

    Use the following links to get started using the Amazon CloudWatch
    API Reference :


    + `Actions`_: An alphabetical list of all Amazon CloudWatch Logs
      actions.
    + `Data Types`_: An alphabetical list of all Amazon CloudWatch
      Logs data types.
    + `Common Parameters`_: Parameters that all Query actions can use.
    + `Common Errors`_: Client and server errors that all actions can
      return.
    + `Regions and Endpoints`_: Itemized regions and endpoints for all
      AWS products.


    In addition to using the Amazon CloudWatch Logs API, you can also
    use the following SDKs and third-party libraries to access Amazon
    CloudWatch Logs programmatically.


    + `AWS SDK for Java Documentation`_
    + `AWS SDK for .NET Documentation`_
    + `AWS SDK for PHP Documentation`_
    + `AWS SDK for Ruby Documentation`_


    Developers in the AWS developer community also provide their own
    libraries, which you can find at the following AWS developer
    centers:


    + `AWS Java Developer Center`_
    + `AWS PHP Developer Center`_
    + `AWS Python Developer Center`_
    + `AWS Ruby Developer Center`_
    + `AWS Windows and .NET Developer Center`_
    z
2014-03-28z	us-east-1zlogs.us-east-1.amazonaws.comCloudWatchLogsLogs_20140328)	LimitExceededExceptionDataAlreadyAcceptedExceptionResourceInUseExceptionServiceUnavailableExceptionInvalidParameterExceptionResourceNotFoundExceptionResourceAlreadyExistsExceptionOperationAbortedExceptionInvalidSequenceTokenExceptionc                    s^   | dd }|st| | j| j}d|vs|d d u r|j|d< tt| jdi | || _d S )Nregionhost )	popr   DefaultRegionNameDefaultRegionEndpointendpointsuperr   __init__r   )selfkwargsr   	__class__r   R/var/www/html/analyze/labelStudio/lib/python3.10/site-packages/boto/logs/layer1.pyr   b   s   

z!CloudWatchLogsConnection.__init__c                 C   s   dgS )Nzhmac-v4r   )r   r   r   r    _required_auth_capabilityn   s   z2CloudWatchLogsConnection._required_auth_capabilityc                 C      d|i}| j dt|dS )aX  
        Creates a new log group with the specified name. The name of
        the log group must be unique within a region for an AWS
        account. You can create up to 100 log groups per account.

        You must use the following guidelines when naming a log group:

        + Log group names can be between 1 and 512 characters long.
        + Allowed characters are az, AZ, 09, '_' (underscore), '-'
          (hyphen), '/' (forward slash), and '.' (period).



        Log groups are created with a default retention of 14 days.
        The retention attribute allow you to configure the number of
        days you want to retain log events in the specified log group.
        See the `SetRetention` operation on how to modify the
        retention of your log groups.

        :type log_group_name: string
        :param log_group_name:

        logGroupNameCreateLogGroupactionbodymake_requestr   dumpsr   log_group_nameparamsr   r   r    create_log_groupq   s   z)CloudWatchLogsConnection.create_log_groupc                 C      ||d}| j dt|dS )aB  
        Creates a new log stream in the specified log group. The name
        of the log stream must be unique within the log group. There
        is no limit on the number of log streams that can exist in a
        log group.

        You must use the following guidelines when naming a log
        stream:

        + Log stream names can be between 1 and 512 characters long.
        + The ':' colon character is not allowed.

        :type log_group_name: string
        :param log_group_name:

        :type log_stream_name: string
        :param log_stream_name:

        r#   logStreamNameCreateLogStreamr%   r(   r   r,   log_stream_namer-   r   r   r    create_log_stream   s   z*CloudWatchLogsConnection.create_log_streamc                 C   r"   )a  
        Deletes the log group with the specified name. Amazon
        CloudWatch Logs will delete a log group only if there are no
        log streams and no metric filters associated with the log
        group. If this condition is not satisfied, the request will
        fail and the log group will not be deleted.

        :type log_group_name: string
        :param log_group_name:

        r#   DeleteLogGroupr%   r(   r+   r   r   r    delete_log_group   s   z)CloudWatchLogsConnection.delete_log_groupc                 C   r/   )a  
        Deletes a log stream and permanently deletes all the archived
        log events associated with it.

        :type log_group_name: string
        :param log_group_name:

        :type log_stream_name: string
        :param log_stream_name:

        r0   DeleteLogStreamr%   r(   r3   r   r   r    delete_log_stream      z*CloudWatchLogsConnection.delete_log_streamc                 C   r/   )z
        Deletes a metric filter associated with the specified log
        group.

        :type log_group_name: string
        :param log_group_name:

        :type filter_name: string
        :param filter_name: The name of the metric filter.

        )r#   
filterNameDeleteMetricFilterr%   r(   )r   r,   filter_namer-   r   r   r    delete_metric_filter   r:   z-CloudWatchLogsConnection.delete_metric_filterc                 C   r"   )zX
        

        :type log_group_name: string
        :param log_group_name:

        r#   DeleteRetentionPolicyr%   r(   r+   r   r   r    delete_retention_policy   s   z0CloudWatchLogsConnection.delete_retention_policyNc                 C   sH   i }|dur
||d< |dur||d< |dur||d< | j dt|dS )a  
        Returns all the log groups that are associated with the AWS
        account making the request. The list returned in the response
        is ASCII-sorted by log group name.

        By default, this operation returns up to 50 log groups. If
        there are more log groups to list, the response would contain
        a `nextToken` value in the response body. You can also limit
        the number of log groups returned in the response by
        specifying the `limit` parameter in the request.

        :type log_group_name_prefix: string
        :param log_group_name_prefix:

        :type next_token: string
        :param next_token: A string token used for pagination that points to
            the next page of results. It must be a value obtained from the
            response of the previous `DescribeLogGroups` request.

        :type limit: integer
        :param limit: The maximum number of items returned in the response. If
            you don't specify a value, the request would return up to 50 items.

        NlogGroupNamePrefix	nextTokenlimitDescribeLogGroupsr%   r(   )r   log_group_name_prefix
next_tokenrC   r-   r   r   r    describe_log_groups   s   z,CloudWatchLogsConnection.describe_log_groupsc                 C   L   d|i}|dur||d< |dur||d< |dur||d< | j dt|dS )aR  
        Returns all the log streams that are associated with the
        specified log group. The list returned in the response is
        ASCII-sorted by log stream name.

        By default, this operation returns up to 50 log streams. If
        there are more log streams to list, the response would contain
        a `nextToken` value in the response body. You can also limit
        the number of log streams returned in the response by
        specifying the `limit` parameter in the request.

        :type log_group_name: string
        :param log_group_name:

        :type log_stream_name_prefix: string
        :param log_stream_name_prefix:

        :type next_token: string
        :param next_token: A string token used for pagination that points to
            the next page of results. It must be a value obtained from the
            response of the previous `DescribeLogStreams` request.

        :type limit: integer
        :param limit: The maximum number of items returned in the response. If
            you don't specify a value, the request would return up to 50 items.

        r#   NlogStreamNamePrefixrB   rC   DescribeLogStreamsr%   r(   )r   r,   log_stream_name_prefixrF   rC   r-   r   r   r    describe_log_streams     z-CloudWatchLogsConnection.describe_log_streamsc                 C   rH   )al  
        Returns all the metrics filters associated with the specified
        log group. The list returned in the response is ASCII-sorted
        by filter name.

        By default, this operation returns up to 50 metric filters. If
        there are more metric filters to list, the response would
        contain a `nextToken` value in the response body. You can also
        limit the number of metric filters returned in the response by
        specifying the `limit` parameter in the request.

        :type log_group_name: string
        :param log_group_name:

        :type filter_name_prefix: string
        :param filter_name_prefix: The name of the metric filter.

        :type next_token: string
        :param next_token: A string token used for pagination that points to
            the next page of results. It must be a value obtained from the
            response of the previous `DescribeMetricFilters` request.

        :type limit: integer
        :param limit: The maximum number of items returned in the response. If
            you don't specify a value, the request would return up to 50 items.

        r#   NfilterNamePrefixrB   rC   DescribeMetricFiltersr%   r(   )r   r,   filter_name_prefixrF   rC   r-   r   r   r    describe_metric_filters6  rM   z0CloudWatchLogsConnection.describe_metric_filtersc           	      C   sn   ||d}|dur||d< |dur||d< |dur||d< |dur%||d< |dur-||d< | j dt|d	S )
a+  
        Retrieves log events from the specified log stream. You can
        provide an optional time range to filter the results on the
        event `timestamp`.

        By default, this operation returns as much log events as can
        fit in a response size of 1MB, up to 10,000 log events. The
        response will always include a `nextForwardToken` and a
        `nextBackwardToken` in the response body. You can use any of
        these tokens in subsequent `GetLogEvents` requests to paginate
        through events in either forward or backward direction. You
        can also limit the number of log events returned in the
        response by specifying the `limit` parameter in the request.

        :type log_group_name: string
        :param log_group_name:

        :type log_stream_name: string
        :param log_stream_name:

        :type start_time: long
        :param start_time: A point in time expressed as the number milliseconds
            since Jan 1, 1970 00:00:00 UTC.

        :type end_time: long
        :param end_time: A point in time expressed as the number milliseconds
            since Jan 1, 1970 00:00:00 UTC.

        :type next_token: string
        :param next_token: A string token used for pagination that points to
            the next page of results. It must be a value obtained from the
            `nextForwardToken` or `nextBackwardToken` fields in the response of
            the previous `GetLogEvents` request.

        :type limit: integer
        :param limit: The maximum number of log events returned in the
            response. If you don't specify a value, the request would return as
            much log events as can fit in a response size of 1MB, up to 10,000
            log events.

        :type start_from_head: boolean
        :param start_from_head:

        r0   N	startTimeendTimerB   rC   startFromHeadGetLogEventsr%   r(   )	r   r,   r4   
start_timeend_timerF   rC   start_from_headr-   r   r   r    get_log_events^  s    0z'CloudWatchLogsConnection.get_log_eventsc                 C   s0   |||d}|dur||d< | j dt|dS )aE  
        Uploads a batch of log events to the specified log stream.

        Every PutLogEvents request must include the `sequenceToken`
        obtained from the response of the previous request. An upload
        in a newly created log stream does not require a
        `sequenceToken`.

        The batch of events must satisfy the following constraints:

        + The maximum batch size is 32,768 bytes, and this size is
          calculated as the sum of all event messages in UTF-8, plus 26
          bytes for each log event.
        + None of the log events in the batch can be more than 2 hours
          in the future.
        + None of the log events in the batch can be older than 14
          days or the retention period of the log group.
        + The log events in the batch must be in chronological ordered
          by their `timestamp`.
        + The maximum number of log events in a batch is 1,000.

        :type log_group_name: string
        :param log_group_name:

        :type log_stream_name: string
        :param log_stream_name:

        :type log_events: list
        :param log_events: A list of events belonging to a log stream.

        :type sequence_token: string
        :param sequence_token: A string token that must be obtained from the
            response of the previous `PutLogEvents` request.

        )r#   r1   	logEventsNsequenceTokenPutLogEventsr%   r(   )r   r,   r4   
log_eventssequence_tokenr-   r   r   r    put_log_events  s   &z'CloudWatchLogsConnection.put_log_eventsc                 C   s"   ||||d}| j dt|dS )a5  
        Creates or updates a metric filter and associates it with the
        specified log group. Metric filters allow you to configure
        rules to extract metric data from log events ingested through
        `PutLogEvents` requests.

        :type log_group_name: string
        :param log_group_name:

        :type filter_name: string
        :param filter_name: The name of the metric filter.

        :type filter_pattern: string
        :param filter_pattern:

        :type metric_transformations: list
        :param metric_transformations:

        )r#   r;   filterPatternmetricTransformationsPutMetricFilterr%   r(   )r   r,   r=   filter_patternmetric_transformationsr-   r   r   r    put_metric_filter  s   z*CloudWatchLogsConnection.put_metric_filterc                 C   r/   )ag  
        

        :type log_group_name: string
        :param log_group_name:

        :type retention_in_days: integer
        :param retention_in_days: Specifies the number of days you want to
            retain log events in the specified log group. Possible values are:
            1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 547, 730.

        r#   retentionInDaysPutRetentionPolicyr%   r(   r   r,   retention_in_daysr-   r   r   r    put_retention_policy     z-CloudWatchLogsConnection.put_retention_policyc                 C   r/   )ae  
        Sets the retention of the specified log group. Log groups are
        created with a default retention of 14 days. The retention
        attribute allow you to configure the number of days you want
        to retain log events in the specified log group.

        :type log_group_name: string
        :param log_group_name:

        :type retention_in_days: integer
        :param retention_in_days: Specifies the number of days you want to
            retain log events in the specified log group. Possible values are:
            1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 547, 730.

        rf   SetRetentionr%   r(   ri   r   r   r    set_retention  s   z&CloudWatchLogsConnection.set_retentionc                 C   r/   )aY  
        Tests the filter pattern of a metric filter against a sample
        of log event messages. You can use this operation to validate
        the correctness of a metric filter pattern.

        :type filter_pattern: string
        :param filter_pattern:

        :type log_event_messages: list
        :param log_event_messages:

        )r`   logEventMessagesTestMetricFilterr%   r(   )r   rc   log_event_messagesr-   r   r   r    test_metric_filter  rl   z+CloudWatchLogsConnection.test_metric_filterc           
      C   s   d| j |f | jjdtt|d}| jdddi ||d}| j|d dd}| d	}t	j
| |jd
kr@|r>t|S d S t|}|dd }| j|| j}	|	|j|j|d)Nz%s.%szapplication/x-amz-json-1.1)zX-Amz-TargetHostzContent-TypezContent-LengthPOST/)methodpath	auth_pathr-   headersdata
   )senderoverride_num_retrieszutf-8   __type)r'   )TargetPrefixr   r   strlenbuild_base_http_request_mexereaddecodebotologdebugstatusr   loadsget_faultsResponseErrorreason)
r   r&   r'   ry   http_requestresponseresponse_body	json_body
fault_nameexception_classr   r   r    r)   *  s0   




z%CloudWatchLogsConnection.make_request)NNN)NNNNN)N))__name__
__module____qualname____doc__
APIVersionr   r   ServiceNamer   r   r   r   r
   r   r   r   r   r   r   r   r   r   r   r!   r.   r5   r7   r9   r>   r@   rG   rL   rQ   rY   r_   re   rk   rn   rr   r)   __classcell__r   r   r   r    r      sZ    /
%
)
)
A
/r   )r   boto.connectionr   boto.regioninfor   boto.exceptionr   	boto.logsr   boto.compatr   r   r   r   r   r    <module>   s   