google-cloud-ai_platform-v1 0.25.0 → 0.27.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.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/ai_platform/v1/dataset_service/client.rb +103 -2
  3. data/lib/google/cloud/ai_platform/v1/dataset_service.rb +1 -2
  4. data/lib/google/cloud/ai_platform/v1/featurestore_service/client.rb +2 -1
  5. data/lib/google/cloud/ai_platform/v1/model_service/client.rb +103 -0
  6. data/lib/google/cloud/ai_platform/v1/tensorboard_service/client.rb +94 -94
  7. data/lib/google/cloud/ai_platform/v1/version.rb +1 -1
  8. data/lib/google/cloud/aiplatform/v1/dataset_pb.rb +1 -1
  9. data/lib/google/cloud/aiplatform/v1/dataset_service_pb.rb +2 -1
  10. data/lib/google/cloud/aiplatform/v1/dataset_service_services_pb.rb +3 -2
  11. data/lib/google/cloud/aiplatform/v1/featurestore_service_pb.rb +1 -1
  12. data/lib/google/cloud/aiplatform/v1/job_state_pb.rb +1 -1
  13. data/lib/google/cloud/aiplatform/v1/model_pb.rb +1 -1
  14. data/lib/google/cloud/aiplatform/v1/model_service_pb.rb +6 -1
  15. data/lib/google/cloud/aiplatform/v1/model_service_services_pb.rb +2 -0
  16. data/lib/google/cloud/aiplatform/v1/pipeline_job_pb.rb +1 -1
  17. data/lib/google/cloud/aiplatform/v1/tensorboard_service_pb.rb +5 -5
  18. data/lib/google/cloud/aiplatform/v1/tensorboard_service_services_pb.rb +2 -2
  19. data/proto_docs/google/cloud/aiplatform/v1/batch_prediction_job.rb +5 -0
  20. data/proto_docs/google/cloud/aiplatform/v1/dataset.rb +4 -0
  21. data/proto_docs/google/cloud/aiplatform/v1/dataset_service.rb +12 -0
  22. data/proto_docs/google/cloud/aiplatform/v1/featurestore_service.rb +2 -1
  23. data/proto_docs/google/cloud/aiplatform/v1/job_state.rb +3 -0
  24. data/proto_docs/google/cloud/aiplatform/v1/model.rb +2 -1
  25. data/proto_docs/google/cloud/aiplatform/v1/model_service.rb +32 -0
  26. data/proto_docs/google/cloud/aiplatform/v1/nas_job.rb +1 -1
  27. data/proto_docs/google/cloud/aiplatform/v1/pipeline_job.rb +13 -0
  28. data/proto_docs/google/cloud/aiplatform/v1/tensorboard_service.rb +52 -51
  29. metadata +2 -2
@@ -270,6 +270,30 @@ module Google
270
270
  extend ::Google::Protobuf::MessageExts::ClassMethods
271
271
  end
272
272
 
273
+ # Request message for
274
+ # {::Google::Cloud::AIPlatform::V1::ModelService::Client#update_explanation_dataset ModelService.UpdateExplanationDataset}.
275
+ # @!attribute [rw] model
276
+ # @return [::String]
277
+ # Required. The resource name of the Model to update.
278
+ # Format: `projects/{project}/locations/{location}/models/{model}`
279
+ # @!attribute [rw] examples
280
+ # @return [::Google::Cloud::AIPlatform::V1::Examples]
281
+ # The example config containing the location of the dataset.
282
+ class UpdateExplanationDatasetRequest
283
+ include ::Google::Protobuf::MessageExts
284
+ extend ::Google::Protobuf::MessageExts::ClassMethods
285
+ end
286
+
287
+ # Runtime operation information for
288
+ # {::Google::Cloud::AIPlatform::V1::ModelService::Client#update_explanation_dataset ModelService.UpdateExplanationDataset}.
289
+ # @!attribute [rw] generic_metadata
290
+ # @return [::Google::Cloud::AIPlatform::V1::GenericOperationMetadata]
291
+ # The common part of the operation metadata.
292
+ class UpdateExplanationDatasetOperationMetadata
293
+ include ::Google::Protobuf::MessageExts
294
+ extend ::Google::Protobuf::MessageExts::ClassMethods
295
+ end
296
+
273
297
  # Request message for
