google-cloud-ai_platform-v1 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c402a703cea1634661ad0f10b1df68992420a59a76f5f615e50c28bf036332c1
4
- data.tar.gz: bd54462ae55866c270a8684b20bd8364d6e0b6977e38750f38b1f233cd7e37cf
3
+ metadata.gz: 9e0f0901e313ad5a36849d8860a23ab471ed9d3cf26e0cc26013c91d6f00225d
4
+ data.tar.gz: 77fed0c78f95acfbf3f4a09c016fc4bdea3c2279545272a7376ece04915327b5
5
5
  SHA512:
6
- metadata.gz: 47e8c6b71ef8eeab3a4fa0e0330d94ca5bf278c21bfd7d8057340e723cbdc264713624d7c9dc974fb0ab4a3c894c84bad392649fdfddde54e5f8c7de5bb8c68b
7
- data.tar.gz: 767556151a14f3778cc202590fc26e5dea8269949372272c6606858421032691ec20dd71ffcf8bfd5b7b7f11dc6bede3d56154130fbf574a5383b7ba5951ba74
6
+ metadata.gz: 2425933e026298ed84a4929c64ce202e01e8a142f5b6b7ae1b318de8111a1e173cc8753bd4a5691f534c2b984835cbbcc0142b3a412304c9799922fbb1ed6fb5
7
+ data.tar.gz: 27824c873457b05039a76ab8f3343e7a2421158dae41f7d8eaa9d0ad1fd5c1d5b66c63a9ae182a03b75a287ae192695720770d1e38212fcc82f7c76ce533c4e5
@@ -869,7 +869,7 @@ module Google
869
869
  # @param options [::Gapic::CallOptions, ::Hash]
870
870
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
871
871
  #
872
- # @overload list_pipeline_jobs(parent: nil, filter: nil, page_size: nil, page_token: nil, order_by: nil)
872
+ # @overload list_pipeline_jobs(parent: nil, filter: nil, page_size: nil, page_token: nil, order_by: nil, read_mask: nil)
873
873
  # Pass arguments to `list_pipeline_jobs` via keyword arguments. Note that at
874
874
  # least one keyword argument is required. To specify no parameters, or to keep all
875
875
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -933,6 +933,8 @@ module Google
933
933
  # * `update_time`
934
934
  # * `end_time`
935
935
  # * `start_time`
936
+ # @param read_mask [::Google::Protobuf::FieldMask, ::Hash]
937
+ # Mask specifying which fields to read.
936
938
  #
937
939
  # @yield [response, operation] Access the result along with the RPC operation
938
940
  # @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::AIPlatform::V1::PipelineJob>]
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AIPlatform
23
23
  module V1
24
- VERSION = "0.11.0"
24
+ VERSION = "0.12.0"
25
25
  end
26
26
  end
27
27
  end
@@ -42,6 +42,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
42
42
  optional :gcs_output_directory, :string, 2
43
43
  map :parameter_values, :string, :message, 3, "google.protobuf.Value"
44
44
  optional :failure_policy, :enum, 4, "google.cloud.aiplatform.v1.PipelineFailurePolicy"
45
+ map :input_artifacts, :string, :message, 5, "google.cloud.aiplatform.v1.PipelineJob.RuntimeConfig.InputArtifact"
46
+ end
47
+ add_message "google.cloud.aiplatform.v1.PipelineJob.RuntimeConfig.InputArtifact" do
48
+ oneof :kind do
49
+ optional :artifact_id, :string, 1
50
+ end
45
51
  end
46
52
  add_message "google.cloud.aiplatform.v1.PipelineTemplateMetadata" do
47
53
  optional :version, :string, 3
@@ -108,6 +114,7 @@ module Google
108
114
  module V1
109
115
  PipelineJob = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineJob").msgclass
110
116
  PipelineJob::RuntimeConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineJob.RuntimeConfig").msgclass
117
+ PipelineJob::RuntimeConfig::InputArtifact = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineJob.RuntimeConfig.InputArtifact").msgclass
111
118
  PipelineTemplateMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineTemplateMetadata").msgclass
112
119
  PipelineJobDetail = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineJobDetail").msgclass
113
120
  PipelineTaskDetail = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.PipelineTaskDetail").msgclass
@@ -53,6 +53,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
53
53
  optional :page_size, :int32, 3
54
54
  optional :page_token, :string, 4
55
55
  optional :order_by, :string, 6
56
+ optional :read_mask, :message, 7, "google.protobuf.FieldMask"
56
57
  end
57
58
  add_message "google.cloud.aiplatform.v1.ListPipelineJobsResponse" do
58
59
  repeated :pipeline_jobs, :message, 1, "google.cloud.aiplatform.v1.PipelineJob"
@@ -142,10 +142,27 @@ module Google
142
142
  # However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it
143
143
  # will stop scheduling any new tasks when a task has failed. Any scheduled
144
144
  # tasks will continue to completion.
145
+ # @!attribute [rw] input_artifacts
146
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::PipelineJob::RuntimeConfig::InputArtifact}]
147
+ # The runtime artifacts of the PipelineJob. The key will be the input
148
+ # artifact name and the value would be one of the InputArtifact.
145
149
  class RuntimeConfig
146
150
  include ::Google::Protobuf::MessageExts
147
151
  extend ::Google::Protobuf::MessageExts::ClassMethods
148
152
 
153
+ # The type of an input artifact.
154
+ # @!attribute [rw] artifact_id
155
+ # @return [::String]
156
+ # Artifact resource id from MLMD. Which is the last portion of an
157
+ # artifact resource
158
+ # name(projects/\\{project}/locations/\\{location}/metadataStores/default/artifacts/\\{artifact_id}).
159
+ # The artifact must stay within the same project, location and default
160
+ # metadatastore as the pipeline.
161
+ class InputArtifact
162
+ include ::Google::Protobuf::MessageExts
163
+ extend ::Google::Protobuf::MessageExts::ClassMethods
164
+ end
165
+
149
166
  # @!attribute [rw] key
150
167
  # @return [::String]
151
168
  # @!attribute [rw] value
@@ -163,6 +180,15 @@ module Google
163
180
  include ::Google::Protobuf::MessageExts
164
181
  extend ::Google::Protobuf::MessageExts::ClassMethods
165
182
  end
183
+
184
+ # @!attribute [rw] key
185
+ # @return [::String]
186
+ # @!attribute [rw] value
187
+ # @return [::Google::Cloud::AIPlatform::V1::PipelineJob::RuntimeConfig::InputArtifact]
188
+ class InputArtifactsEntry
189
+ include ::Google::Protobuf::MessageExts
190
+ extend ::Google::Protobuf::MessageExts::ClassMethods
191
+ end
166
192
  end
167
193
 
168
194
  # @!attribute [rw] key
@@ -218,6 +218,9 @@ module Google
218
218
  # * `update_time`
219
219
  # * `end_time`
220
220
  # * `start_time`
221
+ # @!attribute [rw] read_mask
222
+ # @return [::Google::Protobuf::FieldMask]
223
+ # Mask specifying which fields to read.
221
224
  class ListPipelineJobsRequest
222
225
  include ::Google::Protobuf::MessageExts
223
226
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-ai_platform-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.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: 2022-08-24 00:00:00.000000000 Z
11
+ date: 2022-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common