google-apis-bigqueryconnection_v1beta1 0.1.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/lib/google/apis/bigqueryconnection_v1beta1.rb +1 -1
- data/lib/google/apis/bigqueryconnection_v1beta1/classes.rb +0 -6
- data/lib/google/apis/bigqueryconnection_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/bigqueryconnection_v1beta1/representations.rb +0 -1
- metadata +15 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99145120bc1358bb42d3d4c0d419bf3d4e8c3f3349b7145cc31aa9663db1139f
|
4
|
+
data.tar.gz: d40e03b2cae05b939084cb37503e25ae6bc608d04434c9b2af0b9b3573423ab4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 955430bca5f313454e6914935169c8d4e396a0585a3808c8a98d65c60bbc58abac4b63b8de485063a34ad26668a97d6fd0ed55411e8ccdcc932dbd53f0e7e4ca
|
7
|
+
data.tar.gz: a3a2d9a6c7b92dbf818dc20035b0a9c43a7315a9169e51e23823ccfd1fde04292601aae1e43dbe6c31d4abd6962d36589400d4e29f3f727ba06ee0cbb10f026a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-bigqueryconnection_v1beta1
|
2
2
|
|
3
|
+
### v0.6.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.3.0
|
6
|
+
|
7
|
+
### v0.5.0 (2021-05-19)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.4.0 (2021-04-02)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210326
|
14
|
+
* Regenerated using generator version 0.2.0
|
15
|
+
|
16
|
+
### v0.3.0 (2021-03-04)
|
17
|
+
|
18
|
+
* Regenerated using generator version 0.1.2
|
19
|
+
|
20
|
+
### v0.2.0 (2021-01-09)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20201231
|
23
|
+
|
3
24
|
### v0.1.0 (2021-01-07)
|
4
25
|
|
5
26
|
* Regenerated using generator version 0.1.1
|
@@ -32,7 +32,7 @@ module Google
|
|
32
32
|
# View and manage your data in Google BigQuery
|
33
33
|
AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'
|
34
34
|
|
35
|
-
#
|
35
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
36
36
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
37
37
|
end
|
38
38
|
end
|
@@ -97,11 +97,6 @@ module Google
|
|
97
97
|
class Binding
|
98
98
|
include Google::Apis::Core::Hashable
|
99
99
|
|
100
|
-
#
|
101
|
-
# Corresponds to the JSON property `bindingId`
|
102
|
-
# @return [String]
|
103
|
-
attr_accessor :binding_id
|
104
|
-
|
105
100
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
106
101
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
107
102
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -163,7 +158,6 @@ module Google
|
|
163
158
|
|
164
159
|
# Update properties of this object
|
165
160
|
def update!(**args)
|
166
|
-
@binding_id = args[:binding_id] if args.key?(:binding_id)
|
167
161
|
@condition = args[:condition] if args.key?(:condition)
|
168
162
|
@members = args[:members] if args.key?(:members)
|
169
163
|
@role = args[:role] if args.key?(:role)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigqueryconnectionV1beta1
|
18
18
|
# Version of the google-apis-bigqueryconnection_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210326"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -138,7 +138,6 @@ module Google
|
|
138
138
|
class Binding
|
139
139
|
# @private
|
140
140
|
class Representation < Google::Apis::Core::JsonRepresentation
|
141
|
-
property :binding_id, as: 'bindingId'
|
142
141
|
property :condition, as: 'condition', class: Google::Apis::BigqueryconnectionV1beta1::Expr, decorator: Google::Apis::BigqueryconnectionV1beta1::Expr::Representation
|
143
142
|
|
144
143
|
collection :members, as: 'members'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigqueryconnection_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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: 2021-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for BigQuery Connection API V1beta1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigqueryconnection_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryconnection_v1beta1/v0.6.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigqueryconnection_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for BigQuery Connection API V1beta1
|