Class: Google::Apis::DriveV3::File::LinkShareMetadata

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

Overview

Contains details about the link URLs that clients are using to refer to this item.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LinkShareMetadata

Returns a new instance of LinkShareMetadata.



2122
2123
2124
# File 'lib/google/apis/drive_v3/classes.rb', line 2122

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

Instance Attribute Details

#security_update_eligibleBoolean Also known as: security_update_eligible?

Output only. Whether the file is eligible for security update. Corresponds to the JSON property securityUpdateEligible

Returns:

  • (Boolean)


2113
2114
2115
# File 'lib/google/apis/drive_v3/classes.rb', line 2113

def security_update_eligible
  @security_update_eligible
end

#security_update_enabledBoolean Also known as: security_update_enabled?

Output only. Whether the security update is enabled for this file. Corresponds to the JSON property securityUpdateEnabled

Returns:

  • (Boolean)


2119
2120
2121
# File 'lib/google/apis/drive_v3/classes.rb', line 2119

def security_update_enabled
  @security_update_enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2127
2128
2129
2130
# File 'lib/google/apis/drive_v3/classes.rb', line 2127

def update!(**args)
  @security_update_eligible = args[:security_update_eligible] if args.key?(:security_update_eligible)
  @security_update_enabled = args[:security_update_enabled] if args.key?(:security_update_enabled)
end