google-cloud-data_labeling-v1beta1 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +169 -0
- data/LICENSE.md +203 -0
- data/README.md +75 -0
- data/lib/google-cloud-data_labeling-v1beta1.rb +21 -0
- data/lib/google/cloud/data_labeling/v1beta1.rb +35 -0
- data/lib/google/cloud/data_labeling/v1beta1/data_labeling_service.rb +50 -0
- data/lib/google/cloud/data_labeling/v1beta1/data_labeling_service/client.rb +3294 -0
- data/lib/google/cloud/data_labeling/v1beta1/data_labeling_service/credentials.rb +51 -0
- data/lib/google/cloud/data_labeling/v1beta1/data_labeling_service/operations.rb +570 -0
- data/lib/google/cloud/data_labeling/v1beta1/data_labeling_service/paths.rb +193 -0
- data/lib/google/cloud/data_labeling/v1beta1/version.rb +28 -0
- data/lib/google/cloud/datalabeling/v1beta1/annotation_pb.rb +178 -0
- data/lib/google/cloud/datalabeling/v1beta1/annotation_spec_set_pb.rb +33 -0
- data/lib/google/cloud/datalabeling/v1beta1/data_labeling_service_pb.rb +301 -0
- data/lib/google/cloud/datalabeling/v1beta1/data_labeling_service_services_pb.rb +132 -0
- data/lib/google/cloud/datalabeling/v1beta1/data_payloads_pb.rb +45 -0
- data/lib/google/cloud/datalabeling/v1beta1/dataset_pb.rb +142 -0
- data/lib/google/cloud/datalabeling/v1beta1/evaluation_job_pb.rb +71 -0
- data/lib/google/cloud/datalabeling/v1beta1/evaluation_pb.rb +93 -0
- data/lib/google/cloud/datalabeling/v1beta1/human_annotation_config_pb.rb +98 -0
- data/lib/google/cloud/datalabeling/v1beta1/instruction_pb.rb +42 -0
- data/lib/google/cloud/datalabeling/v1beta1/operations_pb.rb +124 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/field_behavior.rb +59 -0
- data/proto_docs/google/api/resource.rb +283 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/annotation.rb +407 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/annotation_spec_set.rb +71 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/data_labeling_service.rb +839 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/data_payloads.rb +87 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/dataset.rb +354 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/evaluation.rb +225 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/evaluation_job.rb +280 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/human_annotation_config.rb +248 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/instruction.rb +88 -0
- data/proto_docs/google/cloud/datalabeling/v1beta1/operations.rb +279 -0
- data/proto_docs/google/longrunning/operations.rb +150 -0
- data/proto_docs/google/protobuf/any.rb +138 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +120 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- metadata +227 -0
@@ -0,0 +1,193 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 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 Cloud
|
22
|
+
module DataLabeling
|
23
|
+
module V1beta1
|
24
|
+
module DataLabelingService
|
25
|
+
# Path helper methods for the DataLabelingService API.
|
26
|
+
module Paths
|
27
|
+
##
|
28
|
+
# Create a fully-qualified AnnotatedDataset resource string.
|
29
|
+
#
|
30
|
+
# The resource will be in the following format:
|
31
|
+
#
|
32
|
+
# `projects/{project}/datasets/{dataset}/annotatedDatasets/{annotated_dataset}`
|
33
|
+
#
|
34
|
+
# @param project [String]
|
35
|
+
# @param dataset [String]
|
36
|
+
# @param annotated_dataset [String]
|
37
|
+
#
|
38
|
+
# @return [::String]
|
39
|
+
def annotated_dataset_path project:, dataset:, annotated_dataset:
|
40
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
41
|
+
raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/"
|
42
|
+
|
43
|
+
"projects/#{project}/datasets/#{dataset}/annotatedDatasets/#{annotated_dataset}"
|
44
|
+
end
|
45
|
+
|
46
|
+
##
|
47
|
+
# Create a fully-qualified AnnotationSpecSet resource string.
|
48
|
+
#
|
49
|
+
# The resource will be in the following format:
|
50
|
+
#
|
51
|
+
# `projects/{project}/annotationSpecSets/{annotation_spec_set}`
|
52
|
+
#
|
53
|
+
# @param project [String]
|
54
|
+
# @param annotation_spec_set [String]
|
55
|
+
#
|
56
|
+
# @return [::String]
|
57
|
+
def annotation_spec_set_path project:, annotation_spec_set:
|
58
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
59
|
+
|
60
|
+
"projects/#{project}/annotationSpecSets/#{annotation_spec_set}"
|
61
|
+
end
|
62
|
+
|
63
|
+
##
|
64
|
+
# Create a fully-qualified DataItem resource string.
|
65
|
+
#
|
66
|
+
# The resource will be in the following format:
|
67
|
+
#
|
68
|
+
# `projects/{project}/datasets/{dataset}/dataItems/{data_item}`
|
69
|
+
#
|
70
|
+
# @param project [String]
|
71
|
+
# @param dataset [String]
|
72
|
+
# @param data_item [String]
|
73
|
+
#
|
74
|
+
# @return [::String]
|
75
|
+
def data_item_path project:, dataset:, data_item:
|
76
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
77
|
+
raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/"
|
78
|
+
|
79
|
+
"projects/#{project}/datasets/#{dataset}/dataItems/#{data_item}"
|
80
|
+
end
|
81
|
+
|
82
|
+
##
|
83
|
+
# Create a fully-qualified Dataset resource string.
|
84
|
+
#
|
85
|
+
# The resource will be in the following format:
|
86
|
+
#
|
87
|
+
# `projects/{project}/datasets/{dataset}`
|
88
|
+
#
|
89
|
+
# @param project [String]
|
90
|
+
# @param dataset [String]
|
91
|
+
#
|
92
|
+
# @return [::String]
|
93
|
+
def dataset_path project:, dataset:
|
94
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
95
|
+
|
96
|
+
"projects/#{project}/datasets/#{dataset}"
|
97
|
+
end
|
98
|
+
|
99
|
+
##
|
100
|
+
# Create a fully-qualified Evaluation resource string.
|
101
|
+
#
|
102
|
+
# The resource will be in the following format:
|
103
|
+
#
|
104
|
+
# `projects/{project}/datasets/{dataset}/evaluations/{evaluation}`
|
105
|
+
#
|
106
|
+
# @param project [String]
|
107
|
+
# @param dataset [String]
|
108
|
+
# @param evaluation [String]
|
109
|
+
#
|
110
|
+
# @return [::String]
|
111
|
+
def evaluation_path project:, dataset:, evaluation:
|
112
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
113
|
+
raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/"
|
114
|
+
|
115
|
+
"projects/#{project}/datasets/#{dataset}/evaluations/#{evaluation}"
|
116
|
+
end
|
117
|
+
|
118
|
+
##
|
119
|
+
# Create a fully-qualified EvaluationJob resource string.
|
120
|
+
#
|
121
|
+
# The resource will be in the following format:
|
122
|
+
#
|
123
|
+
# `projects/{project}/evaluationJobs/{evaluation_job}`
|
124
|
+
#
|
125
|
+
# @param project [String]
|
126
|
+
# @param evaluation_job [String]
|
127
|
+
#
|
128
|
+
# @return [::String]
|
129
|
+
def evaluation_job_path project:, evaluation_job:
|
130
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
131
|
+
|
132
|
+
"projects/#{project}/evaluationJobs/#{evaluation_job}"
|
133
|
+
end
|
134
|
+
|
135
|
+
##
|
136
|
+
# Create a fully-qualified Example resource string.
|
137
|
+
#
|
138
|
+
# The resource will be in the following format:
|
139
|
+
#
|
140
|
+
# `projects/{project}/datasets/{dataset}/annotatedDatasets/{annotated_dataset}/examples/{example}`
|
141
|
+
#
|
142
|
+
# @param project [String]
|
143
|
+
# @param dataset [String]
|
144
|
+
# @param annotated_dataset [String]
|
145
|
+
# @param example [String]
|
146
|
+
#
|
147
|
+
# @return [::String]
|
148
|
+
def example_path project:, dataset:, annotated_dataset:, example:
|
149
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
150
|
+
raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/"
|
151
|
+
raise ::ArgumentError, "annotated_dataset cannot contain /" if annotated_dataset.to_s.include? "/"
|
152
|
+
|
153
|
+
"projects/#{project}/datasets/#{dataset}/annotatedDatasets/#{annotated_dataset}/examples/#{example}"
|
154
|
+
end
|
155
|
+
|
156
|
+
##
|
157
|
+
# Create a fully-qualified Instruction resource string.
|
158
|
+
#
|
159
|
+
# The resource will be in the following format:
|
160
|
+
#
|
161
|
+
# `projects/{project}/instructions/{instruction}`
|
162
|
+
#
|
163
|
+
# @param project [String]
|
164
|
+
# @param instruction [String]
|
165
|
+
#
|
166
|
+
# @return [::String]
|
167
|
+
def instruction_path project:, instruction:
|
168
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
169
|
+
|
170
|
+
"projects/#{project}/instructions/#{instruction}"
|
171
|
+
end
|
172
|
+
|
173
|
+
##
|
174
|
+
# Create a fully-qualified Project resource string.
|
175
|
+
#
|
176
|
+
# The resource will be in the following format:
|
177
|
+
#
|
178
|
+
# `projects/{project}`
|
179
|
+
#
|
180
|
+
# @param project [String]
|
181
|
+
#
|
182
|
+
# @return [::String]
|
183
|
+
def project_path project:
|
184
|
+
"projects/#{project}"
|
185
|
+
end
|
186
|
+
|
187
|
+
extend self
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 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 Cloud
|
22
|
+
module DataLabeling
|
23
|
+
module V1beta1
|
24
|
+
VERSION = "0.1.0"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,178 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/datalabeling/v1beta1/annotation.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/resource_pb'
|
8
|
+
require 'google/cloud/datalabeling/v1beta1/annotation_spec_set_pb'
|
9
|
+
require 'google/protobuf/duration_pb'
|
10
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
+
add_file("google/cloud/datalabeling/v1beta1/annotation.proto", :syntax => :proto3) do
|
12
|
+
add_message "google.cloud.datalabeling.v1beta1.Annotation" do
|
13
|
+
optional :name, :string, 1
|
14
|
+
optional :annotation_source, :enum, 2, "google.cloud.datalabeling.v1beta1.AnnotationSource"
|
15
|
+
optional :annotation_value, :message, 3, "google.cloud.datalabeling.v1beta1.AnnotationValue"
|
16
|
+
optional :annotation_metadata, :message, 4, "google.cloud.datalabeling.v1beta1.AnnotationMetadata"
|
17
|
+
optional :annotation_sentiment, :enum, 6, "google.cloud.datalabeling.v1beta1.AnnotationSentiment"
|
18
|
+
end
|
19
|
+
add_message "google.cloud.datalabeling.v1beta1.AnnotationValue" do
|
20
|
+
oneof :value_type do
|
21
|
+
optional :image_classification_annotation, :message, 1, "google.cloud.datalabeling.v1beta1.ImageClassificationAnnotation"
|
22
|
+
optional :image_bounding_poly_annotation, :message, 2, "google.cloud.datalabeling.v1beta1.ImageBoundingPolyAnnotation"
|
23
|
+
optional :image_polyline_annotation, :message, 8, "google.cloud.datalabeling.v1beta1.ImagePolylineAnnotation"
|
24
|
+
optional :image_segmentation_annotation, :message, 9, "google.cloud.datalabeling.v1beta1.ImageSegmentationAnnotation"
|
25
|
+
optional :text_classification_annotation, :message, 3, "google.cloud.datalabeling.v1beta1.TextClassificationAnnotation"
|
26
|
+
optional :text_entity_extraction_annotation, :message, 10, "google.cloud.datalabeling.v1beta1.TextEntityExtractionAnnotation"
|
27
|
+
optional :video_classification_annotation, :message, 4, "google.cloud.datalabeling.v1beta1.VideoClassificationAnnotation"
|
28
|
+
optional :video_object_tracking_annotation, :message, 5, "google.cloud.datalabeling.v1beta1.VideoObjectTrackingAnnotation"
|
29
|
+
optional :video_event_annotation, :message, 6, "google.cloud.datalabeling.v1beta1.VideoEventAnnotation"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
add_message "google.cloud.datalabeling.v1beta1.ImageClassificationAnnotation" do
|
33
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
34
|
+
end
|
35
|
+
add_message "google.cloud.datalabeling.v1beta1.Vertex" do
|
36
|
+
optional :x, :int32, 1
|
37
|
+
optional :y, :int32, 2
|
38
|
+
end
|
39
|
+
add_message "google.cloud.datalabeling.v1beta1.NormalizedVertex" do
|
40
|
+
optional :x, :float, 1
|
41
|
+
optional :y, :float, 2
|
42
|
+
end
|
43
|
+
add_message "google.cloud.datalabeling.v1beta1.BoundingPoly" do
|
44
|
+
repeated :vertices, :message, 1, "google.cloud.datalabeling.v1beta1.Vertex"
|
45
|
+
end
|
46
|
+
add_message "google.cloud.datalabeling.v1beta1.NormalizedBoundingPoly" do
|
47
|
+
repeated :normalized_vertices, :message, 1, "google.cloud.datalabeling.v1beta1.NormalizedVertex"
|
48
|
+
end
|
49
|
+
add_message "google.cloud.datalabeling.v1beta1.ImageBoundingPolyAnnotation" do
|
50
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
51
|
+
oneof :bounded_area do
|
52
|
+
optional :bounding_poly, :message, 2, "google.cloud.datalabeling.v1beta1.BoundingPoly"
|
53
|
+
optional :normalized_bounding_poly, :message, 3, "google.cloud.datalabeling.v1beta1.NormalizedBoundingPoly"
|
54
|
+
end
|
55
|
+
end
|
56
|
+
add_message "google.cloud.datalabeling.v1beta1.Polyline" do
|
57
|
+
repeated :vertices, :message, 1, "google.cloud.datalabeling.v1beta1.Vertex"
|
58
|
+
end
|
59
|
+
add_message "google.cloud.datalabeling.v1beta1.NormalizedPolyline" do
|
60
|
+
repeated :normalized_vertices, :message, 1, "google.cloud.datalabeling.v1beta1.NormalizedVertex"
|
61
|
+
end
|
62
|
+
add_message "google.cloud.datalabeling.v1beta1.ImagePolylineAnnotation" do
|
63
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
64
|
+
oneof :poly do
|
65
|
+
optional :polyline, :message, 2, "google.cloud.datalabeling.v1beta1.Polyline"
|
66
|
+
optional :normalized_polyline, :message, 3, "google.cloud.datalabeling.v1beta1.NormalizedPolyline"
|
67
|
+
end
|
68
|
+
end
|
69
|
+
add_message "google.cloud.datalabeling.v1beta1.ImageSegmentationAnnotation" do
|
70
|
+
map :annotation_colors, :string, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
71
|
+
optional :mime_type, :string, 2
|
72
|
+
optional :image_bytes, :bytes, 3
|
73
|
+
end
|
74
|
+
add_message "google.cloud.datalabeling.v1beta1.TextClassificationAnnotation" do
|
75
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
76
|
+
end
|
77
|
+
add_message "google.cloud.datalabeling.v1beta1.TextEntityExtractionAnnotation" do
|
78
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
79
|
+
optional :sequential_segment, :message, 2, "google.cloud.datalabeling.v1beta1.SequentialSegment"
|
80
|
+
end
|
81
|
+
add_message "google.cloud.datalabeling.v1beta1.SequentialSegment" do
|
82
|
+
optional :start, :int32, 1
|
83
|
+
optional :end, :int32, 2
|
84
|
+
end
|
85
|
+
add_message "google.cloud.datalabeling.v1beta1.TimeSegment" do
|
86
|
+
optional :start_time_offset, :message, 1, "google.protobuf.Duration"
|
87
|
+
optional :end_time_offset, :message, 2, "google.protobuf.Duration"
|
88
|
+
end
|
89
|
+
add_message "google.cloud.datalabeling.v1beta1.VideoClassificationAnnotation" do
|
90
|
+
optional :time_segment, :message, 1, "google.cloud.datalabeling.v1beta1.TimeSegment"
|
91
|
+
optional :annotation_spec, :message, 2, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
92
|
+
end
|
93
|
+
add_message "google.cloud.datalabeling.v1beta1.ObjectTrackingFrame" do
|
94
|
+
optional :time_offset, :message, 3, "google.protobuf.Duration"
|
95
|
+
oneof :bounded_area do
|
96
|
+
optional :bounding_poly, :message, 1, "google.cloud.datalabeling.v1beta1.BoundingPoly"
|
97
|
+
optional :normalized_bounding_poly, :message, 2, "google.cloud.datalabeling.v1beta1.NormalizedBoundingPoly"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
add_message "google.cloud.datalabeling.v1beta1.VideoObjectTrackingAnnotation" do
|
101
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
102
|
+
optional :time_segment, :message, 2, "google.cloud.datalabeling.v1beta1.TimeSegment"
|
103
|
+
repeated :object_tracking_frames, :message, 3, "google.cloud.datalabeling.v1beta1.ObjectTrackingFrame"
|
104
|
+
end
|
105
|
+
add_message "google.cloud.datalabeling.v1beta1.VideoEventAnnotation" do
|
106
|
+
optional :annotation_spec, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
107
|
+
optional :time_segment, :message, 2, "google.cloud.datalabeling.v1beta1.TimeSegment"
|
108
|
+
end
|
109
|
+
add_message "google.cloud.datalabeling.v1beta1.AnnotationMetadata" do
|
110
|
+
optional :operator_metadata, :message, 2, "google.cloud.datalabeling.v1beta1.OperatorMetadata"
|
111
|
+
end
|
112
|
+
add_message "google.cloud.datalabeling.v1beta1.OperatorMetadata" do
|
113
|
+
optional :score, :float, 1
|
114
|
+
optional :total_votes, :int32, 2
|
115
|
+
optional :label_votes, :int32, 3
|
116
|
+
repeated :comments, :string, 4
|
117
|
+
end
|
118
|
+
add_enum "google.cloud.datalabeling.v1beta1.AnnotationSource" do
|
119
|
+
value :ANNOTATION_SOURCE_UNSPECIFIED, 0
|
120
|
+
value :OPERATOR, 3
|
121
|
+
end
|
122
|
+
add_enum "google.cloud.datalabeling.v1beta1.AnnotationSentiment" do
|
123
|
+
value :ANNOTATION_SENTIMENT_UNSPECIFIED, 0
|
124
|
+
value :NEGATIVE, 1
|
125
|
+
value :POSITIVE, 2
|
126
|
+
end
|
127
|
+
add_enum "google.cloud.datalabeling.v1beta1.AnnotationType" do
|
128
|
+
value :ANNOTATION_TYPE_UNSPECIFIED, 0
|
129
|
+
value :IMAGE_CLASSIFICATION_ANNOTATION, 1
|
130
|
+
value :IMAGE_BOUNDING_BOX_ANNOTATION, 2
|
131
|
+
value :IMAGE_ORIENTED_BOUNDING_BOX_ANNOTATION, 13
|
132
|
+
value :IMAGE_BOUNDING_POLY_ANNOTATION, 10
|
133
|
+
value :IMAGE_POLYLINE_ANNOTATION, 11
|
134
|
+
value :IMAGE_SEGMENTATION_ANNOTATION, 12
|
135
|
+
value :VIDEO_SHOTS_CLASSIFICATION_ANNOTATION, 3
|
136
|
+
value :VIDEO_OBJECT_TRACKING_ANNOTATION, 4
|
137
|
+
value :VIDEO_OBJECT_DETECTION_ANNOTATION, 5
|
138
|
+
value :VIDEO_EVENT_ANNOTATION, 6
|
139
|
+
value :TEXT_CLASSIFICATION_ANNOTATION, 8
|
140
|
+
value :TEXT_ENTITY_EXTRACTION_ANNOTATION, 9
|
141
|
+
value :GENERAL_CLASSIFICATION_ANNOTATION, 14
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
module Google
|
147
|
+
module Cloud
|
148
|
+
module DataLabeling
|
149
|
+
module V1beta1
|
150
|
+
Annotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.Annotation").msgclass
|
151
|
+
AnnotationValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationValue").msgclass
|
152
|
+
ImageClassificationAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ImageClassificationAnnotation").msgclass
|
153
|
+
Vertex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.Vertex").msgclass
|
154
|
+
NormalizedVertex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.NormalizedVertex").msgclass
|
155
|
+
BoundingPoly = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.BoundingPoly").msgclass
|
156
|
+
NormalizedBoundingPoly = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.NormalizedBoundingPoly").msgclass
|
157
|
+
ImageBoundingPolyAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ImageBoundingPolyAnnotation").msgclass
|
158
|
+
Polyline = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.Polyline").msgclass
|
159
|
+
NormalizedPolyline = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.NormalizedPolyline").msgclass
|
160
|
+
ImagePolylineAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ImagePolylineAnnotation").msgclass
|
161
|
+
ImageSegmentationAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ImageSegmentationAnnotation").msgclass
|
162
|
+
TextClassificationAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.TextClassificationAnnotation").msgclass
|
163
|
+
TextEntityExtractionAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.TextEntityExtractionAnnotation").msgclass
|
164
|
+
SequentialSegment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SequentialSegment").msgclass
|
165
|
+
TimeSegment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.TimeSegment").msgclass
|
166
|
+
VideoClassificationAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.VideoClassificationAnnotation").msgclass
|
167
|
+
ObjectTrackingFrame = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ObjectTrackingFrame").msgclass
|
168
|
+
VideoObjectTrackingAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.VideoObjectTrackingAnnotation").msgclass
|
169
|
+
VideoEventAnnotation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.VideoEventAnnotation").msgclass
|
170
|
+
AnnotationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationMetadata").msgclass
|
171
|
+
OperatorMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.OperatorMetadata").msgclass
|
172
|
+
AnnotationSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationSource").enummodule
|
173
|
+
AnnotationSentiment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationSentiment").enummodule
|
174
|
+
AnnotationType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationType").enummodule
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/datalabeling/v1beta1/annotation_spec_set.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/resource_pb'
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_file("google/cloud/datalabeling/v1beta1/annotation_spec_set.proto", :syntax => :proto3) do
|
10
|
+
add_message "google.cloud.datalabeling.v1beta1.AnnotationSpecSet" do
|
11
|
+
optional :name, :string, 1
|
12
|
+
optional :display_name, :string, 2
|
13
|
+
optional :description, :string, 3
|
14
|
+
repeated :annotation_specs, :message, 4, "google.cloud.datalabeling.v1beta1.AnnotationSpec"
|
15
|
+
repeated :blocking_resources, :string, 5
|
16
|
+
end
|
17
|
+
add_message "google.cloud.datalabeling.v1beta1.AnnotationSpec" do
|
18
|
+
optional :display_name, :string, 1
|
19
|
+
optional :description, :string, 2
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
module Google
|
25
|
+
module Cloud
|
26
|
+
module DataLabeling
|
27
|
+
module V1beta1
|
28
|
+
AnnotationSpecSet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationSpecSet").msgclass
|
29
|
+
AnnotationSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.AnnotationSpec").msgclass
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,301 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/datalabeling/v1beta1/data_labeling_service.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/client_pb'
|
8
|
+
require 'google/api/field_behavior_pb'
|
9
|
+
require 'google/api/resource_pb'
|
10
|
+
require 'google/cloud/datalabeling/v1beta1/annotation_spec_set_pb'
|
11
|
+
require 'google/cloud/datalabeling/v1beta1/dataset_pb'
|
12
|
+
require 'google/cloud/datalabeling/v1beta1/evaluation_pb'
|
13
|
+
require 'google/cloud/datalabeling/v1beta1/evaluation_job_pb'
|
14
|
+
require 'google/cloud/datalabeling/v1beta1/human_annotation_config_pb'
|
15
|
+
require 'google/cloud/datalabeling/v1beta1/instruction_pb'
|
16
|
+
require 'google/longrunning/operations_pb'
|
17
|
+
require 'google/protobuf/empty_pb'
|
18
|
+
require 'google/protobuf/field_mask_pb'
|
19
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
20
|
+
add_file("google/cloud/datalabeling/v1beta1/data_labeling_service.proto", :syntax => :proto3) do
|
21
|
+
add_message "google.cloud.datalabeling.v1beta1.CreateDatasetRequest" do
|
22
|
+
optional :parent, :string, 1
|
23
|
+
optional :dataset, :message, 2, "google.cloud.datalabeling.v1beta1.Dataset"
|
24
|
+
end
|
25
|
+
add_message "google.cloud.datalabeling.v1beta1.GetDatasetRequest" do
|
26
|
+
optional :name, :string, 1
|
27
|
+
end
|
28
|
+
add_message "google.cloud.datalabeling.v1beta1.ListDatasetsRequest" do
|
29
|
+
optional :parent, :string, 1
|
30
|
+
optional :filter, :string, 2
|
31
|
+
optional :page_size, :int32, 3
|
32
|
+
optional :page_token, :string, 4
|
33
|
+
end
|
34
|
+
add_message "google.cloud.datalabeling.v1beta1.ListDatasetsResponse" do
|
35
|
+
repeated :datasets, :message, 1, "google.cloud.datalabeling.v1beta1.Dataset"
|
36
|
+
optional :next_page_token, :string, 2
|
37
|
+
end
|
38
|
+
add_message "google.cloud.datalabeling.v1beta1.DeleteDatasetRequest" do
|
39
|
+
optional :name, :string, 1
|
40
|
+
end
|
41
|
+
add_message "google.cloud.datalabeling.v1beta1.ImportDataRequest" do
|
42
|
+
optional :name, :string, 1
|
43
|
+
optional :input_config, :message, 2, "google.cloud.datalabeling.v1beta1.InputConfig"
|
44
|
+
optional :user_email_address, :string, 3
|
45
|
+
end
|
46
|
+
add_message "google.cloud.datalabeling.v1beta1.ExportDataRequest" do
|
47
|
+
optional :name, :string, 1
|
48
|
+
optional :annotated_dataset, :string, 2
|
49
|
+
optional :filter, :string, 3
|
50
|
+
optional :output_config, :message, 4, "google.cloud.datalabeling.v1beta1.OutputConfig"
|
51
|
+
optional :user_email_address, :string, 5
|
52
|
+
end
|
53
|
+
add_message "google.cloud.datalabeling.v1beta1.GetDataItemRequest" do
|
54
|
+
optional :name, :string, 1
|
55
|
+
end
|
56
|
+
add_message "google.cloud.datalabeling.v1beta1.ListDataItemsRequest" do
|
57
|
+
optional :parent, :string, 1
|
58
|
+
optional :filter, :string, 2
|
59
|
+
optional :page_size, :int32, 3
|
60
|
+
optional :page_token, :string, 4
|
61
|
+
end
|
62
|
+
add_message "google.cloud.datalabeling.v1beta1.ListDataItemsResponse" do
|
63
|
+
repeated :data_items, :message, 1, "google.cloud.datalabeling.v1beta1.DataItem"
|
64
|
+
optional :next_page_token, :string, 2
|
65
|
+
end
|
66
|
+
add_message "google.cloud.datalabeling.v1beta1.GetAnnotatedDatasetRequest" do
|
67
|
+
optional :name, :string, 1
|
68
|
+
end
|
69
|
+
add_message "google.cloud.datalabeling.v1beta1.ListAnnotatedDatasetsRequest" do
|
70
|
+
optional :parent, :string, 1
|
71
|
+
optional :filter, :string, 2
|
72
|
+
optional :page_size, :int32, 3
|
73
|
+
optional :page_token, :string, 4
|
74
|
+
end
|
75
|
+
add_message "google.cloud.datalabeling.v1beta1.ListAnnotatedDatasetsResponse" do
|
76
|
+
repeated :annotated_datasets, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotatedDataset"
|
77
|
+
optional :next_page_token, :string, 2
|
78
|
+
end
|
79
|
+
add_message "google.cloud.datalabeling.v1beta1.DeleteAnnotatedDatasetRequest" do
|
80
|
+
optional :name, :string, 1
|
81
|
+
end
|
82
|
+
add_message "google.cloud.datalabeling.v1beta1.LabelImageRequest" do
|
83
|
+
optional :parent, :string, 1
|
84
|
+
optional :basic_config, :message, 2, "google.cloud.datalabeling.v1beta1.HumanAnnotationConfig"
|
85
|
+
optional :feature, :enum, 3, "google.cloud.datalabeling.v1beta1.LabelImageRequest.Feature"
|
86
|
+
oneof :request_config do
|
87
|
+
optional :image_classification_config, :message, 4, "google.cloud.datalabeling.v1beta1.ImageClassificationConfig"
|
88
|
+
optional :bounding_poly_config, :message, 5, "google.cloud.datalabeling.v1beta1.BoundingPolyConfig"
|
89
|
+
optional :polyline_config, :message, 6, "google.cloud.datalabeling.v1beta1.PolylineConfig"
|
90
|
+
optional :segmentation_config, :message, 7, "google.cloud.datalabeling.v1beta1.SegmentationConfig"
|
91
|
+
end
|
92
|
+
end
|
93
|
+
add_enum "google.cloud.datalabeling.v1beta1.LabelImageRequest.Feature" do
|
94
|
+
value :FEATURE_UNSPECIFIED, 0
|
95
|
+
value :CLASSIFICATION, 1
|
96
|
+
value :BOUNDING_BOX, 2
|
97
|
+
value :ORIENTED_BOUNDING_BOX, 6
|
98
|
+
value :BOUNDING_POLY, 3
|
99
|
+
value :POLYLINE, 4
|
100
|
+
value :SEGMENTATION, 5
|
101
|
+
end
|
102
|
+
add_message "google.cloud.datalabeling.v1beta1.LabelVideoRequest" do
|
103
|
+
optional :parent, :string, 1
|
104
|
+
optional :basic_config, :message, 2, "google.cloud.datalabeling.v1beta1.HumanAnnotationConfig"
|
105
|
+
optional :feature, :enum, 3, "google.cloud.datalabeling.v1beta1.LabelVideoRequest.Feature"
|
106
|
+
oneof :request_config do
|
107
|
+
optional :video_classification_config, :message, 4, "google.cloud.datalabeling.v1beta1.VideoClassificationConfig"
|
108
|
+
optional :object_detection_config, :message, 5, "google.cloud.datalabeling.v1beta1.ObjectDetectionConfig"
|
109
|
+
optional :object_tracking_config, :message, 6, "google.cloud.datalabeling.v1beta1.ObjectTrackingConfig"
|
110
|
+
optional :event_config, :message, 7, "google.cloud.datalabeling.v1beta1.EventConfig"
|
111
|
+
end
|
112
|
+
end
|
113
|
+
add_enum "google.cloud.datalabeling.v1beta1.LabelVideoRequest.Feature" do
|
114
|
+
value :FEATURE_UNSPECIFIED, 0
|
115
|
+
value :CLASSIFICATION, 1
|
116
|
+
value :OBJECT_DETECTION, 2
|
117
|
+
value :OBJECT_TRACKING, 3
|
118
|
+
value :EVENT, 4
|
119
|
+
end
|
120
|
+
add_message "google.cloud.datalabeling.v1beta1.LabelTextRequest" do
|
121
|
+
optional :parent, :string, 1
|
122
|
+
optional :basic_config, :message, 2, "google.cloud.datalabeling.v1beta1.HumanAnnotationConfig"
|
123
|
+
optional :feature, :enum, 6, "google.cloud.datalabeling.v1beta1.LabelTextRequest.Feature"
|
124
|
+
oneof :request_config do
|
125
|
+
optional :text_classification_config, :message, 4, "google.cloud.datalabeling.v1beta1.TextClassificationConfig"
|
126
|
+
optional :text_entity_extraction_config, :message, 5, "google.cloud.datalabeling.v1beta1.TextEntityExtractionConfig"
|
127
|
+
end
|
128
|
+
end
|
129
|
+
add_enum "google.cloud.datalabeling.v1beta1.LabelTextRequest.Feature" do
|
130
|
+
value :FEATURE_UNSPECIFIED, 0
|
131
|
+
value :TEXT_CLASSIFICATION, 1
|
132
|
+
value :TEXT_ENTITY_EXTRACTION, 2
|
133
|
+
end
|
134
|
+
add_message "google.cloud.datalabeling.v1beta1.GetExampleRequest" do
|
135
|
+
optional :name, :string, 1
|
136
|
+
optional :filter, :string, 2
|
137
|
+
end
|
138
|
+
add_message "google.cloud.datalabeling.v1beta1.ListExamplesRequest" do
|
139
|
+
optional :parent, :string, 1
|
140
|
+
optional :filter, :string, 2
|
141
|
+
optional :page_size, :int32, 3
|
142
|
+
optional :page_token, :string, 4
|
143
|
+
end
|
144
|
+
add_message "google.cloud.datalabeling.v1beta1.ListExamplesResponse" do
|
145
|
+
repeated :examples, :message, 1, "google.cloud.datalabeling.v1beta1.Example"
|
146
|
+
optional :next_page_token, :string, 2
|
147
|
+
end
|
148
|
+
add_message "google.cloud.datalabeling.v1beta1.CreateAnnotationSpecSetRequest" do
|
149
|
+
optional :parent, :string, 1
|
150
|
+
optional :annotation_spec_set, :message, 2, "google.cloud.datalabeling.v1beta1.AnnotationSpecSet"
|
151
|
+
end
|
152
|
+
add_message "google.cloud.datalabeling.v1beta1.GetAnnotationSpecSetRequest" do
|
153
|
+
optional :name, :string, 1
|
154
|
+
end
|
155
|
+
add_message "google.cloud.datalabeling.v1beta1.ListAnnotationSpecSetsRequest" do
|
156
|
+
optional :parent, :string, 1
|
157
|
+
optional :filter, :string, 2
|
158
|
+
optional :page_size, :int32, 3
|
159
|
+
optional :page_token, :string, 4
|
160
|
+
end
|
161
|
+
add_message "google.cloud.datalabeling.v1beta1.ListAnnotationSpecSetsResponse" do
|
162
|
+
repeated :annotation_spec_sets, :message, 1, "google.cloud.datalabeling.v1beta1.AnnotationSpecSet"
|
163
|
+
optional :next_page_token, :string, 2
|
164
|
+
end
|
165
|
+
add_message "google.cloud.datalabeling.v1beta1.DeleteAnnotationSpecSetRequest" do
|
166
|
+
optional :name, :string, 1
|
167
|
+
end
|
168
|
+
add_message "google.cloud.datalabeling.v1beta1.CreateInstructionRequest" do
|
169
|
+
optional :parent, :string, 1
|
170
|
+
optional :instruction, :message, 2, "google.cloud.datalabeling.v1beta1.Instruction"
|
171
|
+
end
|
172
|
+
add_message "google.cloud.datalabeling.v1beta1.GetInstructionRequest" do
|
173
|
+
optional :name, :string, 1
|
174
|
+
end
|
175
|
+
add_message "google.cloud.datalabeling.v1beta1.DeleteInstructionRequest" do
|
176
|
+
optional :name, :string, 1
|
177
|
+
end
|
178
|
+
add_message "google.cloud.datalabeling.v1beta1.ListInstructionsRequest" do
|
179
|
+
optional :parent, :string, 1
|
180
|
+
optional :filter, :string, 2
|
181
|
+
optional :page_size, :int32, 3
|
182
|
+
optional :page_token, :string, 4
|
183
|
+
end
|
184
|
+
add_message "google.cloud.datalabeling.v1beta1.ListInstructionsResponse" do
|
185
|
+
repeated :instructions, :message, 1, "google.cloud.datalabeling.v1beta1.Instruction"
|
186
|
+
optional :next_page_token, :string, 2
|
187
|
+
end
|
188
|
+
add_message "google.cloud.datalabeling.v1beta1.GetEvaluationRequest" do
|
189
|
+
optional :name, :string, 1
|
190
|
+
end
|
191
|
+
add_message "google.cloud.datalabeling.v1beta1.SearchEvaluationsRequest" do
|
192
|
+
optional :parent, :string, 1
|
193
|
+
optional :filter, :string, 2
|
194
|
+
optional :page_size, :int32, 3
|
195
|
+
optional :page_token, :string, 4
|
196
|
+
end
|
197
|
+
add_message "google.cloud.datalabeling.v1beta1.SearchEvaluationsResponse" do
|
198
|
+
repeated :evaluations, :message, 1, "google.cloud.datalabeling.v1beta1.Evaluation"
|
199
|
+
optional :next_page_token, :string, 2
|
200
|
+
end
|
201
|
+
add_message "google.cloud.datalabeling.v1beta1.SearchExampleComparisonsRequest" do
|
202
|
+
optional :parent, :string, 1
|
203
|
+
optional :page_size, :int32, 2
|
204
|
+
optional :page_token, :string, 3
|
205
|
+
end
|
206
|
+
add_message "google.cloud.datalabeling.v1beta1.SearchExampleComparisonsResponse" do
|
207
|
+
repeated :example_comparisons, :message, 1, "google.cloud.datalabeling.v1beta1.SearchExampleComparisonsResponse.ExampleComparison"
|
208
|
+
optional :next_page_token, :string, 2
|
209
|
+
end
|
210
|
+
add_message "google.cloud.datalabeling.v1beta1.SearchExampleComparisonsResponse.ExampleComparison" do
|
211
|
+
optional :ground_truth_example, :message, 1, "google.cloud.datalabeling.v1beta1.Example"
|
212
|
+
repeated :model_created_examples, :message, 2, "google.cloud.datalabeling.v1beta1.Example"
|
213
|
+
end
|
214
|
+
add_message "google.cloud.datalabeling.v1beta1.CreateEvaluationJobRequest" do
|
215
|
+
optional :parent, :string, 1
|
216
|
+
optional :job, :message, 2, "google.cloud.datalabeling.v1beta1.EvaluationJob"
|
217
|
+
end
|
218
|
+
add_message "google.cloud.datalabeling.v1beta1.UpdateEvaluationJobRequest" do
|
219
|
+
optional :evaluation_job, :message, 1, "google.cloud.datalabeling.v1beta1.EvaluationJob"
|
220
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
221
|
+
end
|
222
|
+
add_message "google.cloud.datalabeling.v1beta1.GetEvaluationJobRequest" do
|
223
|
+
optional :name, :string, 1
|
224
|
+
end
|
225
|
+
add_message "google.cloud.datalabeling.v1beta1.PauseEvaluationJobRequest" do
|
226
|
+
optional :name, :string, 1
|
227
|
+
end
|
228
|
+
add_message "google.cloud.datalabeling.v1beta1.ResumeEvaluationJobRequest" do
|
229
|
+
optional :name, :string, 1
|
230
|
+
end
|
231
|
+
add_message "google.cloud.datalabeling.v1beta1.DeleteEvaluationJobRequest" do
|
232
|
+
optional :name, :string, 1
|
233
|
+
end
|
234
|
+
add_message "google.cloud.datalabeling.v1beta1.ListEvaluationJobsRequest" do
|
235
|
+
optional :parent, :string, 1
|
236
|
+
optional :filter, :string, 2
|
237
|
+
optional :page_size, :int32, 3
|
238
|
+
optional :page_token, :string, 4
|
239
|
+
end
|
240
|
+
add_message "google.cloud.datalabeling.v1beta1.ListEvaluationJobsResponse" do
|
241
|
+
repeated :evaluation_jobs, :message, 1, "google.cloud.datalabeling.v1beta1.EvaluationJob"
|
242
|
+
optional :next_page_token, :string, 2
|
243
|
+
end
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
module Google
|
248
|
+
module Cloud
|
249
|
+
module DataLabeling
|
250
|
+
module V1beta1
|
251
|
+
CreateDatasetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.CreateDatasetRequest").msgclass
|
252
|
+
GetDatasetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetDatasetRequest").msgclass
|
253
|
+
ListDatasetsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListDatasetsRequest").msgclass
|
254
|
+
ListDatasetsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListDatasetsResponse").msgclass
|
255
|
+
DeleteDatasetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.DeleteDatasetRequest").msgclass
|
256
|
+
ImportDataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ImportDataRequest").msgclass
|
257
|
+
ExportDataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ExportDataRequest").msgclass
|
258
|
+
GetDataItemRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetDataItemRequest").msgclass
|
259
|
+
ListDataItemsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListDataItemsRequest").msgclass
|
260
|
+
ListDataItemsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListDataItemsResponse").msgclass
|
261
|
+
GetAnnotatedDatasetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetAnnotatedDatasetRequest").msgclass
|
262
|
+
ListAnnotatedDatasetsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListAnnotatedDatasetsRequest").msgclass
|
263
|
+
ListAnnotatedDatasetsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListAnnotatedDatasetsResponse").msgclass
|
264
|
+
DeleteAnnotatedDatasetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.DeleteAnnotatedDatasetRequest").msgclass
|
265
|
+
LabelImageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelImageRequest").msgclass
|
266
|
+
LabelImageRequest::Feature = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelImageRequest.Feature").enummodule
|
267
|
+
LabelVideoRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelVideoRequest").msgclass
|
268
|
+
LabelVideoRequest::Feature = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelVideoRequest.Feature").enummodule
|
269
|
+
LabelTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelTextRequest").msgclass
|
270
|
+
LabelTextRequest::Feature = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.LabelTextRequest.Feature").enummodule
|
271
|
+
GetExampleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetExampleRequest").msgclass
|
272
|
+
ListExamplesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListExamplesRequest").msgclass
|
273
|
+
ListExamplesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListExamplesResponse").msgclass
|
274
|
+
CreateAnnotationSpecSetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.CreateAnnotationSpecSetRequest").msgclass
|
275
|
+
GetAnnotationSpecSetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetAnnotationSpecSetRequest").msgclass
|
276
|
+
ListAnnotationSpecSetsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListAnnotationSpecSetsRequest").msgclass
|
277
|
+
ListAnnotationSpecSetsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListAnnotationSpecSetsResponse").msgclass
|
278
|
+
DeleteAnnotationSpecSetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.DeleteAnnotationSpecSetRequest").msgclass
|
279
|
+
CreateInstructionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.CreateInstructionRequest").msgclass
|
280
|
+
GetInstructionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetInstructionRequest").msgclass
|
281
|
+
DeleteInstructionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.DeleteInstructionRequest").msgclass
|
282
|
+
ListInstructionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListInstructionsRequest").msgclass
|
283
|
+
ListInstructionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListInstructionsResponse").msgclass
|
284
|
+
GetEvaluationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetEvaluationRequest").msgclass
|
285
|
+
SearchEvaluationsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SearchEvaluationsRequest").msgclass
|
286
|
+
SearchEvaluationsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SearchEvaluationsResponse").msgclass
|
287
|
+
SearchExampleComparisonsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SearchExampleComparisonsRequest").msgclass
|
288
|
+
SearchExampleComparisonsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SearchExampleComparisonsResponse").msgclass
|
289
|
+
SearchExampleComparisonsResponse::ExampleComparison = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.SearchExampleComparisonsResponse.ExampleComparison").msgclass
|
290
|
+
CreateEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.CreateEvaluationJobRequest").msgclass
|
291
|
+
UpdateEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.UpdateEvaluationJobRequest").msgclass
|
292
|
+
GetEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.GetEvaluationJobRequest").msgclass
|
293
|
+
PauseEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.PauseEvaluationJobRequest").msgclass
|
294
|
+
ResumeEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ResumeEvaluationJobRequest").msgclass
|
295
|
+
DeleteEvaluationJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.DeleteEvaluationJobRequest").msgclass
|
296
|
+
ListEvaluationJobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListEvaluationJobsRequest").msgclass
|
297
|
+
ListEvaluationJobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datalabeling.v1beta1.ListEvaluationJobsResponse").msgclass
|
298
|
+
end
|
299
|
+
end
|
300
|
+
end
|
301
|
+
end
|