azure_mgmt_resources 0.17.1 → 0.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/lib/2016-02-01/generated/azure_mgmt_resources/resource_management_client.rb +1 -1
 - data/lib/2016-07-01/generated/azure_mgmt_resources/resource_management_client.rb +1 -1
 - data/lib/2016-09-01/generated/azure_mgmt_resources/resource_management_client.rb +1 -1
 - data/lib/2017-05-10/generated/azure_mgmt_resources/resource_management_client.rb +1 -1
 - data/lib/2018-02-01/generated/azure_mgmt_resources/resource_management_client.rb +1 -1
 - data/lib/2018-05-01/generated/azure_mgmt_resources.rb +28 -24
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/deployment_extended.rb +2 -1
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/operation.rb +58 -0
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/operation_display.rb +80 -0
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/operation_list_result.rb +100 -0
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/resource.rb +1 -1
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/resource_group.rb +1 -0
 - data/lib/2018-05-01/generated/azure_mgmt_resources/models/resource_provider_operation_display_properties.rb +1 -1
 - data/lib/2018-05-01/generated/azure_mgmt_resources/operations.rb +215 -0
 - data/lib/2018-05-01/generated/azure_mgmt_resources/resource_management_client.rb +5 -1
 - data/lib/azure_mgmt_resources.rb +1 -0
 - data/lib/profiles/latest/modules/resources_profile_module.rb +92 -78
 - data/lib/profiles/v2018_03_01/modules/resources_profile_module.rb +271 -0
 - data/lib/profiles/v2018_03_01/resources_module_definition.rb +8 -0
 - data/lib/profiles/v2018_03_01/resources_v2018_03_01_profile_client.rb +40 -0
 - data/lib/version.rb +1 -1
 - metadata +10 -3
 
| 
         @@ -0,0 +1,8 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # encoding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Copyright (c) Microsoft Corporation. All rights reserved.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Licensed under the MIT License. See License.txt in the project root for license information.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            module Azure end
         
     | 
| 
      
 6 
     | 
    
         
            +
            module Azure::Resources end
         
     | 
| 
      
 7 
     | 
    
         
            +
            module Azure::Resources::Profiles end
         
     | 
| 
      
 8 
     | 
    
         
            +
            module Azure::Resources::Profiles::V2018_03_01 end
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # encoding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Copyright (c) Microsoft Corporation. All rights reserved.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Licensed under the MIT License. See License.txt in the project root for license information.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            require 'profiles/v2018_03_01/resources_module_definition'
         
     | 
| 
      
 6 
     | 
    
         
            +
            require 'profiles/v2018_03_01/modules/resources_profile_module'
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            module Azure::Resources::Profiles::V2018_03_01
         
     | 
| 
      
 9 
     | 
    
         
            +
              module Mgmt
         
     | 
| 
      
 10 
     | 
    
         
            +
                #
         
     | 
| 
      
 11 
     | 
    
         
            +
                # Client class for the V2018_03_01 profile SDK.
         
     | 
| 
      
 12 
     | 
    
         
            +
                #
         
     | 
| 
      
 13 
     | 
    
         
            +
                class Client < ResourcesManagementClass
         
     | 
| 
      
 14 
     | 
    
         
            +
                  include MsRestAzure::Common::Configurable
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                  #
         
     | 
| 
      
 17 
     | 
    
         
            +
                  # Initializes a new instance of the Client class.
         
     | 
| 
      
 18 
     | 
    
         
            +
                  # @param options [Hash] hash of client options.
         
     | 
| 
      
 19 
     | 
    
         
            +
                  #    options = {
         
     | 
| 
      
 20 
     | 
    
         
            +
                  #      tenant_id: 'YOUR TENANT ID',
         
     | 
| 
      
 21 
     | 
    
         
            +
                  #      client_id: 'YOUR CLIENT ID',
         
     | 
| 
      
 22 
     | 
    
         
            +
                  #      client_secret: 'YOUR CLIENT SECRET',
         
     | 
| 
      
 23 
     | 
    
         
            +
                  #      subscription_id: 'YOUR SUBSCRIPTION ID',
         
     | 
| 
      
 24 
     | 
    
         
            +
                  #      credentials: credentials,
         
     | 
| 
      
 25 
     | 
    
         
            +
                  #      active_directory_settings: active_directory_settings,
         
     | 
| 
      
 26 
     | 
    
         
            +
                  #      base_url: 'YOUR BASE URL',
         
     | 
