Skip to content

Commit a394f84

Browse files
committed
Add v2.80.0 support (#34)
1 parent 1f3561f commit a394f84

File tree

278 files changed

+19591
-2360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+19591
-2360
lines changed

googleapiclient-stubs/_apis/accesscontextmanager/v1/resources.pyi

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,43 @@ class AccessContextManagerResource(googleapiclient.discovery.Resource):
7171
**kwargs: typing.Any
7272
) -> TestIamPermissionsResponseHttpRequest: ...
7373

74+
@typing.type_check_only
75+
class AuthorizedOrgsDescsResource(googleapiclient.discovery.Resource):
76+
def create(
77+
self,
78+
*,
79+
parent: str,
80+
body: AuthorizedOrgsDesc = ...,
81+
**kwargs: typing.Any
82+
) -> OperationHttpRequest: ...
83+
def delete(
84+
self, *, name: str, **kwargs: typing.Any
85+
) -> OperationHttpRequest: ...
86+
def get(
87+
self, *, name: str, **kwargs: typing.Any
88+
) -> AuthorizedOrgsDescHttpRequest: ...
89+
def list(
90+
self,
91+
*,
92+
parent: str,
93+
pageSize: int = ...,
94+
pageToken: str = ...,
95+
**kwargs: typing.Any
96+
) -> ListAuthorizedOrgsDescsResponseHttpRequest: ...
97+
def list_next(
98+
self,
99+
previous_request: ListAuthorizedOrgsDescsResponseHttpRequest,
100+
previous_response: ListAuthorizedOrgsDescsResponse,
101+
) -> ListAuthorizedOrgsDescsResponseHttpRequest | None: ...
102+
def patch(
103+
self,
104+
*,
105+
name: str,
106+
body: AuthorizedOrgsDesc = ...,
107+
updateMask: str = ...,
108+
**kwargs: typing.Any
109+
) -> OperationHttpRequest: ...
110+
74111
@typing.type_check_only
75112
class ServicePerimetersResource(googleapiclient.discovery.Resource):
76113
def commit(
@@ -177,6 +214,7 @@ class AccessContextManagerResource(googleapiclient.discovery.Resource):
177214
**kwargs: typing.Any
178215
) -> TestIamPermissionsResponseHttpRequest: ...
179216
def accessLevels(self) -> AccessLevelsResource: ...
217+
def authorizedOrgsDescs(self) -> AuthorizedOrgsDescsResource: ...
180218
def servicePerimeters(self) -> ServicePerimetersResource: ...
181219

182220
@typing.type_check_only
@@ -274,6 +312,14 @@ class AccessPolicyHttpRequest(googleapiclient.http.HttpRequest):
274312
num_retries: int = ...,
275313
) -> AccessPolicy: ...
276314

315+
@typing.type_check_only
316+
class AuthorizedOrgsDescHttpRequest(googleapiclient.http.HttpRequest):
317+
def execute(
318+
self,
319+
http: httplib2.Http | googleapiclient.http.HttpMock | None = ...,
320+
num_retries: int = ...,
321+
) -> AuthorizedOrgsDesc: ...
322+
277323
@typing.type_check_only
278324
class EmptyHttpRequest(googleapiclient.http.HttpRequest):
279325
def execute(
@@ -306,6 +352,14 @@ class ListAccessPoliciesResponseHttpRequest(googleapiclient.http.HttpRequest):
306352
num_retries: int = ...,
307353
) -> ListAccessPoliciesResponse: ...
308354

355+
@typing.type_check_only
356+
class ListAuthorizedOrgsDescsResponseHttpRequest(googleapiclient.http.HttpRequest):
357+
def execute(
358+
self,
359+
http: httplib2.Http | googleapiclient.http.HttpMock | None = ...,
360+
num_retries: int = ...,
361+
) -> ListAuthorizedOrgsDescsResponse: ...
362+
309363
@typing.type_check_only
310364
class ListGcpUserAccessBindingsResponseHttpRequest(googleapiclient.http.HttpRequest):
311365
def execute(

googleapiclient-stubs/_apis/accesscontextmanager/v1/schemas.pyi

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,22 @@ class AuditLogConfig(typing_extensions.TypedDict, total=False):
4242
"LOG_TYPE_UNSPECIFIED", "ADMIN_READ", "DATA_WRITE", "DATA_READ"
4343
]
4444

