Sha256: da465e5f5d450cee934d30d270f878d40d0faba2019960978808d28e7674e354
Contents?: true
Size: 1.38 KB
Versions: 10
Compression:
Stored size: 1.38 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/v2019_03_01_hybrid/resources_module_definition' require 'profiles/v2019_03_01_hybrid/modules/resources_profile_module' module Azure::Resources::Profiles::V2019_03_01_Hybrid module Mgmt # # Client class for the V2019_03_01_Hybrid profile SDK. # class Client < ResourcesManagementClass include MsRestAzure::Common::Configurable # # Initializes a new instance of the Client class. # @param options [Hash] hash of client options. # options = { # tenant_id: 'YOUR TENANT ID', # client_id: 'YOUR CLIENT ID', # client_secret: 'YOUR CLIENT SECRET', # subscription_id: 'YOUR SUBSCRIPTION ID', # credentials: credentials, # active_directory_settings: active_directory_settings, # base_url: 'YOUR BASE URL', # options: options # } # 'credentials' are optional and if not passed in the hash, will be obtained # from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider. # # Also, base_url, active_directory_settings & options are optional. # def initialize(options = {}) super(options) end end end end
Version data entries
10 entries across 10 versions & 2 rubygems