google-apis-oracledatabase_v1 0.1.0 → 0.3.0
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fc4449a03e673ef0662acfb007d929d8df3dbc5230488c142bd413f99436ba6
|
4
|
+
data.tar.gz: 366559995e0266968e86eb9e28c49bda378b44578df438b0ddd9b6700fc57ebc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ee8a656768cb019e0737ac1e319ed0f90239ff61b430fbdd6f28d14df5cdfa1c4b5388e5b0e7fef2687b75fb0cc362316b549967df460351166194341128c46
|
7
|
+
data.tar.gz: 04d894b16d9121f2fc1ec0e1c70000947f2eda58c64c3561f25aad3824bd224856fe39a7ca2392bfe4497d128e6325b23e001c54449b3418a943168820a861ff
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-oracledatabase_v1
|
2
2
|
|
3
|
+
### v0.3.0 (2024-10-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241002
|
6
|
+
|
7
|
+
### v0.2.0 (2024-09-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240918
|
10
|
+
|
3
11
|
### v0.1.0 (2024-09-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240913
|
@@ -108,8 +108,8 @@ module Google
|
|
108
108
|
# @return [String]
|
109
109
|
attr_accessor :name
|
110
110
|
|
111
|
-
# Required. The name of the VPC network used by the Autonomous Database
|
112
|
-
# projects/`project`/global/networks/`network`
|
111
|
+
# Required. The name of the VPC network used by the Autonomous Database in the
|
112
|
+
# following format: projects/`project`/global/networks/`network`
|
113
113
|
# Corresponds to the JSON property `network`
|
114
114
|
# @return [String]
|
115
115
|
attr_accessor :network
|
@@ -1071,7 +1071,7 @@ module Google
|
|
1071
1071
|
# @return [String]
|
1072
1072
|
attr_accessor :entitlement_id
|
1073
1073
|
|
1074
|
-
# Optional.
|
1074
|
+
# Optional. Google Cloud Platform location where Oracle Exadata is hosted.
|
1075
1075
|
# Corresponds to the JSON property `gcpOracleZone`
|
1076
1076
|
# @return [String]
|
1077
1077
|
attr_accessor :gcp_oracle_zone
|
@@ -1328,8 +1328,8 @@ module Google
|
|
1328
1328
|
# @return [String]
|
1329
1329
|
attr_accessor :exadata_infrastructure
|
1330
1330
|
|
1331
|
-
# Output only.
|
1332
|
-
# Oracle zone of Exadata infrastructure.
|
1331
|
+
# Output only. Google Cloud Platform location where Oracle Exadata is hosted. It
|
1332
|
+
# is same as Google Cloud Platform Oracle zone of Exadata infrastructure.
|
1333
1333
|
# Corresponds to the JSON property `gcpOracleZone`
|
1334
1334
|
# @return [String]
|
1335
1335
|
attr_accessor :gcp_oracle_zone
|
@@ -2510,7 +2510,7 @@ module Google
|
|
2510
2510
|
class LocationMetadata
|
2511
2511
|
include Google::Apis::Core::Hashable
|
2512
2512
|
|
2513
|
-
# Output only.
|
2513
|
+
# Output only. Google Cloud Platform Oracle zones in a location.
|
2514
2514
|
# Corresponds to the JSON property `gcpOracleZones`
|
2515
2515
|
# @return [Array<String>]
|
2516
2516
|
attr_accessor :gcp_oracle_zones
|
@@ -2834,24 +2834,28 @@ module Google
|
|
2834
2834
|
class TimeOfDay
|
2835
2835
|
include Google::Apis::Core::Hashable
|
2836
2836
|
|
2837
|
-
# Hours of day in 24 hour format.
|
2838
|
-
#
|
2837
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
2838
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
2839
|
+
# value "24:00:00" for scenarios like business closing time.
|
2839
2840
|
# Corresponds to the JSON property `hours`
|
2840
2841
|
# @return [Fixnum]
|
2841
2842
|
attr_accessor :hours
|
2842
2843
|
|
2843
|
-
# Minutes of hour
|
2844
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
2845
|
+
# to 59.
|
2844
2846
|
# Corresponds to the JSON property `minutes`
|
2845
2847
|
# @return [Fixnum]
|
2846
2848
|
attr_accessor :minutes
|
2847
2849
|
|
2848
|
-
# Fractions of seconds in nanoseconds. Must be
|
2850
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
2851
|
+
# less than or equal to 999,999,999.
|
2849
2852
|
# Corresponds to the JSON property `nanos`
|
2850
2853
|
# @return [Fixnum]
|
2851
2854
|
attr_accessor :nanos
|
2852
2855
|
|
2853
|
-
# Seconds of
|
2854
|
-
# allow the value 60 if it allows leap-
|
2856
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
2857
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
2858
|
+
# seconds.
|
2855
2859
|
# Corresponds to the JSON property `seconds`
|
2856
2860
|
# @return [Fixnum]
|
2857
2861
|
attr_accessor :seconds
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module OracledatabaseV1
|
18
18
|
# Version of the google-apis-oracledatabase_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241002"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,8 +22,8 @@ module Google
|
|
22
22
|
module OracledatabaseV1
|
23
23
|
# Oracle Database@Google Cloud API
|
24
24
|
#
|
25
|
-
# The Oracle Database@Google Cloud API provides set of APIs to manage Oracle
|
26
|
-
#
|
25
|
+
# The Oracle Database@Google Cloud API provides a set of APIs to manage Oracle
|
26
|
+
# database services, such as Exadata and Autonomous Databases.
|
27
27
|
#
|
28
28
|
# @example
|
29
29
|
# require 'google/apis/oracledatabase_v1'
|
@@ -125,7 +125,7 @@ module Google
|
|
125
125
|
execute_or_queue_command(command, &block)
|
126
126
|
end
|
127
127
|
|
128
|
-
# Lists the long
|
128
|
+
# Lists the long-term and automatic backups of an Autonomous Database.
|
129
129
|
# @param [String] parent
|
130
130
|
# Required. The parent value for ListAutonomousDatabaseBackups in the following
|
131
131
|
# format: projects/`project`/locations/`location`.
|
@@ -304,7 +304,7 @@ module Google
|
|
304
304
|
execute_or_queue_command(command, &block)
|
305
305
|
end
|
306
306
|
|
307
|
-
# Generates a wallet for
|
307
|
+
# Generates a wallet for an Autonomous Database.
|
308
308
|
# @param [String] name
|
309
309
|
# Required. The name of the Autonomous Database in the following format:
|
310
310
|
# projects/`project`/locations/`location`/autonomousDatabases/`
|
@@ -938,8 +938,8 @@ module Google
|
|
938
938
|
|
939
939
|
# Lists the entitlements in a given project.
|
940
940
|
# @param [String] parent
|
941
|
-
# Required. The parent value for
|
942
|
-
# project`/locations/`location`.
|
941
|
+
# Required. The parent value for the entitlement in the following format:
|
942
|
+
# projects/`project`/locations/`location`.
|
943
943
|
# @param [Fixnum] page_size
|
944
944
|
# Optional. The maximum number of items to return. If unspecified, a maximum of
|
945
945
|
# 50 entitlements will be returned. The maximum value is 1000.
|
@@ -21,8 +21,8 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Oracle Database@Google Cloud API
|
23
23
|
#
|
24
|
-
# The Oracle Database@Google Cloud API provides set of APIs to manage Oracle
|
25
|
-
#
|
24
|
+
# The Oracle Database@Google Cloud API provides a set of APIs to manage Oracle
|
25
|
+
# database services, such as Exadata and Autonomous Databases.
|
26
26
|
#
|
27
27
|
# @see https://cloud.google.com/oracle/database/docs
|
28
28
|
module OracledatabaseV1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-oracledatabase_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-oracledatabase_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-oracledatabase_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-oracledatabase_v1/v0.3.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-oracledatabase_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Oracle Database@Google Cloud API V1
|