Skip to content

Commit a7378e6

Browse files
authored
Add v2.122.0 support (#57)
1 parent 1016b11 commit a7378e6

File tree

239 files changed

+19806
-1035
lines changed

Some content is hidden

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

239 files changed

+19806
-1035
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ class AuxiliaryMessage(typing_extensions.TypedDict, total=False):
4242
"SEVERITY_UNSPECIFIED", "SEVERITY_INFO", "SEVERITY_WARNING", "SEVERITY_ERROR"
4343
]
4444

45+
@typing.type_check_only
46+
class BacklightInfo(typing_extensions.TypedDict, total=False):
47+
brightness: int
48+
maxBrightness: int
49+
path: str
50+
4551
@typing.type_check_only
4652
class BatchChangeChromeOsDeviceStatusRequest(typing_extensions.TypedDict, total=False):
4753
changeChromeOsDeviceStatusAction: typing_extensions.Literal[
@@ -192,6 +198,7 @@ class ChromeOsDevice(typing_extensions.TypedDict, total=False):
192198
annotatedLocation: str
193199
annotatedUser: str
194200
autoUpdateExpiration: str
201+
backlightInfo: _list[BacklightInfo]
195202
bootMode: str
196203
cpuInfo: _list[dict[str, typing.Any]]
197204
cpuStatusReports: _list[dict[str, typing.Any]]
@@ -326,6 +333,7 @@ class DirectoryChromeosdevicesCommand(typing_extensions.TypedDict, total=False):
326333
"REMOTE_POWERWASH",
327334
"DEVICE_START_CRD_SESSION",
328335
"CAPTURE_LOGS",
336+
"FETCH_SUPPORT_PACKET",
329337
]
330338

331339
@typing.type_check_only
@@ -350,6 +358,7 @@ class DirectoryChromeosdevicesIssueCommandRequest(
350358
"REMOTE_POWERWASH",
351359
"DEVICE_START_CRD_SESSION",
352360
"CAPTURE_LOGS",
361+
"FETCH_SUPPORT_PACKET",
353362
]
354363
payload: str
355364

googleapiclient-stubs/_apis/admin/reports_v1/resources.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ReportsResource(googleapiclient.discovery.Resource):
4141
"chrome",
4242
"data_studio",
4343
"keep",
44+
"vault",
4445
],
4546
actorIpAddress: str = ...,
4647
customerId: str = ...,

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,12 @@ class MediationAbExperiment(typing_extensions.TypedDict, total=False):
218218
treatmentMediationLines: _list[MediationAbExperimentExperimentMediationLine]
219219
treatmentTrafficPercentage: str
220220
variantLeader: typing_extensions.Literal[
221-
"VARIANT_LEADER_UNSPECIFIED", "CONTROL", "TREATMENT"
221+
"VARIANT_LEADER_UNSPECIFIED",
222+
"CONTROL",
223+
"TREATMENT",
224+
"INSUFFICIENT_DATA",
225+
"TOO_EARLY_TO_CALL",
226+
"NO_VARIANT_LEADER",
222227
]
223228

224229
@typing.type_check_only

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

