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