google-apis-connectors_v2 0.24.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/connectors_v2/gem_version.rb +3 -3
- data/lib/google/apis/connectors_v2/service.rb +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f346cd07b8f1fdc26015a2c5636d72a9fec6dd16e4cc3b9b310606062f1f95d
|
4
|
+
data.tar.gz: 37e590f9959dfe0fab7586eab62a94a8cefde4e8ad5cbb95ee61060c22fc3716
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12148aa172b673527b251e9b21831f32c877a4e9eb63189a910bfe44b029e6f83f0d933755990d9f6dc419e65569eb983fda1c5d4ec99fcbffea1cc0916a2b56
|
7
|
+
data.tar.gz: b711f8f37aef85c9cf14391c208c3a44ffc43198ce658b472779607b2a6c6457eb8dbb7e0afc5c78933f0538dcea90f0204ecbcbeac2abc82c06da7c040bdd5e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.24.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250507
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.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-connectors_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.
|
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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
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: []
|