google-apis-lifesciences_v2beta 0.2.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2f49abfa2b401e0e55b17d2116a68e5709b41cb6f095461c1dc148767df24ea
4
- data.tar.gz: e60fea46fda893a92b2c41c6b5b234964dd20880e4e5645ecdf1a94c33e576f8
3
+ metadata.gz: 6c5d86b283acfff8de52cef78387708030b7fd091818e5dbf0d27ef440030633
4
+ data.tar.gz: c21fe031c99c71cf72d138bfee4ff7d8ebc4660bdd73dcc39bb1927d2bb91945
5
5
  SHA512:
6
- metadata.gz: bca72d9c343578612359dcc2e47593936c8924cf07e61cabd597724a886d853ea65b64a8a81247929a989f98cb64d51ca1e592e33ec3f961bed455903e3fa5c0
7
- data.tar.gz: d8e890c8fcde051cf1671e19d444481483a40a21aaa5c7773b61bd71804ea1893599f438725b539e2c660cd2a2794cd90387da5d4743697c944cddde74e21249
6
+ metadata.gz: bfff5f6e9c9ab050238da120b676a735525cc22777fd4ca44235a59b62ec7e43eae1a78856f3c6095ef0673537b8c6c5da8a3778164e852144480ac33a606b49
7
+ data.tar.gz: df4c983b4053f2978ceac9a56c3e02d270d0d937190fcc9bc37de50804add3b2ba47343cd42abeeb3f6bdee6e2839149a5cd406bab8496dd7790dc7db28dc79d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-lifesciences_v2beta
2
2
 
3
+ ### v0.7.0 (2021-05-01)
4
+
5
+ * Regenerated from discovery document revision 20210424
6
+
7
+ ### v0.6.0 (2021-03-27)
8
+
9
+ * Regenerated from discovery document revision 20210319
10
+
11
+ ### v0.5.0 (2021-03-20)
12
+
13
+ * Regenerated from discovery document revision 20210314
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.4.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.3.0 (2021-02-17)
21
+
22
+ * Regenerated from discovery document revision 20210206
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.2.0 (2021-01-19)
4
26
 
5
27
  * Regenerated from discovery document revision 20210109
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V2beta'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
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
@@ -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)
@@ -726,6 +733,12 @@ module Google
726
733
  # @return [Google::Apis::LifesciencesV2beta::Pipeline]
727
734
  attr_accessor :pipeline
728
735
 
736
+ # The name of the Cloud Pub/Sub topic where notifications of operation status
737
+ # changes are sent.
738
+ # Corresponds to the JSON property `pubSubTopic`
739
+ # @return [String]
740
+ attr_accessor :pub_sub_topic
741
+
729
742
  # The first time at which resources were allocated to execute the pipeline.
730
743
  # Corresponds to the JSON property `startTime`
731
744
  # @return [String]
@@ -742,6 +755,7 @@ module Google
742
755
  @events = args[:events] if args.key?(:events)
743
756
  @labels = args[:labels] if args.key?(:labels)
744
757
  @pipeline = args[:pipeline] if args.key?(:pipeline)
758
+ @pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
745
759
  @start_time = args[:start_time] if args.key?(:start_time)
746
760
  end
747
761
  end
@@ -938,6 +952,12 @@ module Google
938
952
  # @return [Array<Google::Apis::LifesciencesV2beta::Action>]
939
953
  attr_accessor :actions
940
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
+
941
961
  # The environment to pass into every action. Each action can also specify
942
962
  # additional environment variables but cannot delete an entry from this map (
943
963
  # though they can overwrite it with a different value).
@@ -966,6 +986,7 @@ module Google
966
986
  # Update properties of this object
967
987
  def update!(**args)
968
988
  @actions = args[:actions] if args.key?(:actions)
989
+ @encrypted_environment = args[:encrypted_environment] if args.key?(:encrypted_environment)
969
990
  @environment = args[:environment] if args.key?(:environment)
970
991
  @resources = args[:resources] if args.key?(:resources)
971
992
  @timeout = args[:timeout] if args.key?(:timeout)
@@ -1064,6 +1085,14 @@ module Google
1064
1085
  # @return [Google::Apis::LifesciencesV2beta::Pipeline]
1065
1086
  attr_accessor :pipeline
1066
1087
 
1088
+ # The name of an existing Pub/Sub topic. The server will publish messages to
1089
+ # this topic whenever the status of the operation changes. The Life Sciences
1090
+ # Service Agent account must have publisher permissions to the specified topic
1091
+ # or notifications will not be sent.
1092
+ # Corresponds to the JSON property `pubSubTopic`
1093
+ # @return [String]
1094
+ attr_accessor :pub_sub_topic
1095
+
1067
1096
  def initialize(**args)
1068
1097
  update!(**args)
1069
1098
  end
@@ -1072,6 +1101,7 @@ module Google
1072
1101
  def update!(**args)
1073
1102
  @labels = args[:labels] if args.key?(:labels)
1074
1103
  @pipeline = args[:pipeline] if args.key?(:pipeline)
1104
+ @pub_sub_topic = args[:pub_sub_topic] if args.key?(:pub_sub_topic)
1075
1105
  end
1076
1106
  end
1077
1107
 
@@ -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.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210109"
25
+ REVISION = "20210424"
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'
@@ -404,6 +406,7 @@ module Google
404
406
  hash :labels, as: 'labels'
405
407
  property :pipeline, as: 'pipeline', class: Google::Apis::LifesciencesV2beta::Pipeline, decorator: Google::Apis::LifesciencesV2beta::Pipeline::Representation
406
408
 
409
+ property :pub_sub_topic, as: 'pubSubTopic'
407
410
  property :start_time, as: 'startTime'
408
411
  end
409
412
  end
@@ -459,6 +462,8 @@ module Google
459
462
  class Representation < Google::Apis::Core::JsonRepresentation
460
463
  collection :actions, as: 'actions', class: Google::Apis::LifesciencesV2beta::Action, decorator: Google::Apis::LifesciencesV2beta::Action::Representation
461
464
 
465
+ property :encrypted_environment, as: 'encryptedEnvironment', class: Google::Apis::LifesciencesV2beta::Secret, decorator: Google::Apis::LifesciencesV2beta::Secret::Representation
466
+
462
467
  hash :environment, as: 'environment'
463
468
  property :resources, as: 'resources', class: Google::Apis::LifesciencesV2beta::Resources, decorator: Google::Apis::LifesciencesV2beta::Resources::Representation
464
469
 
@@ -496,6 +501,7 @@ module Google
496
501
  hash :labels, as: 'labels'
497
502
  property :pipeline, as: 'pipeline', class: Google::Apis::LifesciencesV2beta::Pipeline, decorator: Google::Apis::LifesciencesV2beta::Pipeline::Representation
498
503
 
504
+ property :pub_sub_topic, as: 'pubSubTopic'
499
505
  end
500
506
  end
501
507
 
@@ -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
- # The standard list filter.
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 standard list page size.
91
+ # The maximum number of results to return. If not set, the service selects a
92
+ # default.
90
93
  # @param [String] page_token
91
- # The standard list page token.
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.2.0
4
+ version: 0.7.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-02-08 00:00:00.000000000 Z
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-lifesciences_v2beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-lifesciences_v2beta/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-lifesciences_v2beta/v0.7.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.4'
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.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Life Sciences API V2beta