Class: Azure::ARM::Graph::Objects
- Inherits:
-
Object
- Object
- Azure::ARM::Graph::Objects
- Includes:
- Models, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_graph/objects.rb
Overview
The Graph RBAC Management Client
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Reference to the GraphRbacManagementClient.
Instance Method Summary collapse
-
#get_current_user(custom_headers = nil) ⇒ AADObject
Gets the details for current logged in user.
-
#get_current_user_async(custom_headers = nil) ⇒ Concurrent::Promise
Gets the details for current logged in user.
-
#get_current_user_with_http_info(custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the details for current logged in user.
-
#initialize(client) ⇒ Objects
constructor
Creates and initializes a new instance of the Objects class.
Constructor Details
#initialize(client) ⇒ Objects
Creates and initializes a new instance of the Objects class.
18 19 20 |
# File 'lib/generated/azure_mgmt_graph/objects.rb', line 18 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns reference to the GraphRbacManagementClient.
23 24 25 |
# File 'lib/generated/azure_mgmt_graph/objects.rb', line 23 def client @client end |
Instance Method Details
#get_current_user(custom_headers = nil) ⇒ AADObject
Gets the details for current logged in user
will be added to the HTTP request.
33 34 35 36 |
# File 'lib/generated/azure_mgmt_graph/objects.rb', line 33 def get_current_user(custom_headers = nil) response = get_current_user_async(custom_headers).value! response.body unless response.nil? end |
#get_current_user_async(custom_headers = nil) ⇒ Concurrent::Promise
Gets the details for current logged in user
to the HTTP request.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/generated/azure_mgmt_graph/objects.rb', line 58 def get_current_user_async(custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.tenant_id is nil' if @client.tenant_id.nil? request_headers = {} # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = '/{tenantID}/me' = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}) } request_url = @base_url || @client.base_url request = MsRest::HttpOperationRequest.new(request_url, path_template, :get, ) promise = request.run_promise do |req| @client.credentials.sign_request(req) unless @client.credentials.nil? end promise = promise.then do |http_response| status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(request, http_response, error_model) end # Create Result result = MsRestAzure::AzureOperationResponse.new(request, http_response) result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = AADObject.mapper() result.body = @client.deserialize(result_mapper, parsed_response, 'result.body') rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#get_current_user_with_http_info(custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the details for current logged in user
will be added to the HTTP request.
46 47 48 |
# File 'lib/generated/azure_mgmt_graph/objects.rb', line 46 def get_current_user_with_http_info(custom_headers = nil) get_current_user_async(custom_headers).value! end |