azure_mgmt_managed_applications 0.15.2 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliance_definitions.rb +67 -63
- data/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliances.rb +94 -90
- data/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/managed_application_client.rb +4 -1
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications.rb +47 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/application_client.rb +134 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/application_definitions.rb +1036 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/applications.rb +1443 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application.rb +213 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_artifact.rb +70 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_artifact_type.rb +16 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_definition.rb +240 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_definition_list_result.rb +99 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_list_result.rb +98 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_lock_level.rb +17 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_patchable.rb +213 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/application_provider_authorization.rb +62 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/error_response.rb +69 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/generic_resource.rb +121 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/identity.rb +72 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/plan.rb +90 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/plan_patchable.rb +90 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/provisioning_state.rb +25 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/resource.rb +101 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/resource_identity_type.rb +15 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/models/sku.rb +101 -0
- data/lib/2017-09-01/generated/azure_mgmt_managed_applications/module_definition.rb +9 -0
- data/lib/azure_mgmt_managed_applications.rb +1 -0
- data/lib/profiles/latest/managedapplications_latest_profile_client.rb +28 -9
- data/lib/profiles/latest/managedapplications_module_definition.rb +0 -1
- data/lib/profiles/latest/modules/managedapplications_profile_module.rb +103 -84
- data/lib/version.rb +1 -1
- metadata +26 -3
@@ -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::V2017_09_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/2017-09-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::V2017_09_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::V2017_09_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::V2017_09_01 end
|
@@ -3,4 +3,5 @@
|
|
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 '2017-09-01/generated/azure_mgmt_managed_applications'
|
6
7
|
require 'profiles/latest/managedapplications_latest_profile_client'
|
@@ -5,17 +5,36 @@
|
|
5
5
|
require 'profiles/latest/managedapplications_module_definition'
|
6
6
|
require 'profiles/latest/modules/managedapplications_profile_module'
|
7
7
|
|
8
|
-
module Azure::ManagedApplications::Profiles::Latest
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
module Azure::ManagedApplications::Profiles::Latest
|
9
|
+
module Mgmt
|
10
|
+
#
|
11
|
+
# Client class for the Latest profile SDK.
|
12
|
+
#
|
13
|
+
class Client < ManagedApplicationsManagementClass
|
14
|
+
include MsRestAzure::Common::Configurable
|
14
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
|
15
37
|
|
16
|
-
def initialize(options = {})
|
17
|
-
super(options)
|
18
38
|
end
|
19
|
-
|
20
39
|
end
|
21
40
|
end
|
@@ -4,36 +4,37 @@
|
|
4
4
|
|
5
5
|
require 'azure_mgmt_managed_applications'
|
6
6
|
|
7
|
-
module Azure::ManagedApplications::Profiles::Latest
|
8
|
-
|
9
|
-
|
7
|
+
module Azure::ManagedApplications::Profiles::Latest
|
8
|
+
module Mgmt
|
9
|
+
Applications = Azure::ManagedApplications::Mgmt::V2017_09_01::Applications
|
10
|
+
ApplicationDefinitions = Azure::ManagedApplications::Mgmt::V2017_09_01::ApplicationDefinitions
|
10
11
|
|
11
12
|
module Models
|
12
|
-
Sku = Azure::ManagedApplications::Mgmt::
|
13
|
-
Plan = Azure::ManagedApplications::Mgmt::
|
14
|
-
Identity = Azure::ManagedApplications::Mgmt::
|
15
|
-
PlanPatchable = Azure::ManagedApplications::Mgmt::
|
16
|
-
ErrorResponse = Azure::ManagedApplications::Mgmt::
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
Resource = Azure::ManagedApplications::Mgmt::
|
22
|
-
GenericResource = Azure::ManagedApplications::Mgmt::
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
ProvisioningState = Azure::ManagedApplications::Mgmt::
|
27
|
-
|
28
|
-
|
29
|
-
ResourceIdentityType = Azure::ManagedApplications::Mgmt::
|
13
|
+
Sku = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Sku
|
14
|
+
Plan = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Plan
|
15
|
+
Identity = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Identity
|
16
|
+
PlanPatchable = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::PlanPatchable
|
17
|
+
ErrorResponse = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ErrorResponse
|
18
|
+
ApplicationProviderAuthorization = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationProviderAuthorization
|
19
|
+
ApplicationDefinitionListResult = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationDefinitionListResult
|
20
|
+
ApplicationListResult = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationListResult
|
21
|
+
ApplicationArtifact = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationArtifact
|
22
|
+
Resource = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Resource
|
23
|
+
GenericResource = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::GenericResource
|
24
|
+
Application = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Application
|
25
|
+
ApplicationPatchable = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationPatchable
|
26
|
+
ApplicationDefinition = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationDefinition
|
27
|
+
ProvisioningState = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ProvisioningState
|
28
|
+
ApplicationLockLevel = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationLockLevel
|
29
|
+
ApplicationArtifactType = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationArtifactType
|
30
|
+
ResourceIdentityType = Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ResourceIdentityType
|
30
31
|
end
|
31
32
|
|
32
33
|
#
|
33
|
-
#
|
34
|
+
# ManagedApplicationsManagementClass
|
34
35
|
#
|
35
|
-
class
|
36
|
-
attr_reader :
|
36
|
+
class ManagedApplicationsManagementClass
|
37
|
+
attr_reader :applications, :application_definitions, :configurable, :base_url, :options, :model_classes
|
37
38
|
|
38
39
|
def initialize(options = {})
|
39
40
|
if options.is_a?(Hash) && options.length == 0
|
@@ -44,73 +45,91 @@ module Azure::ManagedApplications::Profiles::Latest::Mgmt
|
|
44
45
|
|
45
46
|
reset!(options)
|
46
47
|
|
47
|
-
@configurable
|
48
|
+
@configurable = self
|
49
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
50
|
+
@options = options[:options].nil? ? nil:options[:options]
|
48
51
|
|
49
|
-
client_0 = Azure::ManagedApplications::Mgmt::
|
50
|
-
if(client_0.respond_to?(:subscription_id))
|
51
|
-
client_0.subscription_id = configurable.subscription_id
|
52
|
+
@client_0 = Azure::ManagedApplications::Mgmt::V2017_09_01::ApplicationClient.new(configurable.credentials, base_url, options)
|
53
|
+
if(@client_0.respond_to?(:subscription_id))
|
54
|
+
@client_0.subscription_id = configurable.subscription_id
|
52
55
|
end
|
53
|
-
@
|
54
|
-
@
|
56
|
+
add_telemetry(@client_0)
|
57
|
+
@applications = @client_0.applications
|
58
|
+
@application_definitions = @client_0.application_definitions
|
55
59
|
|
56
60
|
@model_classes = ModelClasses.new
|
57
61
|
end
|
58
62
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
def plan_patchable
|
70
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::PlanPatchable
|
71
|
-
end
|
72
|
-
def error_response
|
73
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ErrorResponse
|
74
|
-
end
|
75
|
-
def appliance_provider_authorization
|
76
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceProviderAuthorization
|
77
|
-
end
|
78
|
-
def appliance_definition_list_result
|
79
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceDefinitionListResult
|
80
|
-
end
|
81
|
-
def appliance_list_result
|
82
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceListResult
|
83
|
-
end
|
84
|
-
def appliance_artifact
|
85
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceArtifact
|
86
|
-
end
|
87
|
-
def resource
|
88
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::Resource
|
89
|
-
end
|
90
|
-
def generic_resource
|
91
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::GenericResource
|
92
|
-
end
|
93
|
-
def appliance
|
94
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::Appliance
|
95
|
-
end
|
96
|
-
def appliance_patchable
|
97
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::AppliancePatchable
|
98
|
-
end
|
99
|
-
def appliance_definition
|
100
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceDefinition
|
101
|
-
end
|
102
|
-
def provisioning_state
|
103
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ProvisioningState
|
104
|
-
end
|
105
|
-
def appliance_lock_level
|
106
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceLockLevel
|
107
|
-
end
|
108
|
-
def appliance_artifact_type
|
109
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceArtifactType
|
110
|
-
end
|
111
|
-
def resource_identity_type
|
112
|
-
Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ResourceIdentityType
|
63
|
+
def add_telemetry(client)
|
64
|
+
profile_information = 'Profiles/Latest/ManagedApplications/Mgmt'
|
65
|
+
client.add_user_agent_information(profile_information)
|
66
|
+
end
|
67
|
+
|
68
|
+
def method_missing(method, *args)
|
69
|
+
if @client_0.respond_to?method
|
70
|
+
@client_0.send(method, *args)
|
71
|
+
else
|
72
|
+
super
|
113
73
|
end
|
114
74
|
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
78
|
+
class ModelClasses
|
79
|
+
def sku
|
80
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Sku
|
81
|
+
end
|
82
|
+
def plan
|
83
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Plan
|
84
|
+
end
|
85
|
+
def identity
|
86
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Identity
|
87
|
+
end
|
88
|
+
def plan_patchable
|
89
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::PlanPatchable
|
90
|
+
end
|
91
|
+
def error_response
|
92
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ErrorResponse
|
93
|
+
end
|
94
|
+
def application_provider_authorization
|
95
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationProviderAuthorization
|
96
|
+
end
|
97
|
+
def application_definition_list_result
|
98
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationDefinitionListResult
|
99
|
+
end
|
100
|
+
def application_list_result
|
101
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationListResult
|
102
|
+
end
|
103
|
+
def application_artifact
|
104
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationArtifact
|
105
|
+
end
|
106
|
+
def resource
|
107
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Resource
|
108
|
+
end
|
109
|
+
def generic_resource
|
110
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::GenericResource
|
111
|
+
end
|
112
|
+
def application
|
113
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::Application
|
114
|
+
end
|
115
|
+
def application_patchable
|
116
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationPatchable
|
117
|
+
end
|
118
|
+
def application_definition
|
119
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationDefinition
|
120
|
+
end
|
121
|
+
def provisioning_state
|
122
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ProvisioningState
|
123
|
+
end
|
124
|
+
def application_lock_level
|
125
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationLockLevel
|
126
|
+
end
|
127
|
+
def application_artifact_type
|
128
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ApplicationArtifactType
|
129
|
+
end
|
130
|
+
def resource_identity_type
|
131
|
+
Azure::ManagedApplications::Mgmt::V2017_09_01::Models::ResourceIdentityType
|
132
|
+
end
|
115
133
|
end
|
134
|
+
end
|
116
135
|
end
|