Class: Google::Apis::DriveV2::Property

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb

Overview

A key-value pair attached to a file that is either public or private to an application. The following limits apply to file properties:

  • Maximum of 100 properties total per file
  • Maximum of 30 private properties per app
  • Maximum of 30 public properties
  • Maximum of 124 bytes size limit on (key + value) string in UTF-8 encoding for a single property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Property

Returns a new instance of Property.



2327
2328
2329
# File 'generated/google/apis/drive_v2/classes.rb', line 2327

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

ETag of the property. Corresponds to the JSON property etag

Returns:

  • (String)


2300
2301
2302
# File 'generated/google/apis/drive_v2/classes.rb', line 2300

def etag
  @etag
end

#keyString

The key of this property. Corresponds to the JSON property key

Returns:

  • (String)


2305
2306
2307
# File 'generated/google/apis/drive_v2/classes.rb', line 2305

def key
  @key
end

#kindString

This is always drive#property. Corresponds to the JSON property kind

Returns:

  • (String)


2310
2311
2312
# File 'generated/google/apis/drive_v2/classes.rb', line 2310

def kind
  @kind
end

The link back to this property. Corresponds to the JSON property selfLink

Returns:

  • (String)


2315
2316
2317
# File 'generated/google/apis/drive_v2/classes.rb', line 2315

def self_link
  @self_link
end

#valueString

The value of this property. Corresponds to the JSON property value

Returns:

  • (String)


2320
2321
2322
# File 'generated/google/apis/drive_v2/classes.rb', line 2320

def value
  @value
end

#visibilityString

The visibility of this property. Corresponds to the JSON property visibility

Returns:

  • (String)


2325
2326
2327
# File 'generated/google/apis/drive_v2/classes.rb', line 2325

def visibility
  @visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2332
2333
2334
2335
2336
2337
2338
2339
# File 'generated/google/apis/drive_v2/classes.rb', line 2332

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @key = args[:key] if args.key?(:key)
  @kind = args[:kind] if args.key?(:kind)
  @self_link = args[:self_link] if args.key?(:self_link)
  @value = args[:value] if args.key?(:value)
  @visibility = args[:visibility] if args.key?(:visibility)
end