Class: Google::Apis::MonitoringV3::BasicAuthentication

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

Overview

The authentication parameters to provide to the specified resource or URL that requires a username and password. Currently, only Basic HTTP authentication ( https://tools.ietf.org/html/rfc7617) is supported in Uptime checks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BasicAuthentication

Returns a new instance of BasicAuthentication.



282
283
284
# File 'generated/google/apis/monitoring_v3/classes.rb', line 282

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

Instance Attribute Details

#passwordString

The password to use when authenticating with the HTTP server. Corresponds to the JSON property password

Returns:

  • (String)


275
276
277
# File 'generated/google/apis/monitoring_v3/classes.rb', line 275

def password
  @password
end

#usernameString

The username to use when authenticating with the HTTP server. Corresponds to the JSON property username

Returns:

  • (String)


280
281
282
# File 'generated/google/apis/monitoring_v3/classes.rb', line 280

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



287
288
289
290
# File 'generated/google/apis/monitoring_v3/classes.rb', line 287

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