45+
@typing.type_check_only
46+
class AuthorizedOrgsDesc(typing_extensions.TypedDict, total=False):
47+
assetType: typing_extensions.Literal[
48+
"ASSET_TYPE_UNSPECIFIED", "ASSET_TYPE_DEVICE", "ASSET_TYPE_CREDENTIAL_STRENGTH"
49+
]
50+
authorizationDirection: typing_extensions.Literal[
51+
"AUTHORIZATION_DIRECTION_UNSPECIFIED",
52+
"AUTHORIZATION_DIRECTION_TO",
53+
"AUTHORIZATION_DIRECTION_FROM",
54+
]
55+
authorizationType: typing_extensions.Literal[
56+
"AUTHORIZATION_TYPE_UNSPECIFIED", "AUTHORIZATION_TYPE_TRUST"
57+
]
58+
name: str
59+
orgs: _list[str]
60+
4561
@typing.type_check_only
4662
class BasicLevel(typing_extensions.TypedDict, total=False):
4763
combiningFunction: typing_extensions.Literal["AND", "OR"]
@@ -172,6 +188,11 @@ class ListAccessPoliciesResponse(typing_extensions.TypedDict, total=False):
172188
accessPolicies: _list[AccessPolicy]
173189
nextPageToken: str
174190

191+
@typing.type_check_only
192+
class ListAuthorizedOrgsDescsResponse(typing_extensions.TypedDict, total=False):
193+
authorizedOrgsDescs: _list[AuthorizedOrgsDesc]
194+
nextPageToken: str
195+
175196
@typing.type_check_only
176197
class ListGcpUserAccessBindingsResponse(typing_extensions.TypedDict, total=False):
177198
gcpUserAccessBindings: _list[GcpUserAccessBinding]

googleapiclient-stubs/_apis/acmedns/__init__.pyi

Whitespace-only changes.

googleapiclient-stubs/_apis/acmedns/v1/__init__.pyi

Whitespace-only changes.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import collections.abc
2+
import typing
3+
4+
import httplib2 # type: ignore
5+
import typing_extensions
6+
7+
import googleapiclient.discovery
8+
import googleapiclient.http # type: ignore
9+
10+
from .schemas import *
11+
12+
_list = list
13+
14+
@typing.type_check_only
15+
class ACMEDNSResource(googleapiclient.discovery.Resource):
16+
@typing.type_check_only
17+
class AcmeChallengeSetsResource(googleapiclient.discovery.Resource):
18+
def get(
19+
self, *, rootDomain: str, **kwargs: typing.Any
20+
) -> AcmeChallengeSetHttpRequest: ...
21+
def rotateChallenges(
22+
self,
23+
*,
24+
rootDomain: str,
25+
body: RotateChallengesRequest = ...,
26+
**kwargs: typing.Any
27+
) -> AcmeChallengeSetHttpRequest: ...
28+
29+
def new_batch_http_request(
30+
self,
31+
callback: collections.abc.Callable[
32+
[
33+
str,
34+
googleapiclient.http.HttpRequest,
35+
googleapiclient.errors.HttpError | None,
36+
],
37+
typing.Any,
38+
]
39+
| None = ...,
40+
) -> googleapiclient.http.BatchHttpRequest: ...
41+
def acmeChallengeSets(self) -> AcmeChallengeSetsResource: ...
42+
43+
@typing.type_check_only
44+
class AcmeChallengeSetHttpRequest(googleapiclient.http.HttpRequest):
45+
def execute(
46+
self,
47+
http: httplib2.Http | googleapiclient.http.HttpMock | None = ...,
48+
num_retries: int = ...,
49+
) -> AcmeChallengeSet: ...
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import typing
2+
3+
import typing_extensions
4+
5+
_list = list
6+
7+
@typing.type_check_only
8+
class AcmeChallengeSet(typing_extensions.TypedDict, total=False):
9+
record: _list[AcmeTxtRecord]
10+
11+
@typing.type_check_only
12+
class AcmeTxtRecord(typing_extensions.TypedDict, total=False):
13+
digest: str
14+
fqdn: str
15+
updateTime: str
16+
17+
@typing.type_check_only
18+
class RotateChallengesRequest(typing_extensions.TypedDict, total=False):
19+
accessToken: str
20+
keepExpiredRecords: bool
21+
recordsToAdd: _list[AcmeTxtRecord]
22+
recordsToRemove: _list[AcmeTxtRecord]

