azure_sdk 0.21.1 → 0.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d34854d657afb03382a5fada7fcf89c0f8ecb21
4
- data.tar.gz: 5a970cc4efdf1ed34b88d51637a780834839c737
3
+ metadata.gz: f86aa1268aabbba42b16d4ec060cd0cc71b3ff78
4
+ data.tar.gz: 6bb6d28b91b10be82d49f3e3e13047ecb93af4bc
5
5
  SHA512:
6
- metadata.gz: 77d543a2bd90aa1ac5978f7bd7a9fc8bde647168290dff2f4948057360f39903526b7cf7db713f07547c57c89c35c38d5d5426eb8d9a67a6ec6d9ad6698c6848
7
- data.tar.gz: fab6b2c121f7f875f2a0c26d7cd881045d223b750de9ea38b7f1aca4ed047f7ef4062672f167b9a87c72a679575af121d96b683b44eb6e15ea6ca5a7a28225cd
6
+ metadata.gz: 1da0a1bd0ac2cf5798b4c9c8ae552ddca177ef06469fdb2865ab146c1f7f6d884cb25fa822cd3341988bfde54c7a1e3d81441fb926e6535d7f91458b50daf3b2
7
+ data.tar.gz: 553d6a1b4cabe484978e4719721f4ea337bc9512dbdee4635b112b8b65a7f47341579f519dc3ebfd22580ea6d8790dc967e22cc1062d742b14cf2874a2b4a166
@@ -3,5 +3,5 @@
3
3
  # Licensed under the MIT License. See License.txt in the project root for license information.
4
4
 
5
5
  module Azure
6
- VERSION = '0.21.1'
6
+ VERSION = '0.22.0'
7
7
  end
@@ -33,6 +33,7 @@ require 'latest/modules/iotcentral_profile_module'
33
33
  require 'latest/modules/iothub_profile_module'
34
34
  require 'latest/modules/keyvault_profile_module'
35
35
  require 'latest/modules/kusto_profile_module'
36
+ require 'latest/modules/labservices_profile_module'
36
37
  require 'latest/modules/links_profile_module'
37
38
  require 'latest/modules/locks_profile_module'
38
39
  require 'latest/modules/logic_profile_module'
@@ -96,7 +97,7 @@ module Azure::Profiles::Latest
96
97
  class Client
97
98
  include MsRestAzure::Common::Configurable
98
99
 
99
- attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :hdinsight, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
100
+ attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :hdinsight, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :labservices, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
100
101
 
101
102
  #
102
103
  # Initializes a new instance of the Client class.
@@ -158,6 +159,7 @@ module Azure::Profiles::Latest
158
159
  @iot_hub = IotHubAdapter.new(self, base_url, sdk_options)
159
160
  @key_vault = KeyVaultAdapter.new(self, base_url, sdk_options)
160
161
  @kusto = KustoAdapter.new(self, base_url, sdk_options)
162
+ @labservices = LabservicesAdapter.new(self, base_url, sdk_options)
161
163
  @links = LinksAdapter.new(self, base_url, sdk_options)
162
164
  @locks = LocksAdapter.new(self, base_url, sdk_options)
163
165
  @logic = LogicAdapter.new(self, base_url, sdk_options)
@@ -456,6 +458,14 @@ module Azure::Profiles::Latest
456
458
  end
457
459
  end
458
460
 
461
+ class LabservicesAdapter
462
+ attr_accessor :mgmt
463
+
464
+ def initialize(context, base_url, options)
465
+ @mgmt = Azure::Profiles::Latest::Labservices::Mgmt::LabservicesManagementClass.new(context, base_url, options)
466
+ end
467
+ end
468
+
459
469
  class LinksAdapter
460
470
  attr_accessor :mgmt
461
471
 
@@ -8,42 +8,46 @@ module Azure::Profiles::Latest
8
8
  module ComputerVision
9
9
 
10
10
  module Models
11
- FaceDescription = Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceDescription
12
- ImageMetadata = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageMetadata
13
- Line = Azure::CognitiveServices::ComputerVision::V2_0::Models::Line
14
- ImageAnalysis = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageAnalysis
15
- TextOperationResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationResult
11
+ DetectResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::DetectResult
12
+ FaceRectangle = Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceRectangle
13
+ ModelDescription = Azure::CognitiveServices::ComputerVision::V2_0::Models::ModelDescription
14
+ LandmarksModel = Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarksModel
15
+ ListModelsResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::ListModelsResult
16
+ Category = Azure::CognitiveServices::ComputerVision::V2_0::Models::Category
17
+ DomainModelResults = Azure::CognitiveServices::ComputerVision::V2_0::Models::DomainModelResults
18
+ ColorInfo = Azure::CognitiveServices::ComputerVision::V2_0::Models::ColorInfo
16
19
  OcrWord = Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrWord
17
- CelebritiesModel = Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebritiesModel
20
+ ImageTag = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageTag
18
21
  OcrLine = Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrLine
19
- CategoryDetail = Azure::CognitiveServices::ComputerVision::V2_0::Models::CategoryDetail
22
+ ImageDescriptionDetails = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescriptionDetails
20
23
  OcrRegion = Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrRegion
21
- AdultInfo = Azure::CognitiveServices::ComputerVision::V2_0::Models::AdultInfo
24
+ BoundingRect = Azure::CognitiveServices::ComputerVision::V2_0::Models::BoundingRect
22
25
  OcrResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrResult
23
- ImageType = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageType
24
- ModelDescription = Azure::CognitiveServices::ComputerVision::V2_0::Models::ModelDescription
26
+ DetectedObject = Azure::CognitiveServices::ComputerVision::V2_0::Models::DetectedObject
27
+ TagResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::TagResult
28
+ ImageAnalysis = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageAnalysis
29
+ AreaOfInterestResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::AreaOfInterestResult
30
+ CelebritiesModel = Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebritiesModel
31
+ ImageUrl = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageUrl
32
+ AdultInfo = Azure::CognitiveServices::ComputerVision::V2_0::Models::AdultInfo
33
+ ComputerVisionError = Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionError
25
34
  ImageCaption = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageCaption
26
- ListModelsResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::ListModelsResult
27
- Word = Azure::CognitiveServices::ComputerVision::V2_0::Models::Word
28
- DomainModelResults = Azure::CognitiveServices::ComputerVision::V2_0::Models::DomainModelResults
29
- FaceRectangle = Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceRectangle
30
- CelebrityResults = Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebrityResults
31
- Category = Azure::CognitiveServices::ComputerVision::V2_0::Models::Category
32
35
  LandmarkResults = Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarkResults
33
- ImageTag = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageTag
36
+ ObjectHierarchy = Azure::CognitiveServices::ComputerVision::V2_0::Models::ObjectHierarchy
37
+ CelebrityResults = Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebrityResults
34
38
  ImageDescription = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescription
39
+ Word = Azure::CognitiveServices::ComputerVision::V2_0::Models::Word
40
+ ImageType = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageType
41
+ Line = Azure::CognitiveServices::ComputerVision::V2_0::Models::Line
42
+ ImageMetadata = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageMetadata
35
43
  RecognitionResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::RecognitionResult
36
- TagResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::TagResult
37
- ColorInfo = Azure::CognitiveServices::ComputerVision::V2_0::Models::ColorInfo
38
- ComputerVisionError = Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionError
39
- LandmarksModel = Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarksModel
40
- ImageUrl = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageUrl
41
- ImageDescriptionDetails = Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescriptionDetails
42
- TextOperationStatusCodes = Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationStatusCodes
44
+ FaceDescription = Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceDescription
45
+ TextOperationResult = Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationResult
46
+ CategoryDetail = Azure::CognitiveServices::ComputerVision::V2_0::Models::CategoryDetail
43
47
  Gender = Azure::CognitiveServices::ComputerVision::V2_0::Models::Gender
