google-cloud-ai_platform-v1 0.5.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/lib/google/cloud/ai_platform/v1/dataset_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/endpoint_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/featurestore_online_serving_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/featurestore_service/client.rb +29 -0
- data/lib/google/cloud/ai_platform/v1/index_endpoint_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/index_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/job_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/metadata_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/migration_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/model_service/client.rb +384 -1
- data/lib/google/cloud/ai_platform/v1/pipeline_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/prediction_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/specialist_pool_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/tensorboard_service/client.rb +28 -0
- data/lib/google/cloud/ai_platform/v1/version.rb +1 -1
- data/lib/google/cloud/ai_platform/v1/vizier_service/client.rb +28 -0
- data/lib/google/cloud/aiplatform/v1/completion_stats_pb.rb +1 -0
- data/lib/google/cloud/aiplatform/v1/explanation_pb.rb +27 -0
- data/lib/google/cloud/aiplatform/v1/model_deployment_monitoring_job_pb.rb +1 -0
- data/lib/google/cloud/aiplatform/v1/model_pb.rb +5 -0
- data/lib/google/cloud/aiplatform/v1/model_service_pb.rb +24 -0
- data/lib/google/cloud/aiplatform/v1/model_service_services_pb.rb +10 -0
- data/lib/google/cloud/aiplatform/v1/training_pipeline_pb.rb +2 -0
- data/proto_docs/google/cloud/aiplatform/v1/batch_prediction_job.rb +3 -0
- data/proto_docs/google/cloud/aiplatform/v1/completion_stats.rb +4 -0
- data/proto_docs/google/cloud/aiplatform/v1/endpoint.rb +3 -0
- data/proto_docs/google/cloud/aiplatform/v1/explanation.rb +69 -0
- data/proto_docs/google/cloud/aiplatform/v1/featurestore_online_service.rb +0 -1
- data/proto_docs/google/cloud/aiplatform/v1/featurestore_service.rb +1 -0
- data/proto_docs/google/cloud/aiplatform/v1/model.rb +26 -0
- data/proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb +10 -0
- data/proto_docs/google/cloud/aiplatform/v1/model_service.rb +109 -0
- data/proto_docs/google/cloud/aiplatform/v1/pipeline_failure_policy.rb +1 -1
- data/proto_docs/google/cloud/aiplatform/v1/training_pipeline.rb +11 -0
- data/proto_docs/google/type/expr.rb +75 -0
- metadata +43 -2
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2022 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a textual expression in the Common Expression Language (CEL)
|
23
|
+
# syntax. CEL is a C-like expression language. The syntax and semantics of CEL
|
24
|
+
# are documented at https://github.com/google/cel-spec.
|
25
|
+
#
|
26
|
+
# Example (Comparison):
|
27
|
+
#
|
28
|
+
# title: "Summary size limit"
|
29
|
+
# description: "Determines if a summary is less than 100 chars"
|
30
|
+
# expression: "document.summary.size() < 100"
|
31
|
+
#
|
32
|
+
# Example (Equality):
|
33
|
+
#
|
34
|
+
# title: "Requestor is owner"
|
35
|
+
# description: "Determines if requestor is the document owner"
|
36
|
+
# expression: "document.owner == request.auth.claims.email"
|
37
|
+
#
|
38
|
+
# Example (Logic):
|
39
|
+
#
|
40
|
+
# title: "Public documents"
|
41
|
+
# description: "Determine whether the document should be publicly visible"
|
42
|
+
# expression: "document.type != 'private' && document.type != 'internal'"
|
43
|
+
#
|
44
|
+
# Example (Data Manipulation):
|
45
|
+
#
|
46
|
+
# title: "Notification string"
|
47
|
+
# description: "Create a notification string with a timestamp."
|
48
|
+
# expression: "'New message received at ' + string(document.create_time)"
|
49
|
+
#
|
50
|
+
# The exact variables and functions that may be referenced within an expression
|
51
|
+
# are determined by the service that evaluates it. See the service
|
52
|
+
# documentation for additional information.
|
53
|
+
# @!attribute [rw] expression
|
54
|
+
# @return [::String]
|
55
|
+
# Textual representation of an expression in Common Expression Language
|
56
|
+
# syntax.
|
57
|
+
# @!attribute [rw] title
|
58
|
+
# @return [::String]
|
59
|
+
# Optional. Title for the expression, i.e. a short string describing
|
60
|
+
# its purpose. This can be used e.g. in UIs which allow to enter the
|
61
|
+
# expression.
|
62
|
+
# @!attribute [rw] description
|
63
|
+
# @return [::String]
|
64
|
+
# Optional. Description of the expression. This is a longer text which
|
65
|
+
# describes the expression, e.g. when hovered over it in a UI.
|
66
|
+
# @!attribute [rw] location
|
67
|
+
# @return [::String]
|
68
|
+
# Optional. String indicating the location of the expression for error
|
69
|
+
# reporting, e.g. a file name and a position in the file.
|
70
|
+
class Expr
|
71
|
+
include ::Google::Protobuf::MessageExts
|
72
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
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.
|
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: 2022-
|
11
|
+
date: 2022-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -44,6 +44,46 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '1.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: google-cloud-location
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0.0'
|
54
|
+
- - "<"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 2.a
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0.0'
|
64
|
+
- - "<"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 2.a
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: google-iam-v1
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0.0'
|
74
|
+
- - "<"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 2.a
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0.0'
|
84
|
+
- - "<"
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 2.a
|
47
87
|
- !ruby/object:Gem::Dependency
|
48
88
|
name: google-style
|
49
89
|
requirement: !ruby/object:Gem::Requirement
|
@@ -456,6 +496,7 @@ files:
|
|
456
496
|
- proto_docs/google/protobuf/timestamp.rb
|
457
497
|
- proto_docs/google/protobuf/wrappers.rb
|
458
498
|
- proto_docs/google/rpc/status.rb
|
499
|
+
- proto_docs/google/type/expr.rb
|
459
500
|
- proto_docs/google/type/money.rb
|
460
501
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
461
502
|
licenses:
|