Skip to content

Commit ad45a96

Browse files
committed
Add v2.23.0 compatibility
1 parent c875bc0 commit ad45a96

File tree

99 files changed

+3142
-161
lines changed

Some content is hidden

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

99 files changed

+3142
-161
lines changed

googleapiclient-stubs/_apis/analyticsadmin/v1alpha/schemas.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ class GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret(
477477

478478
@typing.type_check_only
479479
class GoogleAnalyticsAdminV1alphaProperty(typing_extensions.TypedDict, total=False):
480+
account: str
480481
createTime: str
481482
currencyCode: str
482483
deleteTime: str

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ class ApplicationPolicy(typing_extensions.TypedDict, total=False):
8989
]
9090
delegatedScopes: typing.List[str]
9191
disabled: bool
92+
extensionConfig: ExtensionConfig
9293
installType: typing_extensions.Literal[
9394
"INSTALL_TYPE_UNSPECIFIED",
9495
"PREINSTALLED",
@@ -331,6 +332,11 @@ class Enterprise(typing_extensions.TypedDict, total=False):
331332
signinDetails: typing.List[SigninDetail]
332333
termsAndConditions: typing.List[TermsAndConditions]
333334

335+
@typing.type_check_only
336+
class ExtensionConfig(typing_extensions.TypedDict, total=False):
337+
notificationReceiver: str
338+
signingKeyFingerprintsSha256: typing.List[str]
339+
334340
@typing.type_check_only
335341
class ExternalData(typing_extensions.TypedDict, total=False):
336342
sha256Hash: str

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

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,15 @@ class ApigeeResource(googleapiclient.discovery.Resource):
404404
**kwargs: typing.Any
405405
) -> GoogleCloudApigeeV1AttributeHttpRequest: ...
406406
@typing.type_check_only
407+
class BalanceResource(googleapiclient.discovery.Resource):
408+
def credit(
409+
self,
410+
*,
411+
name: str,
412+
body: GoogleCloudApigeeV1CreditDeveloperBalanceRequest = ...,
413+
**kwargs: typing.Any
414+
) -> GoogleCloudApigeeV1DeveloperBalanceHttpRequest: ...
415+
@typing.type_check_only
407416
class SubscriptionsResource(googleapiclient.discovery.Resource):
408417
def create(
409418
self,
@@ -443,6 +452,12 @@ class ApigeeResource(googleapiclient.discovery.Resource):
443452
def get(
444453
self, *, name: str, action: str = ..., **kwargs: typing.Any
445454
) -> GoogleCloudApigeeV1DeveloperHttpRequest: ...
455+
def getBalance(
456+
self, *, name: str, **kwargs: typing.Any
457+
) -> GoogleCloudApigeeV1DeveloperBalanceHttpRequest: ...
458+
def getMonetizationConfig(
459+
self, *, name: str, **kwargs: typing.Any
460+
) -> GoogleCloudApigeeV1DeveloperMonetizationConfigHttpRequest: ...
446461
def list(
447462
self,
448463
*,
@@ -465,8 +480,16 @@ class ApigeeResource(googleapiclient.discovery.Resource):
465480
body: GoogleCloudApigeeV1Developer = ...,
466481
**kwargs: typing.Any
467482
) -> GoogleCloudApigeeV1DeveloperHttpRequest: ...
483+
def updateMonetizationConfig(
484+
self,
485+
*,
486+
name: str,
487+
body: GoogleCloudApigeeV1DeveloperMonetizationConfig = ...,
488+
**kwargs: typing.Any
489+
) -> GoogleCloudApigeeV1DeveloperMonetizationConfigHttpRequest: ...
468490
def apps(self) -> AppsResource: ...
469491
def attributes(self) -> AttributesResource: ...
492+
def balance(self) -> BalanceResource: ...
470493
def subscriptions(self) -> SubscriptionsResource: ...
471494
@typing.type_check_only
472495
class EnvgroupsResource(googleapiclient.discovery.Resource):
@@ -1743,6 +1766,28 @@ class GoogleCloudApigeeV1DeveloperAppKeyHttpRequest(googleapiclient.http.HttpReq
17431766
num_retries: int = ...,
17441767
) -> GoogleCloudApigeeV1DeveloperAppKey: ...
17451768

1769+
@typing.type_check_only
1770+
class GoogleCloudApigeeV1DeveloperBalanceHttpRequest(googleapiclient.http.HttpRequest):
1771+
def execute(
1772+
self,
1773+
http: typing.Optional[
1774+
typing.Union[httplib2.Http, googleapiclient.http.HttpMock]
1775+
] = ...,
1776+
num_retries: int = ...,
1777+
) -> GoogleCloudApigeeV1DeveloperBalance: ...
1778+
1779+
@typing.type_check_only
1780+
class GoogleCloudApigeeV1DeveloperMonetizationConfigHttpRequest(
1781+
googleapiclient.http.HttpRequest
1782+
):
1783+
def execute(
1784+
self,
1785+
http: typing.Optional[
1786+
typing.Union[httplib2.Http, googleapiclient.http.HttpMock]
1787+
] = ...,
1788+
num_retries: int = ...,
1789+
) -> GoogleCloudApigeeV1DeveloperMonetizationConfig: ...
1790+
17461791
@typing.type_check_only
17471792
class GoogleCloudApigeeV1DeveloperSubscriptionHttpRequest(
17481793
googleapiclient.http.HttpRequest

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,13 @@ class GoogleCloudApigeeV1Credential(typing_extensions.TypedDict, total=False):
266266
scopes: typing.List[str]
267267
status: str
268268

269+
@typing.type_check_only
270+
class GoogleCloudApigeeV1CreditDeveloperBalanceRequest(
271+
typing_extensions.TypedDict, total=False
272+
):
273+
transactionAmount: GoogleTypeMoney
274+
transactionId: str
275+
269276
@typing.type_check_only
270277
class GoogleCloudApigeeV1CustomReport(typing_extensions.TypedDict, total=False):
271278
chartType: str
@@ -479,6 +486,25 @@ class GoogleCloudApigeeV1DeveloperAppKey(typing_extensions.TypedDict, total=Fals
479486
scopes: typing.List[str]
480487
status: str
481488

489+
@typing.type_check_only
490+
class GoogleCloudApigeeV1DeveloperBalance(typing_extensions.TypedDict, total=False):
491+
wallets: typing.List[GoogleCloudApigeeV1DeveloperBalanceWallet]
492+
493+
@typing.type_check_only
494+
class GoogleCloudApigeeV1DeveloperBalanceWallet(
495+
typing_extensions.TypedDict, total=False
496+
):
497+
balance: GoogleTypeMoney
498+
lastCreditTime: str
499+
500+
@typing.type_check_only
501+
class GoogleCloudApigeeV1DeveloperMonetizationConfig(
502+
typing_extensions.TypedDict, total=False
503+
):
504+
billingType: typing_extensions.Literal[
505+
"BILLING_TYPE_UNSPECIFIED", "PREPAID", "POSTPAID"
506+
]
507+
482508
@typing.type_check_only
483509
class GoogleCloudApigeeV1DeveloperSubscription(
484510
typing_extensions.TypedDict, total=False
@@ -685,6 +711,7 @@ class GoogleCloudApigeeV1Instance(typing_extensions.TypedDict, total=False):
685711
"SLASH_23",
686712
]
687713
port: str
714+
runtimeVersion: str
688715
state: typing_extensions.Literal[
689716
"STATE_UNSPECIFIED", "CREATING", "ACTIVE", "DELETING", "UPDATING"
690717
]
@@ -1360,6 +1387,7 @@ class GoogleCloudApigeeV1TargetServer(typing_extensions.TypedDict, total=False):
13601387

13611388
@typing.type_check_only
13621389
class GoogleCloudApigeeV1TargetServerConfig(typing_extensions.TypedDict, total=False):
1390+
enabled: bool
13631391
host: str
13641392
name: str
13651393
port: int

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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,30 @@ class GoogleAppengineV1betaLocationMetadata(typing_extensions.TypedDict, total=F
205205
searchApiAvailable: bool
206206
standardEnvironmentAvailable: bool
207207

208+
@typing.type_check_only
209+
class GoogleAppengineV2OperationMetadata(typing_extensions.TypedDict, total=False):
210+
apiVersion: str
211+
createTime: str
212+
endTime: str
213+
ephemeralMessage: str
214+
requestedCancellation: bool
215+
statusMessage: str
216+
target: str
217+
verb: str
218+
warning: typing.List[str]
219+
220+
@typing.type_check_only
221+
class GoogleAppengineV2mainOperationMetadata(typing_extensions.TypedDict, total=False):
222+
apiVersion: str
223+
createTime: str
224+
endTime: str
225+
ephemeralMessage: str
226+
requestedCancellation: bool
227+
statusMessage: str
228+
target: str
229+
verb: str
230+
warning: typing.List[str]
231+
208232
@typing.type_check_only
209233
class HealthCheck(typing_extensions.TypedDict, total=False):
210234
checkInterval: str
@@ -444,6 +468,7 @@ class ScriptHandler(typing_extensions.TypedDict, total=False):
444468
@typing.type_check_only
445469
class Service(typing_extensions.TypedDict, total=False):
446470
id: str
471+
labels: typing.Dict[str, typing.Any]
447472
name: str
448473
networkSettings: NetworkSettings
449474
split: TrafficSplit

googleapiclient-stubs/_apis/appengine/v1alpha/schemas.pyi

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,30 @@ class GoogleAppengineV1betaLocationMetadata(typing_extensions.TypedDict, total=F
5252
searchApiAvailable: bool
5353
standardEnvironmentAvailable: bool
5454

55+
@typing.type_check_only
56+
class GoogleAppengineV2OperationMetadata(typing_extensions.TypedDict, total=False):
57+
apiVersion: str
58+
createTime: str
59+
endTime: str
60+
ephemeralMessage: str
61+
requestedCancellation: bool
62+
statusMessage: str
63+
target: str
64+
verb: str
65+
warning: typing.List[str]
66+
67+
@typing.type_check_only
68+
class GoogleAppengineV2mainOperationMetadata(typing_extensions.TypedDict, total=False):
69+
apiVersion: str
70+
createTime: str
71+
endTime: str
72+
ephemeralMessage: str
73+
requestedCancellation: bool
74+
statusMessage: str
75+
target: str
76+
verb: str
77+
warning: typing.List[str]
78+
5579
@typing.type_check_only
5680
class ListAuthorizedCertificatesResponse(typing_extensions.TypedDict, total=False):
5781
certificates: typing.List[AuthorizedCertificate]

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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,30 @@ class GoogleAppengineV1betaLocationMetadata(typing_extensions.TypedDict, total=F
219219
searchApiAvailable: bool
220220
standardEnvironmentAvailable: bool
221221

222+
@typing.type_check_only
223+
class GoogleAppengineV2OperationMetadata(typing_extensions.TypedDict, total=False):
224+
apiVersion: str
225+
createTime: str
226+
endTime: str
227+
ephemeralMessage: str
228+
requestedCancellation: bool
229+
statusMessage: str
230+
target: str
231+
verb: str
232+
warning: typing.List[str]
233+
234+
@typing.type_check_only
235+
class GoogleAppengineV2mainOperationMetadata(typing_extensions.TypedDict, total=False):
236+
apiVersion: str
237+
createTime: str
238+
endTime: str
239+
ephemeralMessage: str
240+
requestedCancellation: bool
241+
statusMessage: str
242+
target: str
243+
verb: str
244+
warning: typing.List[str]
245+
222246
@typing.type_check_only
223247
class HealthCheck(typing_extensions.TypedDict, total=False):
224248
checkInterval: str
@@ -461,6 +485,7 @@ class ScriptHandler(typing_extensions.TypedDict, total=False):
461485
@typing.type_check_only
462486
class Service(typing_extensions.TypedDict, total=False):
463487
id: str
488+
labels: typing.Dict[str, typing.Any]
464489
name: str
465490
networkSettings: NetworkSettings
466491
split: TrafficSplit

googleapiclient-stubs/_apis/area120tables/v1alpha1/schemas.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class ColumnDescription(typing_extensions.TypedDict, total=False):
3030
lookupDetails: LookupDetails
3131
multipleValuesDisallowed: bool
3232
name: str
33+
readonly: bool
3334
relationshipDetails: RelationshipDetails
3435

3536
@typing.type_check_only

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Repository(typing_extensions.TypedDict, total=False):
8787
createTime: str
8888
description: str
8989
format: typing_extensions.Literal[
90-
"FORMAT_UNSPECIFIED", "DOCKER", "MAVEN", "NPM", "PYPI", "APT", "YUM", "PYTHON"
90+
"FORMAT_UNSPECIFIED", "DOCKER", "MAVEN", "NPM", "APT", "YUM", "PYTHON"
9191
]
9292
kmsKeyName: str
9393
labels: typing.Dict[str, typing.Any]

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class GoogleCloudAssuredworkloadsV1CreateWorkloadOperationMetadata(
1616
"HIPAA",
1717
"HITRUST",
1818
"EU_REGIONS_AND_SUPPORT",
19+
"CA_REGIONS_AND_SUPPORT",
1920
]
2021
createTime: str
2122
displayName: str
@@ -41,6 +42,7 @@ class GoogleCloudAssuredworkloadsV1Workload(typing_extensions.TypedDict, total=F
4142
"HIPAA",
4243
"HITRUST",
4344
"EU_REGIONS_AND_SUPPORT",
45+
"CA_REGIONS_AND_SUPPORT",
4446
]
4547
createTime: str
4648
displayName: str

0 commit comments

Comments
 (0)