44
- ComputerVisionErrorCodes = Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionErrorCodes
45
- VisualFeatureTypes = Azure::CognitiveServices::ComputerVision::V2_0::Models::VisualFeatureTypes
48
+ TextOperationStatusCodes = Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationStatusCodes
46
49
  OcrLanguages = Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrLanguages
50
+ VisualFeatureTypes = Azure::CognitiveServices::ComputerVision::V2_0::Models::VisualFeatureTypes
47
51
  TextRecognitionMode = Azure::CognitiveServices::ComputerVision::V2_0::Models::TextRecognitionMode
48
52
  Details = Azure::CognitiveServices::ComputerVision::V2_0::Models::Details
49
53
  end
@@ -77,114 +81,126 @@ module Azure::Profiles::Latest
77
81
  end
78
82
 
79
83
  class ModelClasses
80
- def face_description
81
- Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceDescription
84
+ def detect_result
85
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::DetectResult
82
86
  end
83
- def image_metadata
84
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageMetadata
87
+ def face_rectangle
88
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceRectangle
85
89
  end
86
- def line
87
- Azure::CognitiveServices::ComputerVision::V2_0::Models::Line
90
+ def model_description
91
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ModelDescription
88
92
  end
89
- def image_analysis
90
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageAnalysis
93
+ def landmarks_model
94
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarksModel
91
95
  end
92
- def text_operation_result
93
- Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationResult
96
+ def list_models_result
97
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ListModelsResult
98
+ end
99
+ def category
100
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::Category
101
+ end
102
+ def domain_model_results
103
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::DomainModelResults
104
+ end
105
+ def color_info
106
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ColorInfo
94
107
  end
95
108
  def ocr_word
96
109
  Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrWord
97
110
  end
98
- def celebrities_model
99
- Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebritiesModel
111
+ def image_tag
112
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageTag
100
113
  end
101
114
  def ocr_line
102
115
  Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrLine
103
116
  end
104
- def category_detail
105
- Azure::CognitiveServices::ComputerVision::V2_0::Models::CategoryDetail
117
+ def image_description_details
118
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescriptionDetails
106
119
  end
107
120
  def ocr_region
108
121
  Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrRegion
109
122
  end
110
- def adult_info
111
- Azure::CognitiveServices::ComputerVision::V2_0::Models::AdultInfo
123
+ def bounding_rect
124
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::BoundingRect
112
125
  end
113
126
  def ocr_result
114
127
  Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrResult
115
128
  end
116
- def image_type
117
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageType
129
+ def detected_object
130
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::DetectedObject
118
131
  end
119
- def model_description
120
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ModelDescription
132
+ def tag_result
133
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::TagResult
121
134
  end
122
- def image_caption
123
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageCaption
135
+ def image_analysis
136
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageAnalysis
124
137
  end
125
- def list_models_result
126
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ListModelsResult
138
+ def area_of_interest_result
139
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::AreaOfInterestResult
127
140
  end
128
- def word
129
- Azure::CognitiveServices::ComputerVision::V2_0::Models::Word
141
+ def celebrities_model
142
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebritiesModel
130
143
  end
131
- def domain_model_results
132
- Azure::CognitiveServices::ComputerVision::V2_0::Models::DomainModelResults
144
+ def image_url
145
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageUrl
133
146
  end
134
- def face_rectangle
135
- Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceRectangle
147
+ def adult_info
148
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::AdultInfo
136
149
  end
137
- def celebrity_results
138
- Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebrityResults
150
+ def computer_vision_error
151
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionError
139
152
  end
140
- def category
141
- Azure::CognitiveServices::ComputerVision::V2_0::Models::Category
153
+ def image_caption
154
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageCaption
142
155
  end
143
156
  def landmark_results
144
157
  Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarkResults
145
158
  end
146
- def image_tag
147
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageTag
159
+ def object_hierarchy
160
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ObjectHierarchy
161
+ end
162
+ def celebrity_results
163
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::CelebrityResults
148
164
  end
149
165
  def image_description
150
166
  Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescription
151
167
  end
152
- def recognition_result
153
- Azure::CognitiveServices::ComputerVision::V2_0::Models::RecognitionResult
168
+ def word
169
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::Word
154
170
  end
155
- def tag_result
156
- Azure::CognitiveServices::ComputerVision::V2_0::Models::TagResult
171
+ def image_type
172
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageType
157
173
  end
158
- def color_info
159
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ColorInfo
174
+ def line
175
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::Line
160
176
  end
161
- def computer_vision_error
162
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionError
177
+ def image_metadata
178
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageMetadata
163
179
  end
164
- def landmarks_model
165
- Azure::CognitiveServices::ComputerVision::V2_0::Models::LandmarksModel
180
+ def recognition_result
181
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::RecognitionResult
166
182
  end
167
- def image_url
168
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageUrl
183
+ def face_description
184
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::FaceDescription
169
185
  end
170
- def image_description_details
171
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ImageDescriptionDetails
186
+ def text_operation_result
187
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationResult
172
188
  end
173
- def text_operation_status_codes
174
- Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationStatusCodes
189
+ def category_detail
190
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::CategoryDetail
175
191
  end
176
192
  def gender
177
193
  Azure::CognitiveServices::ComputerVision::V2_0::Models::Gender
178
194
  end
179
- def computer_vision_error_codes
180
- Azure::CognitiveServices::ComputerVision::V2_0::Models::ComputerVisionErrorCodes
181
- end
182
- def visual_feature_types
183
- Azure::CognitiveServices::ComputerVision::V2_0::Models::VisualFeatureTypes
195
+ def text_operation_status_codes
196
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::TextOperationStatusCodes
184
197
  end
185
198
  def ocr_languages
186
199
  Azure::CognitiveServices::ComputerVision::V2_0::Models::OcrLanguages
187
200
  end
201
+ def visual_feature_types
202
+ Azure::CognitiveServices::ComputerVision::V2_0::Models::VisualFeatureTypes
203
+ end
188
204
  def text_recognition_mode
189
205
  Azure::CognitiveServices::ComputerVision::V2_0::Models::TextRecognitionMode
190
206
  end
@@ -7,196 +7,231 @@ require 'azure_mgmt_devtestlabs'
7
7
  module Azure::Profiles::Latest
8
8
  module DevTestLabs
9
9
  module Mgmt
