google-cloud-oracledatabase 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- google/cloud/oracledatabase/__init__.py +177 -0
- google/cloud/oracledatabase/gapic_version.py +16 -0
- google/cloud/oracledatabase/py.typed +2 -0
- google/cloud/oracledatabase_v1/__init__.py +168 -0
- google/cloud/oracledatabase_v1/gapic_metadata.json +128 -0
- google/cloud/oracledatabase_v1/gapic_version.py +16 -0
- google/cloud/oracledatabase_v1/py.typed +2 -0
- google/cloud/oracledatabase_v1/services/__init__.py +15 -0
- google/cloud/oracledatabase_v1/services/oracle_database/__init__.py +18 -0
- google/cloud/oracledatabase_v1/services/oracle_database/client.py +4073 -0
- google/cloud/oracledatabase_v1/services/oracle_database/pagers.py +876 -0
- google/cloud/oracledatabase_v1/services/oracle_database/transports/__init__.py +30 -0
- google/cloud/oracledatabase_v1/services/oracle_database/transports/base.py +731 -0
- google/cloud/oracledatabase_v1/services/oracle_database/transports/rest.py +3718 -0
- google/cloud/oracledatabase_v1/types/__init__.py +157 -0
- google/cloud/oracledatabase_v1/types/autonomous_database.py +1421 -0
- google/cloud/oracledatabase_v1/types/autonomous_database_character_set.py +78 -0
- google/cloud/oracledatabase_v1/types/autonomous_db_backup.py +289 -0
- google/cloud/oracledatabase_v1/types/autonomous_db_version.py +71 -0
- google/cloud/oracledatabase_v1/types/common.py +47 -0
- google/cloud/oracledatabase_v1/types/db_node.py +158 -0
- google/cloud/oracledatabase_v1/types/db_server.py +163 -0
- google/cloud/oracledatabase_v1/types/db_system_shape.py +117 -0
- google/cloud/oracledatabase_v1/types/entitlement.py +127 -0
- google/cloud/oracledatabase_v1/types/exadata_infra.py +468 -0
- google/cloud/oracledatabase_v1/types/gi_version.py +54 -0
- google/cloud/oracledatabase_v1/types/location_metadata.py +45 -0
- google/cloud/oracledatabase_v1/types/oracledatabase.py +1244 -0
- google/cloud/oracledatabase_v1/types/vm_cluster.py +437 -0
- google_cloud_oracledatabase-0.1.0.dist-info/LICENSE +202 -0
- google_cloud_oracledatabase-0.1.0.dist-info/METADATA +137 -0
- google_cloud_oracledatabase-0.1.0.dist-info/RECORD +34 -0
- google_cloud_oracledatabase-0.1.0.dist-info/WHEEL +5 -0
- google_cloud_oracledatabase-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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.oracledatabase import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from google.cloud.oracledatabase_v1.services.oracle_database.client import (
|
|
22
|
+
OracleDatabaseClient,
|
|
23
|
+
)
|
|
24
|
+
from google.cloud.oracledatabase_v1.types.autonomous_database import (
|
|
25
|
+
AllConnectionStrings,
|
|
26
|
+
AutonomousDatabase,
|
|
27
|
+
AutonomousDatabaseApex,
|
|
28
|
+
AutonomousDatabaseConnectionStrings,
|
|
29
|
+
AutonomousDatabaseConnectionUrls,
|
|
30
|
+
AutonomousDatabaseProperties,
|
|
31
|
+
AutonomousDatabaseStandbySummary,
|
|
32
|
+
DatabaseConnectionStringProfile,
|
|
33
|
+
DBWorkload,
|
|
34
|
+
GenerateType,
|
|
35
|
+
OperationsInsightsState,
|
|
36
|
+
ScheduledOperationDetails,
|
|
37
|
+
State,
|
|
38
|
+
)
|
|
39
|
+
from google.cloud.oracledatabase_v1.types.autonomous_database_character_set import (
|
|
40
|
+
AutonomousDatabaseCharacterSet,
|
|
41
|
+
)
|
|
42
|
+
from google.cloud.oracledatabase_v1.types.autonomous_db_backup import (
|
|
43
|
+
AutonomousDatabaseBackup,
|
|
44
|
+
AutonomousDatabaseBackupProperties,
|
|
45
|
+
)
|
|
46
|
+
from google.cloud.oracledatabase_v1.types.autonomous_db_version import (
|
|
47
|
+
AutonomousDbVersion,
|
|
48
|
+
)
|
|
49
|
+
from google.cloud.oracledatabase_v1.types.common import CustomerContact
|
|
50
|
+
from google.cloud.oracledatabase_v1.types.db_node import DbNode, DbNodeProperties
|
|
51
|
+
from google.cloud.oracledatabase_v1.types.db_server import DbServer, DbServerProperties
|
|
52
|
+
from google.cloud.oracledatabase_v1.types.db_system_shape import DbSystemShape
|
|
53
|
+
from google.cloud.oracledatabase_v1.types.entitlement import (
|
|
54
|
+
CloudAccountDetails,
|
|
55
|
+
Entitlement,
|
|
56
|
+
)
|
|
57
|
+
from google.cloud.oracledatabase_v1.types.exadata_infra import (
|
|
58
|
+
CloudExadataInfrastructure,
|
|
59
|
+
CloudExadataInfrastructureProperties,
|
|
60
|
+
MaintenanceWindow,
|
|
61
|
+
)
|
|
62
|
+
from google.cloud.oracledatabase_v1.types.gi_version import GiVersion
|
|
63
|
+
from google.cloud.oracledatabase_v1.types.location_metadata import LocationMetadata
|
|
64
|
+
from google.cloud.oracledatabase_v1.types.oracledatabase import (
|
|
65
|
+
CreateAutonomousDatabaseRequest,
|
|
66
|
+
CreateCloudExadataInfrastructureRequest,
|
|
67
|
+
CreateCloudVmClusterRequest,
|
|
68
|
+
DeleteAutonomousDatabaseRequest,
|
|
69
|
+
DeleteCloudExadataInfrastructureRequest,
|
|
70
|
+
DeleteCloudVmClusterRequest,
|
|
71
|
+
GenerateAutonomousDatabaseWalletRequest,
|
|
72
|
+
GenerateAutonomousDatabaseWalletResponse,
|
|
73
|
+
GetAutonomousDatabaseRequest,
|
|
74
|
+
GetCloudExadataInfrastructureRequest,
|
|
75
|
+
GetCloudVmClusterRequest,
|
|
76
|
+
ListAutonomousDatabaseBackupsRequest,
|
|
77
|
+
ListAutonomousDatabaseBackupsResponse,
|
|
78
|
+
ListAutonomousDatabaseCharacterSetsRequest,
|
|
79
|
+
ListAutonomousDatabaseCharacterSetsResponse,
|
|
80
|
+
ListAutonomousDatabasesRequest,
|
|
81
|
+
ListAutonomousDatabasesResponse,
|
|
82
|
+
ListAutonomousDbVersionsRequest,
|
|
83
|
+
ListAutonomousDbVersionsResponse,
|
|
84
|
+
ListCloudExadataInfrastructuresRequest,
|
|
85
|
+
ListCloudExadataInfrastructuresResponse,
|
|
86
|
+
ListCloudVmClustersRequest,
|
|
87
|
+
ListCloudVmClustersResponse,
|
|
88
|
+
ListDbNodesRequest,
|
|
89
|
+
ListDbNodesResponse,
|
|
90
|
+
ListDbServersRequest,
|
|
91
|
+
ListDbServersResponse,
|
|
92
|
+
ListDbSystemShapesRequest,
|
|
93
|
+
ListDbSystemShapesResponse,
|
|
94
|
+
ListEntitlementsRequest,
|
|
95
|
+
ListEntitlementsResponse,
|
|
96
|
+
ListGiVersionsRequest,
|
|
97
|
+
ListGiVersionsResponse,
|
|
98
|
+
OperationMetadata,
|
|
99
|
+
RestoreAutonomousDatabaseRequest,
|
|
100
|
+
)
|
|
101
|
+
from google.cloud.oracledatabase_v1.types.vm_cluster import (
|
|
102
|
+
CloudVmCluster,
|
|
103
|
+
CloudVmClusterProperties,
|
|
104
|
+
DataCollectionOptions,
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
__all__ = (
|
|
108
|
+
"OracleDatabaseClient",
|
|
109
|
+
"AllConnectionStrings",
|
|
110
|
+
"AutonomousDatabase",
|
|
111
|
+
"AutonomousDatabaseApex",
|
|
112
|
+
"AutonomousDatabaseConnectionStrings",
|
|
113
|
+
"AutonomousDatabaseConnectionUrls",
|
|
114
|
+
"AutonomousDatabaseProperties",
|
|
115
|
+
"AutonomousDatabaseStandbySummary",
|
|
116
|
+
"DatabaseConnectionStringProfile",
|
|
117
|
+
"ScheduledOperationDetails",
|
|
118
|
+
"DBWorkload",
|
|
119
|
+
"GenerateType",
|
|
120
|
+
"OperationsInsightsState",
|
|
121
|
+
"State",
|
|
122
|
+
"AutonomousDatabaseCharacterSet",
|
|
123
|
+
"AutonomousDatabaseBackup",
|
|
124
|
+
"AutonomousDatabaseBackupProperties",
|
|
125
|
+
"AutonomousDbVersion",
|
|
126
|
+
"CustomerContact",
|
|
127
|
+
"DbNode",
|
|
128
|
+
"DbNodeProperties",
|
|
129
|
+
"DbServer",
|
|
130
|
+
"DbServerProperties",
|
|
131
|
+
"DbSystemShape",
|
|
132
|
+
"CloudAccountDetails",
|
|
133
|
+
"Entitlement",
|
|
134
|
+
"CloudExadataInfrastructure",
|
|
135
|
+
"CloudExadataInfrastructureProperties",
|
|
136
|
+
"MaintenanceWindow",
|
|
137
|
+
"GiVersion",
|
|
138
|
+
"LocationMetadata",
|
|
139
|
+
"CreateAutonomousDatabaseRequest",
|
|
140
|
+
"CreateCloudExadataInfrastructureRequest",
|
|
141
|
+
"CreateCloudVmClusterRequest",
|
|
142
|
+
"DeleteAutonomousDatabaseRequest",
|
|
143
|
+
"DeleteCloudExadataInfrastructureRequest",
|
|
144
|
+
"DeleteCloudVmClusterRequest",
|
|
145
|
+
"GenerateAutonomousDatabaseWalletRequest",
|
|
146
|
+
"GenerateAutonomousDatabaseWalletResponse",
|
|
147
|
+
"GetAutonomousDatabaseRequest",
|
|
148
|
+
"GetCloudExadataInfrastructureRequest",
|
|
149
|
+
"GetCloudVmClusterRequest",
|
|
150
|
+
"ListAutonomousDatabaseBackupsRequest",
|
|
151
|
+
"ListAutonomousDatabaseBackupsResponse",
|
|
152
|
+
"ListAutonomousDatabaseCharacterSetsRequest",
|
|
153
|
+
"ListAutonomousDatabaseCharacterSetsResponse",
|
|
154
|
+
"ListAutonomousDatabasesRequest",
|
|
155
|
+
"ListAutonomousDatabasesResponse",
|
|
156
|
+
"ListAutonomousDbVersionsRequest",
|
|
157
|
+
"ListAutonomousDbVersionsResponse",
|
|
158
|
+
"ListCloudExadataInfrastructuresRequest",
|
|
159
|
+
"ListCloudExadataInfrastructuresResponse",
|
|
160
|
+
"ListCloudVmClustersRequest",
|
|
161
|
+
"ListCloudVmClustersResponse",
|
|
162
|
+
"ListDbNodesRequest",
|
|
163
|
+
"ListDbNodesResponse",
|
|
164
|
+
"ListDbServersRequest",
|
|
165
|
+
"ListDbServersResponse",
|
|
166
|
+
"ListDbSystemShapesRequest",
|
|
167
|
+
"ListDbSystemShapesResponse",
|
|
168
|
+
"ListEntitlementsRequest",
|
|
169
|
+
"ListEntitlementsResponse",
|
|
170
|
+
"ListGiVersionsRequest",
|
|
171
|
+
"ListGiVersionsResponse",
|
|
172
|
+
"OperationMetadata",
|
|
173
|
+
"RestoreAutonomousDatabaseRequest",
|
|
174
|
+
"CloudVmCluster",
|
|
175
|
+
"CloudVmClusterProperties",
|
|
176
|
+
"DataCollectionOptions",
|
|
177
|
+
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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
|
+
__version__ = "0.1.0" # {x-release-please-version}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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.oracledatabase_v1 import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from .services.oracle_database import OracleDatabaseClient
|
|
22
|
+
from .types.autonomous_database import (
|
|
23
|
+
AllConnectionStrings,
|
|
24
|
+
AutonomousDatabase,
|
|
25
|
+
AutonomousDatabaseApex,
|
|
26
|
+
AutonomousDatabaseConnectionStrings,
|
|
27
|
+
AutonomousDatabaseConnectionUrls,
|
|
28
|
+
AutonomousDatabaseProperties,
|
|
29
|
+
AutonomousDatabaseStandbySummary,
|
|
30
|
+
DatabaseConnectionStringProfile,
|
|
31
|
+
DBWorkload,
|
|
32
|
+
GenerateType,
|
|
33
|
+
OperationsInsightsState,
|
|
34
|
+
ScheduledOperationDetails,
|
|
35
|
+
State,
|
|
36
|
+
)
|
|
37
|
+
from .types.autonomous_database_character_set import AutonomousDatabaseCharacterSet
|
|
38
|
+
from .types.autonomous_db_backup import (
|
|
39
|
+
AutonomousDatabaseBackup,
|
|
40
|
+
AutonomousDatabaseBackupProperties,
|
|
41
|
+
)
|
|
42
|
+
from .types.autonomous_db_version import AutonomousDbVersion
|
|
43
|
+
from .types.common import CustomerContact
|
|
44
|
+
from .types.db_node import DbNode, DbNodeProperties
|
|
45
|
+
from .types.db_server import DbServer, DbServerProperties
|
|
46
|
+
from .types.db_system_shape import DbSystemShape
|
|
47
|
+
from .types.entitlement import CloudAccountDetails, Entitlement
|
|
48
|
+
from .types.exadata_infra import (
|
|
49
|
+
CloudExadataInfrastructure,
|
|
50
|
+
CloudExadataInfrastructureProperties,
|
|
51
|
+
MaintenanceWindow,
|
|
52
|
+
)
|
|
53
|
+
from .types.gi_version import GiVersion
|
|
54
|
+
from .types.location_metadata import LocationMetadata
|
|
55
|
+
from .types.oracledatabase import (
|
|
56
|
+
CreateAutonomousDatabaseRequest,
|
|
57
|
+
CreateCloudExadataInfrastructureRequest,
|
|
58
|
+
CreateCloudVmClusterRequest,
|
|
59
|
+
DeleteAutonomousDatabaseRequest,
|
|
60
|
+
DeleteCloudExadataInfrastructureRequest,
|
|
61
|
+
DeleteCloudVmClusterRequest,
|
|
62
|
+
GenerateAutonomousDatabaseWalletRequest,
|
|
63
|
+
GenerateAutonomousDatabaseWalletResponse,
|
|
64
|
+
GetAutonomousDatabaseRequest,
|
|
65
|
+
GetCloudExadataInfrastructureRequest,
|
|
66
|
+
GetCloudVmClusterRequest,
|
|
67
|
+
ListAutonomousDatabaseBackupsRequest,
|
|
68
|
+
ListAutonomousDatabaseBackupsResponse,
|
|
69
|
+
ListAutonomousDatabaseCharacterSetsRequest,
|
|
70
|
+
ListAutonomousDatabaseCharacterSetsResponse,
|
|
71
|
+
ListAutonomousDatabasesRequest,
|
|
72
|
+
ListAutonomousDatabasesResponse,
|
|
73
|
+
ListAutonomousDbVersionsRequest,
|
|
74
|
+
ListAutonomousDbVersionsResponse,
|
|
75
|
+
ListCloudExadataInfrastructuresRequest,
|
|
76
|
+
ListCloudExadataInfrastructuresResponse,
|
|
77
|
+
ListCloudVmClustersRequest,
|
|
78
|
+
ListCloudVmClustersResponse,
|
|
79
|
+
ListDbNodesRequest,
|
|
80
|
+
ListDbNodesResponse,
|
|
81
|
+
ListDbServersRequest,
|
|
82
|
+
ListDbServersResponse,
|
|
83
|
+
ListDbSystemShapesRequest,
|
|
84
|
+
ListDbSystemShapesResponse,
|
|
85
|
+
ListEntitlementsRequest,
|
|
86
|
+
ListEntitlementsResponse,
|
|
87
|
+
ListGiVersionsRequest,
|
|
88
|
+
ListGiVersionsResponse,
|
|
89
|
+
OperationMetadata,
|
|
90
|
+
RestoreAutonomousDatabaseRequest,
|
|
91
|
+
)
|
|
92
|
+
from .types.vm_cluster import (
|
|
93
|
+
CloudVmCluster,
|
|
94
|
+
CloudVmClusterProperties,
|
|
95
|
+
DataCollectionOptions,
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
__all__ = (
|
|
99
|
+
"AllConnectionStrings",
|
|
100
|
+
"AutonomousDatabase",
|
|
101
|
+
"AutonomousDatabaseApex",
|
|
102
|
+
"AutonomousDatabaseBackup",
|
|
103
|
+
"AutonomousDatabaseBackupProperties",
|
|
104
|
+
"AutonomousDatabaseCharacterSet",
|
|
105
|
+
"AutonomousDatabaseConnectionStrings",
|
|
106
|
+
"AutonomousDatabaseConnectionUrls",
|
|
107
|
+
"AutonomousDatabaseProperties",
|
|
108
|
+
"AutonomousDatabaseStandbySummary",
|
|
109
|
+
"AutonomousDbVersion",
|
|
110
|
+
"CloudAccountDetails",
|
|
111
|
+
"CloudExadataInfrastructure",
|
|
112
|
+
"CloudExadataInfrastructureProperties",
|
|
113
|
+
"CloudVmCluster",
|
|
114
|
+
"CloudVmClusterProperties",
|
|
115
|
+
"CreateAutonomousDatabaseRequest",
|
|
116
|
+
"CreateCloudExadataInfrastructureRequest",
|
|
117
|
+
"CreateCloudVmClusterRequest",
|
|
118
|
+
"CustomerContact",
|
|
119
|
+
"DBWorkload",
|
|
120
|
+
"DataCollectionOptions",
|
|
121
|
+
"DatabaseConnectionStringProfile",
|
|
122
|
+
"DbNode",
|
|
123
|
+
"DbNodeProperties",
|
|
124
|
+
"DbServer",
|
|
125
|
+
"DbServerProperties",
|
|
126
|
+
"DbSystemShape",
|
|
127
|
+
"DeleteAutonomousDatabaseRequest",
|
|
128
|
+
"DeleteCloudExadataInfrastructureRequest",
|
|
129
|
+
"DeleteCloudVmClusterRequest",
|
|
130
|
+
"Entitlement",
|
|
131
|
+
"GenerateAutonomousDatabaseWalletRequest",
|
|
132
|
+
"GenerateAutonomousDatabaseWalletResponse",
|
|
133
|
+
"GenerateType",
|
|
134
|
+
"GetAutonomousDatabaseRequest",
|
|
135
|
+
"GetCloudExadataInfrastructureRequest",
|
|
136
|
+
"GetCloudVmClusterRequest",
|
|
137
|
+
"GiVersion",
|
|
138
|
+
"ListAutonomousDatabaseBackupsRequest",
|
|
139
|
+
"ListAutonomousDatabaseBackupsResponse",
|
|
140
|
+
"ListAutonomousDatabaseCharacterSetsRequest",
|
|
141
|
+
"ListAutonomousDatabaseCharacterSetsResponse",
|
|
142
|
+
"ListAutonomousDatabasesRequest",
|
|
143
|
+
"ListAutonomousDatabasesResponse",
|
|
144
|
+
"ListAutonomousDbVersionsRequest",
|
|
145
|
+
"ListAutonomousDbVersionsResponse",
|
|
146
|
+
"ListCloudExadataInfrastructuresRequest",
|
|
147
|
+
"ListCloudExadataInfrastructuresResponse",
|
|
148
|
+
"ListCloudVmClustersRequest",
|
|
149
|
+
"ListCloudVmClustersResponse",
|
|
150
|
+
"ListDbNodesRequest",
|
|
151
|
+
"ListDbNodesResponse",
|
|
152
|
+
"ListDbServersRequest",
|
|
153
|
+
"ListDbServersResponse",
|
|
154
|
+
"ListDbSystemShapesRequest",
|
|
155
|
+
"ListDbSystemShapesResponse",
|
|
156
|
+
"ListEntitlementsRequest",
|
|
157
|
+
"ListEntitlementsResponse",
|
|
158
|
+
"ListGiVersionsRequest",
|
|
159
|
+
"ListGiVersionsResponse",
|
|
160
|
+
"LocationMetadata",
|
|
161
|
+
"MaintenanceWindow",
|
|
162
|
+
"OperationMetadata",
|
|
163
|
+
"OperationsInsightsState",
|
|
164
|
+
"OracleDatabaseClient",
|
|
165
|
+
"RestoreAutonomousDatabaseRequest",
|
|
166
|
+
"ScheduledOperationDetails",
|
|
167
|
+
"State",
|
|
168
|
+
)
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
|
|
3
|
+
"language": "python",
|
|
4
|
+
"libraryPackage": "google.cloud.oracledatabase_v1",
|
|
5
|
+
"protoPackage": "google.cloud.oracledatabase.v1",
|
|
6
|
+
"schema": "1.0",
|
|
7
|
+
"services": {
|
|
8
|
+
"OracleDatabase": {
|
|
9
|
+
"clients": {
|
|
10
|
+
"rest": {
|
|
11
|
+
"libraryClient": "OracleDatabaseClient",
|
|
12
|
+
"rpcs": {
|
|
13
|
+
"CreateAutonomousDatabase": {
|
|
14
|
+
"methods": [
|
|
15
|
+
"create_autonomous_database"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"CreateCloudExadataInfrastructure": {
|
|
19
|
+
"methods": [
|
|
20
|
+
"create_cloud_exadata_infrastructure"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"CreateCloudVmCluster": {
|
|
24
|
+
"methods": [
|
|
25
|
+
"create_cloud_vm_cluster"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"DeleteAutonomousDatabase": {
|
|
29
|
+
"methods": [
|
|
30
|
+
"delete_autonomous_database"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"DeleteCloudExadataInfrastructure": {
|
|
34
|
+
"methods": [
|
|
35
|
+
"delete_cloud_exadata_infrastructure"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"DeleteCloudVmCluster": {
|
|
39
|
+
"methods": [
|
|
40
|
+
"delete_cloud_vm_cluster"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"GenerateAutonomousDatabaseWallet": {
|
|
44
|
+
"methods": [
|
|
45
|
+
"generate_autonomous_database_wallet"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"GetAutonomousDatabase": {
|
|
49
|
+
"methods": [
|
|
50
|
+
"get_autonomous_database"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"GetCloudExadataInfrastructure": {
|
|
54
|
+
"methods": [
|
|
55
|
+
"get_cloud_exadata_infrastructure"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"GetCloudVmCluster": {
|
|
59
|
+
"methods": [
|
|
60
|
+
"get_cloud_vm_cluster"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"ListAutonomousDatabaseBackups": {
|
|
64
|
+
"methods": [
|
|
65
|
+
"list_autonomous_database_backups"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"ListAutonomousDatabaseCharacterSets": {
|
|
69
|
+
"methods": [
|
|
70
|
+
"list_autonomous_database_character_sets"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"ListAutonomousDatabases": {
|
|
74
|
+
"methods": [
|
|
75
|
+
"list_autonomous_databases"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"ListAutonomousDbVersions": {
|
|
79
|
+
"methods": [
|
|
80
|
+
"list_autonomous_db_versions"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"ListCloudExadataInfrastructures": {
|
|
84
|
+
"methods": [
|
|
85
|
+
"list_cloud_exadata_infrastructures"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"ListCloudVmClusters": {
|
|
89
|
+
"methods": [
|
|
90
|
+
"list_cloud_vm_clusters"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"ListDbNodes": {
|
|
94
|
+
"methods": [
|
|
95
|
+
"list_db_nodes"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"ListDbServers": {
|
|
99
|
+
"methods": [
|
|
100
|
+
"list_db_servers"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"ListDbSystemShapes": {
|
|
104
|
+
"methods": [
|
|
105
|
+
"list_db_system_shapes"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"ListEntitlements": {
|
|
109
|
+
"methods": [
|
|
110
|
+
"list_entitlements"
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
"ListGiVersions": {
|
|
114
|
+
"methods": [
|
|
115
|
+
"list_gi_versions"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"RestoreAutonomousDatabase": {
|
|
119
|
+
"methods": [
|
|
120
|
+
"restore_autonomous_database"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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
|
+
__version__ = "0.1.0" # {x-release-please-version}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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
|
+
#
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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 .client import OracleDatabaseClient
|
|
17
|
+
|
|
18
|
+
__all__ = ("OracleDatabaseClient",)
|