Lines changed: 68 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,13 @@ class AiplatformResource(googleapiclient.discovery.Resource):
727727
body: GoogleCloudAiplatformV1ExplainRequest = ...,
728728
**kwargs: typing.Any
729729
) -> GoogleCloudAiplatformV1ExplainResponseHttpRequest: ...
730+
def generateContent(
731+
self,
732+
*,
733+
model: str,
734+
body: GoogleCloudAiplatformV1GenerateContentRequest = ...,
735+
**kwargs: typing.Any
736+
) -> GoogleCloudAiplatformV1GenerateContentResponseHttpRequest: ...
730737
def get(
731738
self, *, name: str, **kwargs: typing.Any
732739
) -> GoogleCloudAiplatformV1EndpointHttpRequest: ...
@@ -1054,6 +1061,15 @@ class AiplatformResource(googleapiclient.discovery.Resource):
10541061
updateMask: str = ...,
10551062
**kwargs: typing.Any
10561063
) -> GoogleLongrunningOperationHttpRequest: ...
1064+
def searchNearestEntities(
1065+
self,
1066+
*,
1067+
featureView: str,
1068+
body: GoogleCloudAiplatformV1SearchNearestEntitiesRequest = ...,
1069+
**kwargs: typing.Any
1070+
) -> (
1071+
GoogleCloudAiplatformV1SearchNearestEntitiesResponseHttpRequest
1072+
): ...
10571073
def sync(
10581074
self,
10591075
*,
@@ -2456,6 +2472,13 @@ class AiplatformResource(googleapiclient.discovery.Resource):
24562472
def get(
24572473
self, *, name: str, **kwargs: typing.Any
24582474
) -> GoogleCloudAiplatformV1ModelHttpRequest: ...
2475+
def getIamPolicy(
2476+
self,
2477+
*,
2478+
resource: str,
2479+
options_requestedPolicyVersion: int = ...,
2480+
**kwargs: typing.Any
2481+
) -> GoogleIamV1PolicyHttpRequest: ...
24592482
def list(
24602483
self,
24612484
*,
@@ -2505,6 +2528,20 @@ class AiplatformResource(googleapiclient.discovery.Resource):
25052528
updateMask: str = ...,
25062529
**kwargs: typing.Any
25072530
) -> GoogleCloudAiplatformV1ModelHttpRequest: ...
2531+
def setIamPolicy(
2532+
self,
2533+
*,
2534+
resource: str,
2535+
body: GoogleIamV1SetIamPolicyRequest = ...,
2536+
**kwargs: typing.Any
2537+
) -> GoogleIamV1PolicyHttpRequest: ...
2538+
def testIamPermissions(
2539+
self,
2540+
*,
2541+
resource: str,
2542+
permissions: str | _list[str] = ...,
2543+
**kwargs: typing.Any
2544+
) -> GoogleIamV1TestIamPermissionsResponseHttpRequest: ...
25082545
def updateExplanationDataset(
25092546
self,
25102547
*,
@@ -2751,6 +2788,20 @@ class AiplatformResource(googleapiclient.discovery.Resource):
27512788
self, *, name: str, timeout: str = ..., **kwargs: typing.Any
27522789
) -> GoogleLongrunningOperationHttpRequest: ...
27532790

2791+
def batchCancel(
2792+
self,
2793+
*,
2794+
parent: str,
2795+
body: GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest = ...,
2796+
**kwargs: typing.Any
2797+
) -> GoogleLongrunningOperationHttpRequest: ...
2798+
def batchDelete(
2799+
self,
2800+
*,
2801+
parent: str,
2802+
body: GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest = ...,
2803+
**kwargs: typing.Any
2804+
) -> GoogleLongrunningOperationHttpRequest: ...
27542805
def cancel(
27552806
self,
27562807
*,
@@ -2764,7 +2815,6 @@ class AiplatformResource(googleapiclient.discovery.Resource):
27642815
parent: str,
27652816
body: GoogleCloudAiplatformV1PipelineJob = ...,
27662817
pipelineJobId: str = ...,
2767-
preflightValidations: bool = ...,
27682818
**kwargs: typing.Any
27692819
) -> GoogleCloudAiplatformV1PipelineJobHttpRequest: ...
27702820
def delete(
@@ -2811,6 +2861,13 @@ class AiplatformResource(googleapiclient.discovery.Resource):
28112861
body: GoogleCloudAiplatformV1CountTokensRequest = ...,
28122862
**kwargs: typing.Any
28132863
) -> GoogleCloudAiplatformV1CountTokensResponseHttpRequest: ...
2864+
def generateContent(
2865+
self,
2866+
*,
2867+
model: str,
2868+
body: GoogleCloudAiplatformV1GenerateContentRequest = ...,
2869+
**kwargs: typing.Any
2870+
) -> GoogleCloudAiplatformV1GenerateContentResponseHttpRequest: ...
28142871
def predict(
28152872
self,
28162873
*,
@@ -4801,6 +4858,16 @@ class GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRespon
48014858
GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesResponse
48024859
): ...
48034860

4861+
@typing.type_check_only
4862+
class GoogleCloudAiplatformV1SearchNearestEntitiesResponseHttpRequest(
4863+
googleapiclient.http.HttpRequest
4864+
):
4865+
def execute(
4866+
self,
4867+
http: httplib2.Http | googleapiclient.http.HttpMock | None = None,
4868+
num_retries: int = 0,
4869+
) -> GoogleCloudAiplatformV1SearchNearestEntitiesResponse: ...
4870+
48044871
@typing.type_check_only
48054872
class GoogleCloudAiplatformV1SpecialistPoolHttpRequest(
48064873
googleapiclient.http.HttpRequest

0 commit comments

Comments
 (0)