10
- ProviderOperations = Azure::DevTestLabs::Mgmt::V2016_05_15::ProviderOperations
11
- Labs = Azure::DevTestLabs::Mgmt::V2016_05_15::Labs
12
- Operations = Azure::DevTestLabs::Mgmt::V2016_05_15::Operations
13
- GlobalSchedules = Azure::DevTestLabs::Mgmt::V2016_05_15::GlobalSchedules
14
- ArtifactSources = Azure::DevTestLabs::Mgmt::V2016_05_15::ArtifactSources
15
- ArmTemplates = Azure::DevTestLabs::Mgmt::V2016_05_15::ArmTemplates
16
- Artifacts = Azure::DevTestLabs::Mgmt::V2016_05_15::Artifacts
17
- Costs = Azure::DevTestLabs::Mgmt::V2016_05_15::Costs
18
- CustomImages = Azure::DevTestLabs::Mgmt::V2016_05_15::CustomImages
19
- Formulas = Azure::DevTestLabs::Mgmt::V2016_05_15::Formulas
20
- GalleryImages = Azure::DevTestLabs::Mgmt::V2016_05_15::GalleryImages
21
- NotificationChannels = Azure::DevTestLabs::Mgmt::V2016_05_15::NotificationChannels
22
- PolicySets = Azure::DevTestLabs::Mgmt::V2016_05_15::PolicySets
23
- Policies = Azure::DevTestLabs::Mgmt::V2016_05_15::Policies
24
- Schedules = Azure::DevTestLabs::Mgmt::V2016_05_15::Schedules
25
- ServiceRunners = Azure::DevTestLabs::Mgmt::V2016_05_15::ServiceRunners
26
- Users = Azure::DevTestLabs::Mgmt::V2016_05_15::Users
27
- Disks = Azure::DevTestLabs::Mgmt::V2016_05_15::Disks
28
- Environments = Azure::DevTestLabs::Mgmt::V2016_05_15::Environments
29
- Secrets = Azure::DevTestLabs::Mgmt::V2016_05_15::Secrets
30
- VirtualMachines = Azure::DevTestLabs::Mgmt::V2016_05_15::VirtualMachines
31
- VirtualMachineSchedules = Azure::DevTestLabs::Mgmt::V2016_05_15::VirtualMachineSchedules
32
- VirtualNetworks = Azure::DevTestLabs::Mgmt::V2016_05_15::VirtualNetworks
10
+ ProviderOperations = Azure::DevTestLabs::Mgmt::V2018_09_15::ProviderOperations
11
+ Labs = Azure::DevTestLabs::Mgmt::V2018_09_15::Labs
12
+ Operations = Azure::DevTestLabs::Mgmt::V2018_09_15::Operations
13
+ GlobalSchedules = Azure::DevTestLabs::Mgmt::V2018_09_15::GlobalSchedules
14
+ ArtifactSources = Azure::DevTestLabs::Mgmt::V2018_09_15::ArtifactSources
15
+ ArmTemplates = Azure::DevTestLabs::Mgmt::V2018_09_15::ArmTemplates
16
+ Artifacts = Azure::DevTestLabs::Mgmt::V2018_09_15::Artifacts
17
+ Costs = Azure::DevTestLabs::Mgmt::V2018_09_15::Costs
18
+ CustomImages = Azure::DevTestLabs::Mgmt::V2018_09_15::CustomImages
19
+ Formulas = Azure::DevTestLabs::Mgmt::V2018_09_15::Formulas
20
+ GalleryImages = Azure::DevTestLabs::Mgmt::V2018_09_15::GalleryImages
21
+ NotificationChannels = Azure::DevTestLabs::Mgmt::V2018_09_15::NotificationChannels
22
+ PolicySets = Azure::DevTestLabs::Mgmt::V2018_09_15::PolicySets
23
+ Policies = Azure::DevTestLabs::Mgmt::V2018_09_15::Policies
24
+ Schedules = Azure::DevTestLabs::Mgmt::V2018_09_15::Schedules
25
+ ServiceRunners = Azure::DevTestLabs::Mgmt::V2018_09_15::ServiceRunners
26
+ Users = Azure::DevTestLabs::Mgmt::V2018_09_15::Users
27
+ Disks = Azure::DevTestLabs::Mgmt::V2018_09_15::Disks
28
+ Environments = Azure::DevTestLabs::Mgmt::V2018_09_15::Environments
29
+ Secrets = Azure::DevTestLabs::Mgmt::V2018_09_15::Secrets
30
+ ServiceFabrics = Azure::DevTestLabs::Mgmt::V2018_09_15::ServiceFabrics
31
+ ServiceFabricSchedules = Azure::DevTestLabs::Mgmt::V2018_09_15::ServiceFabricSchedules
32
+ VirtualMachines = Azure::DevTestLabs::Mgmt::V2018_09_15::VirtualMachines
33
+ VirtualMachineSchedules = Azure::DevTestLabs::Mgmt::V2018_09_15::VirtualMachineSchedules
34
+ VirtualNetworks = Azure::DevTestLabs::Mgmt::V2018_09_15::VirtualNetworks
33
35
 
34
36
  module Models
