Sha256: 8dc60ae3f2839ac58ab90efb307873c7493d868f867898ab20c374e7c56f4aaf
Contents?: true
Size: 635 Bytes
Versions: 4
Compression:
Stored size: 635 Bytes
Contents
# frozen_string_literal: true # Code generated for API Clients. DO NOT EDIT. module NgrokAPI module Models class AWSCredentials attr_reader :client, :attrs, :aws_access_key_id, :aws_secret_access_key def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @aws_access_key_id = @attrs['aws_access_key_id'] @aws_secret_access_key = @attrs['aws_secret_access_key'] end def ==(other) @attrs == other.attrs end def to_s @attrs.to_s end def to_h @attrs.to_h end end end end
Version data entries
4 entries across 4 versions & 1 rubygems