google-apis-oracledatabase_v1 0.15.0 → 0.17.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: bc9881a36a0d8696e9014974c556f797c91f554ae34c756b6c03766d46cfe49f
4
- data.tar.gz: 8f8c9adddcf5c6295dea36e11a7dd742dad8c65a41576b447af8891a9f68dd58
3
+ metadata.gz: 0e9d5bc3be1f622cb1792fc0b187f773353ac3d04196910f44ff5fa9845c2354
4
+ data.tar.gz: 4033e12b31686a203c6d9313632568f6c4cb344b8d87ba23b7fc8f71d46ec711
5
5
  SHA512:
6
- metadata.gz: 1db30211b62d09d5a5a48669d6b153c98eedad9eb8d0c4d5663cdf627d79b541b48201d29de19ecde76e1befe0999a64d13a7c7b7bf99837ac0f07b31ba7cf08
7
- data.tar.gz: bb7db1052521b72e741807076c74c205f3faed9434569073e71bddbc4b4398e21b1f43be1e6b3c1bf72637f357c6a628315cc764553d8f590739dff3d5fdd995
6
+ metadata.gz: f19ff2190765b19d4f338a6482a9df2e51a3f7f27df3f93fce87acd8aca5e8a611b6cc0062826be277046c20c77a2fe1f533a93542335438e16ee9f88e314361
7
+ data.tar.gz: f2df17adf5ddd69e8db63415cbf77228f04205802c96b01da4789a3648cd34ac6381e952a01a740e1ff562ca0a46999423bae9f7708c6c3831daf01071268d2b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-oracledatabase_v1
2
2
 
3
+ ### v0.17.0 (2025-09-14)
4
+
5
+ * Regenerated from discovery document revision 20250910
6
+
7
+ ### v0.16.0 (2025-09-07)
8
+
9
+ * Regenerated from discovery document revision 20250901
10
+
3
11
  ### v0.15.0 (2025-08-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20250825
@@ -1419,6 +1419,12 @@ module Google
1419
1419
  # @return [String]
1420
1420
  attr_accessor :gcp_oracle_zone
1421
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
+
1422
1428
  # Optional. Labels or tags associated with the VM Cluster.
1423
1429
  # Corresponds to the JSON property `labels`
1424
1430
  # @return [Hash<String,String>]
@@ -1469,6 +1475,7 @@ module Google
1469
1475
  @display_name = args[:display_name] if args.key?(:display_name)
1470
1476
  @exadata_infrastructure = args[:exadata_infrastructure] if args.key?(:exadata_infrastructure)
1471
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)
1472
1479
  @labels = args[:labels] if args.key?(:labels)
1473
1480
  @name = args[:name] if args.key?(:name)
1474
1481
  @network = args[:network] if args.key?(:network)
@@ -2249,6 +2256,34 @@ module Google
2249
2256
  end
2250
2257
  end
2251
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
+
2252
2287
  # The response for `AutonomousDatabaseBackup.List`.
2253
2288
  class ListAutonomousDatabaseBackupsResponse
2254
2289
  include Google::Apis::Core::Hashable
@@ -2800,6 +2835,12 @@ module Google
2800
2835
  # @return [String]
2801
2836
  attr_accessor :entitlement_id
2802
2837
 
2838
+ # Optional. The GCP Oracle zone where OdbNetwork is hosted. Example: us-east4-b-
2839
+ # r2. If not specified, the system will pick a zone based on availability.
2840
+ # Corresponds to the JSON property `gcpOracleZone`
2841
+ # @return [String]
2842
+ attr_accessor :gcp_oracle_zone
2843
+
2803
2844
  # Optional. Labels or tags associated with the resource.
2804
2845
  # Corresponds to the JSON property `labels`
2805
2846
  # @return [Hash<String,String>]
@@ -2830,6 +2871,7 @@ module Google
2830
2871
  def update!(**args)
2831
2872
  @create_time = args[:create_time] if args.key?(:create_time)
2832
2873
  @entitlement_id = args[:entitlement_id] if args.key?(:entitlement_id)
2874
+ @gcp_oracle_zone = args[:gcp_oracle_zone] if args.key?(:gcp_oracle_zone)
2833
2875
  @labels = args[:labels] if args.key?(:labels)
2834
2876
  @name = args[:name] if args.key?(:name)
2835
2877
  @network = args[:network] if args.key?(:network)
@@ -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.15.0"
19
+ GEM_VERSION = "0.17.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 = "20250825"
25
+ REVISION = "20250910"
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
@@ -1046,6 +1062,7 @@ module Google
1046
1062
  class Representation < Google::Apis::Core::JsonRepresentation
1047
1063
  property :create_time, as: 'createTime'
1048
1064
  property :entitlement_id, as: 'entitlementId'
