google-apis-bigqueryconnection_v1 0.2.0 → 0.4.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: bcc0b3ff2ac049a3817b2080d5390f278b3ee6dd71f807188fa8b1f6bdb9f71a
|
4
|
+
data.tar.gz: 944a5ed3fafbdf43ef3ebeb97818310a1eba7b57a86c2aed648c848d53e2bd7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 336ac3219267994cc8daec6ec724d3a4217ba0de6318de4070131d83bd08275b0259a12a6dbcd07b7808203dfa4ee2eca8d9a0baf92d187491ec68c2351fffd8
|
7
|
+
data.tar.gz: ff5bad48a7be51623377c7aced615d0f35e80b5087f4f7ee3be09edeba20228771a96570aa6accf0b06a7bd9644632a03275987dcc370e955ed85b797d511dc0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigqueryconnection_v1
|
2
2
|
|
3
|
+
### v0.4.0 (2024-03-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240323
|
6
|
+
|
7
|
+
### v0.3.0 (2024-02-23)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.14.0
|
10
|
+
|
3
11
|
### v0.2.0 (2024-01-28)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240124
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/bigquery/docs/connections-a
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
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.
|
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
|
|
90
90
|
## License
|
91
91
|
|
@@ -589,6 +589,11 @@ module Google
|
|
589
589
|
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint]
|
590
590
|
attr_accessor :endpoint
|
591
591
|
|
592
|
+
# Network related configuration.
|
593
|
+
# Corresponds to the JSON property `network`
|
594
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork]
|
595
|
+
attr_accessor :network
|
596
|
+
|
592
597
|
def initialize(**args)
|
593
598
|
update!(**args)
|
594
599
|
end
|
@@ -598,6 +603,7 @@ module Google
|
|
598
603
|
@authentication = args[:authentication] if args.key?(:authentication)
|
599
604
|
@connector_id = args[:connector_id] if args.key?(:connector_id)
|
600
605
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
606
|
+
@network = args[:network] if args.key?(:network)
|
601
607
|
end
|
602
608
|
end
|
603
609
|
|
@@ -641,6 +647,45 @@ module Google
|
|
641
647
|
end
|
642
648
|
end
|
643
649
|
|
650
|
+
# Network related configuration.
|
651
|
+
class ConnectorConfigurationNetwork
|
652
|
+
include Google::Apis::Core::Hashable
|
653
|
+
|
654
|
+
# Private Service Connect configuration.
|
655
|
+
# Corresponds to the JSON property `privateServiceConnect`
|
656
|
+
# @return [Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect]
|
657
|
+
attr_accessor :private_service_connect
|
658
|
+
|
659
|
+
def initialize(**args)
|
660
|
+
update!(**args)
|
661
|
+
end
|
662
|
+
|
663
|
+
# Update properties of this object
|
664
|
+
def update!(**args)
|
665
|
+
@private_service_connect = args[:private_service_connect] if args.key?(:private_service_connect)
|
666
|
+
end
|
667
|
+
end
|
668
|
+
|
669
|
+
# Private Service Connect configuration.
|
670
|
+
class ConnectorConfigurationPrivateServiceConnect
|
671
|
+
include Google::Apis::Core::Hashable
|
672
|
+
|
673
|
+
# Required. Network Attachment name in the format of `projects/`project`/regions/
|
674
|
+
# `region`/networkAttachments/`networkattachment``.
|
675
|
+
# Corresponds to the JSON property `networkAttachment`
|
676
|
+
# @return [String]
|
677
|
+
attr_accessor :network_attachment
|
678
|
+
|
679
|
+
def initialize(**args)
|
680
|
+
update!(**args)
|
681
|
+
end
|
682
|
+
|
683
|
+
# Update properties of this object
|
684
|
+
def update!(**args)
|
685
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
644
689
|
# Secret value parameter.
|
645
690
|
class ConnectorConfigurationSecret
|
646
691
|
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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240323"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,18 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class ConnectorConfigurationNetwork
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class ConnectorConfigurationPrivateServiceConnect
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
109
121
|
class ConnectorConfigurationSecret
|
110
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
123
|
|
@@ -328,6 +340,8 @@ module Google
|
|
328
340
|
property :connector_id, as: 'connectorId'
|
329
341
|
property :endpoint, as: 'endpoint', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint::Representation
|
330
342
|
|
343
|
+
property :network, as: 'network', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork::Representation
|
344
|
+
|
331
345
|
end
|
332
346
|
end
|
333
347
|
|
@@ -346,6 +360,21 @@ module Google
|
|
346
360
|
end
|
347
361
|
end
|
348
362
|
|
363
|
+
class ConnectorConfigurationNetwork
|
364
|
+
# @private
|
365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
366
|
+
property :private_service_connect, as: 'privateServiceConnect', class: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect, decorator: Google::Apis::BigqueryconnectionV1::ConnectorConfigurationPrivateServiceConnect::Representation
|
367
|
+
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
class ConnectorConfigurationPrivateServiceConnect
|
372
|
+
# @private
|
373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
374
|
+
property :network_attachment, as: 'networkAttachment'
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
349
378
|
class ConnectorConfigurationSecret
|
350
379
|
# @private
|
351
380
|
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.4.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-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.4.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: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for BigQuery Connection API V1
|