35
- ExternalSubnetFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnetFragment
36
- GalleryImageReference = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
37
- DayDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetails
38
- InboundNatRule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
39
- NotificationSettings = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettings
40
- SharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
41
- ExportResourceUsageParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExportResourceUsageParameters
42
- WeekDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetailsFragment
43
- ExternalSubnet = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnet
44
- HourDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetailsFragment
45
- WeekDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetails
46
- UserSecretStore = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStore
47
- HourDetails = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetails
48
- ArtifactParameterProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterProperties
49
- ArtifactInstallProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallProperties
50
- ResponseWithContinuationLab = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLab
51
- ParametersValueFileInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParametersValueFileInfo
52
- ResponseWithContinuationLabVirtualMachine = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVirtualMachine
53
- ArmTemplateInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
54
- NetworkInterfaceProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfaceProperties
55
- ResponseWithContinuationUser = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationUser
56
- LabVirtualMachineCreationParameter = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineCreationParameter
57
- ArtifactDeploymentStatusPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
58
- FormulaPropertiesFromVm = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FormulaPropertiesFromVm
59
- ArtifactInstallPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
60
- ResponseWithContinuationLabVhd = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVhd
61
- Subnet = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
62
- UserSecretStoreFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStoreFragment
63
- AttachNewDataDiskOptions = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachNewDataDiskOptions
64
- GalleryImageReferenceFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReferenceFragment
65
- ParameterInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParameterInfo
66
- ComputeDataDisk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDisk
67
- GenerateArmTemplateRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateArmTemplateRequest
68
- ComputeVmInstanceViewStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatus
69
- GenerateUploadUriParameter = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriParameter
70
- ComputeVmProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmProperties
71
- GenerateUploadUriResponse = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriResponse
72
- PercentageCostThresholdProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PercentageCostThresholdProperties
73
- IdentityProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties
74
- WindowsOsInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsInfo
75
- InboundNatRuleFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRuleFragment
76
- CustomImagePropertiesFromVm = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesFromVm
77
- UserIdentityFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentityFragment
78
- ResponseWithContinuationSchedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSchedule
79
- TargetCostProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostProperties
80
- DetachDataDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDataDiskProperties
81
- LabCostSummaryProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostSummaryProperties
82
- ResponseWithContinuationPolicy = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationPolicy
83
- LabCostDetailsProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostDetailsProperties
84
- ResponseWithContinuationNotificationChannel = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
85
- LabResourceCostProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabResourceCostProperties
86
- EvaluatePoliciesRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesRequest
87
- SubnetOverrideFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverrideFragment
88
- PolicySetResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicySetResult
89
- SubnetSharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
90
- Event = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
91
- LabVhd = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVhd
92
- DayDetailsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
93
- SubnetFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
94
- UserIdentity = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentity
95
- SharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfigurationFragment
96
- ResponseWithContinuationServiceRunner = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
97
- NetworkInterfacePropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfacePropertiesFragment
98
- ArtifactDeploymentStatusProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
99
- ShutdownNotificationContent = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ShutdownNotificationContent
100
- ResponseWithContinuationSecret = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
101
- RetargetScheduleProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
102
- BulkCreationParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::BulkCreationParameters
103
- ResponseWithContinuationVirtualNetwork = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationVirtualNetwork
104
- ComputeDataDiskFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
105
- NotifyParameters = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotifyParameters
106
- ComputeVmPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmPropertiesFragment
107
- OperationError = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationError
108
- LinuxOsInfo = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsInfo
109
- OperationMetadataDisplay = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadataDisplay
110
- DataDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DataDiskProperties
111
- OperationMetadata = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadata
112
- EnvironmentDeploymentProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
113
- OperationResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationResult
114
- PolicyViolation = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyViolation
115
- SubnetOverride = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
116
- EventFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
117
- SubnetSharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfiguration
118
- ApplyArtifactsRequest = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplyArtifactsRequest
119
- Port = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Port
120
- ArtifactParameterPropertiesFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
121
- PortFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PortFragment
122
- ProviderOperationResult = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ProviderOperationResult
123
- CostThresholdProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdProperties
124
- Resource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Resource
125
- DetachDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDiskProperties
126
- ResponseWithContinuationArmTemplate = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArmTemplate
127
- EvaluatePoliciesResponse = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesResponse
128
- ResponseWithContinuationArtifact = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifact
129
- ArmTemplateParameterProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
130
- ResponseWithContinuationArtifactSource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifactSource
131
- ComputeVmInstanceViewStatusFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
132
- ResponseWithContinuationCustomImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationCustomImage
133
- EvaluatePoliciesProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesProperties
134
- ResponseWithContinuationDisk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDisk
135
- AttachDiskProperties = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachDiskProperties
136
- ResponseWithContinuationDtlEnvironment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDtlEnvironment
137
- NotificationSettingsFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
138
- ResponseWithContinuationFormula = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationFormula
139
- CustomImagePropertiesCustom = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesCustom
140
- ResponseWithContinuationGalleryImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationGalleryImage
141
- Schedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Schedule
142
- ApplicableSchedule = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableSchedule
143
- ScheduleFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ScheduleFragment
144
- ApplicableScheduleFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableScheduleFragment
145
- ArmTemplate = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
146
- Artifact = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Artifact
147
- ArtifactSource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSource
148
- ArtifactSourceFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSourceFragment
149
- CustomImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImage
150
- Disk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Disk
151
- DtlEnvironment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DtlEnvironment
152
- Formula = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Formula
153
- GalleryImage = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImage
154
- Lab = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Lab
155
- LabCost = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCost
156
- LabFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabFragment
157
- LabVirtualMachine = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachine
158
- LabVirtualMachineFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineFragment
159
- NotificationChannel = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
160
- NotificationChannelFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelFragment
161
- Policy = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Policy
162
- PolicyFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFragment
163
- Secret = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Secret
164
- ServiceRunner = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ServiceRunner
165
- User = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::User
166
- VirtualNetwork = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetwork
167
- UserFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserFragment
168
- VirtualNetworkFragment = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetworkFragment
169
- EnableStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnableStatus
170
- NotificationStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationStatus
171
- SourceControlType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SourceControlType
172
- StorageType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::StorageType
173
- CostThresholdStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdStatus
174
- WindowsOsState = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsState
175
- LinuxOsState = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsState
176
- CustomImageOsType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImageOsType
177
- HostCachingOptions = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HostCachingOptions
178
- NotificationChannelEventType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelEventType
179
- TransportProtocol = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TransportProtocol
180
- VirtualMachineCreationSource = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualMachineCreationSource
181
- FileUploadOptions = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FileUploadOptions
182
- PremiumDataDisk = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PremiumDataDisk
183
- TargetCostStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostStatus
184
- ReportingCycleType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ReportingCycleType
185
- CostType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostType
186
- HttpStatusCode = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HttpStatusCode
187
- PolicyStatus = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyStatus
188
- PolicyFactName = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFactName
189
- PolicyEvaluatorType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyEvaluatorType
190
- UsagePermissionType = Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UsagePermissionType
37
+ SharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SharedPublicIpAddressConfiguration
38
+ WeekDetails = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WeekDetails
39
+ NetworkInterfaceProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NetworkInterfaceProperties
40
+ HourDetails = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HourDetails
41
+ ScheduleCreationParameter = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleCreationParameter
42
+ EnvironmentDeploymentPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentDeploymentPropertiesFragment
43
+ VirtualNetworkList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetworkList
44
+ Subnet = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Subnet
45
+ DayDetailsFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DayDetailsFragment
46
+ DtlEnvironmentList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironmentList
47
+ NotificationSettingsFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationSettingsFragment
48
+ EvaluatePoliciesProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesProperties
49
+ UserSecretStoreFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserSecretStoreFragment
50
+ EvaluatePoliciesRequest = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesRequest
51
+ ArtifactInstallProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactInstallProperties
52
+ PolicyViolation = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyViolation
53
+ ParametersValueFileInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ParametersValueFileInfo
54
+ PolicySetResult = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicySetResult
55
+ ArmTemplateInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateInfo
56
+ EvaluatePoliciesResponse = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesResponse
57
+ ArmTemplateParameterProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateParameterProperties
58
+ Event = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Event
59
+ UserSecretStore = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserSecretStore
60
+ EventFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EventFragment
61
+ ArtifactDeploymentStatusPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactDeploymentStatusPropertiesFragment
62
+ ExportResourceUsageParameters = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExportResourceUsageParameters
63
+ ArtifactInstallPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactInstallPropertiesFragment
64
+ ExternalSubnet = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExternalSubnet
65
+ UserIdentity = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserIdentity
66
+ ExternalSubnetFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExternalSubnetFragment
67
+ ArtifactSourceList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSourceList
68
+ GalleryImageReference = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageReference
69
+ AttachNewDataDiskOptions = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachNewDataDiskOptions
70
+ InboundNatRule = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::InboundNatRule
71
+ BulkCreationParameters = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::BulkCreationParameters
72
+ DayDetails = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DayDetails
73
+ NotificationSettings = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationSettings
74
+ ComputeDataDisk = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeDataDisk
75
+ ShutdownNotificationContent = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ShutdownNotificationContent
76
+ ComputeVmInstanceViewStatus = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmInstanceViewStatus
77
+ LabVirtualMachineCreationParameter = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineCreationParameter
78
+ ComputeVmProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmProperties
79
+ FormulaPropertiesFromVm = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaPropertiesFromVm
80
+ PercentageCostThresholdProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PercentageCostThresholdProperties
81
+ ServiceRunnerList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceRunnerList
82
+ WindowsOsInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsInfo
83
+ GalleryImageReferenceFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageReferenceFragment
84
+ CustomImagePropertiesFromVm = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromVm
85
+ InboundNatRuleFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::InboundNatRuleFragment
86
+ DataDiskStorageTypeInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskStorageTypeInfo
87
+ SharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SharedPublicIpAddressConfigurationFragment
88
+ SubnetOverrideFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetOverrideFragment
89
+ NetworkInterfacePropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NetworkInterfacePropertiesFragment
90
+ LinuxOsInfoFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsInfoFragment
91
+ ScheduleCreationParameterFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleCreationParameterFragment
92
+ CustomImagePropertiesCustomFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesCustomFragment
93
+ LabVirtualMachineCreationParameterFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineCreationParameterFragment
94
+ CustomImagePropertiesFromPlanFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromPlanFragment
95
+ FormulaPropertiesFromVmFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaPropertiesFromVmFragment
96
+ CustomImageList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageList
97
+ ServiceFabricList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabricList
98
+ DataDiskPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskPropertiesFragment
99
+ FormulaList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaList
100
+ DetachDiskProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DetachDiskProperties
101
+ SecretList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SecretList
102
+ SubnetSharedPublicIpAddressConfiguration = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetSharedPublicIpAddressConfiguration
103
+ GalleryImageList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageList
104
+ EnvironmentDeploymentProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentDeploymentProperties
105
+ ParameterInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ParameterInfo
106
+ WeekDetailsFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WeekDetailsFragment
107
+ GenerateArmTemplateRequest = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateArmTemplateRequest
108
+ UserList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserList
109
+ GenerateUploadUriParameter = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateUploadUriParameter
110
+ ApplyArtifactsRequest = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplyArtifactsRequest
111
+ GenerateUploadUriResponse = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateUploadUriResponse
112
+ ArmTemplateList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateList
113
+ IdentityProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::IdentityProperties
114
+ ArtifactDeploymentStatusProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactDeploymentStatusProperties
115
+ ImportLabVirtualMachineRequest = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ImportLabVirtualMachineRequest
116
+ ArtifactList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactList
117
+ LabAnnouncementProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabAnnouncementProperties
118
+ AttachDiskProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachDiskProperties
119
+ LabSupportProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabSupportProperties
120
+ BulkCreationParametersFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::BulkCreationParametersFragment
121
+ ScheduleList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleList
122
+ ComputeDataDiskFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeDataDiskFragment
123
+ LabAnnouncementPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabAnnouncementPropertiesFragment
124
+ ComputeVmPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmPropertiesFragment
125
+ TargetCostProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TargetCostProperties
126
+ LinuxOsInfo = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsInfo
127
+ LabCostSummaryProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCostSummaryProperties
128
+ CustomImagePropertiesFromPlan = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromPlan
129
+ LabCostDetailsProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCostDetailsProperties
130
+ CustomImagePropertiesFromVmFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromVmFragment
131
+ LabResourceCostProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabResourceCostProperties
132
+ SubnetSharedPublicIpAddressConfigurationFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
133
+ RetargetScheduleProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::RetargetScheduleProperties
134
+ DetachDataDiskProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DetachDataDiskProperties
135
+ LabSupportPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabSupportPropertiesFragment
136
+ DiskList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DiskList
137
+ Resource = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Resource
138
+ HourDetailsFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HourDetailsFragment
139
+ LabList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabList
140
+ UserIdentityFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserIdentityFragment
141
+ LabVhd = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVhd
142
+ ArtifactParameterPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactParameterPropertiesFragment
143
+ LabVhdList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVhdList
144
+ AttachNewDataDiskOptionsFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachNewDataDiskOptionsFragment
145
+ ResizeLabVirtualMachineProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ResizeLabVirtualMachineProperties
146
+ ComputeVmInstanceViewStatusFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmInstanceViewStatusFragment
147
+ RdpConnection = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::RdpConnection
148
+ CustomImagePropertiesCustom = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesCustom
149
+ LabVirtualMachineList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineList
150
+ DataDiskStorageTypeInfoFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskStorageTypeInfoFragment
151
+ ProviderOperationResult = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ProviderOperationResult
152
+ SubnetOverride = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetOverride
153
+ PortFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PortFragment
154
+ ArtifactParameterProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactParameterProperties
155
+ NotificationChannelList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelList
156
+ UpdateResource = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UpdateResource
157
+ NotifyParameters = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotifyParameters
158
+ CostThresholdProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostThresholdProperties
159
+ OperationError = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationError
160
+ DataDiskProperties = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskProperties
161
+ OperationMetadataDisplay = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationMetadataDisplay
162
+ ArmTemplateParameterPropertiesFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateParameterPropertiesFragment
163
+ OperationMetadata = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationMetadata
164
+ WindowsOsInfoFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsInfoFragment
165
+ OperationResult = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationResult
166
+ Port = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Port
167
+ SubnetFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetFragment
168
+ PolicyList = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyList
169
+ Schedule = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Schedule
170
+ ApplicableSchedule = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplicableSchedule
171
+ ScheduleFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleFragment
172
+ ApplicableScheduleFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplicableScheduleFragment
173
+ ArmTemplate = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplate
174
+ Artifact = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Artifact
175
+ ArtifactSource = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSource
176
+ ArtifactSourceFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSourceFragment
177
+ CustomImage = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImage
178
+ CustomImageFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageFragment
179
+ Disk = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Disk
180
+ DiskFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DiskFragment
181
+ DtlEnvironment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironment
182
+ DtlEnvironmentFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironmentFragment
183
+ Formula = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Formula
184
+ FormulaFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaFragment
185
+ GalleryImage = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImage
186
+ Lab = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Lab
187
+ LabCost = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCost
188
+ LabFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabFragment
189
+ LabVirtualMachine = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachine
190
+ LabVirtualMachineFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineFragment
191
+ NotificationChannel = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannel
192
+ NotificationChannelFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelFragment
193
+ Policy = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Policy
194
+ PolicyFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyFragment
195
+ Secret = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Secret
196
+ SecretFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SecretFragment
197
+ ServiceFabric = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabric
198
+ ServiceFabricFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabricFragment
199
+ ServiceRunner = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceRunner
200
+ User = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::User
201
+ UserFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserFragment
202
+ VirtualNetwork = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetwork
203
+ VirtualNetworkFragment = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetworkFragment
204
+ EnableStatus = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnableStatus
205
+ SourceControlType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SourceControlType
206
+ StorageType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::StorageType
207
+ CostThresholdStatus = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostThresholdStatus
208
+ WindowsOsState = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsState
209
+ LinuxOsState = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsState
210
+ CustomImageOsType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageOsType
211
+ HostCachingOptions = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HostCachingOptions
212
+ NotificationChannelEventType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelEventType
213
+ TransportProtocol = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TransportProtocol
214
+ VirtualMachineCreationSource = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualMachineCreationSource
215
+ FileUploadOptions = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FileUploadOptions
216
+ PremiumDataDisk = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PremiumDataDisk
217
+ EnvironmentPermission = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentPermission
218
+ TargetCostStatus = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TargetCostStatus
219
+ ReportingCycleType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ReportingCycleType
220
+ CostType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostType
221
+ HttpStatusCode = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HttpStatusCode
222
+ PolicyStatus = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyStatus
223
+ PolicyFactName = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyFactName
224
+ PolicyEvaluatorType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyEvaluatorType
225
+ UsagePermissionType = Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UsagePermissionType
191
226
  end