1065
+ property :gcp_oracle_zone, as: 'gcpOracleZone'
1049
1066
  hash :labels, as: 'labels'
1050
1067
  property :name, as: 'name'
1051
1068
  property :network, as: 'network'
@@ -86,8 +86,8 @@ module Google
86
86
  # @param [String] name
87
87
  # The resource that owns the locations collection, if applicable.
88
88
  # @param [Array<String>, String] extra_location_types
89
- # Optional. Do not use this field. It is unsupported and is ignored unless
90
- # explicitly documented otherwise. This is primarily for internal usage.
89
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
90
+ # field which is primarily intended for internal usage.
91
91
  # @param [String] filter
92
92
  # A filter to narrow down results to a preferred subset. The filtering language
93
93
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -765,6 +765,10 @@ module Google
765
765
  # @param [String] parent
766
766
  # Required. The parent value for CloudExadataInfrastructure in the following
767
767
  # format: projects/`project`/locations/`location`.
768
+ # @param [String] filter
769
+ # Optional. An expression for filtering the results of the request.
770
+ # @param [String] order_by
771
+ # Optional. An expression for ordering the results of the request.
768
772
  # @param [Fixnum] page_size
769
773
  # Optional. The maximum number of items to return. If unspecified, at most 50
770
774
  # Exadata infrastructures will be returned. The maximum value is 1000; values
@@ -788,11 +792,13 @@ module Google
788
792
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
789
793
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
790
794
  # @raise [Google::Apis::AuthorizationError] Authorization is required
791
- def list_project_location_cloud_exadata_infrastructures(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
795
+ def list_project_location_cloud_exadata_infrastructures(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
792
796
  command = make_simple_command(:get, 'v1/{+parent}/cloudExadataInfrastructures', options)
793
797
  command.response_representation = Google::Apis::OracledatabaseV1::ListCloudExadataInfrastructuresResponse::Representation
794
798
  command.response_class = Google::Apis::OracledatabaseV1::ListCloudExadataInfrastructuresResponse
795
799
  command.params['parent'] = parent unless parent.nil?
800
+ command.query['filter'] = filter unless filter.nil?
801
+ command.query['orderBy'] = order_by unless order_by.nil?
796
802
  command.query['pageSize'] = page_size unless page_size.nil?
797
803
  command.query['pageToken'] = page_token unless page_token.nil?
798
804
  command.query['fields'] = fields unless fields.nil?
@@ -1046,6 +1052,10 @@ module Google
1046
1052
  # @param [String] parent
1047
1053
  # Required. The parent value for Database System Shapes in the following format:
1048
1054
  # projects/`project`/locations/`location`.
1055
+ # @param [String] filter
1056
+ # Optional. An expression for filtering the results of the request. Only the
1057
+ # gcp_oracle_zone_id field is supported in this format: `gcp_oracle_zone_id="`
1058
+ # gcp_oracle_zone_id`"`.
1049
1059
  # @param [Fixnum] page_size
1050
1060
  # Optional. The maximum number of items to return. If unspecified, at most 50
1051
1061
  # database system shapes will be returned. The maximum value is 1000; values
@@ -1069,11 +1079,12 @@ module Google
1069
1079
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1070
1080
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1071
1081
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1072
- def list_project_location_db_system_shapes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1082
+ def list_project_location_db_system_shapes(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1073
1083
  command = make_simple_command(:get, 'v1/{+parent}/dbSystemShapes', options)
1074
1084
  command.response_representation = Google::Apis::OracledatabaseV1::ListDbSystemShapesResponse::Representation
1075
1085
  command.response_class = Google::Apis::OracledatabaseV1::ListDbSystemShapesResponse
1076
1086
  command.params['parent'] = parent unless parent.nil?
1087
+ command.query['filter'] = filter unless filter.nil?
1077
1088
  command.query['pageSize'] = page_size unless page_size.nil?
1078
1089
  command.query['pageToken'] = page_token unless page_token.nil?
1079
1090
  command.query['fields'] = fields unless fields.nil?
@@ -1126,7 +1137,8 @@ module Google
1126
1137
  # format: Format: projects/`project`/locations/`location`.
1127
1138
  # @param [String] filter
1128
1139
  # Optional. An expression for filtering the results of the request. Only the
1129
- # shape and gi_version fields are supported in this format: `shape="`shape`"`.
1140
+ # shape, gcp_oracle_zone and gi_version fields are supported in this format: `
1141
+ # shape="`shape`"`.
1130
1142
  # @param [Fixnum] page_size
1131
1143
  # Optional. The maximum number of items to return. If unspecified, a maximum of
1132
1144
  # 50 Oracle Grid Infrastructure (GI) versions will be returned. The maximum
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.15.0
4
+ version: 0.17.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.15.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-oracledatabase_v1/v0.17.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: