Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions googleapiclient-stubs/_apis/admin/reports_v1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class ReportsResource(googleapiclient.discovery.Resource):
eventName: str = ...,
filters: str = ...,
groupIdFilter: str = ...,
includeSensitiveData: bool = ...,
maxResults: int = ...,
networkInfoFilter: str = ...,
orgUnitID: str = ...,
Expand Down
26 changes: 26 additions & 0 deletions googleapiclient-stubs/_apis/admin/reports_v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ class Channel(typing_extensions.TypedDict, total=False):
token: str
type: str

@typing.type_check_only
class CustomerIdentity(typing_extensions.TypedDict, total=False):
id: str

@typing.type_check_only
class Date(typing_extensions.TypedDict, total=False):
day: int
Expand Down Expand Up @@ -101,6 +105,11 @@ class FieldValueUserListValue(typing_extensions.TypedDict, total=False):
class FieldValueUserValue(typing_extensions.TypedDict, total=False):
email: str

@typing.type_check_only
class GroupIdentity(typing_extensions.TypedDict, total=False):
groupEmail: str
id: str

@typing.type_check_only
class NestedParameter(typing_extensions.TypedDict, total=False):
boolValue: bool
Expand All @@ -111,6 +120,17 @@ class NestedParameter(typing_extensions.TypedDict, total=False):
name: str
value: str

@typing.type_check_only
class OwnerDetails(typing_extensions.TypedDict, total=False):
ownerIdentity: _list[OwnerIdentity]
ownerType: str

@typing.type_check_only
class OwnerIdentity(typing_extensions.TypedDict, total=False):
customerIdentity: CustomerIdentity
groupIdentity: GroupIdentity
userIdentity: UserIdentity

@typing.type_check_only
class Reason(typing_extensions.TypedDict, total=False):
reasonType: str
Expand All @@ -119,6 +139,7 @@ class Reason(typing_extensions.TypedDict, total=False):
class ResourceDetails(typing_extensions.TypedDict, total=False):
appliedLabels: _list[AppliedLabel]
id: str
ownerDetails: OwnerDetails
relation: str
title: str
type: str
Expand All @@ -138,3 +159,8 @@ class UsageReports(typing_extensions.TypedDict, total=False):
nextPageToken: str
usageReports: _list[UsageReport]
warnings: _list[dict[str, typing.Any]]

@typing.type_check_only
class UserIdentity(typing_extensions.TypedDict, total=False):
id: str
userEmail: str
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .resources import *
from .schemas import *
Loading
Loading