Class: Google::Apis::CloudsearchV1::UploadItemRef
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::UploadItemRef
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Represents an upload session reference. This reference is created via upload method. This reference is valid for 30 days after its creation. Updating of item content may refer to this uploaded content via contentDataRef.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the content reference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UploadItemRef
constructor
A new instance of UploadItemRef.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UploadItemRef
Returns a new instance of UploadItemRef.
5223 5224 5225 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the content reference. The maximum length is 2048 characters.
Corresponds to the JSON property name
5221 5222 5223 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5221 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5228 5229 5230 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 5228 def update!(**args) @name = args[:name] if args.key?(:name) end |