|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /proc/thread-self/root/opt/cppython/lib/python3.8/site-packages/google/rpc/ |
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import ClassVar as _ClassVar
from typing import Iterable as _Iterable
from typing import Mapping as _Mapping
from typing import Optional as _Optional
from typing import Union as _Union
from google.protobuf import descriptor as _descriptor
from google.protobuf import duration_pb2 as _duration_pb2
from google.protobuf import message as _message
from google.protobuf.internal import containers as _containers
DESCRIPTOR: _descriptor.FileDescriptor
class ErrorInfo(_message.Message):
__slots__ = ("reason", "domain", "metadata")
class MetadataEntry(_message.Message):
__slots__ = ("key", "value")
KEY_FIELD_NUMBER: _ClassVar[int]
VALUE_FIELD_NUMBER: _ClassVar[int]
key: str
value: str
def __init__(
self, key: _Optional[str] = ..., value: _Optional[str] = ...
) -> None: ...
REASON_FIELD_NUMBER: _ClassVar[int]
DOMAIN_FIELD_NUMBER: _ClassVar[int]
METADATA_FIELD_NUMBER: _ClassVar[int]
reason: str
domain: str
metadata: _containers.ScalarMap[str, str]
def __init__(
self,
reason: _Optional[str] = ...,
domain: _Optional[str] = ...,
metadata: _Optional[_Mapping[str, str]] = ...,
) -> None: ...
class RetryInfo(_message.Message):
__slots__ = ("retry_delay",)
RETRY_DELAY_FIELD_NUMBER: _ClassVar[int]
retry_delay: _duration_pb2.Duration
def __init__(
self, retry_delay: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ...
) -> None: ...
class DebugInfo(_message.Message):
__slots__ = ("stack_entries", "detail")
STACK_ENTRIES_FIELD_NUMBER: _ClassVar[int]
DETAIL_FIELD_NUMBER: _ClassVar[int]
stack_entries: _containers.RepeatedScalarFieldContainer[str]
detail: str
def __init__(
self,
stack_entries: _Optional[_Iterable[str]] = ...,
detail: _Optional[str] = ...,
) -> None: ...
class QuotaFailure(_message.Message):
__slots__ = ("violations",)
class Violation(_message.Message):
__slots__ = ("subject", "description")
SUBJECT_FIELD_NUMBER: _ClassVar[int]
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
subject: str
description: str
def __init__(
self, subject: _Optional[str] = ..., description: _Optional[str] = ...
) -> None: ...
VIOLATIONS_FIELD_NUMBER: _ClassVar[int]
violations: _containers.RepeatedCompositeFieldContainer[QuotaFailure.Violation]
def __init__(
self,
violations: _Optional[
_Iterable[_Union[QuotaFailure.Violation, _Mapping]]
] = ...,
) -> None: ...
class PreconditionFailure(_message.Message):
__slots__ = ("violations",)
class Violation(_message.Message):
__slots__ = ("type", "subject", "description")
TYPE_FIELD_NUMBER: _ClassVar[int]
SUBJECT_FIELD_NUMBER: _ClassVar[int]
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
type: str
subject: str
description: str
def __init__(
self,
type: _Optional[str] = ...,
subject: _Optional[str] = ...,
description: _Optional[str] = ...,
) -> None: ...
VIOLATIONS_FIELD_NUMBER: _ClassVar[int]
violations: _containers.RepeatedCompositeFieldContainer[
PreconditionFailure.Violation
]
def __init__(
self,
violations: _Optional[
_Iterable[_Union[PreconditionFailure.Violation, _Mapping]]
] = ...,
) -> None: ...
class BadRequest(_message.Message):
__slots__ = ("field_violations",)
class FieldViolation(_message.Message):
__slots__ = ("field", "description", "reason", "localized_message")
FIELD_FIELD_NUMBER: _ClassVar[int]
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
REASON_FIELD_NUMBER: _ClassVar[int]
LOCALIZED_MESSAGE_FIELD_NUMBER: _ClassVar[int]
field: str
description: str
reason: str
localized_message: LocalizedMessage
def __init__(
self,
field: _Optional[str] = ...,
description: _Optional[str] = ...,
reason: _Optional[str] = ...,
localized_message: _Optional[_Union[LocalizedMessage, _Mapping]] = ...,
) -> None: ...
FIELD_VIOLATIONS_FIELD_NUMBER: _ClassVar[int]
field_violations: _containers.RepeatedCompositeFieldContainer[
BadRequest.FieldViolation
]
def __init__(
self,
field_violations: _Optional[
_Iterable[_Union[BadRequest.FieldViolation, _Mapping]]
] = ...,
) -> None: ...
class RequestInfo(_message.Message):
__slots__ = ("request_id", "serving_data")
REQUEST_ID_FIELD_NUMBER: _ClassVar[int]
SERVING_DATA_FIELD_NUMBER: _ClassVar[int]
request_id: str
serving_data: str
def __init__(
self, request_id: _Optional[str] = ..., serving_data: _Optional[str] = ...
) -> None: ...
class ResourceInfo(_message.Message):
__slots__ = ("resource_type", "resource_name", "owner", "description")
RESOURCE_TYPE_FIELD_NUMBER: _ClassVar[int]
RESOURCE_NAME_FIELD_NUMBER: _ClassVar[int]
OWNER_FIELD_NUMBER: _ClassVar[int]
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
resource_type: str
resource_name: str
owner: str
description: str
def __init__(
self,
resource_type: _Optional[str] = ...,
resource_name: _Optional[str] = ...,
owner: _Optional[str] = ...,
description: _Optional[str] = ...,
) -> None: ...
class Help(_message.Message):
__slots__ = ("links",)
class Link(_message.Message):
__slots__ = ("description", "url")
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
URL_FIELD_NUMBER: _ClassVar[int]
description: str
url: str
def __init__(
self, description: _Optional[str] = ..., url: _Optional[str] = ...
) -> None: ...
LINKS_FIELD_NUMBER: _ClassVar[int]
links: _containers.RepeatedCompositeFieldContainer[Help.Link]
def __init__(
self, links: _Optional[_Iterable[_Union[Help.Link, _Mapping]]] = ...
) -> None: ...
class LocalizedMessage(_message.Message):
__slots__ = ("locale", "message")
LOCALE_FIELD_NUMBER: _ClassVar[int]
MESSAGE_FIELD_NUMBER: _ClassVar[int]
locale: str
message: str
def __init__(
self, locale: _Optional[str] = ..., message: _Optional[str] = ...
) -> None: ...