274
298
  # {::Google::Cloud::AIPlatform::V1::ModelService::Client#delete_model ModelService.DeleteModel}.
275
299
  # @!attribute [rw] name
@@ -396,6 +420,14 @@ module Google
396
420
  end
397
421
  end
398
422
 
423
+ # Response message of
424
+ # {::Google::Cloud::AIPlatform::V1::ModelService::Client#update_explanation_dataset ModelService.UpdateExplanationDataset}
425
+ # operation.
426
+ class UpdateExplanationDatasetResponse
427
+ include ::Google::Protobuf::MessageExts
428
+ extend ::Google::Protobuf::MessageExts::ClassMethods
429
+ end
430
+
399
431
  # Response message of
400
432
  # {::Google::Cloud::AIPlatform::V1::ModelService::Client#export_model ModelService.ExportModel}
401
433
  # operation.
@@ -89,7 +89,7 @@ module Google
89
89
  end
90
90
  end
91
91
 
92
- # Represents a NasTrial details along with it's parameters. If there is a
92
+ # Represents a NasTrial details along with its parameters. If there is a
93
93
  # corresponding train NasTrial, the train NasTrial is also returned.
94
94
  # @!attribute [r] name
95
95
  # @return [::String]
@@ -64,6 +64,9 @@ module Google
64
64
  # characters, underscores and dashes. International characters are allowed.
65
65
  #
66
66
  # See https://goo.gl/xmQnxf for more information and examples of labels.
67
+ #
68
+ # Note there is some reserved label key for Vertex AI Pipelines.
69
+ # - `vertex-ai-pipelines-run-billing-id`, user set value will get overrided.
67
70
  # @!attribute [rw] runtime_config
68
71
  # @return [::Google::Cloud::AIPlatform::V1::PipelineJob::RuntimeConfig]
69
72
  # Runtime config of the pipeline.
@@ -97,6 +100,16 @@ module Google
97
100
  # resources being launched, if applied, such as Vertex AI
98
101
  # Training or Dataflow job. If left unspecified, the workload is not peered
99
102
  # with any network.
103
+ # @!attribute [rw] reserved_ip_ranges
104
+ # @return [::Array<::String>]
105
+ # A list of names for the reserved ip ranges under the VPC network
106
+ # that can be used for this Pipeline Job's workload.
107
+ #
108
+ # If set, we will deploy the Pipeline Job's workload within the provided ip
109
+ # ranges. Otherwise, the job will be deployed to any ip ranges under the
110
+ # provided VPC network.
111
+ #
112
+ # Example: ['vertex-ai-ip-range'].
100
113
  # @!attribute [rw] template_uri
101
114
  # @return [::String]
102
115
  # A template uri from where the
@@ -47,57 +47,6 @@ module Google
47
47
  extend ::Google::Protobuf::MessageExts::ClassMethods
48
48
  end
49
49
 
50
- # Request message for [TensorboardService.GetTensorboardUsage][].
51
- # @!attribute [rw] tensorboard
52
- # @return [::String]
53
- # Required. The name of the Tensorboard resource.
54
- # Format:
55
- # `projects/{project}/locations/{location}/tensorboards/{tensorboard}`
56
- class ReadTensorboardUsageRequest
57
- include ::Google::Protobuf::MessageExts
58
- extend ::Google::Protobuf::MessageExts::ClassMethods
59
- end
60
-
61
- # Response message for
62
- # {::Google::Cloud::AIPlatform::V1::TensorboardService::Client#read_tensorboard_usage TensorboardService.ReadTensorboardUsage}.
63
- # @!attribute [rw] monthly_usage_data
64
- # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData}]
65
- # Maps year-month (YYYYMM) string to per month usage data.
66
- class ReadTensorboardUsageResponse
67
- include ::Google::Protobuf::MessageExts
68
- extend ::Google::Protobuf::MessageExts::ClassMethods
69
-
70
- # Per user usage data.
71
- # @!attribute [rw] username
72
- # @return [::String]
73
- # User's username
74
- # @!attribute [rw] view_count
75
- # @return [::Integer]
76
- # Number of times the user has read data within the Tensorboard.
77
- class PerUserUsageData
78
- include ::Google::Protobuf::MessageExts
79
- extend ::Google::Protobuf::MessageExts::ClassMethods
80
- end
81
-
82
- # Per month usage data
83
- # @!attribute [rw] user_usage_data
84
- # @return [::Array<::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerUserUsageData>]
85
- # Usage data for each user in the given month.
86
- class PerMonthUsageData
87
- include ::Google::Protobuf::MessageExts
88
- extend ::Google::Protobuf::MessageExts::ClassMethods
89
- end
90
-
91
- # @!attribute [rw] key
92
- # @return [::String]
93
- # @!attribute [rw] value
94
- # @return [::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData]
95
- class MonthlyUsageDataEntry
96
- include ::Google::Protobuf::MessageExts
97
- extend ::Google::Protobuf::MessageExts::ClassMethods
98
- end
99
- end
100
-
101
50
  # Request message for
