Class: Azure::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Environments

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb

Overview

Time Series Insights client

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Environments

Creates and initializes a new instance of the Environments class.

Parameters:

  • client

    service class for accessing basic functionality.



17
18
19
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 17

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientTimeSeriesInsightsClient (readonly)

Returns reference to the TimeSeriesInsightsClient.

Returns:



22
23
24
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 22

def client
  @client
end

Instance Method Details

#begin_create_or_update(resource_group_name, environment_name, parameters, custom_headers: nil) ⇒ EnvironmentResource

Create or update an environment in the specified subscription and resource group.

creating an environment resource. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    Name of the environment

  • parameters (EnvironmentCreateOrUpdateParameters)

    Parameters for

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

    A hash of custom headers that

Returns:

  • (EnvironmentResource)

    operation results.



512
513
514
515
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 512

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

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

Create or update an environment in the specified subscription and resource group.

creating an environment resource. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    Name of the environment

  • parameters (EnvironmentCreateOrUpdateParameters)

    Parameters for

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 547

def begin_create_or_update_async(resource_group_name, environment_name, parameters, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'environment_name is nil' if environment_name.nil?
  fail ArgumentError, "'environment_name' should satisfy the constraint - 'MaxLength': '90'" if !environment_name.nil? && environment_name.length > 90
  fail ArgumentError, "'environment_name' should satisfy the constraint - 'MinLength': '1'" if !environment_name.nil? && environment_name.length < 1
  fail ArgumentError, "'environment_name' should satisfy the constraint - 'Pattern': '^[-\w\._\(\)]+$'" if !environment_name.nil? && environment_name.match(Regexp.new('^^[-\w\._\(\)]+$$')).nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, 'parameters is nil' if parameters.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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentCreateOrUpdateParameters.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.TimeSeriesInsights/environments/{environmentName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name,'environmentName' => environment_name},
      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 == 404
      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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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, environment_name, parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Create or update an environment in the specified subscription and resource group.

creating an environment resource. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    Name of the environment

  • parameters (EnvironmentCreateOrUpdateParameters)

    Parameters for

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



530
531
532
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 530

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

#begin_update(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers: nil) ⇒ EnvironmentResource

Updates the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group.

StandardEnvironmentUpdateParameters

Request object that contains the

updated information for the environment. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that

Returns:

  • (EnvironmentResource)

    operation results.



638
639
640
641
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 638

def begin_update(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:nil)
  response = begin_update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers: nil) ⇒ Concurrent::Promise

Updates the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group.

StandardEnvironmentUpdateParameters

Request object that contains the

updated information for the environment. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

  • standard_environment_update_parameters
  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 677

def begin_update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'environment_name is nil' if environment_name.nil?
  fail ArgumentError, 'standard_environment_update_parameters is nil' if standard_environment_update_parameters.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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::StandardEnvironmentUpdateParameters.mapper()
  request_content = @client.serialize(request_mapper,  standard_environment_update_parameters)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TimeSeriesInsights/environments/{environmentName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name,'environmentName' => environment_name},
      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
      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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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, environment_name, standard_environment_update_parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Updates the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group.

StandardEnvironmentUpdateParameters

Request object that contains the

updated information for the environment. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



658
659
660
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 658

def begin_update_with_http_info(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:nil)
  begin_update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:custom_headers).value!
end

#create_or_update(resource_group_name, environment_name, parameters, custom_headers: nil) ⇒ EnvironmentResource

Create or update an environment in the specified subscription and resource group.

creating an environment resource. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    Name of the environment

  • parameters (EnvironmentCreateOrUpdateParameters)

    Parameters for

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

    A hash of custom headers that

Returns:

  • (EnvironmentResource)

    operation results.



37
38
39
40
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 37

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

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

creating an environment resource. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    Name of the environment

  • parameters (EnvironmentCreateOrUpdateParameters)

    Parameters for

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 53

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

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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, environment_name, custom_headers: nil) ⇒ Object

Deletes the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that



239
240
241
242
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 239

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

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

Deletes the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



272
273
274
275
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
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 272

