google-apis-connectors_v1 0.65.0 → 0.66.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: 4416136c4935a4fae1db579cbeee33e05a5e527b52418d2dafdea00068b6b114
|
4
|
+
data.tar.gz: 79aa44ffd21ceb8b43e957da60a31d863106c01c2cf1af7da43333850d88b99e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99722ecea211b68f0184e2f37b181ae295144007c4c0bf4af49a33338393d1af9abca1e560451e9399c9b81a2977a07037b187fc308fe5b8169049ac85979f1d
|
7
|
+
data.tar.gz: 7db11fd7a29bf668b877a0e1b91560f1ce42d7d0a70cae85c5eab0bd6c4e782ea3312466ffb1a4ed24959f4c6b68c9825c643045fc453c4a196984ca6a79523d
|
data/CHANGELOG.md
CHANGED
@@ -2341,11 +2341,6 @@ module Google
|
|
2341
2341
|
# @return [Google::Apis::ConnectorsV1::EndPoint]
|
2342
2342
|
attr_accessor :endpoint
|
2343
2343
|
|
2344
|
-
# GSUtil message includes details of the Destination Cloud Storage bucket.
|
2345
|
-
# Corresponds to the JSON property `gsutil`
|
2346
|
-
# @return [Google::Apis::ConnectorsV1::GsUtil]
|
2347
|
-
attr_accessor :gsutil
|
2348
|
-
|
2349
2344
|
# Service account needed for runtime plane to trigger IP workflow.
|
2350
2345
|
# Corresponds to the JSON property `serviceAccount`
|
2351
2346
|
# @return [String]
|
@@ -2363,7 +2358,6 @@ module Google
|
|
2363
2358
|
# Update properties of this object
|
2364
2359
|
def update!(**args)
|
2365
2360
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2366
|
-
@gsutil = args[:gsutil] if args.key?(:gsutil)
|
2367
2361
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2368
2362
|
@type = args[:type] if args.key?(:type)
|
2369
2363
|
end
|
@@ -2998,25 +2992,6 @@ module Google
|
|
2998
2992
|
end
|
2999
2993
|
end
|
3000
2994
|
|
3001
|
-
# GSUtil message includes details of the Destination Cloud Storage bucket.
|
3002
|
-
class GsUtil
|
3003
|
-
include Google::Apis::Core::Hashable
|
3004
|
-
|
3005
|
-
# Required. The URI of the Cloud Storage bucket.
|
3006
|
-
# Corresponds to the JSON property `gsutilUri`
|
3007
|
-
# @return [String]
|
3008
|
-
attr_accessor :gsutil_uri
|
3009
|
-
|
3010
|
-
def initialize(**args)
|
3011
|
-
update!(**args)
|
3012
|
-
end
|
3013
|
-
|
3014
|
-
# Update properties of this object
|
3015
|
-
def update!(**args)
|
3016
|
-
@gsutil_uri = args[:gsutil_uri] if args.key?(:gsutil_uri)
|
3017
|
-
end
|
3018
|
-
end
|
3019
|
-
|
3020
2995
|
# Autoscaling config for connector deployment system metrics.
|
3021
2996
|
class HpaConfig
|
3022
2997
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.66.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250101"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -346,12 +346,6 @@ module Google
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
347
347
|
end
|
348
348
|
|
349
|
-
class GsUtil
|
350
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
-
|
352
|
-
include Google::Apis::Core::JsonObjectSupport
|
353
|
-
end
|
354
|
-
|
355
349
|
class HpaConfig
|
356
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
351
|
|
@@ -1487,8 +1481,6 @@ module Google
|
|
1487
1481
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1488
1482
|
property :endpoint, as: 'endpoint', class: Google::Apis::ConnectorsV1::EndPoint, decorator: Google::Apis::ConnectorsV1::EndPoint::Representation
|
1489
1483
|
|
1490
|
-
property :gsutil, as: 'gsutil', class: Google::Apis::ConnectorsV1::GsUtil, decorator: Google::Apis::ConnectorsV1::GsUtil::Representation
|
1491
|
-
|
1492
1484
|
property :service_account, as: 'serviceAccount'
|
1493
1485
|
property :type, as: 'type'
|
1494
1486
|
end
|
@@ -1662,13 +1654,6 @@ module Google
|
|
1662
1654
|
end
|
1663
1655
|
end
|
1664
1656
|
|
1665
|
-
class GsUtil
|
1666
|
-
# @private
|
1667
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1668
|
-
property :gsutil_uri, as: 'gsutilUri'
|
1669
|
-
end
|
1670
|
-
end
|
1671
|
-
|
1672
1657
|
class HpaConfig
|
1673
1658
|
# @private
|
1674
1659
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.66.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.66.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Connectors API V1
|
82
79
|
test_files: []
|