Class: Azure::Kusto::Mgmt::V2019_01_21::Databases

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb

Overview

The Azure Kusto management API provides a RESTful set of web services that interact with Azure Kusto services to manage your clusters and databases. The API enables you to create, update, and delete clusters and databases.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Databases

Creates and initializes a new instance of the Databases class.

Parameters:

  • client

    service class for accessing basic functionality.



19
20
21
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 19

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientKustoManagementClient (readonly)

Returns reference to the KustoManagementClient.

Returns:



24
25
26
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 24

def client
  @client
end

Instance Method Details

#add_principals(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers: nil) ⇒ DatabasePrincipalListResult

Add Database principals permissions.

the Kusto cluster. database principals to add. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_add (DatabasePrincipalListRequest)

    List of

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (DatabasePrincipalListResult)

    operation results.



592
593
594
595
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 592

def add_principals(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers:nil)
  response = add_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#add_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers: nil) ⇒ Concurrent::Promise

Add Database principals permissions.

the Kusto cluster. database principals to add. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_add (DatabasePrincipalListRequest)

    List of

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 629

def add_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, 'database_principals_to_add is nil' if database_principals_to_add.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?

  # Serialize Request
  request_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::DatabasePrincipalListRequest.mapper()
  request_content = @client.serialize(request_mapper,  database_principals_to_add)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/addPrincipals'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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 == 200
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::DatabasePrincipalListResult.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

#add_principals_with_http_info(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Add Database principals permissions.

the Kusto cluster. database principals to add. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_add (DatabasePrincipalListRequest)

    List of

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



611
612
613
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 611

def add_principals_with_http_info(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers:nil)
  add_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_add, custom_headers:custom_headers).value!
end

#begin_create_or_update(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Database

Creates or updates a database.

the Kusto cluster. CreateOrUpdate operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (Database)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Database)

    operation results.



822
823
824
825
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 822