192
227
 
193
228
  class DevTestLabsManagementClass
194
- attr_reader :provider_operations, :labs, :operations, :global_schedules, :artifact_sources, :arm_templates, :artifacts, :costs, :custom_images, :formulas, :gallery_images, :notification_channels, :policy_sets, :policies, :schedules, :service_runners, :users, :disks, :environments, :secrets, :virtual_machines, :virtual_machine_schedules, :virtual_networks, :configurable, :base_url, :options, :model_classes
229
+ attr_reader :provider_operations, :labs, :operations, :global_schedules, :artifact_sources, :arm_templates, :artifacts, :costs, :custom_images, :formulas, :gallery_images, :notification_channels, :policy_sets, :policies, :schedules, :service_runners, :users, :disks, :environments, :secrets, :service_fabrics, :service_fabric_schedules, :virtual_machines, :virtual_machine_schedules, :virtual_networks, :configurable, :base_url, :options, :model_classes
195
230
 
196
231
  def initialize(configurable, base_url=nil, options=nil)
197
232
  @configurable, @base_url, @options = configurable, base_url, options
198
233
 
199
- @client_0 = Azure::DevTestLabs::Mgmt::V2016_05_15::DevTestLabsClient.new(configurable.credentials, base_url, options)
234
+ @client_0 = Azure::DevTestLabs::Mgmt::V2018_09_15::DevTestLabsClient.new(configurable.credentials, base_url, options)
200
235
  if(@client_0.respond_to?(:subscription_id))
201
236
  @client_0.subscription_id = configurable.subscription_id
202
237
  end
@@ -221,6 +256,8 @@ module Azure::Profiles::Latest
221
256
  @disks = @client_0.disks
222
257
  @environments = @client_0.environments
223
258
  @secrets = @client_0.secrets
259
+ @service_fabrics = @client_0.service_fabrics
260
+ @service_fabric_schedules = @client_0.service_fabric_schedules
224
261
  @virtual_machines = @client_0.virtual_machines
