Sha256: cbc24ba4e3917550f9b6089c0f2e472a184ef0a8fe509fb792af6b6bd5bcd5e7

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# encoding: utf-8
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.

require 'profiles/latest/mobileengagement_module_definition'
require 'profiles/latest/modules/mobileengagement_profile_module'
require 'profiles/common/configurable'
require 'profiles/common/default'

module Azure::MobileEngagement::Profiles::Latest::Mgmt
  #
  # Client class for the Latest profile SDK.
  #
  class Client < MobileEngagementClass
    include Azure::ARM::Configurable


    def initialize(options = {})
      super(options)
    end

    def credentials
      if @credentials.nil?
        self.active_directory_settings ||= Azure::ARM::Default.active_directory_settings

        @credentials = MsRest::TokenCredentials.new(
                    MsRestAzure::ApplicationTokenProvider.new(
                        self.tenant_id, self.client_id, self.client_secret, self.active_directory_settings))
      end
      @credentials
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
azure_mgmt_mobile_engagement-0.15.0 lib/profiles/latest/mobileengagement_latest_profile_client.rb