Sha256: 329bb79f2595c326c7126bfc705480a3e1ccb9720ff7a4e3ca80f9481c0e8fc0
Contents?: true
Size: 411 Bytes
Versions: 6
Compression:
Stored size: 411 Bytes
Contents
# frozen_string_literal: true module NgrokAPI module Models class AWSRole attr_reader :client, :result, :role_arn def initialize(client:, result:) @client = client @result = result @role_arn = @result['role_arn'] end def ==(other) @result == other.result end def to_s @result.to_s end end end end
Version data entries
6 entries across 6 versions & 1 rubygems