225
262
  @virtual_machine_schedules = @client_0.virtual_machine_schedules
226
263
  @virtual_networks = @client_0.virtual_networks
@@ -242,473 +279,572 @@ module Azure::Profiles::Latest
242
279
  end
243
280
 
244
281
  class ModelClasses
245
- def external_subnet_fragment
246
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnetFragment
282
+ def shared_public_ip_address_configuration
283
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SharedPublicIpAddressConfiguration
247
284
  end
248
- def gallery_image_reference
249
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReference
285
+ def week_details
286
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WeekDetails
250
287
  end
251
- def day_details
252
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetails
288
+ def network_interface_properties
289
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NetworkInterfaceProperties
253
290
  end
254
- def inbound_nat_rule
255
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRule
291
+ def hour_details
292
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HourDetails
256
293
  end
257
- def notification_settings
258
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettings
294
+ def schedule_creation_parameter
295
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleCreationParameter
259
296
  end
260
- def shared_public_ip_address_configuration
261
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfiguration
297
+ def environment_deployment_properties_fragment
298
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentDeploymentPropertiesFragment
262
299
  end
263
- def export_resource_usage_parameters
264
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExportResourceUsageParameters
300
+ def virtual_network_list
301
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetworkList
265
302
  end
266
- def week_details_fragment
267
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetailsFragment
303
+ def subnet
304
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Subnet
268
305
  end
269
- def external_subnet
270
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ExternalSubnet
306
+ def day_details_fragment
307
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DayDetailsFragment
271
308
  end
272
- def hour_details_fragment
273
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetailsFragment
309
+ def dtl_environment_list
310
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironmentList
274
311
  end
275
- def week_details
276
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WeekDetails
312
+ def notification_settings_fragment
313
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationSettingsFragment
277
314
  end
278
- def user_secret_store
279
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStore
315
+ def evaluate_policies_properties
316
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesProperties
280
317
  end
281
- def hour_details
282
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HourDetails
318
+ def user_secret_store_fragment
319
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserSecretStoreFragment
283
320
  end
284
- def artifact_parameter_properties
285
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterProperties
321
+ def evaluate_policies_request
322
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesRequest
286
323
  end
287
324
  def artifact_install_properties
288
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallProperties
325
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactInstallProperties
289
326
  end
290
- def response_with_continuation_lab
291
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLab
327
+ def policy_violation
328
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyViolation
292
329
  end
293
330
  def parameters_value_file_info
294
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParametersValueFileInfo
331
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ParametersValueFileInfo
295
332
  end
296
- def response_with_continuation_lab_virtual_machine
297
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVirtualMachine
333
+ def policy_set_result
334
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicySetResult
298
335
  end
299
336
  def arm_template_info
300
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateInfo
337
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateInfo
301
338
  end
302
- def network_interface_properties
303
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfaceProperties
339
+ def evaluate_policies_response
340
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EvaluatePoliciesResponse
341
+ end
342
+ def arm_template_parameter_properties
343
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateParameterProperties
304
344
  end
305
- def response_with_continuation_user
306
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationUser
345
+ def event
346
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Event
307
347
  end
308
- def lab_virtual_machine_creation_parameter
309
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineCreationParameter
348
+ def user_secret_store
349
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserSecretStore
350
+ end
351
+ def event_fragment
352
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EventFragment
310
353
  end
311
354
  def artifact_deployment_status_properties_fragment
312
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
355
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactDeploymentStatusPropertiesFragment
313
356
  end
314
- def formula_properties_from_vm
315
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FormulaPropertiesFromVm
357
+ def export_resource_usage_parameters
358
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExportResourceUsageParameters
316
359
  end
317
360
  def artifact_install_properties_fragment
318
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
361
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactInstallPropertiesFragment
319
362
  end
320
- def response_with_continuation_lab_vhd
321
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationLabVhd
363
+ def external_subnet
364
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExternalSubnet
322
365
  end
323
- def subnet
324
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Subnet
366
+ def user_identity
367
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserIdentity
325
368
  end
326
- def user_secret_store_fragment
327
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserSecretStoreFragment
369
+ def external_subnet_fragment
370
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ExternalSubnetFragment
371
+ end
372
+ def artifact_source_list
373
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSourceList
374
+ end
375
+ def gallery_image_reference
376
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageReference
328
377
  end
329
378
  def attach_new_data_disk_options
330
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachNewDataDiskOptions
379
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachNewDataDiskOptions
331
380
  end
332
- def gallery_image_reference_fragment
333
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImageReferenceFragment
381
+ def inbound_nat_rule
382
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::InboundNatRule
334
383
  end
335
- def parameter_info
336
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ParameterInfo
384
+ def bulk_creation_parameters
385
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::BulkCreationParameters
386
+ end
387
+ def day_details
388
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DayDetails
389
+ end
390
+ def notification_settings
391
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationSettings
337
392
  end
338
393
  def compute_data_disk
339
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDisk
394
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeDataDisk
340
395
  end
341
- def generate_arm_template_request
342
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateArmTemplateRequest
396
+ def shutdown_notification_content
397
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ShutdownNotificationContent
343
398
  end
344
399
  def compute_vm_instance_view_status
345
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatus
400
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmInstanceViewStatus
346
401
  end
347
- def generate_upload_uri_parameter
348
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriParameter
402
+ def lab_virtual_machine_creation_parameter
403
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineCreationParameter
349
404
  end
350
405
  def compute_vm_properties
351
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmProperties
406
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmProperties
352
407
  end
353
- def generate_upload_uri_response
354
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GenerateUploadUriResponse
408
+ def formula_properties_from_vm
409
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaPropertiesFromVm
355
410
  end
356
411
  def percentage_cost_threshold_properties
357
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PercentageCostThresholdProperties
412
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PercentageCostThresholdProperties
358
413
  end
359
- def identity_properties
360
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::IdentityProperties
414
+ def service_runner_list
415
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceRunnerList
361
416
  end
362
417
  def windows_os_info
363
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsInfo
418
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsInfo
364
419
  end
365
- def inbound_nat_rule_fragment
366
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::InboundNatRuleFragment
420
+ def gallery_image_reference_fragment
421
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageReferenceFragment
367
422
  end
368
423
  def custom_image_properties_from_vm
369
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesFromVm
424
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromVm
370
425
  end
371
- def user_identity_fragment
372
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentityFragment
426
+ def inbound_nat_rule_fragment
427
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::InboundNatRuleFragment
373
428
  end
374
- def response_with_continuation_schedule
375
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSchedule
429
+ def data_disk_storage_type_info
430
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskStorageTypeInfo
376
431
  end
377
- def target_cost_properties
378
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostProperties
432
+ def shared_public_ip_address_configuration_fragment
433
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SharedPublicIpAddressConfigurationFragment
379
434
  end
380
- def detach_data_disk_properties
381
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDataDiskProperties
435
+ def subnet_override_fragment
436
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetOverrideFragment
382
437
  end
383
- def lab_cost_summary_properties
384
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostSummaryProperties
438
+ def network_interface_properties_fragment
439
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NetworkInterfacePropertiesFragment
385
440
  end
386
- def response_with_continuation_policy
387
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationPolicy
441
+ def linux_os_info_fragment
442
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsInfoFragment
388
443
  end
389
- def lab_cost_details_properties
390
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCostDetailsProperties
444
+ def schedule_creation_parameter_fragment
445
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleCreationParameterFragment
391
446
  end
392
- def response_with_continuation_notification_channel
393
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationNotificationChannel
447
+ def custom_image_properties_custom_fragment
448
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesCustomFragment
394
449
  end
