google-apis-bigqueryconnection_v1 0.4.0 → 0.5.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: '065284fbbe77af1078e63e29e7d4eac4434fecf66dce604e65d8b2941c097c10'
|
4
|
+
data.tar.gz: 938242b817a159bcbb84c20fa96a0935ce4137a50f38e97ae23c41adc95a60ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67f04f838f48d3c1e23846d24b2e8c666a157244acc4336b597e69b7ee12de941bdf5cfbf39e562b03290bc8b3b53916fafc3ebc9c7b63d2357fdb3e05bea0da
|
7
|
+
data.tar.gz: b107e0e7367fa807cc291395c77048e839f8ce81143ec26dab95dd8939fd04fbec44fd71fb391302a03988ca8ffa32d6f65389f0a9cdf85853ee30bd9940a4a5
|
data/CHANGELOG.md
CHANGED
@@ -573,6 +573,12 @@ module Google
|
|
573
573
|
class ConnectorConfiguration
|
574
574
|
include Google::Apis::Core::Hashable
|
575
575
|
|
576
|
+
# Data Asset - a resource within instance of the system, reachable under
|
577
|
+
# specified endpoint. For example a database name in a SQL DB.
|
578
|
+
# Corresponds to the JSON property `asset`
|
579
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset]
|
580
|
+
attr_accessor :asset
|
581
|
+
|
576
582
|
# Client authentication.
|
577
583
|
# Corresponds to the JSON property `authentication`
|
578
584
|
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication]
|
@@ -600,6 +606,7 @@ module Google
|
|
600
606
|
|
601
607
|
# Update properties of this object
|
602
608
|
def update!(**args)
|
609
|
+
@asset = args[:asset] if args.key?(:asset)
|
603
610
|
@authentication = args[:authentication] if args.key?(:authentication)
|
604
611
|
@connector_id = args[:connector_id] if args.key?(:connector_id)
|
605
612
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
@@ -607,6 +614,34 @@ module Google
|
|
607
614
|
end
|
608
615
|
end
|
609
616
|
|
617
|
+
# Data Asset - a resource within instance of the system, reachable under
|
618
|
+
# specified endpoint. For example a database name in a SQL DB.
|
619
|
+
class ConnectorConfigurationAsset
|
620
|
+
include Google::Apis::Core::Hashable
|
621
|
+
|
622
|
+
# Optional. Name of the database.
|
623
|
+
# Corresponds to the JSON property `database`
|
624
|
+
# @return [String]
|
625
|
+
attr_accessor :database
|
626
|
+
|
627
|
+
# Full Google Cloud resource name - https://cloud.google.com/apis/design/
|
628
|
+
# resource_names#full_resource_name. Example: `//library.googleapis.com/shelves/
|
629
|
+
# shelf1/books/book2`
|
630
|
+
# Corresponds to the JSON property `googleCloudResource`
|
631
|
+
# @return [String]
|
632
|
+
attr_accessor :google_cloud_resource
|
633
|
+
|
634
|
+
def initialize(**args)
|
635
|
+
update!(**args)
|
636
|
+
end
|
637
|
+
|
638
|
+
# Update properties of this object
|
639
|
+
def update!(**args)
|
640
|
+
@database = args[:database] if args.key?(:database)
|
641
|
+
@google_cloud_resource = args[:google_cloud_resource] if args.key?(:google_cloud_resource)
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
610
645
|
# Client authentication.
|
611
646
|
class ConnectorConfigurationAuthentication
|
612
647
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigqueryconnectionV1
|
18
18
|
# Version of the google-apis-bigqueryconnection_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240418"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class ConnectorConfigurationAsset
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class ConnectorConfigurationAuthentication
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -335,6 +341,8 @@ module Google
|
|
335
341
|
class ConnectorConfiguration
|
336
342
|
# @private
|
337
343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
344
|
+
property :asset, as: 'asset', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset::Representation
|
345
|
+
|
338
346
|
property :authentication, as: 'authentication', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication::Representation
|
339
347
|
|
340
348
|
property :connector_id, as: 'connectorId'
|
@@ -345,6 +353,14 @@ module Google
|
|
345
353
|
end
|
346
354
|
end
|
347
355
|
|
356
|
+
class ConnectorConfigurationAsset
|
357
|
+
# @private
|
358
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
359
|
+
property :database, as: 'database'
|
360
|
+
property :google_cloud_resource, as: 'googleCloudResource'
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
348
364
|
class ConnectorConfigurationAuthentication
|
349
365
|
# @private
|
350
366
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigqueryconnection_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryconnection_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryconnection_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|