Class: Google::Apis::AdminDirectoryV1::Asp
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::Asp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
An application-specific password (ASP) is used with applications that do not accept a verification code when logging into the application on certain devices. The ASP access code is used instead of the login and password you commonly use when accessing an application through a browser. For more information about ASPs and how to create one, see the help center.
Instance Attribute Summary collapse
-
#code_id ⇒ Fixnum
The unique ID of the ASP.
-
#creation_time ⇒ Fixnum
The time when the ASP was created.
-
#etag ⇒ String
ETag of the ASP.
-
#kind ⇒ String
The type of the API resource.
-
#last_time_used ⇒ Fixnum
The time when the ASP was last used.
-
#name ⇒ String
The name of the application that the user, represented by their
userId
, entered when the ASP was created. -
#user_key ⇒ String
The unique ID of the user who issued the ASP.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Asp
constructor
A new instance of Asp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Asp
Returns a new instance of Asp.
146 147 148 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 146 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code_id ⇒ Fixnum
The unique ID of the ASP.
Corresponds to the JSON property codeId
111 112 113 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 111 def code_id @code_id end |
#creation_time ⇒ Fixnum
The time when the ASP was created. Expressed in Unix time format.
Corresponds to the JSON property creationTime
117 118 119 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 117 def creation_time @creation_time end |
#etag ⇒ String
ETag of the ASP.
Corresponds to the JSON property etag
122 123 124 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 122 def etag @etag end |
#kind ⇒ String
The type of the API resource. This is always admin#directory#asp
.
Corresponds to the JSON property kind
127 128 129 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 127 def kind @kind end |
#last_time_used ⇒ Fixnum
The time when the ASP was last used. Expressed in Unix time format.
Corresponds to the JSON property lastTimeUsed
133 134 135 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 133 def last_time_used @last_time_used end |
#name ⇒ String
The name of the application that the user, represented by their userId
,
entered when the ASP was created.
Corresponds to the JSON property name
139 140 141 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 139 def name @name end |
#user_key ⇒ String
The unique ID of the user who issued the ASP.
Corresponds to the JSON property userKey
144 145 146 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 144 def user_key @user_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
151 152 153 154 155 156 157 158 159 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 151 def update!(**args) @code_id = args[:code_id] if args.key?(:code_id) @creation_time = args[:creation_time] if args.key?(:creation_time) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @last_time_used = args[:last_time_used] if args.key?(:last_time_used) @name = args[:name] if args.key?(:name) @user_key = args[:user_key] if args.key?(:user_key) end |