google-apis-oracledatabase_v1 0.14.0 → 0.16.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: aab8b0b04c2228690dcc44d9249ce00240a74020bc4e003ac41632e3f4fe9e60
4
- data.tar.gz: 649260627d16e032dff2a9c8c9a1f8c63b6891f96a3d87703819146bb145eaa2
3
+ metadata.gz: 283e880d613cc3aad2db7585b2daec8e472b6eabba6ca6271216a405eb1580cf
4
+ data.tar.gz: 1f0916ab7f6e99e587ae87cda58fb4064a83484a0137689e60a523475294f545
5
5
  SHA512:
6
- metadata.gz: c71b75a65343d39f42eea2ae5cb3ae7290fa52ccccb8cddaa68137ac0744c4b252eac9da5bcfa2093716bdb9c4488a5f8a2f7745c6e2d946f6e6d84c4880a30d
7
- data.tar.gz: b5934a51422822bd2b63b3c257faa3fdbea49938332e258cce54a3fd378bff9643d91df302919b6ae4e73a599b88a451052c168b06f756717f0bb4d1296b9cd1
6
+ metadata.gz: 4f06c0a20abc1dc55db4721781ecd57fb65ad861e2d6b216e99e19b4cf7dc96669a74d49622409d3e98e1d15ced99ced7b22e402d32ef2f7256c4102a57f6944
7
+ data.tar.gz: 8fab0814a220b85bd9bb2bee7066f82c48adebf99c9c5e187ad4bdabaeece2aab70874ec44c56ce55f658915bc1673e58b9ed05012711ab5cd1c9357f8c001b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-oracledatabase_v1
2
2
 
3
+ ### v0.16.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250901
6
+
7
+ ### v0.15.0 (2025-08-31)
8
+
9
+ * Regenerated from discovery document revision 20250825
10
+
3
11
  ### v0.14.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250813
@@ -1128,7 +1128,9 @@ module Google
1128
1128
  # @return [String]
1129
1129
  attr_accessor :entitlement_id
1130
1130
 
1131
- # Optional. Google Cloud Platform location where Oracle Exadata is hosted.
1131
+ # Optional. The GCP Oracle zone where Oracle Exadata Infrastructure is hosted.
1132
+ # Example: us-east4-b-r2. If not specified, the system will pick a zone based on
1133
+ # availability.
1132
1134
  # Corresponds to the JSON property `gcpOracleZone`
1133
1135
  # @return [String]
1134
1136
  attr_accessor :gcp_oracle_zone
@@ -1410,12 +1412,19 @@ module Google
1410
1412
  # @return [String]
1411
1413
  attr_accessor :exadata_infrastructure
1412
1414
 
1413
- # Output only. Google Cloud Platform location where Oracle Exadata is hosted. It
1414
- # is same as Google Cloud Platform Oracle zone of Exadata infrastructure.
1415
+ # Output only. The GCP Oracle zone where Oracle CloudVmCluster is hosted. This
1416
+ # will be the same as the gcp_oracle_zone of the CloudExadataInfrastructure.
1417
+ # Example: us-east4-b-r2.
1415
1418
  # Corresponds to the JSON property `gcpOracleZone`
1416
1419
  # @return [String]
1417
1420
  attr_accessor :gcp_oracle_zone
1418
1421
 
1422
+ # The identity connector details which will allow OCI to securely access the
1423
+ # resources in the customer project.
1424
+ # Corresponds to the JSON property `identityConnector`
1425
+ # @return [Google::Apis::OracledatabaseV1::IdentityConnector]
1426
+ attr_accessor :identity_connector
1427
+
1419
1428
  # Optional. Labels or tags associated with the VM Cluster.
1420
1429
  # Corresponds to the JSON property `labels`
1421
1430
  # @return [Hash<String,String>]
@@ -1466,6 +1475,7 @@ module Google
1466
1475
  @display_name = args[:display_name] if args.key?(:display_name)
1467
1476
  @exadata_infrastructure = args[:exadata_infrastructure] if args.key?(:exadata_infrastructure)
1468
1477
  @gcp_oracle_zone = args[:gcp_oracle_zone] if args.key?(:gcp_oracle_zone)
1478
+ @identity_connector = args[:identity_connector] if args.key?(:identity_connector)
1469
1479
  @labels = args[:labels] if args.key?(:labels)
1470
1480
  @name = args[:name] if args.key?(:name)
1471
1481
  @network = args[:network] if args.key?(:network)
@@ -2246,6 +2256,34 @@ module Google
2246
2256
  end
2247
2257
  end
2248
2258
 
2259
+ # The identity connector details which will allow OCI to securely access the
2260
+ # resources in the customer project.
2261
+ class IdentityConnector
2262
+ include Google::Apis::Core::Hashable
2263
+
2264
+ # Output only. The connection state of the identity connector.
2265
+ # Corresponds to the JSON property `connectionState`
2266
+ # @return [String]
2267
+ attr_accessor :connection_state
2268
+
2269
+ # Output only. A google managed service account on which customers can grant
2270
+ # roles to access resources in the customer project. Example: `p176944527254-55-
2271
+ # 75119d87fd8f@gcp-sa-oci.iam.gserviceaccount.com`
2272
+ # Corresponds to the JSON property `serviceAgentEmail`
2273
+ # @return [String]
2274
+ attr_accessor :service_agent_email
2275
+
2276
+ def initialize(**args)
2277
+ update!(**args)
2278
+ end
2279
+
2280
+ # Update properties of this object
2281
+ def update!(**args)
2282
+ @connection_state = args[:connection_state] if args.key?(:connection_state)
2283
+ @service_agent_email = args[:service_agent_email] if args.key?(:service_agent_email)
2284
+ end
2285
+ end
2286
+
2249
2287
  # The response for `AutonomousDatabaseBackup.List`.
2250
2288
  class ListAutonomousDatabaseBackupsResponse
2251
2289
  include Google::Apis::Core::Hashable
@@ -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.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250813"
25
+ REVISION = "20250901"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class IdentityConnector
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class ListAutonomousDatabaseBackupsResponse
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -680,6 +686,8 @@ module Google
680
686
  property :display_name, as: 'displayName'
681
687
  property :exadata_infrastructure, as: 'exadataInfrastructure'
682
688
  property :gcp_oracle_zone, as: 'gcpOracleZone'
689
+ property :identity_connector, as: 'identityConnector', class: Google::Apis::OracledatabaseV1::IdentityConnector, decorator: Google::Apis::OracledatabaseV1::IdentityConnector::Representation
690
+
683
691
  hash :labels, as: 'labels'
684
692
  property :name, as: 'name'
685
693
  property :network, as: 'network'
@@ -871,6 +879,14 @@ module Google
871
879
  end
872
880
  end
873
881
 
882
+ class IdentityConnector
883
+ # @private
884
+ class Representation < Google::Apis::Core::JsonRepresentation
885
+ property :connection_state, as: 'connectionState'
886
+ property :service_agent_email, as: 'serviceAgentEmail'
887
+ end
888
+ end
889
+
874
890
  class ListAutonomousDatabaseBackupsResponse
875
891
  # @private
876
892
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-oracledatabase_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-oracledatabase_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-oracledatabase_v1/v0.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-oracledatabase_v1/v0.16.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-oracledatabase_v1
62
62
  rdoc_options: []
63
63
  require_paths: