|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# Copyright 2025 Google LLC |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | +# |
| 16 | +from google.cloud.errorreporting import gapic_version as package_version |
| 17 | + |
| 18 | +__version__ = package_version.__version__ |
| 19 | + |
| 20 | + |
| 21 | +from google.cloud.errorreporting_v1beta1.services.error_group_service.async_client import ( |
| 22 | + ErrorGroupServiceAsyncClient, |
| 23 | +) |
| 24 | +from google.cloud.errorreporting_v1beta1.services.error_group_service.client import ( |
| 25 | + ErrorGroupServiceClient, |
| 26 | +) |
| 27 | +from google.cloud.errorreporting_v1beta1.services.error_stats_service.async_client import ( |
| 28 | + ErrorStatsServiceAsyncClient, |
| 29 | +) |
| 30 | +from google.cloud.errorreporting_v1beta1.services.error_stats_service.client import ( |
| 31 | + ErrorStatsServiceClient, |
| 32 | +) |
| 33 | +from google.cloud.errorreporting_v1beta1.services.report_errors_service.async_client import ( |
| 34 | + ReportErrorsServiceAsyncClient, |
| 35 | +) |
| 36 | +from google.cloud.errorreporting_v1beta1.services.report_errors_service.client import ( |
| 37 | + ReportErrorsServiceClient, |
| 38 | +) |
| 39 | +from google.cloud.errorreporting_v1beta1.types.common import ( |
| 40 | + ErrorContext, |
| 41 | + ErrorEvent, |
| 42 | + ErrorGroup, |
| 43 | + HttpRequestContext, |
| 44 | + ResolutionStatus, |
| 45 | + ServiceContext, |
| 46 | + SourceLocation, |
| 47 | + TrackingIssue, |
| 48 | +) |
| 49 | +from google.cloud.errorreporting_v1beta1.types.error_group_service import ( |
| 50 | + GetGroupRequest, |
| 51 | + UpdateGroupRequest, |
| 52 | +) |
| 53 | +from google.cloud.errorreporting_v1beta1.types.error_stats_service import ( |
| 54 | + DeleteEventsRequest, |
| 55 | + DeleteEventsResponse, |
| 56 | + ErrorGroupOrder, |
| 57 | + ErrorGroupStats, |
| 58 | + ListEventsRequest, |
| 59 | + ListEventsResponse, |
| 60 | + ListGroupStatsRequest, |
| 61 | + ListGroupStatsResponse, |
| 62 | + QueryTimeRange, |
| 63 | + ServiceContextFilter, |
| 64 | + TimedCount, |
| 65 | + TimedCountAlignment, |
| 66 | +) |
| 67 | +from google.cloud.errorreporting_v1beta1.types.report_errors_service import ( |
| 68 | + ReportedErrorEvent, |
| 69 | + ReportErrorEventRequest, |
| 70 | + ReportErrorEventResponse, |
| 71 | +) |
| 72 | + |
| 73 | +__all__ = ( |
| 74 | + "ErrorGroupServiceClient", |
| 75 | + "ErrorGroupServiceAsyncClient", |
| 76 | + "ErrorStatsServiceClient", |
| 77 | + "ErrorStatsServiceAsyncClient", |
| 78 | + "ReportErrorsServiceClient", |
| 79 | + "ReportErrorsServiceAsyncClient", |
| 80 | + "ErrorContext", |
| 81 | + "ErrorEvent", |
| 82 | + "ErrorGroup", |
| 83 | + "HttpRequestContext", |
| 84 | + "ServiceContext", |
| 85 | + "SourceLocation", |
| 86 | + "TrackingIssue", |
| 87 | + "ResolutionStatus", |
| 88 | + "GetGroupRequest", |
| 89 | + "UpdateGroupRequest", |
| 90 | + "DeleteEventsRequest", |
| 91 | + "DeleteEventsResponse", |
| 92 | + "ErrorGroupStats", |
| 93 | + "ListEventsRequest", |
| 94 | + "ListEventsResponse", |
| 95 | + "ListGroupStatsRequest", |
| 96 | + "ListGroupStatsResponse", |
| 97 | + "QueryTimeRange", |
| 98 | + "ServiceContextFilter", |
| 99 | + "TimedCount", |
| 100 | + "ErrorGroupOrder", |
| 101 | + "TimedCountAlignment", |
| 102 | + "ReportedErrorEvent", |
| 103 | + "ReportErrorEventRequest", |
| 104 | + "ReportErrorEventResponse", |
| 105 | +) |
0 commit comments