Source code for aliyun.log.listlogstoresrequest

#!/usr/bin/env python
# encoding: utf-8

# Copyright (C) Alibaba Cloud Computing
# All rights reserved.

from .logrequest import LogRequest


[docs]class ListLogstoresRequest(LogRequest): """ The request used to list log store from log. :type project: string :param project: project name """ def __init__(self, project=None): LogRequest.__init__(self, project)