def delete_async(resource_group_name, environment_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'environment_name is nil' if environment_name.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.TimeSeriesInsights/environments/{environmentName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name,'environmentName' => environment_name},
      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 == 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

#delete_with_http_info(resource_group_name, environment_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Deletes the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



256
257
258
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 256

def delete_with_http_info(resource_group_name, environment_name, custom_headers:nil)
  delete_async(resource_group_name, environment_name, custom_headers:custom_headers).value!
end

#get(resource_group_name, environment_name, expand: nil, custom_headers: nil) ⇒ EnvironmentResource

Gets the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. internal services of the environment in the Time Series Insights service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

  • expand (String) (defaults to: nil)

    Setting $expand=status will include the status of the

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

    A hash of custom headers that

Returns:

  • (EnvironmentResource)

    operation results.



85
86
87
88
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 85

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

#get_async(resource_group_name, environment_name, expand: nil, custom_headers: nil) ⇒ Concurrent::Promise

Gets the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. internal services of the environment in the Time Series Insights service. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

  • expand (String) (defaults to: nil)

    Setting $expand=status will include the status of the

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 122

def get_async(resource_group_name, environment_name, expand:nil, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'environment_name is nil' if environment_name.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.TimeSeriesInsights/environments/{environmentName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name,'environmentName' => environment_name},
      query_params: {'$expand' => expand,'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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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, environment_name, expand: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group. internal services of the environment in the Time Series Insights service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

  • expand (String) (defaults to: nil)

    Setting $expand=status will include the status of the

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



104
105
106
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 104

def get_with_http_info(resource_group_name, environment_name, expand:nil, custom_headers:nil)
  get_async(resource_group_name, environment_name, expand:expand, custom_headers:custom_headers).value!
end

#list_by_resource_group(resource_group_name, custom_headers: nil) ⇒ EnvironmentListResponse

Lists all the available environments associated with the subscription and within the specified resource group.

will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

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

    A hash of custom headers that

Returns:

  • (EnvironmentListResponse)

    operation results.



327
328
329
330
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 327

def list_by_resource_group(resource_group_name, custom_headers:nil)
  response = list_by_resource_group_async(resource_group_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_by_resource_group_async(resource_group_name, custom_headers: nil) ⇒ Concurrent::Promise

Lists all the available environments associated with the subscription and within the specified resource group.

to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 356

def list_by_resource_group_async(resource_group_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.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.TimeSeriesInsights/environments'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'resourceGroupName' => resource_group_name},
      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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentListResponse.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_resource_group_with_http_info(resource_group_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Lists all the available environments associated with the subscription and within the specified resource group.

will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



342
343
344
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 342

def list_by_resource_group_with_http_info(resource_group_name, custom_headers:nil)
  list_by_resource_group_async(resource_group_name, custom_headers:custom_headers).value!
end

#list_by_subscription(custom_headers: nil) ⇒ EnvironmentListResponse

Lists all the available environments within a subscription, irrespective of the resource groups.

will be added to the HTTP request.

Parameters:

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

    A hash of custom headers that

Returns:

  • (EnvironmentListResponse)

    operation results.



419
420
421
422
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 419

def list_by_subscription(custom_headers:nil)
  response = list_by_subscription_async(custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_by_subscription_async(custom_headers: nil) ⇒ Concurrent::Promise

Lists all the available environments within a subscription, irrespective of the resource groups.

to the HTTP request.

Parameters:

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 446

def list_by_subscription_async(custom_headers: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}/providers/Microsoft.TimeSeriesInsights/environments'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'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::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentListResponse.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_subscription_with_http_info(custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Lists all the available environments within a subscription, irrespective of the resource groups.

will be added to the HTTP request.

Parameters:

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



433
434
435
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 433

def list_by_subscription_with_http_info(custom_headers:nil)
  list_by_subscription_async(custom_headers:custom_headers).value!
end

#update(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers: nil) ⇒ EnvironmentResource

Updates the environment with the specified name in the specified subscription and resource group.

environment associated with the specified resource group.

StandardEnvironmentUpdateParameters

Request object that contains the

updated information for the environment. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that

Returns:

  • (EnvironmentResource)

    operation results.



192
193
194
195
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 192

def update(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:nil)
  response = update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers: nil) ⇒ Concurrent::Promise

environment associated with the specified resource group.

StandardEnvironmentUpdateParameters

Request object that contains the

updated information for the environment. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of an Azure Resource group.

  • environment_name (String)

    The name of the Time Series Insights

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# File 'lib/2018-08-15-preview/generated/azure_mgmt_time_series_insights/environments.rb', line 210

def update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:nil)
  # Send request
  promise = begin_update_async(resource_group_name, environment_name, standard_environment_update_parameters, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::TimeSeriesInsights::Mgmt::V2018_08_15_preview::Models::EnvironmentResource.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