|
Methods defined here:
- __init__(self)
- list = method(self, **kwargs)
- Retrieves a list of traffic.
Args:
begin: string, Time to begin the list of traffic after (exclusive).
end: string, Time to end the list of traffic at (inclusive).
region: string, Region to list traffic for.
product: string, Product to list traffic for.
Returns:
An object of the form
{
"items": [ # The children on this item, uses a "loop" command to process the list.
{
"region": "A String", # Region this traffic was in.
"kind": "transparencyreport#traffic", # The kind of item this is.
"traffic": 3.140000, # Amount of this traffic.
"product": "A String", # Product this traffic was for.
"timestampSeconds": "A String", # Timestamp in seconds since the epoch (UTC).
},
],
"kind": "transparencyreport#trafficFeed", # The kind of item this is.
}
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|