class Azure::Graph::Mgmt::V1_6::ServicePrincipals
The Graph
RBAC Management Client
Attributes
@return [GraphRbacManagementClient] reference to the GraphRbacManagementClient
Private Class Methods
Creates and initializes a new instance of the ServicePrincipals
class. @param client service class for accessing basic functionality.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 17 def initialize(client) @client = client end
Private Instance Methods
Creates a service principal in the directory.
@param parameters [ServicePrincipalCreateParameters] Parameters to create a service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ServicePrincipal] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 34 def create(parameters, custom_headers = nil) response = create_async(parameters, custom_headers).value! response.body unless response.nil? end
Creates a service principal in the directory.
@param parameters [ServicePrincipalCreateParameters] Parameters to create a service principal. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 63 def create_async(parameters, custom_headers = nil) fail ArgumentError, 'parameters is nil' if parameters.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? request_headers['Content-Type'] = 'application/json; charset=utf-8' # Serialize Request request_mapper = Azure::Graph::Mgmt::V1_6::Models::ServicePrincipalCreateParameters.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = '{tenantID}/servicePrincipals' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 201 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? # Deserialize Response if status_code == 201 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::Graph::Mgmt::V1_6::Models::ServicePrincipal.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Creates a service principal in the directory.
@param parameters [ServicePrincipalCreateParameters] Parameters to create a service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 49 def create_with_http_info(parameters, custom_headers = nil) create_async(parameters, custom_headers).value! end
Deletes a service principal from the directory.
@param object_id [String] The object ID of the service principal to delete. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 217 def delete(object_id, custom_headers = nil) response = delete_async(object_id, custom_headers).value! nil end
Deletes a service principal from the directory.
@param object_id [String] The object ID of the service principal to delete. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 244 def delete_async(object_id, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.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}/servicePrincipals/{objectId}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:delete, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 204 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result end promise.execute end
Deletes a service principal from the directory.
@param object_id [String] The object ID of the service principal to delete. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 231 def delete_with_http_info(object_id, custom_headers = nil) delete_async(object_id, custom_headers).value! end
Gets service principal information from the directory.
@param object_id [String] The object ID of the service principal to get. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ServicePrincipal] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 295 def get(object_id, custom_headers = nil) response = get_async(object_id, custom_headers).value! response.body unless response.nil? end
Gets service principal information from the directory.
@param object_id [String] The object ID of the service principal to get. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 322 def get_async(object_id, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.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}/servicePrincipals/{objectId}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end 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 = Azure::Graph::Mgmt::V1_6::Models::ServicePrincipal.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Gets service principal information from the directory.
@param object_id [String] The object ID of the service principal to get. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 309 def get_with_http_info(object_id, custom_headers = nil) get_async(object_id, custom_headers).value! end
Gets a list of service principals from the current tenant.
@param filter [String] The filter to apply to the operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<ServicePrincipal>] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 132 def list(filter = nil, custom_headers = nil) first_page = list_as_lazy(filter, custom_headers) first_page.get_all_items end
Gets a list of service principals from the current tenant.
@param filter [String] The filter to apply to the operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [ServicePrincipalListResult] which provide lazy access to pages of the response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 840 def list_as_lazy(filter = nil, custom_headers = nil) response = list_async(filter, custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_link| list_next_async(next_link, custom_headers) end page end end
Gets a list of service principals from the current tenant.
@param filter [String] The filter to apply to the operation. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 159 def list_async(filter = nil, 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}/servicePrincipals' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, query_params: {'$filter' => filter,'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end 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 = Azure::Graph::Mgmt::V1_6::Models::ServicePrincipalListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Get the keyCredentials associated with the specified service principal.
@param object_id [String] The object ID of the service principal for which to get keyCredentials. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [KeyCredentialListResult] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 384 def list_key_credentials(object_id, custom_headers = nil) response = list_key_credentials_async(object_id, custom_headers).value! response.body unless response.nil? end
Get the keyCredentials associated with the specified service principal.
@param object_id [String] The object ID of the service principal for which to get keyCredentials. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 413 def list_key_credentials_async(object_id, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.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}/servicePrincipals/{objectId}/keyCredentials' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end 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 = Azure::Graph::Mgmt::V1_6::Models::KeyCredentialListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Get the keyCredentials associated with the specified service principal.
@param object_id [String] The object ID of the service principal for which to get keyCredentials. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 399 def list_key_credentials_with_http_info(object_id, custom_headers = nil) list_key_credentials_async(object_id, custom_headers).value! end
Gets a list of service principals from the current tenant.
@param next_link [String] Next link for the list operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Array<ServicePrincipal>] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 751 def list_next(next_link, custom_headers = nil) response = list_next_async(next_link, custom_headers).value! response.body unless response.nil? end
Gets a list of service principals from the current tenant.
@param next_link [String] Next link for the list operation. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 778 def list_next_async(next_link, custom_headers = nil) fail ArgumentError, 'next_link is nil' if next_link.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}/{nextLink}' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'nextLink' => next_link}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end 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 = Azure::Graph::Mgmt::V1_6::Models::ServicePrincipalListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Gets a list of service principals from the current tenant.
@param next_link [String] Next link for the list operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 765 def list_next_with_http_info(next_link, custom_headers = nil) list_next_async(next_link, custom_headers).value! end
Gets the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [PasswordCredentialListResult] operation results.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 570 def list_password_credentials(object_id, custom_headers = nil) response = list_password_credentials_async(object_id, custom_headers).value! response.body unless response.nil? end
Gets the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 597 def list_password_credentials_async(object_id, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.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}/servicePrincipals/{objectId}/passwordCredentials' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end 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 = Azure::Graph::Mgmt::V1_6::Models::PasswordCredentialListResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result) end end result end promise.execute end
Gets the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 584 def list_password_credentials_with_http_info(object_id, custom_headers = nil) list_password_credentials_async(object_id, custom_headers).value! end
Gets a list of service principals from the current tenant.
@param filter [String] The filter to apply to the operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 146 def list_with_http_info(filter = nil, custom_headers = nil) list_async(filter, custom_headers).value! end
Update the keyCredentials associated with a service principal.
@param object_id [String] The object ID for which to get service principal information. @param parameters [KeyCredentialsUpdateParameters] Parameters to update the keyCredentials of an existing service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 476 def update_key_credentials(object_id, parameters, custom_headers = nil) response = update_key_credentials_async(object_id, parameters, custom_headers).value! nil end
Update the keyCredentials associated with a service principal.
@param object_id [String] The object ID for which to get service principal information. @param parameters [KeyCredentialsUpdateParameters] Parameters to update the keyCredentials of an existing service principal. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 509 def update_key_credentials_async(object_id, parameters, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.nil? fail ArgumentError, 'parameters is nil' if parameters.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? request_headers['Content-Type'] = 'application/json; charset=utf-8' # Serialize Request request_mapper = Azure::Graph::Mgmt::V1_6::Models::KeyCredentialsUpdateParameters.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = '{tenantID}/servicePrincipals/{objectId}/keyCredentials' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:patch, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 204 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result end promise.execute end
Update the keyCredentials associated with a service principal.
@param object_id [String] The object ID for which to get service principal information. @param parameters [KeyCredentialsUpdateParameters] Parameters to update the keyCredentials of an existing service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 493 def update_key_credentials_with_http_info(object_id, parameters, custom_headers = nil) update_key_credentials_async(object_id, parameters, custom_headers).value! end
Updates the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param parameters [PasswordCredentialsUpdateParameters] Parameters to update the passwordCredentials of an existing service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 659 def update_password_credentials(object_id, parameters, custom_headers = nil) response = update_password_credentials_async(object_id, parameters, custom_headers).value! nil end
Updates the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param parameters [PasswordCredentialsUpdateParameters] Parameters to update the passwordCredentials of an existing service principal. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [Concurrent::Promise] Promise object which holds the HTTP response.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 690 def update_password_credentials_async(object_id, parameters, custom_headers = nil) fail ArgumentError, 'object_id is nil' if object_id.nil? fail ArgumentError, 'parameters is nil' if parameters.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? request_headers['Content-Type'] = 'application/json; charset=utf-8' # Serialize Request request_mapper = Azure::Graph::Mgmt::V1_6::Models::PasswordCredentialsUpdateParameters.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = '{tenantID}/servicePrincipals/{objectId}/passwordCredentials' request_url = @base_url || @client.base_url options = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'tenantID' => @client.tenant_id}, skip_encoding_path_params: {'objectId' => object_id}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:patch, path_template, options) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 204 error_model = JSON.load(response_content) fail MsRest::HttpOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result end promise.execute end
Updates the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal. @param parameters [PasswordCredentialsUpdateParameters] Parameters to update the passwordCredentials of an existing service principal. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
# File lib/1.6/generated/azure_mgmt_graph/service_principals.rb, line 675 def update_password_credentials_with_http_info(object_id, parameters, custom_headers = nil) update_password_credentials_async(object_id, parameters, custom_headers).value! end