azure_mgmt_managed_applications 0.16.0 → 0.17.0
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 +4 -4
- data/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/managed_application_client.rb +7 -6
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/application_client.rb +7 -6
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications.rb +47 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/application_client.rb +135 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/application_definitions.rb +1036 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/applications.rb +1443 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application.rb +202 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_artifact.rb +70 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_artifact_type.rb +16 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_definition.rb +240 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_definition_list_result.rb +99 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_list_result.rb +98 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_lock_level.rb +17 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_patchable.rb +202 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_provider_authorization.rb +62 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/error_response.rb +69 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/generic_resource.rb +121 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/identity.rb +72 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/plan.rb +90 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/plan_patchable.rb +90 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/provisioning_state.rb +25 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/resource.rb +101 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/resource_identity_type.rb +15 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/sku.rb +101 -0
- data/lib/2018-06-01/generated/azure_mgmt_managed_applications/module_definition.rb +9 -0
- data/lib/azure_mgmt_managed_applications.rb +1 -0
- data/lib/profiles/latest/modules/managedapplications_profile_module.rb +39 -39
- data/lib/version.rb +1 -1
- metadata +28 -5
@@ -0,0 +1,101 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ManagedApplications::Mgmt::V2018_06_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Resource information.
|
10
|
+
#
|
11
|
+
class Resource
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] Resource ID
|
16
|
+
attr_accessor :id
|
17
|
+
|
18
|
+
# @return [String] Resource name
|
19
|
+
attr_accessor :name
|
20
|
+
|
21
|
+
# @return [String] Resource type
|
22
|
+
attr_accessor :type
|
23
|
+
|
24
|
+
# @return [String] Resource location
|
25
|
+
attr_accessor :location
|
26
|
+
|
27
|
+
# @return [Hash{String => String}] Resource tags
|
28
|
+
attr_accessor :tags
|
29
|
+
|
30
|
+
|
31
|
+
#
|
32
|
+
# Mapper for Resource class as Ruby Hash.
|
33
|
+
# This will be used for serialization/deserialization.
|
34
|
+
#
|
35
|
+
def self.mapper()
|
36
|
+
{
|
37
|
+
client_side_validation: true,
|
38
|
+
required: false,
|
39
|
+
serialized_name: 'Resource',
|
40
|
+
type: {
|
41
|
+
name: 'Composite',
|
42
|
+
class_name: 'Resource',
|
43
|
+
model_properties: {
|
44
|
+
id: {
|
45
|
+
client_side_validation: true,
|
46
|
+
required: false,
|
47
|
+
read_only: true,
|
48
|
+
serialized_name: 'id',
|
49
|
+
type: {
|
50
|
+
name: 'String'
|
51
|
+
}
|
52
|
+
},
|
53
|
+
name: {
|
54
|
+
client_side_validation: true,
|
55
|
+
required: false,
|
56
|
+
read_only: true,
|
57
|
+
serialized_name: 'name',
|
58
|
+
type: {
|
59
|
+
name: 'String'
|
60
|
+
}
|
61
|
+
},
|
62
|
+
type: {
|
63
|
+
client_side_validation: true,
|
64
|
+
required: false,
|
65
|
+
read_only: true,
|
66
|
+
serialized_name: 'type',
|
67
|
+
type: {
|
68
|
+
name: 'String'
|
69
|
+
}
|
70
|
+
},
|
71
|
+
location: {
|
72
|
+
client_side_validation: true,
|
73
|
+
required: false,
|
74
|
+
serialized_name: 'location',
|
75
|
+
type: {
|
76
|
+
name: 'String'
|
77
|
+
}
|
78
|
+
},
|
79
|
+
tags: {
|
80
|
+
client_side_validation: true,
|
81
|
+
required: false,
|
82
|
+
serialized_name: 'tags',
|
83
|
+
type: {
|
84
|
+
name: 'Dictionary',
|
85
|
+
value: {
|
86
|
+
client_side_validation: true,
|
87
|
+
required: false,
|
88
|
+
serialized_name: 'StringElementType',
|
89
|
+
type: {
|
90
|
+
name: 'String'
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
data/lib/2018-06-01/generated/azure_mgmt_managed_applications/models/resource_identity_type.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ManagedApplications::Mgmt::V2018_06_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Defines values for ResourceIdentityType
|
10
|
+
#
|
11
|
+
module ResourceIdentityType
|
12
|
+
SystemAssigned = "SystemAssigned"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,101 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::ManagedApplications::Mgmt::V2018_06_01
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# SKU for the resource.
|
10
|
+
#
|
11
|
+
class Sku
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The SKU name.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [String] The SKU tier.
|
19
|
+
attr_accessor :tier
|
20
|
+
|
21
|
+
# @return [String] The SKU size.
|
22
|
+
attr_accessor :size
|
23
|
+
|
24
|
+
# @return [String] The SKU family.
|
25
|
+
attr_accessor :family
|
26
|
+
|
27
|
+
# @return [String] The SKU model.
|
28
|
+
attr_accessor :model
|
29
|
+
|
30
|
+
# @return [Integer] The SKU capacity.
|
31
|
+
attr_accessor :capacity
|
32
|
+
|
33
|
+
|
34
|
+
#
|
35
|
+
# Mapper for Sku class as Ruby Hash.
|
36
|
+
# This will be used for serialization/deserialization.
|
37
|
+
#
|
38
|
+
def self.mapper()
|
39
|
+
{
|
40
|
+
client_side_validation: true,
|
41
|
+
required: false,
|
42
|
+
serialized_name: 'Sku',
|
43
|
+
type: {
|
44
|
+
name: 'Composite',
|
45
|
+
class_name: 'Sku',
|
46
|
+
model_properties: {
|
47
|
+
name: {
|
48
|
+
client_side_validation: true,
|
49
|
+
required: true,
|
50
|
+
serialized_name: 'name',
|
51
|
+
type: {
|
52
|
+
name: 'String'
|
53
|
+
}
|
54
|
+
},
|
55
|
+
tier: {
|
56
|
+
client_side_validation: true,
|
57
|
+
required: false,
|
58
|
+
serialized_name: 'tier',
|
59
|
+
type: {
|
60
|
+
name: 'String'
|
61
|
+
}
|
62
|
+
},
|
63
|
+
size: {
|
64
|
+
client_side_validation: true,
|
65
|
+
required: false,
|
66
|
+
serialized_name: 'size',
|
67
|
+
type: {
|
68
|
+
name: 'String'
|
69
|
+
}
|
70
|
+
},
|
71
|
+
family: {
|
72
|
+
client_side_validation: true,
|
73
|
+
required: false,
|
74
|
+
serialized_name: 'family',
|
75
|
+
type: {
|
76
|
+
name: 'String'
|
77
|
+
}
|
78
|
+
},
|
79
|
+
model: {
|
80
|
+
client_side_validation: true,
|
81
|
+
required: false,
|
82
|
+
serialized_name: 'model',
|
83
|
+
type: {
|
84
|
+
name: 'String'
|
85
|
+
}
|
86
|
+
},
|
87
|
+
capacity: {
|
88
|
+
client_side_validation: true,
|
89
|
+
required: false,
|
90
|
+
serialized_name: 'capacity',
|
91
|
+
type: {
|
92
|
+
name: 'Number'
|
93
|
+
}
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
}
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure end
|
7
|
+
module Azure::ManagedApplications end
|
8
|
+
module Azure::ManagedApplications::Mgmt end
|
9
|
+
module Azure::ManagedApplications::Mgmt::V2018_06_01 end
|
@@ -3,5 +3,6 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
4
|
|
5
5
|
require '2016-09-01-preview/generated/azure_mgmt_managed_applications'
|
6
|
+
require '2018-06-01/generated/azure_mgmt_managed_applications'
|
6
7
|
require '2017-09-01/generated/azure_mgmt_managed_applications'
|
7
8
|
require 'profiles/latest/managedapplications_latest_profile_client'
|
@@ -6,28 +6,28 @@ require 'azure_mgmt_managed_applications'
|
|
6
6
|
|
7
7
|
module Azure::ManagedApplications::Profiles::Latest
|
8
8
|
module Mgmt
|
9
|
-
Applications = Azure::ManagedApplications::Mgmt::
|
10
|
-
ApplicationDefinitions = Azure::ManagedApplications::Mgmt::
|
9
|
+
Applications = Azure::ManagedApplications::Mgmt::V2018_06_01::Applications
|
10
|
+
ApplicationDefinitions = Azure::ManagedApplications::Mgmt::V2018_06_01::ApplicationDefinitions
|
11
11
|
|
12
12
|
module Models
|
13
|
-
Sku = Azure::ManagedApplications::Mgmt::
|
14
|
-
Plan = Azure::ManagedApplications::Mgmt::
|
15
|
-
Identity = Azure::ManagedApplications::Mgmt::
|
16
|
-
PlanPatchable = Azure::ManagedApplications::Mgmt::
|
17
|
-
ErrorResponse = Azure::ManagedApplications::Mgmt::
|
18
|
-
ApplicationProviderAuthorization = Azure::ManagedApplications::Mgmt::
|
19
|
-
ApplicationDefinitionListResult = Azure::ManagedApplications::Mgmt::
|
20
|
-
ApplicationListResult = Azure::ManagedApplications::Mgmt::
|
21
|
-
ApplicationArtifact = Azure::ManagedApplications::Mgmt::
|
22
|
-
Resource = Azure::ManagedApplications::Mgmt::
|
23
|
-
GenericResource = Azure::ManagedApplications::Mgmt::
|
24
|
-
Application = Azure::ManagedApplications::Mgmt::
|
25
|
-
ApplicationPatchable = Azure::ManagedApplications::Mgmt::
|
26
|
-
ApplicationDefinition = Azure::ManagedApplications::Mgmt::
|
27
|
-
ProvisioningState = Azure::ManagedApplications::Mgmt::
|
28
|
-
ApplicationLockLevel = Azure::ManagedApplications::Mgmt::
|
29
|
-
ApplicationArtifactType = Azure::ManagedApplications::Mgmt::
|
30
|
-
ResourceIdentityType = Azure::ManagedApplications::Mgmt::
|
13
|
+
Sku = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Sku
|
14
|
+
Plan = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Plan
|
15
|
+
Identity = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Identity
|
16
|
+
PlanPatchable = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::PlanPatchable
|
17
|
+
ErrorResponse = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ErrorResponse
|
18
|
+
ApplicationProviderAuthorization = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationProviderAuthorization
|
19
|
+
ApplicationDefinitionListResult = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationDefinitionListResult
|
20
|
+
ApplicationListResult = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationListResult
|
21
|
+
ApplicationArtifact = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationArtifact
|
22
|
+
Resource = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Resource
|
23
|
+
GenericResource = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::GenericResource
|
24
|
+
Application = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Application
|
25
|
+
ApplicationPatchable = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationPatchable
|
26
|
+
ApplicationDefinition = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationDefinition
|
27
|
+
ProvisioningState = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ProvisioningState
|
28
|
+
ApplicationLockLevel = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationLockLevel
|
29
|
+
ApplicationArtifactType = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationArtifactType
|
30
|
+
ResourceIdentityType = Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ResourceIdentityType
|
31
31
|
end
|
32
32
|
|
33
33
|
#
|
@@ -49,7 +49,7 @@ module Azure::ManagedApplications::Profiles::Latest
|
|
49
49
|
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
50
50
|
@options = options[:options].nil? ? nil:options[:options]
|
51
51
|
|
52
|
-
@client_0 = Azure::ManagedApplications::Mgmt::
|
52
|
+
@client_0 = Azure::ManagedApplications::Mgmt::V2018_06_01::ApplicationClient.new(configurable.credentials, base_url, options)
|
53
53
|
if(@client_0.respond_to?(:subscription_id))
|
54
54
|
@client_0.subscription_id = configurable.subscription_id
|
55
55
|
end
|
@@ -77,58 +77,58 @@ module Azure::ManagedApplications::Profiles::Latest
|
|
77
77
|
|
78
78
|
class ModelClasses
|
79
79
|
def sku
|
80
|
-
Azure::ManagedApplications::Mgmt::
|
80
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Sku
|
81
81
|
end
|
82
82
|
def plan
|
83
|
-
Azure::ManagedApplications::Mgmt::
|
83
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Plan
|
84
84
|
end
|
85
85
|
def identity
|
86
|
-
Azure::ManagedApplications::Mgmt::
|
86
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Identity
|
87
87
|
end
|
88
88
|
def plan_patchable
|
89
|
-
Azure::ManagedApplications::Mgmt::
|
89
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::PlanPatchable
|
90
90
|
end
|
91
91
|
def error_response
|
92
|
-
Azure::ManagedApplications::Mgmt::
|
92
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ErrorResponse
|
93
93
|
end
|
94
94
|
def application_provider_authorization
|
95
|
-
Azure::ManagedApplications::Mgmt::
|
95
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationProviderAuthorization
|
96
96
|
end
|
97
97
|
def application_definition_list_result
|
98
|
-
Azure::ManagedApplications::Mgmt::
|
98
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationDefinitionListResult
|
99
99
|
end
|
100
100
|
def application_list_result
|
101
|
-
Azure::ManagedApplications::Mgmt::
|
101
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationListResult
|
102
102
|
end
|
103
103
|
def application_artifact
|
104
|
-
Azure::ManagedApplications::Mgmt::
|
104
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationArtifact
|
105
105
|
end
|
106
106
|
def resource
|
107
|
-
Azure::ManagedApplications::Mgmt::
|
107
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Resource
|
108
108
|
end
|
109
109
|
def generic_resource
|
110
|
-
Azure::ManagedApplications::Mgmt::
|
110
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::GenericResource
|
111
111
|
end
|
112
112
|
def application
|
113
|
-
Azure::ManagedApplications::Mgmt::
|
113
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::Application
|
114
114
|
end
|
115
115
|
def application_patchable
|
116
|
-
Azure::ManagedApplications::Mgmt::
|
116
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationPatchable
|
117
117
|
end
|
118
118
|
def application_definition
|
119
|
-
Azure::ManagedApplications::Mgmt::
|
119
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationDefinition
|
120
120
|
end
|
121
121
|
def provisioning_state
|
122
|
-
Azure::ManagedApplications::Mgmt::
|
122
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ProvisioningState
|
123
123
|
end
|
124
124
|
def application_lock_level
|
125
|
-
Azure::ManagedApplications::Mgmt::
|
125
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationLockLevel
|
126
126
|
end
|
127
127
|
def application_artifact_type
|
128
|
-
Azure::ManagedApplications::Mgmt::
|
128
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationArtifactType
|
129
129
|
end
|
130
130
|
def resource_identity_type
|
131
|
-
Azure::ManagedApplications::Mgmt::
|
131
|
+
Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ResourceIdentityType
|
132
132
|
end
|
133
133
|
end
|
134
134
|
end
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_mgmt_managed_applications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.0
|
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-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0.
|
75
|
+
version: 0.11.0
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.
|
82
|
+
version: 0.11.0
|
83
83
|
description: Microsoft Azure Managed Applications Library for Ruby
|
84
84
|
email: azrubyteam@microsoft.com
|
85
85
|
executables: []
|
@@ -133,6 +133,29 @@ files:
|
|
133
133
|
- lib/2017-09-01/generated/azure_mgmt_managed_applications/models/resource_identity_type.rb
|
134
134
|
- lib/2017-09-01/generated/azure_mgmt_managed_applications/models/sku.rb
|
135
135
|
- lib/2017-09-01/generated/azure_mgmt_managed_applications/module_definition.rb
|
136
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications.rb
|
137
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/application_client.rb
|
138
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/application_definitions.rb
|
139
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/applications.rb
|
140
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application.rb
|
141
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_artifact.rb
|
142
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_artifact_type.rb
|
143
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_definition.rb
|
144
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_definition_list_result.rb
|
145
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_list_result.rb
|
146
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_lock_level.rb
|
147
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_patchable.rb
|
148
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_provider_authorization.rb
|
149
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/error_response.rb
|
150
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/generic_resource.rb
|
151
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/identity.rb
|
152
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/plan.rb
|
153
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/plan_patchable.rb
|
154
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/provisioning_state.rb
|
155
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/resource.rb
|
156
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/resource_identity_type.rb
|
157
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/models/sku.rb
|
158
|
+
- lib/2018-06-01/generated/azure_mgmt_managed_applications/module_definition.rb
|
136
159
|
- lib/azure_mgmt_managed_applications.rb
|
137
160
|
- lib/module_definition.rb
|
138
161
|
- lib/profiles/latest/managedapplications_latest_profile_client.rb
|
@@ -164,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
187
|
version: '0'
|
165
188
|
requirements: []
|
166
189
|
rubyforge_project:
|
167
|
-
rubygems_version: 2.
|
190
|
+
rubygems_version: 2.5.1
|
168
191
|
signing_key:
|
169
192
|
specification_version: 4
|
170
193
|
summary: Official Ruby client library to consume Microsoft Azure Managed Applications.
|