395
- def lab_resource_cost_properties
396
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabResourceCostProperties
450
+ def lab_virtual_machine_creation_parameter_fragment
451
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineCreationParameterFragment
397
452
  end
398
- def evaluate_policies_request
399
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesRequest
453
+ def custom_image_properties_from_plan_fragment
454
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromPlanFragment
400
455
  end
401
- def subnet_override_fragment
402
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverrideFragment
456
+ def formula_properties_from_vm_fragment
457
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaPropertiesFromVmFragment
403
458
  end
404
- def policy_set_result
405
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicySetResult
459
+ def custom_image_list
460
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageList
406
461
  end
407
- def subnet_shared_public_ip_address_configuration_fragment
408
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
462
+ def service_fabric_list
463
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabricList
409
464
  end
410
- def event
411
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Event
465
+ def data_disk_properties_fragment
466
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskPropertiesFragment
412
467
  end
413
- def lab_vhd
414
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVhd
468
+ def formula_list
469
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaList
415
470
  end
416
- def day_details_fragment
417
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DayDetailsFragment
471
+ def detach_disk_properties
472
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DetachDiskProperties
418
473
  end
419
- def subnet_fragment
420
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetFragment
474
+ def secret_list
475
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SecretList
421
476
  end
422
- def user_identity
423
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserIdentity
477
+ def subnet_shared_public_ip_address_configuration
478
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetSharedPublicIpAddressConfiguration
424
479
  end
425
- def shared_public_ip_address_configuration_fragment
426
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SharedPublicIpAddressConfigurationFragment
480
+ def gallery_image_list
481
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImageList
427
482
  end
428
- def response_with_continuation_service_runner
429
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationServiceRunner
483
+ def environment_deployment_properties
484
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentDeploymentProperties
430
485
  end
431
- def network_interface_properties_fragment
432
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NetworkInterfacePropertiesFragment
486
+ def parameter_info
487
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ParameterInfo
488
+ end
489
+ def week_details_fragment
490
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WeekDetailsFragment
491
+ end
492
+ def generate_arm_template_request
493
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateArmTemplateRequest
494
+ end
495
+ def user_list
496
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserList
497
+ end
498
+ def generate_upload_uri_parameter
499
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateUploadUriParameter
500
+ end
501
+ def apply_artifacts_request
502
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplyArtifactsRequest
503
+ end
504
+ def generate_upload_uri_response
505
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GenerateUploadUriResponse
506
+ end
507
+ def arm_template_list
508
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateList
509
+ end
510
+ def identity_properties
511
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::IdentityProperties
433
512
  end
434
513
  def artifact_deployment_status_properties
435
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
514
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactDeploymentStatusProperties
436
515
  end
437
- def shutdown_notification_content
438
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ShutdownNotificationContent
516
+ def import_lab_virtual_machine_request
517
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ImportLabVirtualMachineRequest
439
518
  end
440
- def response_with_continuation_secret
441
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationSecret
519
+ def artifact_list
520
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactList
442
521
  end
443
- def retarget_schedule_properties
444
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::RetargetScheduleProperties
522
+ def lab_announcement_properties
523
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabAnnouncementProperties
445
524
  end
446
- def bulk_creation_parameters
447
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::BulkCreationParameters
525
+ def attach_disk_properties
526
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachDiskProperties
527
+ end
528
+ def lab_support_properties
529
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabSupportProperties
448
530
  end
449
- def response_with_continuation_virtual_network
450
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationVirtualNetwork
531
+ def bulk_creation_parameters_fragment
532
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::BulkCreationParametersFragment
533
+ end
534
+ def schedule_list
535
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleList
451
536
  end
452
537
  def compute_data_disk_fragment
453
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeDataDiskFragment
538
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeDataDiskFragment
454
539
  end
455
- def notify_parameters
456
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotifyParameters
540
+ def lab_announcement_properties_fragment
541
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabAnnouncementPropertiesFragment
457
542
  end
458
543
  def compute_vm_properties_fragment
459
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmPropertiesFragment
544
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmPropertiesFragment
460
545
  end
461
- def operation_error
462
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationError
546
+ def target_cost_properties
547
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TargetCostProperties
463
548
  end
464
549
  def linux_os_info
465
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsInfo
550
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsInfo
466
551
  end
467
- def operation_metadata_display
468
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadataDisplay
552
+ def lab_cost_summary_properties
553
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCostSummaryProperties
469
554
  end
470
- def data_disk_properties
471
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DataDiskProperties
555
+ def custom_image_properties_from_plan
556
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromPlan
472
557
  end
473
- def operation_metadata
474
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationMetadata
558
+ def lab_cost_details_properties
559
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCostDetailsProperties
475
560
  end
476
- def environment_deployment_properties
477
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
561
+ def custom_image_properties_from_vm_fragment
562
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesFromVmFragment
478
563
  end
479
- def operation_result
480
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::OperationResult
564
+ def lab_resource_cost_properties
565
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabResourceCostProperties
481
566
  end
482
- def policy_violation
483
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyViolation
567
+ def subnet_shared_public_ip_address_configuration_fragment
568
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetSharedPublicIpAddressConfigurationFragment
484
569
  end
485
- def subnet_override
486
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetOverride
570
+ def retarget_schedule_properties
571
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::RetargetScheduleProperties
487
572
  end
488
- def event_fragment
489
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EventFragment
573
+ def detach_data_disk_properties
574
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DetachDataDiskProperties
490
575
  end
491
- def subnet_shared_public_ip_address_configuration
492
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SubnetSharedPublicIpAddressConfiguration
576
+ def lab_support_properties_fragment
577
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabSupportPropertiesFragment
493
578
  end
494
- def apply_artifacts_request
495
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplyArtifactsRequest
579
+ def disk_list
580
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DiskList
496
581
  end
497
- def port
498
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Port
582
+ def resource
583
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Resource
584
+ end
585
+ def hour_details_fragment
586
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HourDetailsFragment
587
+ end
588
+ def lab_list
589
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabList
590
+ end
591
+ def user_identity_fragment
592
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserIdentityFragment
593
+ end
594
+ def lab_vhd
595
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVhd
499
596
  end
500
597
  def artifact_parameter_properties_fragment
501
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactParameterPropertiesFragment
598
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactParameterPropertiesFragment
502
599
  end
503
- def port_fragment
504
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PortFragment
600
+ def lab_vhd_list
601
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVhdList
505
602
  end
506
- def provider_operation_result
507
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ProviderOperationResult
603
+ def attach_new_data_disk_options_fragment
604
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::AttachNewDataDiskOptionsFragment
508
605
  end
509
- def cost_threshold_properties
510
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdProperties
606
+ def resize_lab_virtual_machine_properties
607
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ResizeLabVirtualMachineProperties
511
608
  end
512
- def resource
513
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Resource
609
+ def compute_vm_instance_view_status_fragment
610
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ComputeVmInstanceViewStatusFragment
514
611
  end
515
- def detach_disk_properties
516
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DetachDiskProperties
612
+ def rdp_connection
613
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::RdpConnection
517
614
  end
518
- def response_with_continuation_arm_template
519
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArmTemplate
615
+ def custom_image_properties_custom
616
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImagePropertiesCustom
520
617
  end
521
- def evaluate_policies_response
522
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesResponse
618
+ def lab_virtual_machine_list
619
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineList
523
620
  end
524
- def response_with_continuation_artifact
525
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifact
621
+ def data_disk_storage_type_info_fragment
622
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskStorageTypeInfoFragment
526
623
  end
527
- def arm_template_parameter_properties
528
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplateParameterProperties
624
+ def provider_operation_result
625
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ProviderOperationResult
529
626
  end