googleapiclient-stubs/_apis/admin/directory_v1/schemas.pyi

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,19 @@ class ChromeOsDevice(typing_extensions.TypedDict, total=False):
159159
bootMode: str
160160
cpuInfo: _list[dict[str, typing.Any]]
161161
cpuStatusReports: _list[dict[str, typing.Any]]
162+
deprovisionReason: typing_extensions.Literal[
163+
"deprovisionReasonUnspecified",
164+
"deprovisionReasonSameModelReplacement",
165+
"deprovisionReasonUpgrade",
166+
"deprovisionReasonDomainMove",
167+
"deprovisionReasonServiceExpiration",
168+
"deprovisionReasonOther",
169+
"deprovisionReasonDifferentModelReplacement",
170+
"deprovisionReasonRetiringDevice",
171+
"deprovisionReasonUpgradeTransfer",
172+
"deprovisionReasonNotRequired",
173+
"deprovisionReasonRepairCenter",
174+
]
162175
deviceFiles: _list[dict[str, typing.Any]]
163176
deviceId: str
164177
diskVolumeReports: _list[dict[str, typing.Any]]
@@ -169,6 +182,7 @@ class ChromeOsDevice(typing_extensions.TypedDict, total=False):
169182
firmwareVersion: str
170183
firstEnrollmentTime: str
171184
kind: str
185+
lastDeprovisionTimestamp: str
172186
lastEnrollmentTime: str
173187
lastKnownNetwork: _list[dict[str, typing.Any]]
174188
lastSync: str
@@ -266,10 +280,12 @@ class DirectoryChromeosdevicesCommand(typing_extensions.TypedDict, total=False):
266280
"SET_VOLUME",
267281
"WIPE_USERS",
268282
"REMOTE_POWERWASH",
283+
"DEVICE_START_CRD_SESSION",
269284
]
270285

271286
@typing.type_check_only
272287
class DirectoryChromeosdevicesCommandResult(typing_extensions.TypedDict, total=False):
288+
commandResultPayload: str
273289
errorMessage: str
274290
executeTime: str
275291
result: typing_extensions.Literal[
@@ -287,6 +303,7 @@ class DirectoryChromeosdevicesIssueCommandRequest(
287303
"SET_VOLUME",
288304
"WIPE_USERS",
289305
"REMOTE_POWERWASH",
306+
"DEVICE_START_CRD_SESSION",
290307
]
291308
payload: str
292309

googleapiclient-stubs/_apis/admob/v1/schemas.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ class AdUnit(typing_extensions.TypedDict, total=False):
1515

1616
@typing.type_check_only
1717
class App(typing_extensions.TypedDict, total=False):
18+
appApprovalState: typing_extensions.Literal[
19+
"APP_APPROVAL_STATE_UNSPECIFIED", "ACTION_REQUIRED", "IN_REVIEW", "APPROVED"
20+
]
1821
appId: str
1922
linkedAppInfo: AppLinkedAppInfo
2023
manualAppInfo: AppManualAppInfo

googleapiclient-stubs/_apis/admob/v1beta/schemas.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class AdUnit(typing_extensions.TypedDict, total=False):
2121

2222
@typing.type_check_only
2323
class App(typing_extensions.TypedDict, total=False):
24+
appApprovalState: typing_extensions.Literal[
25+
"APP_APPROVAL_STATE_UNSPECIFIED", "ACTION_REQUIRED", "IN_REVIEW", "APPROVED"
26+
]
2427
appId: str
2528
linkedAppInfo: AppLinkedAppInfo
2629
manualAppInfo: AppManualAppInfo

googleapiclient-stubs/_apis/advisorynotifications/__init__.pyi

Whitespace-only changes.

0 commit comments

Comments
 (0)