| 
      
 27 
     | 
    
         
            +
                  #      options: options
         
     | 
| 
      
 28 
     | 
    
         
            +
                  #    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  #   'credentials' are optional and if not passed in the hash, will be obtained
         
     | 
| 
      
 30 
     | 
    
         
            +
                  #   from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
         
     | 
| 
      
 31 
     | 
    
         
            +
                  #
         
     | 
| 
      
 32 
     | 
    
         
            +
                  #   Also, base_url, active_directory_settings & options are optional.
         
     | 
| 
      
 33 
     | 
    
         
            +
                  #
         
     | 
| 
      
 34 
     | 
    
         
            +
                  def initialize(options = {})
         
     | 
| 
      
 35 
     | 
    
         
            +
                    super(options)
         
     | 
| 
      
 36 
     | 
    
         
            +
                  end
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
              end
         
     | 
| 
      
 40 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: azure_mgmt_resources
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.17. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.17.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Microsoft Corporation
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-10-08 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: bundler
         
     | 
| 
         @@ -397,6 +397,9 @@ files: 
     | 
|
| 
       397 
397 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/on_error_deployment.rb
         
     | 
| 
       398 
398 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/on_error_deployment_extended.rb
         
     | 
| 
       399 
399 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/on_error_deployment_type.rb
         
     | 
| 
      
 400 
     | 
    
         
            +
            - lib/2018-05-01/generated/azure_mgmt_resources/models/operation.rb
         
     | 
| 
      
 401 
     | 
    
         
            +
            - lib/2018-05-01/generated/azure_mgmt_resources/models/operation_display.rb
         
     | 
| 
      
 402 
     | 
    
         
            +
            - lib/2018-05-01/generated/azure_mgmt_resources/models/operation_list_result.rb
         
     | 
| 
       400 
403 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/parameters_link.rb
         
     | 
| 
       401 
404 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/plan.rb
         
     | 
| 
       402 
405 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/provider.rb
         
     | 
| 
         @@ -423,6 +426,7 @@ files: 
     | 
|
| 
       423 
426 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/target_resource.rb
         
     | 
| 
       424 
427 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/models/template_link.rb
         
     | 
| 
       425 
428 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/module_definition.rb
         
     | 
| 
      
 429 
     | 
    
         
            +
            - lib/2018-05-01/generated/azure_mgmt_resources/operations.rb
         
     | 
| 
       426 
430 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/providers.rb
         
     | 
| 
       427 
431 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/resource_groups.rb
         
     | 
| 
       428 
432 
     | 
    
         
             
            - lib/2018-05-01/generated/azure_mgmt_resources/resource_management_client.rb
         
     | 
| 
         @@ -436,6 +440,9 @@ files: 
     | 
|
| 
       436 
440 
     | 
    
         
             
            - lib/profiles/v2017_03_09/modules/resources_profile_module.rb
         
     | 
| 
       437 
441 
     | 
    
         
             
            - lib/profiles/v2017_03_09/resources_module_definition.rb
         
     | 
| 
       438 
442 
     | 
    
         
             
            - lib/profiles/v2017_03_09/resources_v2017_03_09_profile_client.rb
         
     | 
| 
      
 443 
     | 
    
         
            +
            - lib/profiles/v2018_03_01/modules/resources_profile_module.rb
         
     | 
| 
      
 444 
     | 
    
         
            +
            - lib/profiles/v2018_03_01/resources_module_definition.rb
         
     | 
| 
      
 445 
     | 
    
         
            +
            - lib/profiles/v2018_03_01/resources_v2018_03_01_profile_client.rb
         
     | 
| 
       439 
446 
     | 
    
         
             
            - lib/version.rb
         
     | 
| 
       440 
447 
     | 
    
         
             
            homepage: https://aka.ms/azure-sdk-for-ruby
         
     | 
| 
       441 
448 
     | 
    
         
             
            licenses:
         
     | 
| 
         @@ -462,7 +469,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       462 
469 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       463 
470 
     | 
    
         
             
            requirements: []
         
     | 
| 
       464 
471 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       465 
     | 
    
         
            -
            rubygems_version: 2. 
     | 
| 
      
 472 
     | 
    
         
            +
            rubygems_version: 2.5.1
         
     | 
| 
       466 
473 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       467 
474 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       468 
475 
     | 
    
         
             
            summary: Official ruby client library to consume Microsoft Azure Resource Management
         
     |