Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
chore: upgrade gapic-generator-python to 0.46.3 (#67)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 373649163

Source-Link: googleapis/googleapis@7e1b14e

Source-Link: googleapis/googleapis-gen@0a3c7d2
  • Loading branch information
gcf-owl-bot[bot] committed May 14, 2021
1 parent 24ae029 commit 38fa184
Show file tree
Hide file tree
Showing 21 changed files with 668 additions and 440 deletions.
Expand Up @@ -5,7 +5,6 @@ RecaptchaEnterpriseService
:members:
:inherited-members:


.. automodule:: google.cloud.recaptchaenterprise_v1.services.recaptcha_enterprise_service.pagers
:members:
:inherited-members:
12 changes: 6 additions & 6 deletions google/cloud/recaptchaenterprise/__init__.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -15,12 +14,13 @@
# limitations under the License.
#

from google.cloud.recaptchaenterprise_v1.services.recaptcha_enterprise_service.async_client import (
RecaptchaEnterpriseServiceAsyncClient,
)
from google.cloud.recaptchaenterprise_v1.services.recaptcha_enterprise_service.client import (
RecaptchaEnterpriseServiceClient,
)
from google.cloud.recaptchaenterprise_v1.services.recaptcha_enterprise_service.async_client import (
RecaptchaEnterpriseServiceAsyncClient,
)

from google.cloud.recaptchaenterprise_v1.types.recaptchaenterprise import (
AndroidKeySettings,
)
Expand Down Expand Up @@ -60,6 +60,8 @@
from google.cloud.recaptchaenterprise_v1.types.recaptchaenterprise import WebKeySettings

__all__ = (
"RecaptchaEnterpriseServiceClient",
"RecaptchaEnterpriseServiceAsyncClient",
"AndroidKeySettings",
"AnnotateAssessmentRequest",
"AnnotateAssessmentResponse",
Expand All @@ -73,8 +75,6 @@
"Key",
"ListKeysRequest",
"ListKeysResponse",
"RecaptchaEnterpriseServiceAsyncClient",
"RecaptchaEnterpriseServiceClient",
"RiskAnalysis",
"TokenProperties",
"UpdateKeyRequest",
Expand Down
7 changes: 4 additions & 3 deletions google/cloud/recaptchaenterprise_v1/__init__.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -16,6 +15,8 @@
#

from .services.recaptcha_enterprise_service import RecaptchaEnterpriseServiceClient
from .services.recaptcha_enterprise_service import RecaptchaEnterpriseServiceAsyncClient

from .types.recaptchaenterprise import AndroidKeySettings
from .types.recaptchaenterprise import AnnotateAssessmentRequest
from .types.recaptchaenterprise import AnnotateAssessmentResponse
Expand All @@ -34,8 +35,8 @@
from .types.recaptchaenterprise import UpdateKeyRequest
from .types.recaptchaenterprise import WebKeySettings


__all__ = (
"RecaptchaEnterpriseServiceAsyncClient",
"AndroidKeySettings",
"AnnotateAssessmentRequest",
"AnnotateAssessmentResponse",
Expand All @@ -49,9 +50,9 @@
"Key",
"ListKeysRequest",
"ListKeysResponse",
"RecaptchaEnterpriseServiceClient",
"RiskAnalysis",
"TokenProperties",
"UpdateKeyRequest",
"WebKeySettings",
"RecaptchaEnterpriseServiceClient",
)
93 changes: 93 additions & 0 deletions google/cloud/recaptchaenterprise_v1/gapic_metadata.json
@@ -0,0 +1,93 @@
{
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
"language": "python",
"libraryPackage": "google.cloud.recaptchaenterprise_v1",
"protoPackage": "google.cloud.recaptchaenterprise.v1",
"schema": "1.0",
"services": {
"RecaptchaEnterpriseService": {
"clients": {
"grpc": {
"libraryClient": "RecaptchaEnterpriseServiceClient",
"rpcs": {
"AnnotateAssessment": {
"methods": [
"annotate_assessment"
]
},
"CreateAssessment": {
"methods": [
"create_assessment"
]
},
"CreateKey": {
"methods": [
"create_key"
]
},
"DeleteKey": {
"methods": [
"delete_key"
]
},
"GetKey": {
"methods": [
"get_key"
]
},
"ListKeys": {
"methods": [
"list_keys"
]
},
"UpdateKey": {
"methods": [
"update_key"
]
}
}
},
"grpc-async": {
"libraryClient": "RecaptchaEnterpriseServiceAsyncClient",
"rpcs": {
"AnnotateAssessment": {
"methods": [
"annotate_assessment"
]
},
"CreateAssessment": {
"methods": [
"create_assessment"
]
},
"CreateKey": {
"methods": [
"create_key"
]
},
"DeleteKey": {
"methods": [
"delete_key"
]
},
"GetKey": {
"methods": [
"get_key"
]
},
"ListKeys": {
"methods": [
"list_keys"
]
},
"UpdateKey": {
"methods": [
"update_key"
]
}
}
}
}
}
}
}
1 change: 0 additions & 1 deletion google/cloud/recaptchaenterprise_v1/services/__init__.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -14,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

from .client import RecaptchaEnterpriseServiceClient
from .async_client import RecaptchaEnterpriseServiceAsyncClient

Expand Down

0 comments on commit 38fa184

Please sign in to comment.