google-apis-connectors_v2 0.23.0 → 0.25.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: 33170727673f125877a047fad32cf090ab978371ad55e7a5b70e7fbce7c1b699
4
- data.tar.gz: 9a8a5adc157753beae939193ecb554cff35741767bb18a4a43198c1017a04c0c
3
+ metadata.gz: 9f346cd07b8f1fdc26015a2c5636d72a9fec6dd16e4cc3b9b310606062f1f95d
4
+ data.tar.gz: 37e590f9959dfe0fab7586eab62a94a8cefde4e8ad5cbb95ee61060c22fc3716
5
5
  SHA512:
6
- metadata.gz: 732fecc92bc8814ddf4920112844f79575e66fb79b825ddc01cdbe484b93a2486e4617f1b6f3b0c83948c0de79e13d4dd3312f31b7846a167a792840ed53ff6a
7
- data.tar.gz: 2b79b94755ee1d395766199122e5e5c8d14ec92223929dc4184432d55e81b11edfeaf971bf4502e0372eebb1ede97b96365bbae387397421deb714fd403594a0
6
+ metadata.gz: 12148aa172b673527b251e9b21831f32c877a4e9eb63189a910bfe44b029e6f83f0d933755990d9f6dc419e65569eb983fda1c5d4ec99fcbffea1cc0916a2b56
7
+ data.tar.gz: b711f8f37aef85c9cf14391c208c3a44ffc43198ce658b472779607b2a6c6457eb8dbb7e0afc5c78933f0538dcea90f0204ecbcbeac2abc82c06da7c040bdd5e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-connectors_v2
2
2
 
3
+ ### v0.25.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250521
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.24.0 (2025-05-18)
9
+
10
+ * Regenerated from discovery document revision 20250507
11
+ * Regenerated using generator version 0.17.0
12
+
3
13
  ### v0.23.0 (2025-04-27)
4
14
 
5
15
  * Regenerated from discovery document revision 20250423
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/apigee/docs/api-platform/co
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -131,6 +131,11 @@ module Google
131
131
  # @return [String]
132
132
  attr_accessor :redirect_uri
133
133
 
134
+ # Scopes the connection will request when the user performs the auth code flow.
135
+ # Corresponds to the JSON property `scopes`
136
+ # @return [Array<String>]
137
+ attr_accessor :scopes
138
+
134
139
  def initialize(**args)
135
140
  update!(**args)
136
141
  end
@@ -140,6 +145,7 @@ module Google
140
145
  @auth_code = args[:auth_code] if args.key?(:auth_code)
141
146
  @pkce_verifier = args[:pkce_verifier] if args.key?(:pkce_verifier)
142
147
  @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
148
+ @scopes = args[:scopes] if args.key?(:scopes)
143
149
  end
144
150
  end
145
151
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV2
18
18
  # Version of the google-apis-connectors_v2 gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250423"
25
+ REVISION = "20250521"
26
26
  end
27
27
  end
28
28
  end
@@ -324,6 +324,7 @@ module Google
324
324
  property :auth_code, as: 'authCode'
325
325
  property :pkce_verifier, as: 'pkceVerifier'
326
326
  property :redirect_uri, as: 'redirectUri'
327
+ collection :scopes, as: 'scopes'
327
328
  end
328
329
  end
329
330
 
@@ -570,6 +570,8 @@ module Google
570
570
  # Page token value if available from a previous request.
571
571
  # @param [Array<String>, String] sort_by
572
572
  # List of 'sort_by' columns to use when returning the results.
573
+ # @param [Array<String>, String] sort_order
574
+ # List of 'sort_order' columns to use when returning the results.
573
575
  # @param [String] fields
574
576
  # Selector specifying which fields to include in a partial response.
575
577
  # @param [String] quota_user
@@ -587,7 +589,7 @@ module Google
587
589
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
588
590
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
589
591
  # @raise [Google::Apis::AuthorizationError] Authorization is required
590
- def list_project_location_connection_entity_type_entities(parent, conditions: nil, page_size: nil, page_token: nil, sort_by: nil, fields: nil, quota_user: nil, options: nil, &block)
592
+ def list_project_location_connection_entity_type_entities(parent, conditions: nil, page_size: nil, page_token: nil, sort_by: nil, sort_order: nil, fields: nil, quota_user: nil, options: nil, &block)
591
593
  command = make_simple_command(:get, 'v2/{+parent}/entities', options)
592
594
  command.response_representation = Google::Apis::ConnectorsV2::ListEntitiesResponse::Representation
593
595
  command.response_class = Google::Apis::ConnectorsV2::ListEntitiesResponse
@@ -596,6 +598,7 @@ module Google
596
598
  command.query['pageSize'] = page_size unless page_size.nil?
597
599
  command.query['pageToken'] = page_token unless page_token.nil?
598
600
  command.query['sortBy'] = sort_by unless sort_by.nil?
601
+ command.query['sortOrder'] = sort_order unless sort_order.nil?
599
602
  command.query['fields'] = fields unless fields.nil?
600
603
  command.query['quotaUser'] = quota_user unless quota_user.nil?
601
604
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-connectors_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.25.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Connectors API V2
79
79
  test_files: []