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

chore: upgrade gapic-generator-python to 0.46.3 #67

Merged
Merged
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Loading