102
51
  # {::Google::Cloud::AIPlatform::V1::TensorboardService::Client#list_tensorboards TensorboardService.ListTensorboards}.
103
52
  # @!attribute [rw] parent
@@ -182,6 +131,58 @@ module Google
182
131
  extend ::Google::Protobuf::MessageExts::ClassMethods
183
132
  end
184
133
 
134
+ # Request message for
135
+ # {::Google::Cloud::AIPlatform::V1::TensorboardService::Client#read_tensorboard_usage TensorboardService.ReadTensorboardUsage}.
136
+ # @!attribute [rw] tensorboard
137
+ # @return [::String]
138
+ # Required. The name of the Tensorboard resource.
139
+ # Format:
140
+ # `projects/{project}/locations/{location}/tensorboards/{tensorboard}`
141
+ class ReadTensorboardUsageRequest
142
+ include ::Google::Protobuf::MessageExts
143
+ extend ::Google::Protobuf::MessageExts::ClassMethods
144
+ end
145
+
146
+ # Response message for
147
+ # {::Google::Cloud::AIPlatform::V1::TensorboardService::Client#read_tensorboard_usage TensorboardService.ReadTensorboardUsage}.
148
+ # @!attribute [rw] monthly_usage_data
149
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData}]
150
+ # Maps year-month (YYYYMM) string to per month usage data.
151
+ class ReadTensorboardUsageResponse
152
+ include ::Google::Protobuf::MessageExts
153
+ extend ::Google::Protobuf::MessageExts::ClassMethods
154
+
155
+ # Per user usage data.
156
+ # @!attribute [rw] username
157
+ # @return [::String]
158
+ # User's username
159
+ # @!attribute [rw] view_count
160
+ # @return [::Integer]
161
+ # Number of times the user has read data within the Tensorboard.
162
+ class PerUserUsageData
163
+ include ::Google::Protobuf::MessageExts
164
+ extend ::Google::Protobuf::MessageExts::ClassMethods
165
+ end
166
+
167
+ # Per month usage data
168
+ # @!attribute [rw] user_usage_data
169
+ # @return [::Array<::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerUserUsageData>]
170
+ # Usage data for each user in the given month.
171
+ class PerMonthUsageData
172
+ include ::Google::Protobuf::MessageExts
173
+ extend ::Google::Protobuf::MessageExts::ClassMethods
174
+ end
175
+
176
+ # @!attribute [rw] key
177
+ # @return [::String]
178
+ # @!attribute [rw] value
179
+ # @return [::Google::Cloud::AIPlatform::V1::ReadTensorboardUsageResponse::PerMonthUsageData]
180
+ class MonthlyUsageDataEntry
181
+ include ::Google::Protobuf::MessageExts
182
+ extend ::Google::Protobuf::MessageExts::ClassMethods
183
+ end
184
+ end
185
+
185
186
  # Request message for
186
187
  # {::Google::Cloud::AIPlatform::V1::TensorboardService::Client#create_tensorboard_experiment TensorboardService.CreateTensorboardExperiment}.
187
188
  # @!attribute [rw] parent
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.25.0
4
+ version: 0.27.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: 2023-06-06 00:00:00.000000000 Z
11
+ date: 2023-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common