fog-google 1.16.1 → 1.17.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 +4 -4
- data/.github/workflows/integration.yml +8 -8
- data/.github/workflows/unit.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/fog/compute/google/models/server.rb +7 -0
- data/lib/fog/compute/google/requests/insert_server.rb +4 -0
- data/lib/fog/google/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abd0506ef51980b23273cfda4ef059113f220a1b9d2480a5433a3fbaf6d7d985
|
|
4
|
+
data.tar.gz: 6f8c866d492ac0292df89d9c532da795ab91d4eec7ec1caec9fe259cfabd8dc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a93c4dcb1669954f3ec1b18e04f8c96a2bcca16c1d7946691b0c1158515342ca1213628576a1486d5b45d57ba77484b12f20eb2087e50f2a0e37de083613dcf
|
|
7
|
+
data.tar.gz: 623b43065a6218ffb6ef2dcdcd5ef4e7f51164af507d8677f543a25c9bc40e283cf5b7815dc43f78ff9d5276ff67512e578d1c7aa0f7c86e63d86e4523f39df1
|
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
max-parallel: 1
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@v2.
|
|
20
|
+
- uses: actions/checkout@v2.4.0
|
|
21
21
|
- name: Set up Ruby
|
|
22
22
|
uses: ruby/setup-ruby@v1
|
|
23
23
|
env:
|
|
@@ -44,7 +44,7 @@ jobs:
|
|
|
44
44
|
max-parallel: 1
|
|
45
45
|
|
|
46
46
|
steps:
|
|
47
|
-
- uses: actions/checkout@v2.
|
|
47
|
+
- uses: actions/checkout@v2.4.0
|
|
48
48
|
- name: Set up Ruby
|
|
49
49
|
uses: ruby/setup-ruby@v1
|
|
50
50
|
env:
|
|
@@ -71,7 +71,7 @@ jobs:
|
|
|
71
71
|
max-parallel: 1
|
|
72
72
|
|
|
73
73
|
steps:
|
|
74
|
-
- uses: actions/checkout@v2.
|
|
74
|
+
- uses: actions/checkout@v2.4.0
|
|
75
75
|
- name: Set up Ruby
|
|
76
76
|
uses: ruby/setup-ruby@v1
|
|
77
77
|
env:
|
|
@@ -98,7 +98,7 @@ jobs:
|
|
|
98
98
|
max-parallel: 1
|
|
99
99
|
|
|
100
100
|
steps:
|
|
101
|
-
- uses: actions/checkout@v2.
|
|
101
|
+
- uses: actions/checkout@v2.4.0
|
|
102
102
|
- name: Set up Ruby
|
|
103
103
|
uses: ruby/setup-ruby@v1
|
|
104
104
|
env:
|
|
@@ -125,7 +125,7 @@ jobs:
|
|
|
125
125
|
max-parallel: 1
|
|
126
126
|
|
|
127
127
|
steps:
|
|
128
|
-
- uses: actions/checkout@v2.
|
|
128
|
+
- uses: actions/checkout@v2.4.0
|
|
129
129
|
- name: Set up Ruby
|
|
130
130
|
uses: ruby/setup-ruby@v1
|
|
131
131
|
env:
|
|
@@ -152,7 +152,7 @@ jobs:
|
|
|
152
152
|
max-parallel: 1
|
|
153
153
|
|
|
154
154
|
steps:
|
|
155
|
-
- uses: actions/checkout@v2.
|
|
155
|
+
- uses: actions/checkout@v2.4.0
|
|
156
156
|
- name: Set up Ruby
|
|
157
157
|
uses: ruby/setup-ruby@v1
|
|
158
158
|
env:
|
|
@@ -179,7 +179,7 @@ jobs:
|
|
|
179
179
|
max-parallel: 1
|
|
180
180
|
|
|
181
181
|
steps:
|
|
182
|
-
- uses: actions/checkout@v2.
|
|
182
|
+
- uses: actions/checkout@v2.4.0
|
|
183
183
|
- name: Set up Ruby
|
|
184
184
|
uses: ruby/setup-ruby@v1
|
|
185
185
|
env:
|
|
@@ -206,7 +206,7 @@ jobs:
|
|
|
206
206
|
max-parallel: 1
|
|
207
207
|
|
|
208
208
|
steps:
|
|
209
|
-
- uses: actions/checkout@v2.
|
|
209
|
+
- uses: actions/checkout@v2.4.0
|
|
210
210
|
- name: Set up Ruby
|
|
211
211
|
uses: ruby/setup-ruby@v1
|
|
212
212
|
env:
|
data/.github/workflows/unit.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -175,7 +175,7 @@ $ bundle exec pry
|
|
|
175
175
|
|
|
176
176
|
## Supported Ruby Versions
|
|
177
177
|
|
|
178
|
-
Fog-google is currently supported on Ruby 2.
|
|
178
|
+
Fog-google is currently supported on Ruby 2.6+.
|
|
179
179
|
|
|
180
180
|
In general we support (and run our CI) for Ruby versions that are actively supported
|
|
181
181
|
by Ruby Core - that is, Ruby versions that are not end of life. Older versions of
|
|
@@ -50,6 +50,13 @@ module Fog
|
|
|
50
50
|
# @return [Array<Hash>]
|
|
51
51
|
attribute :disks
|
|
52
52
|
|
|
53
|
+
# @example Enable the display device
|
|
54
|
+
# {
|
|
55
|
+
# :enable_display => true
|
|
56
|
+
# }
|
|
57
|
+
# @return [Hash<String,Boolean>]
|
|
58
|
+
attribute :display_device, :aliases => "displayDevice"
|
|
59
|
+
|
|
53
60
|
# @example Guest accelerators
|
|
54
61
|
# [
|
|
55
62
|
# {
|
|
@@ -104,6 +104,10 @@ module Fog
|
|
|
104
104
|
data[:shielded_instance_config] = ::Google::Apis::ComputeV1::ShieldedInstanceConfig.new(**options[:shielded_instance_config])
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
+
if data[:display_device]
|
|
108
|
+
data[:display_device] = ::Google::Apis::ComputeV1::DisplayDevice.new(**options[:display_device])
|
|
109
|
+
end
|
|
110
|
+
|
|
107
111
|
if data[:tags]
|
|
108
112
|
if options[:tags].is_a?(Array)
|
|
109
113
|
# Process classic tag notation, i.e. ["fog"]
|
data/lib/fog/google/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-google
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nat Welch
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-11-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fog-core
|