530
- def response_with_continuation_artifact_source
531
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationArtifactSource
627
+ def subnet_override
628
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetOverride
532
629
  end
533
- def compute_vm_instance_view_status_fragment
534
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ComputeVmInstanceViewStatusFragment
630
+ def port_fragment
631
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PortFragment
535
632
  end
536
- def response_with_continuation_custom_image
537
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationCustomImage
633
+ def artifact_parameter_properties
634
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactParameterProperties
538
635
  end
539
- def evaluate_policies_properties
540
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EvaluatePoliciesProperties
636
+ def notification_channel_list
637
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelList
541
638
  end
542
- def response_with_continuation_disk
543
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDisk
639
+ def update_resource
640
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UpdateResource
544
641
  end
545
- def attach_disk_properties
546
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::AttachDiskProperties
642
+ def notify_parameters
643
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotifyParameters
547
644
  end
548
- def response_with_continuation_dtl_environment
549
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationDtlEnvironment
645
+ def cost_threshold_properties
646
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostThresholdProperties
550
647
  end
551
- def notification_settings_fragment
552
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationSettingsFragment
648
+ def operation_error
649
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationError
553
650
  end
554
- def response_with_continuation_formula
555
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationFormula
651
+ def data_disk_properties
652
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DataDiskProperties
556
653
  end
557
- def custom_image_properties_custom
558
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImagePropertiesCustom
654
+ def operation_metadata_display
655
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationMetadataDisplay
559
656
  end
560
- def response_with_continuation_gallery_image
561
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ResponseWithContinuationGalleryImage
657
+ def arm_template_parameter_properties_fragment
658
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplateParameterPropertiesFragment
659
+ end
660
+ def operation_metadata
661
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationMetadata
662
+ end
663
+ def windows_os_info_fragment
664
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsInfoFragment
665
+ end
666
+ def operation_result
667
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::OperationResult
668
+ end
669
+ def port
670
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Port
671
+ end
672
+ def subnet_fragment
673
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SubnetFragment
674
+ end
675
+ def policy_list
676
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyList
562
677
  end
563
678
  def schedule
564
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Schedule
679
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Schedule
565
680
  end
566
681
  def applicable_schedule
567
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableSchedule
682
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplicableSchedule
568
683
  end
569
684
  def schedule_fragment
570
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ScheduleFragment
685
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ScheduleFragment
571
686
  end
572
687
  def applicable_schedule_fragment
573
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ApplicableScheduleFragment
688
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ApplicableScheduleFragment
574
689
  end
575
690
  def arm_template
576
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
691
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArmTemplate
577
692
  end
578
693
  def artifact
579
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Artifact
694
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Artifact
580
695
  end
581
696
  def artifact_source
582
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSource
697
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSource
583
698
  end
584
699
  def artifact_source_fragment
585
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactSourceFragment
700
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactSourceFragment
586
701
  end
587
702
  def custom_image
588
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImage
703
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImage
704
+ end
705
+ def custom_image_fragment
706
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageFragment
589
707
  end
590
708
  def disk
591
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Disk
709
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Disk
710
+ end
711
+ def disk_fragment
712
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DiskFragment
592
713
  end
593
714
  def dtl_environment
594
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::DtlEnvironment
715
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironment
716
+ end
717
+ def dtl_environment_fragment
718
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::DtlEnvironmentFragment
595
719
  end
596
720
  def formula
597
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Formula
721
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Formula
722
+ end
723
+ def formula_fragment
724
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FormulaFragment
598
725
  end
599
726
  def gallery_image
600
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::GalleryImage
727
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::GalleryImage
601
728
  end
602
729
  def lab
603
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Lab
730
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Lab
604
731
  end
605
732
  def lab_cost
606
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabCost
733
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabCost
607
734
  end
608
735
  def lab_fragment
609
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabFragment
736
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabFragment
610
737
  end
611
738
  def lab_virtual_machine
612
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachine
739
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachine
613
740
  end
614
741
  def lab_virtual_machine_fragment
615
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LabVirtualMachineFragment
742
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LabVirtualMachineFragment
616
743
  end
617
744
  def notification_channel
618
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannel
745
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannel
619
746
  end
620
747
  def notification_channel_fragment
621
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelFragment
748
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelFragment
622
749
  end
623
750
  def policy
624
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Policy
751
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Policy
625
752
  end
626
753
  def policy_fragment
627
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFragment
754
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyFragment
628
755
  end
629
756
  def secret
630
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::Secret
757
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::Secret
758
+ end
759
+ def secret_fragment
760
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SecretFragment
761
+ end
762
+ def service_fabric
763
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabric
764
+ end
765
+ def service_fabric_fragment
766
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceFabricFragment
631
767
  end
632
768
  def service_runner
633
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ServiceRunner
769
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ServiceRunner
634
770
  end
635
771
  def user
636
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::User
637
- end
638
- def virtual_network
639
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetwork
772
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::User
640
773
  end
641
774
  def user_fragment
642
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UserFragment
775
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UserFragment
776
+ end
777
+ def virtual_network
778
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetwork
643
779
  end
644
780
  def virtual_network_fragment
645
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualNetworkFragment
781
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualNetworkFragment
646
782
  end
647
783
  def enable_status
648
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnableStatus
649
- end
650
- def notification_status
651
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationStatus
784
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnableStatus
652
785
  end
653
786
  def source_control_type
654
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::SourceControlType
787
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::SourceControlType
655
788
  end
656
789
  def storage_type
657
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::StorageType
790
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::StorageType
658
791
  end
659
792
  def cost_threshold_status
660
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostThresholdStatus
793
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostThresholdStatus
661
794
  end
662
795
  def windows_os_state
663
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::WindowsOsState
796
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::WindowsOsState
664
797
  end
665
798
  def linux_os_state
666
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::LinuxOsState
799
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::LinuxOsState
667
800
  end
668
801
  def custom_image_os_type
669
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CustomImageOsType
802
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CustomImageOsType
670
803
  end
671
804
  def host_caching_options
672
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HostCachingOptions
805
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HostCachingOptions
673
806
  end
674
807
  def notification_channel_event_type
675
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::NotificationChannelEventType
808
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::NotificationChannelEventType
676
809
  end
677
810
  def transport_protocol
678
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TransportProtocol
811
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TransportProtocol
679
812
  end
680
813
  def virtual_machine_creation_source
681
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::VirtualMachineCreationSource
814
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::VirtualMachineCreationSource
682
815
  end
683
816
  def file_upload_options
684
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::FileUploadOptions
817
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::FileUploadOptions
685
818
  end
686
819
  def premium_data_disk
687
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PremiumDataDisk
820
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PremiumDataDisk
821
+ end
822
+ def environment_permission
823
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::EnvironmentPermission
688
824
  end
689
825
  def target_cost_status
690
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::TargetCostStatus
826
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::TargetCostStatus
691
827
  end
692
828
  def reporting_cycle_type
693
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ReportingCycleType
829
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ReportingCycleType
694
830
  end
695
831
  def cost_type
696
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::CostType
832
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::CostType
697
833
  end
698
834
  def http_status_code
699
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::HttpStatusCode
835
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::HttpStatusCode
700
836
  end
701
837
  def policy_status
702
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyStatus
838
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyStatus
703
839
  end
704
840
  def policy_fact_name
705
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyFactName
841
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyFactName
706
842
  end
707
843
  def policy_evaluator_type
708
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::PolicyEvaluatorType
844
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::PolicyEvaluatorType
709
845
  end
710
846
  def usage_permission_type
711
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::UsagePermissionType
847
+ Azure::DevTestLabs::Mgmt::V2018_09_15::Models::UsagePermissionType
712
848
  end
713
849
  end
714
850
  end