class AutomateSoup::Credentials

Credentials to authenticate with chef automate

Attributes

password[R]
token[R]
username[R]

Public Class Methods

new( username: nil, password: nil, token: nil ) click to toggle source
# File lib/automate_soup/credentials.rb, line 6
def initialize(
  username: nil,
  password: nil,
  token: nil
)
  @username = username
  @password = password
  @token = token
end