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#
16from .resources import (
17 Replication,
18 Secret,
19 SecretPayload,
20 SecretVersion,
21)
22from .service import (
23 AccessSecretVersionRequest,
24 AccessSecretVersionResponse,
25 AddSecretVersionRequest,
26 CreateSecretRequest,
27 DeleteSecretRequest,
28 DestroySecretVersionRequest,
29 DisableSecretVersionRequest,
30 EnableSecretVersionRequest,
31 GetSecretRequest,
32 GetSecretVersionRequest,
33 ListSecretsRequest,
34 ListSecretsResponse,
35 ListSecretVersionsRequest,
36 ListSecretVersionsResponse,
37 UpdateSecretRequest,
38)
39
40__all__ = (
41 "Replication",
42 "Secret",
43 "SecretPayload",
44 "SecretVersion",
45 "AccessSecretVersionRequest",
46 "AccessSecretVersionResponse",
47 "AddSecretVersionRequest",
48 "CreateSecretRequest",
49 "DeleteSecretRequest",
50 "DestroySecretVersionRequest",
51 "DisableSecretVersionRequest",
52 "EnableSecretVersionRequest",
53 "GetSecretRequest",
54 "GetSecretVersionRequest",
55 "ListSecretsRequest",
56 "ListSecretsResponse",
57 "ListSecretVersionsRequest",
58 "ListSecretVersionsResponse",
59 "UpdateSecretRequest",
60)