def begin_create_or_update(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  response = begin_create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise

Creates or updates a database.

the Kusto cluster. CreateOrUpdate operation. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (Database)

    The database parameters supplied to the

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 859

def begin_create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, 'parameters is nil' if parameters.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?

  # Serialize Request
  request_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::Database.mapper()
  request_content = @client.serialize(request_mapper,  parameters)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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(:put, 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 || status_code == 201 || status_code == 202
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::Database.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
    # Deserialize Response
    if status_code == 201
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::Database.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

#begin_create_or_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Creates or updates a database.

the Kusto cluster. CreateOrUpdate operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (Database)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



841
842
843
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 841

def begin_create_or_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  begin_create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
end

#begin_delete(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Object

Deletes the database with the given name.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that



1069
1070
1071
1072
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 1069

def begin_delete(resource_group_name, cluster_name, database_name, custom_headers:nil)
  response = begin_delete_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
  nil
end

#begin_delete_async(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Concurrent::Promise

Deletes the database with the given name.

the Kusto cluster. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 1102

def begin_delete_async(resource_group_name, cluster_name, database_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # 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 = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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 == 200 || status_code == 202 || status_code == 204
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?

    result
  end

  promise.execute
end

#begin_delete_with_http_info(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Deletes the database with the given name.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



1086
1087
1088
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 1086

def begin_delete_with_http_info(resource_group_name, cluster_name, database_name, custom_headers:nil)
  begin_delete_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
end

#begin_update(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Database

Updates a database.

the Kusto cluster. Update operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (DatabaseUpdate)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Database)

    operation results.



947
948
949
950
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 947

def begin_update(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  response = begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise

Updates a database.

the Kusto cluster. Update operation. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (DatabaseUpdate)

    The database parameters supplied to the

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 984

def begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, 'parameters is nil' if parameters.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?

  # Serialize Request
  request_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::DatabaseUpdate.mapper()
  request_content = @client.serialize(request_mapper,  parameters)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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 == 200 || status_code == 201 || status_code == 202
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::Database.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
    # Deserialize Response
    if status_code == 201
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::Database.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

#begin_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Updates a database.

the Kusto cluster. Update operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (DatabaseUpdate)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



966
967
968
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 966

def begin_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
end

#check_name_availability(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ CheckNameResult

Checks that the database name is valid and is not already in use.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (DatabaseCheckNameRequest)

    The name of the database.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (CheckNameResult)

    operation results.



38
39
40
41
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 38

def check_name_availability(resource_group_name, cluster_name, database_name, custom_headers:nil)
  response = check_name_availability_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#check_name_availability_async(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Concurrent::Promise

Checks that the database name is valid and is not already in use.

the Kusto cluster. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (DatabaseCheckNameRequest)

    The name of the database.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 71

def check_name_availability_async(resource_group_name, cluster_name, database_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?

  # Serialize Request
  request_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::DatabaseCheckNameRequest.mapper()
  request_content = @client.serialize(request_mapper,  database_name)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/checkNameAvailability'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'subscriptionId' => @client.subscription_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 == 200
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::CheckNameResult.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

#check_name_availability_with_http_info(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Checks that the database name is valid and is not already in use.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (DatabaseCheckNameRequest)

    The name of the database.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



55
56
57
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 55

def check_name_availability_with_http_info(resource_group_name, cluster_name, database_name, custom_headers:nil)
  check_name_availability_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
end

#create_or_update(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Database

Creates or updates a database.

the Kusto cluster. CreateOrUpdate operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (Database)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Database)

    operation results.



346
347
348
349
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 346

def create_or_update(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  response = create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise

the Kusto cluster. CreateOrUpdate operation. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (Database)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 364

def create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  # Send request
  promise = begin_create_or_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::Database.mapper()
      parsed_response = @client.deserialize(result_mapper, parsed_response)
    end

    # Waiting for response.
    @client.get_long_running_operation_result(response, deserialize_method)
  end

  promise
end

#delete(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Object

Deletes the database with the given name.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that



442
443
444
445
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 442

def delete(resource_group_name, cluster_name, database_name, custom_headers:nil)
  response = delete_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
  nil
end

#delete_async(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Concurrent::Promise

the Kusto cluster. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 458

def delete_async(resource_group_name, cluster_name, database_name, custom_headers:nil)
  # Send request
  promise = begin_delete_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
    end

    # Waiting for response.
    @client.get_long_running_operation_result(response, deserialize_method)
  end

  promise
end

#get(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Database

Returns a database.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Database)

    operation results.



243
244
245
246
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 243

def get(resource_group_name, cluster_name, database_name, custom_headers:nil)
  response = get_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#get_async(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Concurrent::Promise

Returns a database.

the Kusto cluster. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 276

def get_async(resource_group_name, cluster_name, database_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # 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 = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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 MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::Database.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_with_http_info(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Returns a database.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



260
261
262
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 260

def get_with_http_info(resource_group_name, cluster_name, database_name, custom_headers:nil)
  get_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
end

#list_by_cluster(resource_group_name, cluster_name, custom_headers: nil) ⇒ DatabaseListResult

Returns the list of databases of the given Kusto cluster.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (DatabaseListResult)

    operation results.



145
146
147
148
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 145

def list_by_cluster(resource_group_name, cluster_name, custom_headers:nil)
  response = list_by_cluster_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_by_cluster_async(resource_group_name, cluster_name, custom_headers: nil) ⇒ Concurrent::Promise

Returns the list of databases of the given Kusto cluster.

the Kusto cluster. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 176

def list_by_cluster_async(resource_group_name, cluster_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # 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 = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'subscriptionId' => @client.subscription_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 MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::DatabaseListResult.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

#list_by_cluster_with_http_info(resource_group_name, cluster_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Returns the list of databases of the given Kusto cluster.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



161
162
163
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 161

def list_by_cluster_with_http_info(resource_group_name, cluster_name, custom_headers:nil)
  list_by_cluster_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
end

#list_principals(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ DatabasePrincipalListResult

Returns a list of database principals of the given Kusto cluster and database.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (DatabasePrincipalListResult)

    operation results.



487
488
489
490
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 487

def list_principals(resource_group_name, cluster_name, database_name, custom_headers:nil)
  response = list_principals_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_principals_async(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ Concurrent::Promise

Returns a list of database principals of the given Kusto cluster and database.

the Kusto cluster. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 522

def list_principals_async(resource_group_name, cluster_name, database_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # 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 = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/listPrincipals'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_id},
      query_params: {'api-version' => @client.api_version},
      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 == 200
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::DatabasePrincipalListResult.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

#list_principals_with_http_info(resource_group_name, cluster_name, database_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Returns a list of database principals of the given Kusto cluster and database.

the Kusto cluster. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



505
506
507
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 505

def list_principals_with_http_info(resource_group_name, cluster_name, database_name, custom_headers:nil)
  list_principals_async(resource_group_name, cluster_name, database_name, custom_headers:custom_headers).value!
end

#remove_principals(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers: nil) ⇒ DatabasePrincipalListResult

Remove Database principals permissions.

the Kusto cluster. database principals to remove. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_remove (DatabasePrincipalListRequest)

    List of

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (DatabasePrincipalListResult)

    operation results.



707
708
709
710
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 707

def remove_principals(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers:nil)
  response = remove_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#remove_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers: nil) ⇒ Concurrent::Promise

Remove Database principals permissions.

the Kusto cluster. database principals to remove. to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_remove (DatabasePrincipalListRequest)

    List of

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 744

def remove_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'cluster_name is nil' if cluster_name.nil?
  fail ArgumentError, 'database_name is nil' if database_name.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, 'database_principals_to_remove is nil' if database_principals_to_remove.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?

  # Serialize Request
  request_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::DatabasePrincipalListRequest.mapper()
  request_content = @client.serialize(request_mapper,  database_principals_to_remove)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/removePrincipals'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'clusterName' => cluster_name,'databaseName' => database_name,'subscriptionId' => @client.subscription_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 == 200
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-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::Kusto::Mgmt::V2019_01_21::Models::DatabasePrincipalListResult.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

#remove_principals_with_http_info(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Remove Database principals permissions.

the Kusto cluster. database principals to remove. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • database_principals_to_remove (DatabasePrincipalListRequest)

    List of

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



726
727
728
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 726

def remove_principals_with_http_info(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers:nil)
  remove_principals_async(resource_group_name, cluster_name, database_name, database_principals_to_remove, custom_headers:custom_headers).value!
end

#update(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Database

Updates a database.

the Kusto cluster. Update operation. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (DatabaseUpdate)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Database)

    operation results.



396
397
398
399
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 396

def update(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  response = update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise

the Kusto cluster. Update operation. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group containing

  • cluster_name (String)

    The name of the Kusto cluster.

  • database_name (String)

    The name of the database in the Kusto cluster.

  • parameters (DatabaseUpdate)

    The database parameters supplied to the

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# File 'lib/2019-01-21/generated/azure_mgmt_kusto/databases.rb', line 414

def update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil)
  # Send request
  promise = begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::Kusto::Mgmt::V2019_01_21::Models::Database.mapper()
      parsed_response = @client.deserialize(result_mapper, parsed_response)
    end

    # Waiting for response.
    @client.get_long_running_operation_result(response, deserialize_method)
  end

  promise
end