google-apis-connectors_v2 0.21.0 → 0.23.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33170727673f125877a047fad32cf090ab978371ad55e7a5b70e7fbce7c1b699
|
4
|
+
data.tar.gz: 9a8a5adc157753beae939193ecb554cff35741767bb18a4a43198c1017a04c0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 732fecc92bc8814ddf4920112844f79575e66fb79b825ddc01cdbe484b93a2486e4617f1b6f3b0c83948c0de79e13d4dd3312f31b7846a167a792840ed53ff6a
|
7
|
+
data.tar.gz: 2b79b94755ee1d395766199122e5e5c8d14ec92223929dc4184432d55e81b11edfeaf971bf4502e0372eebb1ede97b96365bbae387397421deb714fd403594a0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-connectors_v2
|
2
2
|
|
3
|
+
### v0.23.0 (2025-04-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250423
|
6
|
+
|
7
|
+
### v0.22.0 (2025-04-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250327
|
10
|
+
|
3
11
|
### v0.21.0 (2025-03-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250304
|
@@ -674,6 +674,17 @@ module Google
|
|
674
674
|
# @return [String]
|
675
675
|
attr_accessor :consumer_defined_name
|
676
676
|
|
677
|
+
# Optional. The consumer_project_number associated with this Apigee instance.
|
678
|
+
# This field is added specifically to support Apigee integration with SLM
|
679
|
+
# Rollout and UMM. It represents the numerical project ID of the GCP project
|
680
|
+
# that consumes this Apigee instance. It is used for SLM rollout notifications
|
681
|
+
# and UMM integration, enabling proper mapping to customer projects and log
|
682
|
+
# delivery for Apigee instances. This field complements consumer_project_id and
|
683
|
+
# may be used for specific Apigee scenarios where the numerical ID is required.
|
684
|
+
# Corresponds to the JSON property `consumerProjectNumber`
|
685
|
+
# @return [String]
|
686
|
+
attr_accessor :consumer_project_number
|
687
|
+
|
677
688
|
# Output only. Timestamp when the resource was created.
|
678
689
|
# Corresponds to the JSON property `createTime`
|
679
690
|
# @return [String]
|
@@ -790,6 +801,7 @@ module Google
|
|
790
801
|
# Update properties of this object
|
791
802
|
def update!(**args)
|
792
803
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
804
|
+
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
793
805
|
@create_time = args[:create_time] if args.key?(:create_time)
|
794
806
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
795
807
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -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.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250423"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -478,6 +478,7 @@ module Google
|
|
478
478
|
# @private
|
479
479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
480
480
|
property :consumer_defined_name, as: 'consumerDefinedName'
|
481
|
+
property :consumer_project_number, as: 'consumerProjectNumber'
|
481
482
|
property :create_time, as: 'createTime'
|
482
483
|
property :instance_type, as: 'instanceType'
|
483
484
|
hash :labels, as: 'labels'
|
@@ -257,6 +257,8 @@ module Google
|
|
257
257
|
# @param [String] name
|
258
258
|
# Required. Resource name of the Action. Format: projects/`project`/locations/`
|
259
259
|
# location`/connections/`connection`/actions/`action`
|
260
|
+
# @param [String] view
|
261
|
+
# Specified view of the action schema.
|
260
262
|
# @param [String] fields
|
261
263
|
# Selector specifying which fields to include in a partial response.
|
262
264
|
# @param [String] quota_user
|
@@ -274,11 +276,12 @@ module Google
|
|
274
276
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
275
277
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
276
278
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
277
|
-
def get_project_location_connection_action(name, fields: nil, quota_user: nil, options: nil, &block)
|
279
|
+
def get_project_location_connection_action(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
278
280
|
command = make_simple_command(:get, 'v2/{+name}', options)
|
279
281
|
command.response_representation = Google::Apis::ConnectorsV2::Action::Representation
|
280
282
|
command.response_class = Google::Apis::ConnectorsV2::Action
|
281
283
|
command.params['name'] = name unless name.nil?
|
284
|
+
command.query['view'] = view unless view.nil?
|
282
285
|
command.query['fields'] = fields unless fields.nil?
|
283
286
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
284
287
|
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.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-27 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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.23.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:
|