google-apis-genomics_v2alpha1 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/genomics_v2alpha1.rb +1 -1
- data/lib/google/apis/genomics_v2alpha1/classes.rb +32 -164
- data/lib/google/apis/genomics_v2alpha1/gem_version.rb +3 -3
- data/lib/google/apis/genomics_v2alpha1/representations.rb +6 -67
- data/lib/google/apis/genomics_v2alpha1/service.rb +5 -10
- 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: fc0d13584a6b858bf05bc986ee1683a48946c81dbf6b54acf9555b85dec2d953
|
4
|
+
data.tar.gz: '09685aa8cfaae3a3ac6f6299be1cfd8419ef8396a3d30e86541bd425b1c3d1a0'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2d5fcfd8c5f448d190a2357974955d135c1baa566a0b069331a98dfd71623a8fe73561d2c6a7f33cd1dcf2d9f0536b6e36a5b7a48c9960f228d1f73e1738586
|
7
|
+
data.tar.gz: 9519b6fdec6e5fb2c89bad2837bcb5fc0c76d30963558f77a5073ba96159da50d598278767c9fc9a4eae8f677fb5c6682a6340dd6a1b4f9d935f02cca17b8058
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-genomics_v2alpha1
|
2
2
|
|
3
|
+
### v0.6.0 (2021-05-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210512
|
6
|
+
|
7
|
+
### v0.5.0 (2021-03-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210322
|
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-10)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210209
|
19
|
+
|
20
|
+
### v0.2.0 (2021-01-27)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210125
|
23
|
+
* Regenerated using generator version 0.1.2
|
24
|
+
|
3
25
|
### v0.1.0 (2021-01-07)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20201231
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V2alpha1'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# View and manage Genomics data
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
# @return [Google::Apis::GenomicsV2alpha1::Secret]
|
71
71
|
attr_accessor :credentials
|
72
72
|
|
73
|
+
# Holds encrypted information that is only decrypted and stored in RAM by the
|
74
|
+
# worker VM when running the pipeline.
|
75
|
+
# Corresponds to the JSON property `encryptedEnvironment`
|
76
|
+
# @return [Google::Apis::GenomicsV2alpha1::Secret]
|
77
|
+
attr_accessor :encrypted_environment
|
78
|
+
|
73
79
|
# If specified, overrides the `ENTRYPOINT` specified in the container.
|
74
80
|
# Corresponds to the JSON property `entrypoint`
|
75
81
|
# @return [String]
|
@@ -170,6 +176,7 @@ module Google
|
|
170
176
|
def update!(**args)
|
171
177
|
@commands = args[:commands] if args.key?(:commands)
|
172
178
|
@credentials = args[:credentials] if args.key?(:credentials)
|
179
|
+
@encrypted_environment = args[:encrypted_environment] if args.key?(:encrypted_environment)
|
173
180
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
174
181
|
@environment = args[:environment] if args.key?(:environment)
|
175
182
|
@flags = args[:flags] if args.key?(:flags)
|
@@ -266,6 +273,11 @@ module Google
|
|
266
273
|
# @return [String]
|
267
274
|
attr_accessor :deadline
|
268
275
|
|
276
|
+
# Feature configuration for the operation.
|
277
|
+
# Corresponds to the JSON property `features`
|
278
|
+
# @return [Hash<String,Object>]
|
279
|
+
attr_accessor :features
|
280
|
+
|
269
281
|
# The metadata that describes the operation assigned to the worker.
|
270
282
|
# Corresponds to the JSON property `metadata`
|
271
283
|
# @return [Hash<String,Object>]
|
@@ -278,48 +290,11 @@ module Google
|
|
278
290
|
# Update properties of this object
|
279
291
|
def update!(**args)
|
280
292
|
@deadline = args[:deadline] if args.key?(:deadline)
|
293
|
+
@features = args[:features] if args.key?(:features)
|
281
294
|
@metadata = args[:metadata] if args.key?(:metadata)
|
282
295
|
end
|
283
296
|
end
|
284
297
|
|
285
|
-
# Describes a Compute Engine resource that is being managed by a running
|
286
|
-
# pipeline.
|
287
|
-
class ComputeEngine
|
288
|
-
include Google::Apis::Core::Hashable
|
289
|
-
|
290
|
-
# The names of the disks that were created for this pipeline.
|
291
|
-
# Corresponds to the JSON property `diskNames`
|
292
|
-
# @return [Array<String>]
|
293
|
-
attr_accessor :disk_names
|
294
|
-
|
295
|
-
# The instance on which the operation is running.
|
296
|
-
# Corresponds to the JSON property `instanceName`
|
297
|
-
# @return [String]
|
298
|
-
attr_accessor :instance_name
|
299
|
-
|
300
|
-
# The machine type of the instance.
|
301
|
-
# Corresponds to the JSON property `machineType`
|
302
|
-
# @return [String]
|
303
|
-
attr_accessor :machine_type
|
304
|
-
|
305
|
-
# The availability zone in which the instance resides.
|
306
|
-
# Corresponds to the JSON property `zone`
|
307
|
-
# @return [String]
|
308
|
-
attr_accessor :zone
|
309
|
-
|
310
|
-
def initialize(**args)
|
311
|
-
update!(**args)
|
312
|
-
end
|
313
|
-
|
314
|
-
# Update properties of this object
|
315
|
-
def update!(**args)
|
316
|
-
@disk_names = args[:disk_names] if args.key?(:disk_names)
|
317
|
-
@instance_name = args[:instance_name] if args.key?(:instance_name)
|
318
|
-
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
319
|
-
@zone = args[:zone] if args.key?(:zone)
|
320
|
-
end
|
321
|
-
end
|
322
|
-
|
323
298
|
# An event generated when a container is forcibly terminated by the worker.
|
324
299
|
# Currently, this only occurs when the container outlives the timeout specified
|
325
300
|
# by the user.
|
@@ -842,110 +817,6 @@ module Google
|
|
842
817
|
end
|
843
818
|
end
|
844
819
|
|
845
|
-
# An event that occurred during an Operation.
|
846
|
-
class OperationEvent
|
847
|
-
include Google::Apis::Core::Hashable
|
848
|
-
|
849
|
-
# Required description of event.
|
850
|
-
# Corresponds to the JSON property `description`
|
851
|
-
# @return [String]
|
852
|
-
attr_accessor :description
|
853
|
-
|
854
|
-
# Optional time of when event finished. An event can have a start time and no
|
855
|
-
# finish time. If an event has a finish time, there must be a start time.
|
856
|
-
# Corresponds to the JSON property `endTime`
|
857
|
-
# @return [String]
|
858
|
-
attr_accessor :end_time
|
859
|
-
|
860
|
-
# Optional time of when event started.
|
861
|
-
# Corresponds to the JSON property `startTime`
|
862
|
-
# @return [String]
|
863
|
-
attr_accessor :start_time
|
864
|
-
|
865
|
-
def initialize(**args)
|
866
|
-
update!(**args)
|
867
|
-
end
|
868
|
-
|
869
|
-
# Update properties of this object
|
870
|
-
def update!(**args)
|
871
|
-
@description = args[:description] if args.key?(:description)
|
872
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
873
|
-
@start_time = args[:start_time] if args.key?(:start_time)
|
874
|
-
end
|
875
|
-
end
|
876
|
-
|
877
|
-
# Metadata describing an Operation.
|
878
|
-
class OperationMetadata
|
879
|
-
include Google::Apis::Core::Hashable
|
880
|
-
|
881
|
-
# This field is deprecated. Use `labels` instead. Optionally provided by the
|
882
|
-
# caller when submitting the request that creates the operation.
|
883
|
-
# Corresponds to the JSON property `clientId`
|
884
|
-
# @return [String]
|
885
|
-
attr_accessor :client_id
|
886
|
-
|
887
|
-
# The time at which the job was submitted to the Genomics service.
|
888
|
-
# Corresponds to the JSON property `createTime`
|
889
|
-
# @return [String]
|
890
|
-
attr_accessor :create_time
|
891
|
-
|
892
|
-
# The time at which the job stopped running.
|
893
|
-
# Corresponds to the JSON property `endTime`
|
894
|
-
# @return [String]
|
895
|
-
attr_accessor :end_time
|
896
|
-
|
897
|
-
# Optional event messages that were generated during the job's execution. This
|
898
|
-
# also contains any warnings that were generated during import or export.
|
899
|
-
# Corresponds to the JSON property `events`
|
900
|
-
# @return [Array<Google::Apis::GenomicsV2alpha1::OperationEvent>]
|
901
|
-
attr_accessor :events
|
902
|
-
|
903
|
-
# Optionally provided by the caller when submitting the request that creates the
|
904
|
-
# operation.
|
905
|
-
# Corresponds to the JSON property `labels`
|
906
|
-
# @return [Hash<String,String>]
|
907
|
-
attr_accessor :labels
|
908
|
-
|
909
|
-
# The Google Cloud Project in which the job is scoped.
|
910
|
-
# Corresponds to the JSON property `projectId`
|
911
|
-
# @return [String]
|
912
|
-
attr_accessor :project_id
|
913
|
-
|
914
|
-
# The original request that started the operation. Note that this will be in
|
915
|
-
# current version of the API. If the operation was started with v1beta2 API and
|
916
|
-
# a GetOperation is performed on v1 API, a v1 request will be returned.
|
917
|
-
# Corresponds to the JSON property `request`
|
918
|
-
# @return [Hash<String,Object>]
|
919
|
-
attr_accessor :request
|
920
|
-
|
921
|
-
# Runtime metadata on this Operation.
|
922
|
-
# Corresponds to the JSON property `runtimeMetadata`
|
923
|
-
# @return [Hash<String,Object>]
|
924
|
-
attr_accessor :runtime_metadata
|
925
|
-
|
926
|
-
# The time at which the job began to run.
|
927
|
-
# Corresponds to the JSON property `startTime`
|
928
|
-
# @return [String]
|
929
|
-
attr_accessor :start_time
|
930
|
-
|
931
|
-
def initialize(**args)
|
932
|
-
update!(**args)
|
933
|
-
end
|
934
|
-
|
935
|
-
# Update properties of this object
|
936
|
-
def update!(**args)
|
937
|
-
@client_id = args[:client_id] if args.key?(:client_id)
|
938
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
939
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
940
|
-
@events = args[:events] if args.key?(:events)
|
941
|
-
@labels = args[:labels] if args.key?(:labels)
|
942
|
-
@project_id = args[:project_id] if args.key?(:project_id)
|
943
|
-
@request = args[:request] if args.key?(:request)
|
944
|
-
@runtime_metadata = args[:runtime_metadata] if args.key?(:runtime_metadata)
|
945
|
-
@start_time = args[:start_time] if args.key?(:start_time)
|
946
|
-
end
|
947
|
-
end
|
948
|
-
|
949
820
|
# Configuration for a persistent disk to be attached to the VM. See https://
|
950
821
|
# cloud.google.com/compute/docs/disks/performance for more information about
|
951
822
|
# disk type, size, and performance considerations.
|
@@ -992,6 +863,12 @@ module Google
|
|
992
863
|
# @return [Array<Google::Apis::GenomicsV2alpha1::Action>]
|
993
864
|
attr_accessor :actions
|
994
865
|
|
866
|
+
# Holds encrypted information that is only decrypted and stored in RAM by the
|
867
|
+
# worker VM when running the pipeline.
|
868
|
+
# Corresponds to the JSON property `encryptedEnvironment`
|
869
|
+
# @return [Google::Apis::GenomicsV2alpha1::Secret]
|
870
|
+
attr_accessor :encrypted_environment
|
871
|
+
|
995
872
|
# The environment to pass into every action. Each action can also specify
|
996
873
|
# additional environment variables but cannot delete an entry from this map (
|
997
874
|
# though they can overwrite it with a different value).
|
@@ -1020,6 +897,7 @@ module Google
|
|
1020
897
|
# Update properties of this object
|
1021
898
|
def update!(**args)
|
1022
899
|
@actions = args[:actions] if args.key?(:actions)
|
900
|
+
@encrypted_environment = args[:encrypted_environment] if args.key?(:encrypted_environment)
|
1023
901
|
@environment = args[:environment] if args.key?(:environment)
|
1024
902
|
@resources = args[:resources] if args.key?(:resources)
|
1025
903
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -1124,6 +1002,14 @@ module Google
|
|
1124
1002
|
# @return [Google::Apis::GenomicsV2alpha1::Pipeline]
|
1125
1003
|
attr_accessor :pipeline
|
1126
1004
|
|
1005
|
+
# The name of an existing Pub/Sub topic. The server will publish messages to
|
1006
|
+
# this topic whenever the status of the operation changes. The Genomics Service
|
1007
|
+
# Agent account must have publisher permissions to the specified topic or
|
1008
|
+
# notifications will not be sent.
|
1009
|
+
# Corresponds to the JSON property `pubSubTopic`
|
1010
|
+
# @return [String]
|
1011
|
+
attr_accessor :pub_sub_topic
|
1012
|
+
|
1127
1013
|
def initialize(**args)
|
1128
1014
|
update!(**args)
|
1129
1015
|
end
|
@@ -1132,6 +1018,7 @@ module Google
|
|
1132
1018
|
def update!(**args)
|
1133
1019
|
@labels = args[:labels] if args.key?(:labels)
|
1134
1020
|
@pipeline = args[:pipeline] if args.key?(:pipeline)
|
1021
|
+
@pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
|
1135
1022
|
end
|
1136
1023
|
end
|
1137
1024
|
|
@@ -1149,27 +1036,6 @@ module Google
|
|
1149
1036
|
end
|
1150
1037
|
end
|
1151
1038
|
|
1152
|
-
# Runtime metadata that will be populated in the runtimeMetadata field of the
|
1153
|
-
# Operation associated with a RunPipeline execution.
|
1154
|
-
class RuntimeMetadata
|
1155
|
-
include Google::Apis::Core::Hashable
|
1156
|
-
|
1157
|
-
# Describes a Compute Engine resource that is being managed by a running
|
1158
|
-
# pipeline.
|
1159
|
-
# Corresponds to the JSON property `computeEngine`
|
1160
|
-
# @return [Google::Apis::GenomicsV2alpha1::ComputeEngine]
|
1161
|
-
attr_accessor :compute_engine
|
1162
|
-
|
1163
|
-
def initialize(**args)
|
1164
|
-
update!(**args)
|
1165
|
-
end
|
1166
|
-
|
1167
|
-
# Update properties of this object
|
1168
|
-
def update!(**args)
|
1169
|
-
@compute_engine = args[:compute_engine] if args.key?(:compute_engine)
|
1170
|
-
end
|
1171
|
-
end
|
1172
|
-
|
1173
1039
|
# Holds encrypted information that is only decrypted and stored in RAM by the
|
1174
1040
|
# worker VM when running the pipeline.
|
1175
1041
|
class Secret
|
@@ -1370,7 +1236,9 @@ module Google
|
|
1370
1236
|
# of the tags used or the latest version will still be pulled. The root
|
1371
1237
|
# directory of the ext4 image must contain `image` and `overlay2` directories
|
1372
1238
|
# copied from the Docker directory of a VM where the desired Docker images have
|
1373
|
-
# already been pulled.
|
1239
|
+
# already been pulled. Any images pulled that are not cached will be stored on
|
1240
|
+
# the first cache disk instead of the boot disk. Only a single image is
|
1241
|
+
# supported.
|
1374
1242
|
# Corresponds to the JSON property `dockerCacheImages`
|
1375
1243
|
# @return [Array<String>]
|
1376
1244
|
attr_accessor :docker_cache_images
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GenomicsV2alpha1
|
18
18
|
# Version of the google-apis-genomics_v2alpha1 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 = "20210512"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,12 +52,6 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
-
class ComputeEngine
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
-
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
59
|
-
end
|
60
|
-
|
61
55
|
class ContainerKilledEvent
|
62
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
57
|
|
@@ -154,18 +148,6 @@ module Google
|
|
154
148
|
include Google::Apis::Core::JsonObjectSupport
|
155
149
|
end
|
156
150
|
|
157
|
-
class OperationEvent
|
158
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
-
|
160
|
-
include Google::Apis::Core::JsonObjectSupport
|
161
|
-
end
|
162
|
-
|
163
|
-
class OperationMetadata
|
164
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
-
|
166
|
-
include Google::Apis::Core::JsonObjectSupport
|
167
|
-
end
|
168
|
-
|
169
151
|
class PersistentDisk
|
170
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
153
|
|
@@ -208,12 +190,6 @@ module Google
|
|
208
190
|
include Google::Apis::Core::JsonObjectSupport
|
209
191
|
end
|
210
192
|
|
211
|
-
class RuntimeMetadata
|
212
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
-
|
214
|
-
include Google::Apis::Core::JsonObjectSupport
|
215
|
-
end
|
216
|
-
|
217
193
|
class Secret
|
218
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
195
|
|
@@ -288,6 +264,8 @@ module Google
|
|
288
264
|
collection :commands, as: 'commands'
|
289
265
|
property :credentials, as: 'credentials', class: Google::Apis::GenomicsV2alpha1::Secret, decorator: Google::Apis::GenomicsV2alpha1::Secret::Representation
|
290
266
|
|
267
|
+
property :encrypted_environment, as: 'encryptedEnvironment', class: Google::Apis::GenomicsV2alpha1::Secret, decorator: Google::Apis::GenomicsV2alpha1::Secret::Representation
|
268
|
+
|
291
269
|
property :entrypoint, as: 'entrypoint'
|
292
270
|
hash :environment, as: 'environment'
|
293
271
|
collection :flags, as: 'flags'
|
@@ -328,20 +306,11 @@ module Google
|
|
328
306
|
# @private
|
329
307
|
class Representation < Google::Apis::Core::JsonRepresentation
|
330
308
|
property :deadline, as: 'deadline'
|
309
|
+
hash :features, as: 'features'
|
331
310
|
hash :metadata, as: 'metadata'
|
332
311
|
end
|
333
312
|
end
|
334
313
|
|
335
|
-
class ComputeEngine
|
336
|
-
# @private
|
337
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
338
|
-
collection :disk_names, as: 'diskNames'
|
339
|
-
property :instance_name, as: 'instanceName'
|
340
|
-
property :machine_type, as: 'machineType'
|
341
|
-
property :zone, as: 'zone'
|
342
|
-
end
|
343
|
-
end
|
344
|
-
|
345
314
|
class ContainerKilledEvent
|
346
315
|
# @private
|
347
316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -483,31 +452,6 @@ module Google
|
|
483
452
|
end
|
484
453
|
end
|
485
454
|
|
486
|
-
class OperationEvent
|
487
|
-
# @private
|
488
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
489
|
-
property :description, as: 'description'
|
490
|
-
property :end_time, as: 'endTime'
|
491
|
-
property :start_time, as: 'startTime'
|
492
|
-
end
|
493
|
-
end
|
494
|
-
|
495
|
-
class OperationMetadata
|
496
|
-
# @private
|
497
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
498
|
-
property :client_id, as: 'clientId'
|
499
|
-
property :create_time, as: 'createTime'
|
500
|
-
property :end_time, as: 'endTime'
|
501
|
-
collection :events, as: 'events', class: Google::Apis::GenomicsV2alpha1::OperationEvent, decorator: Google::Apis::GenomicsV2alpha1::OperationEvent::Representation
|
502
|
-
|
503
|
-
hash :labels, as: 'labels'
|
504
|
-
property :project_id, as: 'projectId'
|
505
|
-
hash :request, as: 'request'
|
506
|
-
hash :runtime_metadata, as: 'runtimeMetadata'
|
507
|
-
property :start_time, as: 'startTime'
|
508
|
-
end
|
509
|
-
end
|
510
|
-
|
511
455
|
class PersistentDisk
|
512
456
|
# @private
|
513
457
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -522,6 +466,8 @@ module Google
|
|
522
466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
523
467
|
collection :actions, as: 'actions', class: Google::Apis::GenomicsV2alpha1::Action, decorator: Google::Apis::GenomicsV2alpha1::Action::Representation
|
524
468
|
|
469
|
+
property :encrypted_environment, as: 'encryptedEnvironment', class: Google::Apis::GenomicsV2alpha1::Secret, decorator: Google::Apis::GenomicsV2alpha1::Secret::Representation
|
470
|
+
|
525
471
|
hash :environment, as: 'environment'
|
526
472
|
property :resources, as: 'resources', class: Google::Apis::GenomicsV2alpha1::Resources, decorator: Google::Apis::GenomicsV2alpha1::Resources::Representation
|
527
473
|
|
@@ -560,6 +506,7 @@ module Google
|
|
560
506
|
hash :labels, as: 'labels'
|
561
507
|
property :pipeline, as: 'pipeline', class: Google::Apis::GenomicsV2alpha1::Pipeline, decorator: Google::Apis::GenomicsV2alpha1::Pipeline::Representation
|
562
508
|
|
509
|
+
property :pub_sub_topic, as: 'pubSubTopic'
|
563
510
|
end
|
564
511
|
end
|
565
512
|
|
@@ -569,14 +516,6 @@ module Google
|
|
569
516
|
end
|
570
517
|
end
|
571
518
|
|
572
|
-
class RuntimeMetadata
|
573
|
-
# @private
|
574
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
575
|
-
property :compute_engine, as: 'computeEngine', class: Google::Apis::GenomicsV2alpha1::ComputeEngine, decorator: Google::Apis::GenomicsV2alpha1::ComputeEngine::Representation
|
576
|
-
|
577
|
-
end
|
578
|
-
end
|
579
|
-
|
580
519
|
class Secret
|
581
520
|
# @private
|
582
521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -173,16 +173,11 @@ module Google
|
|
173
173
|
# pipeline is running, this value is NULL. Once the pipeline finishes, the value
|
174
174
|
# is the standard Google error code. * labels.key or labels."key with space"
|
175
175
|
# where key is a label key. * done: If the pipeline is running, this value is
|
176
|
-
# false. Once the pipeline finishes, the value is true.
|
177
|
-
#
|
178
|
-
#
|
179
|
-
#
|
180
|
-
#
|
181
|
-
# CANCELED`. Only one status may be specified. * labels.key where key is a label
|
182
|
-
# key. Examples: * `projectId = my-project AND createTime >= 1432140000` * `
|
183
|
-
# projectId = my-project AND createTime >= 1432140000 AND createTime <=
|
184
|
-
# 1432150000 AND status = RUNNING` * `projectId = my-project AND labels.color = *
|
185
|
-
# ` * `projectId = my-project AND labels.color = red`
|
176
|
+
# false. Once the pipeline finishes, the value is true. Examples: * `projectId =
|
177
|
+
# my-project AND createTime >= 1432140000` * `projectId = my-project AND
|
178
|
+
# createTime >= 1432140000 AND createTime <= 1432150000 AND status = RUNNING` * `
|
179
|
+
# projectId = my-project AND labels.color = *` * `projectId = my-project AND
|
180
|
+
# labels.color = red`
|
186
181
|
# @param [Fixnum] page_size
|
187
182
|
# The maximum number of results to return. The maximum value is 256.
|
188
183
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-genomics_v2alpha1
|
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-05-18 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-genomics_v2alpha1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-genomics_v2alpha1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-genomics_v2alpha1/v0.6.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-genomics_v2alpha1
|
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.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Genomics API V2alpha1
|