google-apis-oracledatabase_v1 0.16.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: 283e880d613cc3aad2db7585b2daec8e472b6eabba6ca6271216a405eb1580cf
4
- data.tar.gz: 1f0916ab7f6e99e587ae87cda58fb4064a83484a0137689e60a523475294f545
3
+ metadata.gz: 0e9d5bc3be1f622cb1792fc0b187f773353ac3d04196910f44ff5fa9845c2354
4
+ data.tar.gz: 4033e12b31686a203c6d9313632568f6c4cb344b8d87ba23b7fc8f71d46ec711
5
5
  SHA512:
6
- metadata.gz: 4f06c0a20abc1dc55db4721781ecd57fb65ad861e2d6b216e99e19b4cf7dc96669a74d49622409d3e98e1d15ced99ced7b22e402d32ef2f7256c4102a57f6944
7
- data.tar.gz: 8fab0814a220b85bd9bb2bee7066f82c48adebf99c9c5e187ad4bdabaeece2aab70874ec44c56ce55f658915bc1673e58b9ed05012711ab5cd1c9357f8c001b4
6
+ metadata.gz: f19ff2190765b19d4f338a6482a9df2e51a3f7f27df3f93fce87acd8aca5e8a611b6cc0062826be277046c20c77a2fe1f533a93542335438e16ee9f88e314361
7
+ data.tar.gz: f2df17adf5ddd69e8db63415cbf77228f04205802c96b01da4789a3648cd34ac6381e952a01a740e1ff562ca0a46999423bae9f7708c6c3831daf01071268d2b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.16.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250901
@@ -2835,6 +2835,12 @@ module Google
2835
2835
  # @return [String]
2836
2836
  attr_accessor :entitlement_id
2837
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
+
2838
2844
  # Optional. Labels or tags associated with the resource.
2839
2845
  # Corresponds to the JSON property `labels`
2840
2846
  # @return [Hash<String,String>]
@@ -2865,6 +2871,7 @@ module Google
2865
2871
  def update!(**args)
2866
2872
  @create_time = args[:create_time] if args.key?(:create_time)
2867
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)
2868
2875
  @labels = args[:labels] if args.key?(:labels)
2869
2876
  @name = args[:name] if args.key?(:name)
2870
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.16.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 = "20250901"
25
+ REVISION = "20250910"
26
26
  end
27
27
  end
28
28
  end
@@ -1062,6 +1062,7 @@ module Google
1062
1062
  class Representation < Google::Apis::Core::JsonRepresentation
1063
1063
  property :create_time, as: 'createTime'
1064
1064
  property :entitlement_id, as: 'entitlementId'
1065
+ property :gcp_oracle_zone, as: 'gcpOracleZone'
1065
1066
  hash :labels, as: 'labels'
1066
1067
  property :name, as: 'name'
1067
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.16.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.16.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: