google-apis-lifesciences_v2beta 0.6.0 → 0.11.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/lifesciences_v2beta/classes.rb +21 -0
- data/lib/google/apis/lifesciences_v2beta/gem_version.rb +3 -3
- data/lib/google/apis/lifesciences_v2beta/representations.rb +5 -0
- data/lib/google/apis/lifesciences_v2beta/service.rb +1 -1
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c9a1d5e919425743acbbc2dc6d533c25710cf6b160497a537974d341eb2ff51
|
4
|
+
data.tar.gz: 3dcaea776adf9643903388b120d63a62d1ea6d63ea8810d1b23e1f075b91000f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d367b5c836bc83362357b59d1ec8b8c0b78596553a0a3c1f4de616114bcfb2b9238d5a5fd635853259d693d626a2f7ad7334c13c67b961f88ff4b90c01eec87
|
7
|
+
data.tar.gz: bd2eee6e012b4b54642d7e514c556974ee3c7365a95cf63d47feea408307e1dfbfa3e150bd5ccf08ee8e8087ecb5cf9e57056918b470cf5d736b15908709815c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-lifesciences_v2beta
|
2
2
|
|
3
|
+
### v0.11.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.10.0 (2021-06-24)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.9.0 (2021-06-05)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210527
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.8.0 (2021-05-19)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
20
|
+
### v0.7.0 (2021-05-01)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210424
|
23
|
+
|
3
24
|
### v0.6.0 (2021-03-27)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210319
|
@@ -120,6 +120,12 @@ module Google
|
|
120
120
|
attr_accessor :enable_fuse
|
121
121
|
alias_method :enable_fuse?, :enable_fuse
|
122
122
|
|
123
|
+
# Holds encrypted information that is only decrypted and stored in RAM by the
|
124
|
+
# worker VM when running the pipeline.
|
125
|
+
# Corresponds to the JSON property `encryptedEnvironment`
|
126
|
+
# @return [Google::Apis::LifesciencesV2beta::Secret]
|
127
|
+
attr_accessor :encrypted_environment
|
128
|
+
|
123
129
|
# If specified, overrides the `ENTRYPOINT` specified in the container.
|
124
130
|
# Corresponds to the JSON property `entrypoint`
|
125
131
|
# @return [String]
|
@@ -236,6 +242,7 @@ module Google
|
|
236
242
|
@disable_image_prefetch = args[:disable_image_prefetch] if args.key?(:disable_image_prefetch)
|
237
243
|
@disable_standard_error_capture = args[:disable_standard_error_capture] if args.key?(:disable_standard_error_capture)
|
238
244
|
@enable_fuse = args[:enable_fuse] if args.key?(:enable_fuse)
|
245
|
+
@encrypted_environment = args[:encrypted_environment] if args.key?(:encrypted_environment)
|
239
246
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
240
247
|
@environment = args[:environment] if args.key?(:environment)
|
241
248
|
@ignore_exit_status = args[:ignore_exit_status] if args.key?(:ignore_exit_status)
|
@@ -945,6 +952,12 @@ module Google
|
|
945
952
|
# @return [Array<Google::Apis::LifesciencesV2beta::Action>]
|
946
953
|
attr_accessor :actions
|
947
954
|
|
955
|
+
# Holds encrypted information that is only decrypted and stored in RAM by the
|
956
|
+
# worker VM when running the pipeline.
|
957
|
+
# Corresponds to the JSON property `encryptedEnvironment`
|
958
|
+
# @return [Google::Apis::LifesciencesV2beta::Secret]
|
959
|
+
attr_accessor :encrypted_environment
|
960
|
+
|
948
961
|
# The environment to pass into every action. Each action can also specify
|
949
962
|
# additional environment variables but cannot delete an entry from this map (
|
950
963
|
# though they can overwrite it with a different value).
|
@@ -973,6 +986,7 @@ module Google
|
|
973
986
|
# Update properties of this object
|
974
987
|
def update!(**args)
|
975
988
|
@actions = args[:actions] if args.key?(:actions)
|
989
|
+
@encrypted_environment = args[:encrypted_environment] if args.key?(:encrypted_environment)
|
976
990
|
@environment = args[:environment] if args.key?(:environment)
|
977
991
|
@resources = args[:resources] if args.key?(:resources)
|
978
992
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -1332,6 +1346,12 @@ module Google
|
|
1332
1346
|
attr_accessor :preemptible
|
1333
1347
|
alias_method :preemptible?, :preemptible
|
1334
1348
|
|
1349
|
+
# If specified, the VM will only be allocated inside the matching reservation.
|
1350
|
+
# It will fail if the VM parameters don't match the reservation.
|
1351
|
+
# Corresponds to the JSON property `reservation`
|
1352
|
+
# @return [String]
|
1353
|
+
attr_accessor :reservation
|
1354
|
+
|
1335
1355
|
# Carries information about a Google Cloud service account.
|
1336
1356
|
# Corresponds to the JSON property `serviceAccount`
|
1337
1357
|
# @return [Google::Apis::LifesciencesV2beta::ServiceAccount]
|
@@ -1361,6 +1381,7 @@ module Google
|
|
1361
1381
|
@network = args[:network] if args.key?(:network)
|
1362
1382
|
@nvidia_driver_version = args[:nvidia_driver_version] if args.key?(:nvidia_driver_version)
|
1363
1383
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
1384
|
+
@reservation = args[:reservation] if args.key?(:reservation)
|
1364
1385
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1365
1386
|
@volumes = args[:volumes] if args.key?(:volumes)
|
1366
1387
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module LifesciencesV2beta
|
18
18
|
# Version of the google-apis-lifesciences_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210527"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -252,6 +252,8 @@ module Google
|
|
252
252
|
property :disable_image_prefetch, as: 'disableImagePrefetch'
|
253
253
|
property :disable_standard_error_capture, as: 'disableStandardErrorCapture'
|
254
254
|
property :enable_fuse, as: 'enableFuse'
|
255
|
+
property :encrypted_environment, as: 'encryptedEnvironment', class: Google::Apis::LifesciencesV2beta::Secret, decorator: Google::Apis::LifesciencesV2beta::Secret::Representation
|
256
|
+
|
255
257
|
property :entrypoint, as: 'entrypoint'
|
256
258
|
hash :environment, as: 'environment'
|
257
259
|
property :ignore_exit_status, as: 'ignoreExitStatus'
|
@@ -460,6 +462,8 @@ module Google
|
|
460
462
|
class Representation < Google::Apis::Core::JsonRepresentation
|
461
463
|
collection :actions, as: 'actions', class: Google::Apis::LifesciencesV2beta::Action, decorator: Google::Apis::LifesciencesV2beta::Action::Representation
|
462
464
|
|
465
|
+
property :encrypted_environment, as: 'encryptedEnvironment', class: Google::Apis::LifesciencesV2beta::Secret, decorator: Google::Apis::LifesciencesV2beta::Secret::Representation
|
466
|
+
|
463
467
|
hash :environment, as: 'environment'
|
464
468
|
property :resources, as: 'resources', class: Google::Apis::LifesciencesV2beta::Resources, decorator: Google::Apis::LifesciencesV2beta::Resources::Representation
|
465
469
|
|
@@ -558,6 +562,7 @@ module Google
|
|
558
562
|
|
559
563
|
property :nvidia_driver_version, as: 'nvidiaDriverVersion'
|
560
564
|
property :preemptible, as: 'preemptible'
|
565
|
+
property :reservation, as: 'reservation'
|
561
566
|
property :service_account, as: 'serviceAccount', class: Google::Apis::LifesciencesV2beta::ServiceAccount, decorator: Google::Apis::LifesciencesV2beta::ServiceAccount::Representation
|
562
567
|
|
563
568
|
collection :volumes, as: 'volumes', class: Google::Apis::LifesciencesV2beta::Volume, decorator: Google::Apis::LifesciencesV2beta::Volume::Representation
|
@@ -88,7 +88,7 @@ module Google
|
|
88
88
|
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
89
89
|
# AIP-160](https://google.aip.dev/160).
|
90
90
|
# @param [Fixnum] page_size
|
91
|
-
# The maximum number of results to return. If not set, the service
|
91
|
+
# The maximum number of results to return. If not set, the service selects a
|
92
92
|
# default.
|
93
93
|
# @param [String] page_token
|
94
94
|
# A page token received from the `next_page_token` field in the response. Send
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-lifesciences_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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-07-05 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.4'
|
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.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Life Sciences API V2beta. 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-lifesciences_v2beta/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-lifesciences_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-lifesciences_v2beta/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-lifesciences_v2beta
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Life Sciences API V2beta
|