Autogenerated update (2019-01-20)
Update: - videointelligence_v1 - videointelligence_v1beta2 - videointelligence_v1p1beta1
This commit is contained in:
parent
848ea3d361
commit
3845130574
|
@ -96659,6 +96659,7 @@
|
|||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames": frames
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames/frame": frame
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/segment": segment
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/trackId": track_id
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame": google_cloud_videointelligence_v1p2beta1_object_tracking_frame
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/normalizedBoundingBox": normalized_bounding_box
|
||||
"/videointelligence:v1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/timeOffset": time_offset
|
||||
|
@ -97401,6 +97402,7 @@
|
|||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames": frames
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames/frame": frame
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/segment": segment
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/trackId": track_id
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame": google_cloud_videointelligence_v1p2beta1_object_tracking_frame
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/normalizedBoundingBox": normalized_bounding_box
|
||||
"/videointelligence:v1beta2/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/timeOffset": time_offset
|
||||
|
@ -97780,6 +97782,7 @@
|
|||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames": frames
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/frames/frame": frame
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/segment": segment
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingAnnotation/trackId": track_id
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame": google_cloud_videointelligence_v1p2beta1_object_tracking_frame
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/normalizedBoundingBox": normalized_bounding_box
|
||||
"/videointelligence:v1p1beta1/GoogleCloudVideointelligenceV1p2beta1_ObjectTrackingFrame/timeOffset": time_offset
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/video-intelligence/docs/
|
||||
module VideointelligenceV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20181027'
|
||||
REVISION = '20190112'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -2196,6 +2196,9 @@ module Google
|
|||
attr_accessor :entity
|
||||
|
||||
# Information corresponding to all frames where this object track appears.
|
||||
# Non-streaming batch mode: it may be one or multiple ObjectTrackingFrame
|
||||
# messages in frames.
|
||||
# Streaming mode: it can only be one ObjectTrackingFrame message in frames.
|
||||
# Corresponds to the JSON property `frames`
|
||||
# @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame>]
|
||||
attr_accessor :frames
|
||||
|
@ -2205,6 +2208,16 @@ module Google
|
|||
# @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
|
||||
attr_accessor :segment
|
||||
|
||||
# Streaming mode ONLY.
|
||||
# In streaming mode, we do not know the end time of a tracked object
|
||||
# before it is completed. Hence, there is no VideoSegment info returned.
|
||||
# Instead, we provide a unique identifiable integer track_id so that
|
||||
# the customers can correlate the results of the ongoing
|
||||
# ObjectTrackAnnotation of the same track_id over time.
|
||||
# Corresponds to the JSON property `trackId`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :track_id
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -2215,6 +2228,7 @@ module Google
|
|||
@entity = args[:entity] if args.key?(:entity)
|
||||
@frames = args[:frames] if args.key?(:frames)
|
||||
@segment = args[:segment] if args.key?(:segment)
|
||||
@track_id = args[:track_id] if args.key?(:track_id)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1084,6 +1084,7 @@ module Google
|
|||
|
||||
property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
|
||||
|
||||
property :track_id, :numeric_string => true, as: 'trackId'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/video-intelligence/docs/
|
||||
module VideointelligenceV1beta2
|
||||
VERSION = 'V1beta2'
|
||||
REVISION = '20181027'
|
||||
REVISION = '20190112'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -2196,6 +2196,9 @@ module Google
|
|||
attr_accessor :entity
|
||||
|
||||
# Information corresponding to all frames where this object track appears.
|
||||
# Non-streaming batch mode: it may be one or multiple ObjectTrackingFrame
|
||||
# messages in frames.
|
||||
# Streaming mode: it can only be one ObjectTrackingFrame message in frames.
|
||||
# Corresponds to the JSON property `frames`
|
||||
# @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame>]
|
||||
attr_accessor :frames
|
||||
|
@ -2205,6 +2208,16 @@ module Google
|
|||
# @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
|
||||
attr_accessor :segment
|
||||
|
||||
# Streaming mode ONLY.
|
||||
# In streaming mode, we do not know the end time of a tracked object
|
||||
# before it is completed. Hence, there is no VideoSegment info returned.
|
||||
# Instead, we provide a unique identifiable integer track_id so that
|
||||
# the customers can correlate the results of the ongoing
|
||||
# ObjectTrackAnnotation of the same track_id over time.
|
||||
# Corresponds to the JSON property `trackId`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :track_id
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -2215,6 +2228,7 @@ module Google
|
|||
@entity = args[:entity] if args.key?(:entity)
|
||||
@frames = args[:frames] if args.key?(:frames)
|
||||
@segment = args[:segment] if args.key?(:segment)
|
||||
@track_id = args[:track_id] if args.key?(:track_id)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1066,6 +1066,7 @@ module Google
|
|||
|
||||
property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
|
||||
|
||||
property :track_id, :numeric_string => true, as: 'trackId'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/video-intelligence/docs/
|
||||
module VideointelligenceV1p1beta1
|
||||
VERSION = 'V1p1beta1'
|
||||
REVISION = '20181027'
|
||||
REVISION = '20190112'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -2196,6 +2196,9 @@ module Google
|
|||
attr_accessor :entity
|
||||
|
||||
# Information corresponding to all frames where this object track appears.
|
||||
# Non-streaming batch mode: it may be one or multiple ObjectTrackingFrame
|
||||
# messages in frames.
|
||||
# Streaming mode: it can only be one ObjectTrackingFrame message in frames.
|
||||
# Corresponds to the JSON property `frames`
|
||||
# @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingFrame>]
|
||||
attr_accessor :frames
|
||||
|
@ -2205,6 +2208,16 @@ module Google
|
|||
# @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
|
||||
attr_accessor :segment
|
||||
|
||||
# Streaming mode ONLY.
|
||||
# In streaming mode, we do not know the end time of a tracked object
|
||||
# before it is completed. Hence, there is no VideoSegment info returned.
|
||||
# Instead, we provide a unique identifiable integer track_id so that
|
||||
# the customers can correlate the results of the ongoing
|
||||
# ObjectTrackAnnotation of the same track_id over time.
|
||||
# Corresponds to the JSON property `trackId`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :track_id
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -2215,6 +2228,7 @@ module Google
|
|||
@entity = args[:entity] if args.key?(:entity)
|
||||
@frames = args[:frames] if args.key?(:frames)
|
||||
@segment = args[:segment] if args.key?(:segment)
|
||||
@track_id = args[:track_id] if args.key?(:track_id)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1066,6 +1066,7 @@ module Google
|
|||
|
||||
property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
|
||||
|
||||
property :track_id, :numeric_string => true, as: 'trackId'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue