google-apis-lifesciences_v2beta 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 +22 -0
- data/lib/google/apis/lifesciences_v2beta.rb +1 -1
- data/lib/google/apis/lifesciences_v2beta/classes.rb +19 -1
- data/lib/google/apis/lifesciences_v2beta/gem_version.rb +3 -3
- data/lib/google/apis/lifesciences_v2beta/representations.rb +2 -0
- data/lib/google/apis/lifesciences_v2beta/service.rb +7 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 296395f55a809c2d8cf1231c8c080937976a61cc8a1874e4bdcf43123c52f220
|
4
|
+
data.tar.gz: ec449d2e0dd804b6271e02e0cdb24e9f5394000b443b706708d504873bc5d724
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97a318246d3750e990d7814c186d76183fc95e1f78da9d344d4528a3b9d5326e18fd7b2b46701af46567488842c0c88d27d15267737ef69bf0c8af990d20c76c
|
7
|
+
data.tar.gz: ba8c2bd10f1167551519a1d93a26721b926f7fba4f14767f5d318b97e8eed551e68aac27a048b440de4e9650ccd4c3e449bde9d858bcbce5d984264f671e1100
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-lifesciences_v2beta
|
2
2
|
|
3
|
+
### v0.6.0 (2021-03-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210319
|
6
|
+
|
7
|
+
### v0.5.0 (2021-03-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210314
|
10
|
+
* Regenerated using generator version 0.2.0
|
11
|
+
|
12
|
+
### v0.4.0 (2021-03-04)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.3.0 (2021-02-17)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210206
|
19
|
+
* Regenerated using generator version 0.1.2
|
20
|
+
|
21
|
+
### v0.2.0 (2021-01-19)
|
22
|
+
|
23
|
+
* Regenerated from discovery document revision 20210109
|
24
|
+
|
3
25
|
### v0.1.0 (2021-01-07)
|
4
26
|
|
5
27
|
* Regenerated using generator version 0.1.1
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V2beta'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -726,6 +726,12 @@ module Google
|
|
726
726
|
# @return [Google::Apis::LifesciencesV2beta::Pipeline]
|
727
727
|
attr_accessor :pipeline
|
728
728
|
|
729
|
+
# The name of the Cloud Pub/Sub topic where notifications of operation status
|
730
|
+
# changes are sent.
|
731
|
+
# Corresponds to the JSON property `pubSubTopic`
|
732
|
+
# @return [String]
|
733
|
+
attr_accessor :pub_sub_topic
|
734
|
+
|
729
735
|
# The first time at which resources were allocated to execute the pipeline.
|
730
736
|
# Corresponds to the JSON property `startTime`
|
731
737
|
# @return [String]
|
@@ -742,6 +748,7 @@ module Google
|
|
742
748
|
@events = args[:events] if args.key?(:events)
|
743
749
|
@labels = args[:labels] if args.key?(:labels)
|
744
750
|
@pipeline = args[:pipeline] if args.key?(:pipeline)
|
751
|
+
@pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
|
745
752
|
@start_time = args[:start_time] if args.key?(:start_time)
|
746
753
|
end
|
747
754
|
end
|
@@ -1064,6 +1071,14 @@ module Google
|
|
1064
1071
|
# @return [Google::Apis::LifesciencesV2beta::Pipeline]
|
1065
1072
|
attr_accessor :pipeline
|
1066
1073
|
|
1074
|
+
# The name of an existing Pub/Sub topic. The server will publish messages to
|
1075
|
+
# this topic whenever the status of the operation changes. The Life Sciences
|
1076
|
+
# Service Agent account must have publisher permissions to the specified topic
|
1077
|
+
# or notifications will not be sent.
|
1078
|
+
# Corresponds to the JSON property `pubSubTopic`
|
1079
|
+
# @return [String]
|
1080
|
+
attr_accessor :pub_sub_topic
|
1081
|
+
|
1067
1082
|
def initialize(**args)
|
1068
1083
|
update!(**args)
|
1069
1084
|
end
|
@@ -1072,6 +1087,7 @@ module Google
|
|
1072
1087
|
def update!(**args)
|
1073
1088
|
@labels = args[:labels] if args.key?(:labels)
|
1074
1089
|
@pipeline = args[:pipeline] if args.key?(:pipeline)
|
1090
|
+
@pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
|
1075
1091
|
end
|
1076
1092
|
end
|
1077
1093
|
|
@@ -1263,7 +1279,9 @@ module Google
|
|
1263
1279
|
# of the tags used or the latest version will still be pulled. The root
|
1264
1280
|
# directory of the ext4 image must contain `image` and `overlay2` directories
|
1265
1281
|
# copied from the Docker directory of a VM where the desired Docker images have
|
1266
|
-
# already been pulled.
|
1282
|
+
# already been pulled. Any images pulled that are not cached will be stored on
|
1283
|
+
# the first cache disk instead of the boot disk. Only a single image is
|
1284
|
+
# supported.
|
1267
1285
|
# Corresponds to the JSON property `dockerCacheImages`
|
1268
1286
|
# @return [Array<String>]
|
1269
1287
|
attr_accessor :docker_cache_images
|
@@ -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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210319"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -404,6 +404,7 @@ module Google
|
|
404
404
|
hash :labels, as: 'labels'
|
405
405
|
property :pipeline, as: 'pipeline', class: Google::Apis::LifesciencesV2beta::Pipeline, decorator: Google::Apis::LifesciencesV2beta::Pipeline::Representation
|
406
406
|
|
407
|
+
property :pub_sub_topic, as: 'pubSubTopic'
|
407
408
|
property :start_time, as: 'startTime'
|
408
409
|
end
|
409
410
|
end
|
@@ -496,6 +497,7 @@ module Google
|
|
496
497
|
hash :labels, as: 'labels'
|
497
498
|
property :pipeline, as: 'pipeline', class: Google::Apis::LifesciencesV2beta::Pipeline, decorator: Google::Apis::LifesciencesV2beta::Pipeline::Representation
|
498
499
|
|
500
|
+
property :pub_sub_topic, as: 'pubSubTopic'
|
499
501
|
end
|
500
502
|
end
|
501
503
|
|
@@ -84,11 +84,15 @@ module Google
|
|
84
84
|
# @param [String] name
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
|
-
#
|
87
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
89
|
+
# AIP-160](https://google.aip.dev/160).
|
88
90
|
# @param [Fixnum] page_size
|
89
|
-
# The
|
91
|
+
# The maximum number of results to return. If not set, the service will select a
|
92
|
+
# default.
|
90
93
|
# @param [String] page_token
|
91
|
-
#
|
94
|
+
# A page token received from the `next_page_token` field in the response. Send
|
95
|
+
# that page token to receive the subsequent page.
|
92
96
|
# @param [String] fields
|
93
97
|
# Selector specifying which fields to include in a partial response.
|
94
98
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.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-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-lifesciences_v2beta/v0.6.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-lifesciences_v2beta
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.13
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Life Sciences API V2beta
|