azure_mgmt_web 0.17.1 → 0.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/2015-04-01/generated/azure_mgmt_web/web_site_management_client.rb +1 -1
- data/lib/2015-08-01/generated/azure_mgmt_web/web_site_management_client.rb +1 -1
- data/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb +1 -1
- data/lib/2016-08-01/generated/azure_mgmt_web/web_site_management_client.rb +1 -1
- data/lib/2016-09-01/generated/azure_mgmt_web/web_site_management_client.rb +1 -1
- data/lib/2018-02-01/generated/azure_mgmt_web.rb +99 -91
- data/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb +40 -40
- data/lib/2018-02-01/generated/azure_mgmt_web/app_service_plans.rb +8 -8
- data/lib/2018-02-01/generated/azure_mgmt_web/models/app_service_plan.rb +26 -1
- data/lib/2018-02-01/generated/azure_mgmt_web/models/app_service_plan_patch_resource.rb +26 -1
- data/lib/2018-02-01/generated/azure_mgmt_web/models/azure_storage_info_value.rb +109 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/azure_storage_property_dictionary_resource.rb +90 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/azure_storage_state.rb +17 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/azure_storage_type.rb +16 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/backup_request.rb +11 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/csm_publishing_profile_options.rb +11 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/deleted_site.rb +54 -7
- data/lib/2018-02-01/generated/azure_mgmt_web/models/network_trace.rb +70 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/resource_health_metadata.rb +93 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/resource_health_metadata_collection.rb +99 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/site.rb +13 -1
- data/lib/2018-02-01/generated/azure_mgmt_web/models/site_config.rb +21 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/site_config_resource.rb +21 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/site_patch_resource.rb +13 -1
- data/lib/2018-02-01/generated/azure_mgmt_web/models/sku_name.rb +2 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/models/slot_config_names_resource.rb +20 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/provider.rb +16 -8
- data/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb +20 -20
- data/lib/2018-02-01/generated/azure_mgmt_web/resource_health_metadata_operations.rb +1161 -0
- data/lib/2018-02-01/generated/azure_mgmt_web/web_apps.rb +1716 -312
- data/lib/2018-02-01/generated/azure_mgmt_web/web_site_management_client.rb +36 -19
- data/lib/azure_mgmt_web.rb +1 -0
- data/lib/profiles/latest/modules/web_profile_module.rb +315 -285
- data/lib/profiles/v2018_03_01/modules/web_profile_module.rb +1235 -0
- data/lib/profiles/v2018_03_01/web_module_definition.rb +8 -0
- data/lib/profiles/v2018_03_01/web_v2018_03_01_profile_client.rb +40 -0
- data/lib/version.rb +1 -1
- metadata +14 -3
@@ -76,6 +76,10 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
76
76
|
# @return [AppServicePlans] app_service_plans
|
77
77
|
attr_reader :app_service_plans
|
78
78
|
|
79
|
+
# @return [ResourceHealthMetadataOperations]
|
80
|
+
# resource_health_metadata_operations
|
81
|
+
attr_reader :resource_health_metadata_operations
|
82
|
+
|
79
83
|
#
|
80
84
|
# Creates initializes a new instance of the WebSiteManagementClient class.
|
81
85
|
# @param credentials [MsRest::ServiceClientCredentials] credentials to authorize HTTP requests made by the service client.
|
@@ -102,6 +106,7 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
102
106
|
@web_apps = WebApps.new(self)
|
103
107
|
@app_service_environments = AppServiceEnvironments.new(self)
|
104
108
|
@app_service_plans = AppServicePlans.new(self)
|
109
|
+
@resource_health_metadata_operations = ResourceHealthMetadataOperations.new(self)
|
105
110
|
@api_version = '2018-02-01'
|
106
111
|
@accept_language = 'en-US'
|
107
112
|
@long_running_operation_retry_timeout = 30
|
@@ -955,18 +960,20 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
955
960
|
#
|
956
961
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
957
962
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
958
|
-
# 'Isolated', 'PremiumV2'
|
963
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
959
964
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
960
965
|
# to filter to only regions that support Linux workers.
|
961
966
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
962
967
|
# to filter to only regions that support Xenon workers.
|
968
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
969
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
963
970
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
964
971
|
# will be added to the HTTP request.
|
965
972
|
#
|
966
973
|
# @return [Array<GeoRegion>] operation results.
|
967
974
|
#
|
968
|
-
def list_geo_regions(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
969
|
-
first_page = list_geo_regions_as_lazy(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, custom_headers:custom_headers)
|
975
|
+
def list_geo_regions(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
976
|
+
first_page = list_geo_regions_as_lazy(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, linux_dynamic_workers_enabled:linux_dynamic_workers_enabled, custom_headers:custom_headers)
|
970
977
|
first_page.get_all_items
|
971
978
|
end
|
972
979
|
|
@@ -977,18 +984,20 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
977
984
|
#
|
978
985
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
979
986
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
980
|
-
# 'Isolated', 'PremiumV2'
|
987
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
981
988
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
982
989
|
# to filter to only regions that support Linux workers.
|
983
990
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
984
991
|
# to filter to only regions that support Xenon workers.
|
992
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
993
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
985
994
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
986
995
|
# will be added to the HTTP request.
|
987
996
|
#
|
988
997
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
989
998
|
#
|
990
|
-
def list_geo_regions_with_http_info(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
991
|
-
list_geo_regions_async(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, custom_headers:custom_headers).value!
|
999
|
+
def list_geo_regions_with_http_info(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
1000
|
+
list_geo_regions_async(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, linux_dynamic_workers_enabled:linux_dynamic_workers_enabled, custom_headers:custom_headers).value!
|
992
1001
|
end
|
993
1002
|
|
994
1003
|
#
|
@@ -998,17 +1007,19 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
998
1007
|
#
|
999
1008
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
1000
1009
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
1001
|
-
# 'Isolated', 'PremiumV2'
|
1010
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
1002
1011
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
1003
1012
|
# to filter to only regions that support Linux workers.
|
1004
1013
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
1005
1014
|
# to filter to only regions that support Xenon workers.
|
1015
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
1016
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
1006
1017
|
# @param [Hash{String => String}] A hash of custom headers that will be added
|
1007
1018
|
# to the HTTP request.
|
1008
1019
|
#
|
1009
1020
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
1010
1021
|
#
|
1011
|
-
def list_geo_regions_async(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
1022
|
+
def list_geo_regions_async(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
1012
1023
|
fail ArgumentError, 'subscription_id is nil' if subscription_id.nil?
|
1013
1024
|
fail ArgumentError, 'api_version is nil' if api_version.nil?
|
1014
1025
|
|
@@ -1026,7 +1037,7 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
1026
1037
|
options = {
|
1027
1038
|
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
1028
1039
|
path_params: {'subscriptionId' => subscription_id},
|
1029
|
-
query_params: {'sku' => sku,'linuxWorkersEnabled' => linux_workers_enabled,'xenonWorkersEnabled' => xenon_workers_enabled,'api-version' => api_version},
|
1040
|
+
query_params: {'sku' => sku,'linuxWorkersEnabled' => linux_workers_enabled,'xenonWorkersEnabled' => xenon_workers_enabled,'linuxDynamicWorkersEnabled' => linux_dynamic_workers_enabled,'api-version' => api_version},
|
1030
1041
|
headers: request_headers.merge(custom_headers || {}),
|
1031
1042
|
base_url: request_url
|
1032
1043
|
}
|
@@ -2415,18 +2426,20 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
2415
2426
|
#
|
2416
2427
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
2417
2428
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
2418
|
-
# 'Isolated', 'PremiumV2'
|
2429
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
2419
2430
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2420
2431
|
# to filter to only regions that support Linux workers.
|
2421
2432
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2422
2433
|
# to filter to only regions that support Xenon workers.
|
2434
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
2435
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
2423
2436
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
2424
2437
|
# will be added to the HTTP request.
|
2425
2438
|
#
|
2426
2439
|
# @return [GeoRegionCollection] operation results.
|
2427
2440
|
#
|
2428
|
-
def list_geo_regions_as_lazy(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
2429
|
-
first_page = list_geo_regions_as_lazy_as_lazy(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, custom_headers:custom_headers)
|
2441
|
+
def list_geo_regions_as_lazy(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
2442
|
+
first_page = list_geo_regions_as_lazy_as_lazy(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, linux_dynamic_workers_enabled:linux_dynamic_workers_enabled, custom_headers:custom_headers)
|
2430
2443
|
first_page.get_all_items
|
2431
2444
|
end
|
2432
2445
|
|
@@ -2437,18 +2450,20 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
2437
2450
|
#
|
2438
2451
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
2439
2452
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
2440
|
-
# 'Isolated', 'PremiumV2'
|
2453
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
2441
2454
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2442
2455
|
# to filter to only regions that support Linux workers.
|
2443
2456
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2444
2457
|
# to filter to only regions that support Xenon workers.
|
2458
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
2459
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
2445
2460
|
# @param custom_headers [Hash{String => String}] A hash of custom headers that
|
2446
2461
|
# will be added to the HTTP request.
|
2447
2462
|
#
|
2448
2463
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
2449
2464
|
#
|
2450
|
-
def list_geo_regions_as_lazy_with_http_info(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
2451
|
-
list_geo_regions_as_lazy_async(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, custom_headers:custom_headers).value!
|
2465
|
+
def list_geo_regions_as_lazy_with_http_info(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
2466
|
+
list_geo_regions_as_lazy_async(sku:sku, linux_workers_enabled:linux_workers_enabled, xenon_workers_enabled:xenon_workers_enabled, linux_dynamic_workers_enabled:linux_dynamic_workers_enabled, custom_headers:custom_headers).value!
|
2452
2467
|
end
|
2453
2468
|
|
2454
2469
|
#
|
@@ -2458,17 +2473,19 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
2458
2473
|
#
|
2459
2474
|
# @param sku [SkuName] Name of SKU used to filter the regions. Possible values
|
2460
2475
|
# include: 'Free', 'Shared', 'Basic', 'Standard', 'Premium', 'Dynamic',
|
2461
|
-
# 'Isolated', 'PremiumV2'
|
2476
|
+
# 'Isolated', 'PremiumV2', 'ElasticPremium', 'ElasticIsolated'
|
2462
2477
|
# @param linux_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2463
2478
|
# to filter to only regions that support Linux workers.
|
2464
2479
|
# @param xenon_workers_enabled [Boolean] Specify <code>true</code> if you want
|
2465
2480
|
# to filter to only regions that support Xenon workers.
|
2481
|
+
# @param linux_dynamic_workers_enabled [Boolean] Specify <code>true</code> if
|
2482
|
+
# you want to filter to only regions that support Linux Consumption Workers.
|
2466
2483
|
# @param [Hash{String => String}] A hash of custom headers that will be added
|
2467
2484
|
# to the HTTP request.
|
2468
2485
|
#
|
2469
2486
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
2470
2487
|
#
|
2471
|
-
def list_geo_regions_as_lazy_async(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, custom_headers:nil)
|
2488
|
+
def list_geo_regions_as_lazy_async(sku:nil, linux_workers_enabled:nil, xenon_workers_enabled:nil, linux_dynamic_workers_enabled:nil, custom_headers:nil)
|
2472
2489
|
|
2473
2490
|
|
2474
2491
|
request_headers = {}
|
@@ -2479,7 +2496,7 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
2479
2496
|
|
2480
2497
|
options = {
|
2481
2498
|
middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
|
2482
|
-
query_params: {'sku' => sku,'linuxWorkersEnabled' => linux_workers_enabled,'xenonWorkersEnabled' => xenon_workers_enabled},
|
2499
|
+
query_params: {'sku' => sku,'linuxWorkersEnabled' => linux_workers_enabled,'xenonWorkersEnabled' => xenon_workers_enabled,'linuxDynamicWorkersEnabled' => linux_dynamic_workers_enabled},
|
2483
2500
|
headers: request_headers.merge(custom_headers || {}),
|
2484
2501
|
base_url: request_url
|
2485
2502
|
}
|
@@ -2694,7 +2711,7 @@ module Azure::Web::Mgmt::V2018_02_01
|
|
2694
2711
|
#
|
2695
2712
|
def add_telemetry
|
2696
2713
|
sdk_information = 'azure_mgmt_web'
|
2697
|
-
sdk_information = "#{sdk_information}/0.17.
|
2714
|
+
sdk_information = "#{sdk_information}/0.17.2"
|
2698
2715
|
add_user_agent_information(sdk_information)
|
2699
2716
|
end
|
2700
2717
|
end
|
data/lib/azure_mgmt_web.rb
CHANGED
@@ -19,43 +19,45 @@ module Azure::Web::Profiles::Latest
|
|
19
19
|
WebApps = Azure::Web::Mgmt::V2018_02_01::WebApps
|
20
20
|
AppServiceEnvironments = Azure::Web::Mgmt::V2018_02_01::AppServiceEnvironments
|
21
21
|
AppServicePlans = Azure::Web::Mgmt::V2018_02_01::AppServicePlans
|
22
|
+
ResourceHealthMetadataOperations = Azure::Web::Mgmt::V2018_02_01::ResourceHealthMetadataOperations
|
22
23
|
|
23
24
|
module Models
|
24
|
-
|
25
|
-
AppServiceCertificate = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificate
|
25
|
+
IdentifierCollection = Azure::Web::Mgmt::V2018_02_01::Models::IdentifierCollection
|
26
26
|
Operation = Azure::Web::Mgmt::V2018_02_01::Models::Operation
|
27
|
-
|
28
|
-
ResourceMetricName = Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricName
|
27
|
+
TopLevelDomainCollection = Azure::Web::Mgmt::V2018_02_01::Models::TopLevelDomainCollection
|
29
28
|
DeploymentCollection = Azure::Web::Mgmt::V2018_02_01::Models::DeploymentCollection
|
29
|
+
CertificateDetails = Azure::Web::Mgmt::V2018_02_01::Models::CertificateDetails
|
30
|
+
CertificateCollection = Azure::Web::Mgmt::V2018_02_01::Models::CertificateCollection
|
31
|
+
AppServiceCertificateOrderCollection = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateOrderCollection
|
32
|
+
SnapshotRecoverySource = Azure::Web::Mgmt::V2018_02_01::Models::SnapshotRecoverySource
|
33
|
+
ProcessInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::ProcessInfoCollection
|
30
34
|
VirtualNetworkProfile = Azure::Web::Mgmt::V2018_02_01::Models::VirtualNetworkProfile
|
31
|
-
|
35
|
+
PerfMonResponse = Azure::Web::Mgmt::V2018_02_01::Models::PerfMonResponse
|
32
36
|
WorkerPool = Azure::Web::Mgmt::V2018_02_01::Models::WorkerPool
|
33
|
-
|
37
|
+
PerfMonSample = Azure::Web::Mgmt::V2018_02_01::Models::PerfMonSample
|
34
38
|
VirtualIPMapping = Azure::Web::Mgmt::V2018_02_01::Models::VirtualIPMapping
|
35
|
-
|
39
|
+
SiteSealRequest = Azure::Web::Mgmt::V2018_02_01::Models::SiteSealRequest
|
36
40
|
StampCapacity = Azure::Web::Mgmt::V2018_02_01::Models::StampCapacity
|
37
|
-
|
41
|
+
ProcessModuleInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::ProcessModuleInfoCollection
|
38
42
|
NetworkAccessControlEntry = Azure::Web::Mgmt::V2018_02_01::Models::NetworkAccessControlEntry
|
39
|
-
|
43
|
+
PublicCertificateCollection = Azure::Web::Mgmt::V2018_02_01::Models::PublicCertificateCollection
|
40
44
|
AppServiceEnvironment = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceEnvironment
|
41
|
-
|
45
|
+
ResourceMetricAvailability = Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricAvailability
|
42
46
|
AppServicePlanCollection = Azure::Web::Mgmt::V2018_02_01::Models::AppServicePlanCollection
|
43
|
-
|
47
|
+
SiteConfigResourceCollection = Azure::Web::Mgmt::V2018_02_01::Models::SiteConfigResourceCollection
|
44
48
|
LocalizableString = Azure::Web::Mgmt::V2018_02_01::Models::LocalizableString
|
45
|
-
|
49
|
+
SiteConfigurationSnapshotInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::SiteConfigurationSnapshotInfoCollection
|
46
50
|
CsmUsageQuota = Azure::Web::Mgmt::V2018_02_01::Models::CsmUsageQuota
|
47
|
-
|
51
|
+
HostNameBindingCollection = Azure::Web::Mgmt::V2018_02_01::Models::HostNameBindingCollection
|
48
52
|
CsmUsageQuotaCollection = Azure::Web::Mgmt::V2018_02_01::Models::CsmUsageQuotaCollection
|
49
|
-
HttpLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::HttpLogsConfig
|
50
|
-
DeletedSite = Azure::Web::Mgmt::V2018_02_01::Models::DeletedSite
|
51
53
|
ManagedServiceIdentity = Azure::Web::Mgmt::V2018_02_01::Models::ManagedServiceIdentity
|
52
54
|
ErrorEntity = Azure::Web::Mgmt::V2018_02_01::Models::ErrorEntity
|
53
55
|
CloningInfo = Azure::Web::Mgmt::V2018_02_01::Models::CloningInfo
|
54
|
-
|
56
|
+
AppServiceCertificate = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificate
|
55
57
|
IpSecurityRestriction = Azure::Web::Mgmt::V2018_02_01::Models::IpSecurityRestriction
|
56
|
-
|
58
|
+
TriggeredJobHistoryCollection = Azure::Web::Mgmt::V2018_02_01::Models::TriggeredJobHistoryCollection
|
57
59
|
CorsSettings = Azure::Web::Mgmt::V2018_02_01::Models::CorsSettings
|
58
|
-
|
60
|
+
ResourceMetricName = Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricName
|
59
61
|
AutoHealActions = Azure::Web::Mgmt::V2018_02_01::Models::AutoHealActions
|
60
62
|
ResourceMetricProperty = Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricProperty
|
61
63
|
StatusCodesBasedTrigger = Azure::Web::Mgmt::V2018_02_01::Models::StatusCodesBasedTrigger
|
@@ -70,131 +72,132 @@ module Azure::Web::Profiles::Latest
|
|
70
72
|
WebAppCollection = Azure::Web::Mgmt::V2018_02_01::Models::WebAppCollection
|
71
73
|
SiteMachineKey = Azure::Web::Mgmt::V2018_02_01::Models::SiteMachineKey
|
72
74
|
DeletedWebAppCollection = Azure::Web::Mgmt::V2018_02_01::Models::DeletedWebAppCollection
|
73
|
-
|
75
|
+
AzureStorageInfoValue = Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageInfoValue
|
74
76
|
Solution = Azure::Web::Mgmt::V2018_02_01::Models::Solution
|
75
|
-
|
77
|
+
SiteConfig = Azure::Web::Mgmt::V2018_02_01::Models::SiteConfig
|
76
78
|
DetectorAbnormalTimePeriod = Azure::Web::Mgmt::V2018_02_01::Models::DetectorAbnormalTimePeriod
|
77
|
-
|
79
|
+
SiteExtensionInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::SiteExtensionInfoCollection
|
78
80
|
AbnormalTimePeriod = Azure::Web::Mgmt::V2018_02_01::Models::AbnormalTimePeriod
|
79
|
-
|
80
|
-
|
81
|
-
|
81
|
+
SkuCapacity = Azure::Web::Mgmt::V2018_02_01::Models::SkuCapacity
|
82
|
+
TriggeredWebJobCollection = Azure::Web::Mgmt::V2018_02_01::Models::TriggeredWebJobCollection
|
83
|
+
SlotDifferenceCollection = Azure::Web::Mgmt::V2018_02_01::Models::SlotDifferenceCollection
|
82
84
|
DiagnosticMetricSample = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticMetricSample
|
83
|
-
|
85
|
+
DefaultErrorResponseErrorDetailsItem = Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponseErrorDetailsItem
|
84
86
|
DiagnosticMetricSet = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticMetricSet
|
85
|
-
|
87
|
+
DefaultErrorResponse = Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponse
|
86
88
|
DataSource = Azure::Web::Mgmt::V2018_02_01::Models::DataSource
|
87
|
-
|
89
|
+
LogSpecification = Azure::Web::Mgmt::V2018_02_01::Models::LogSpecification
|
88
90
|
ResponseMetaData = Azure::Web::Mgmt::V2018_02_01::Models::ResponseMetaData
|
89
|
-
|
91
|
+
Dimension = Azure::Web::Mgmt::V2018_02_01::Models::Dimension
|
90
92
|
AnalysisData = Azure::Web::Mgmt::V2018_02_01::Models::AnalysisData
|
91
|
-
|
92
|
-
|
93
|
-
|
93
|
+
ServiceSpecification = Azure::Web::Mgmt::V2018_02_01::Models::ServiceSpecification
|
94
|
+
CsmSlotEntity = Azure::Web::Mgmt::V2018_02_01::Models::CsmSlotEntity
|
95
|
+
CsmOperationDisplay = Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDisplay
|
94
96
|
DataTableResponseColumn = Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseColumn
|
95
|
-
|
97
|
+
CsmOperationCollection = Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationCollection
|
96
98
|
DataTableResponseObject = Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseObject
|
97
|
-
|
99
|
+
Contact = Azure::Web::Mgmt::V2018_02_01::Models::Contact
|
98
100
|
DetectorInfo = Azure::Web::Mgmt::V2018_02_01::Models::DetectorInfo
|
99
|
-
|
101
|
+
DomainPurchaseConsent = Azure::Web::Mgmt::V2018_02_01::Models::DomainPurchaseConsent
|
100
102
|
Rendering = Azure::Web::Mgmt::V2018_02_01::Models::Rendering
|
101
|
-
|
103
|
+
DomainAvailablilityCheckResult = Azure::Web::Mgmt::V2018_02_01::Models::DomainAvailablilityCheckResult
|
102
104
|
DiagnosticData = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticData
|
103
|
-
|
104
|
-
CsmSlotEntity = Azure::Web::Mgmt::V2018_02_01::Models::CsmSlotEntity
|
105
|
-
SnapshotCollection = Azure::Web::Mgmt::V2018_02_01::Models::SnapshotCollection
|
106
|
-
DetectorResponseCollection = Azure::Web::Mgmt::V2018_02_01::Models::DetectorResponseCollection
|
107
|
-
NameIdentifierCollection = Azure::Web::Mgmt::V2018_02_01::Models::NameIdentifierCollection
|
105
|
+
DomainControlCenterSsoRequest = Azure::Web::Mgmt::V2018_02_01::Models::DomainControlCenterSsoRequest
|
108
106
|
CsmPublishingProfileOptions = Azure::Web::Mgmt::V2018_02_01::Models::CsmPublishingProfileOptions
|
109
|
-
|
110
|
-
|
111
|
-
|
107
|
+
DomainOwnershipIdentifierCollection = Azure::Web::Mgmt::V2018_02_01::Models::DomainOwnershipIdentifierCollection
|
108
|
+
DetectorResponseCollection = Azure::Web::Mgmt::V2018_02_01::Models::DetectorResponseCollection
|
109
|
+
DomainRecommendationSearchParameters = Azure::Web::Mgmt::V2018_02_01::Models::DomainRecommendationSearchParameters
|
112
110
|
ContinuousWebJobCollection = Azure::Web::Mgmt::V2018_02_01::Models::ContinuousWebJobCollection
|
111
|
+
TldLegalAgreement = Azure::Web::Mgmt::V2018_02_01::Models::TldLegalAgreement
|
112
|
+
DiagnosticAnalysisCollection = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticAnalysisCollection
|
113
113
|
EnabledConfig = Azure::Web::Mgmt::V2018_02_01::Models::EnabledConfig
|
114
|
+
WebAppInstanceCollection = Azure::Web::Mgmt::V2018_02_01::Models::WebAppInstanceCollection
|
115
|
+
AppServiceCertificateCollection = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateCollection
|
114
116
|
DiagnosticCategoryCollection = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticCategoryCollection
|
115
|
-
AppServiceCertificateOrderCollection = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateOrderCollection
|
116
117
|
PrivateAccessVirtualNetwork = Azure::Web::Mgmt::V2018_02_01::Models::PrivateAccessVirtualNetwork
|
117
|
-
|
118
|
+
DiagnosticDetectorCollection = Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticDetectorCollection
|
118
119
|
PerfMonSet = Azure::Web::Mgmt::V2018_02_01::Models::PerfMonSet
|
119
|
-
|
120
|
+
NetworkTrace = Azure::Web::Mgmt::V2018_02_01::Models::NetworkTrace
|
120
121
|
StackMinorVersion = Azure::Web::Mgmt::V2018_02_01::Models::StackMinorVersion
|
121
|
-
|
122
|
+
SiteCloneabilityCriterion = Azure::Web::Mgmt::V2018_02_01::Models::SiteCloneabilityCriterion
|
122
123
|
StackMajorVersion = Azure::Web::Mgmt::V2018_02_01::Models::StackMajorVersion
|
123
|
-
|
124
|
+
MSDeployLogEntry = Azure::Web::Mgmt::V2018_02_01::Models::MSDeployLogEntry
|
124
125
|
ApplicationStack = Azure::Web::Mgmt::V2018_02_01::Models::ApplicationStack
|
125
|
-
|
126
|
+
ProxyOnlyResource = Azure::Web::Mgmt::V2018_02_01::Models::ProxyOnlyResource
|
126
127
|
ApplicationStackCollection = Azure::Web::Mgmt::V2018_02_01::Models::ApplicationStackCollection
|
127
|
-
|
128
|
-
|
129
|
-
|
128
|
+
HostingEnvironmentProfile = Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentProfile
|
129
|
+
ResourceHealthMetadataCollection = Azure::Web::Mgmt::V2018_02_01::Models::ResourceHealthMetadataCollection
|
130
|
+
AutoHealCustomAction = Azure::Web::Mgmt::V2018_02_01::Models::AutoHealCustomAction
|
130
131
|
RecommendationCollection = Azure::Web::Mgmt::V2018_02_01::Models::RecommendationCollection
|
131
|
-
|
132
|
+
RequestsBasedTrigger = Azure::Web::Mgmt::V2018_02_01::Models::RequestsBasedTrigger
|
133
|
+
ResourceCollection = Azure::Web::Mgmt::V2018_02_01::Models::ResourceCollection
|
134
|
+
RampUpRule = Azure::Web::Mgmt::V2018_02_01::Models::RampUpRule
|
132
135
|
HybridConnectionCollection = Azure::Web::Mgmt::V2018_02_01::Models::HybridConnectionCollection
|
133
|
-
|
134
|
-
WorkerPoolCollection = Azure::Web::Mgmt::V2018_02_01::Models::WorkerPoolCollection
|
135
|
-
ConnStringInfo = Azure::Web::Mgmt::V2018_02_01::Models::ConnStringInfo
|
136
|
+
HandlerMapping = Azure::Web::Mgmt::V2018_02_01::Models::HandlerMapping
|
136
137
|
BillingMeterCollection = Azure::Web::Mgmt::V2018_02_01::Models::BillingMeterCollection
|
137
|
-
|
138
|
+
NameValuePair = Azure::Web::Mgmt::V2018_02_01::Models::NameValuePair
|
138
139
|
CsmMoveResourceEnvelope = Azure::Web::Mgmt::V2018_02_01::Models::CsmMoveResourceEnvelope
|
139
|
-
|
140
|
-
|
141
|
-
|
140
|
+
Capability = Azure::Web::Mgmt::V2018_02_01::Models::Capability
|
141
|
+
WorkerPoolCollection = Azure::Web::Mgmt::V2018_02_01::Models::WorkerPoolCollection
|
142
|
+
Resource = Azure::Web::Mgmt::V2018_02_01::Models::Resource
|
142
143
|
HostingEnvironmentDeploymentInfo = Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDeploymentInfo
|
143
|
-
|
144
|
+
NameIdentifier = Azure::Web::Mgmt::V2018_02_01::Models::NameIdentifier
|
144
145
|
DeploymentLocations = Azure::Web::Mgmt::V2018_02_01::Models::DeploymentLocations
|
145
|
-
|
146
|
+
MetricSpecification = Azure::Web::Mgmt::V2018_02_01::Models::MetricSpecification
|
146
147
|
GeoRegionCollection = Azure::Web::Mgmt::V2018_02_01::Models::GeoRegionCollection
|
147
|
-
|
148
|
+
CsmOperationDescription = Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDescription
|
148
149
|
GlobalCsmSkuDescription = Azure::Web::Mgmt::V2018_02_01::Models::GlobalCsmSkuDescription
|
149
|
-
|
150
|
-
|
151
|
-
|
150
|
+
HostName = Azure::Web::Mgmt::V2018_02_01::Models::HostName
|
151
|
+
UsageCollection = Azure::Web::Mgmt::V2018_02_01::Models::UsageCollection
|
152
|
+
DomainCollection = Azure::Web::Mgmt::V2018_02_01::Models::DomainCollection
|
152
153
|
PremierAddOnOfferCollection = Azure::Web::Mgmt::V2018_02_01::Models::PremierAddOnOfferCollection
|
153
|
-
|
154
|
+
FileSystemHttpLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::FileSystemHttpLogsConfig
|
154
155
|
ResourceNameAvailability = Azure::Web::Mgmt::V2018_02_01::Models::ResourceNameAvailability
|
155
|
-
|
156
|
+
TldLegalAgreementCollection = Azure::Web::Mgmt::V2018_02_01::Models::TldLegalAgreementCollection
|
156
157
|
ResourceNameAvailabilityRequest = Azure::Web::Mgmt::V2018_02_01::Models::ResourceNameAvailabilityRequest
|
157
|
-
|
158
|
+
PrivateAccessSubnet = Azure::Web::Mgmt::V2018_02_01::Models::PrivateAccessSubnet
|
158
159
|
SkuInfos = Azure::Web::Mgmt::V2018_02_01::Models::SkuInfos
|
159
|
-
|
160
|
-
|
161
|
-
|
160
|
+
SiteSeal = Azure::Web::Mgmt::V2018_02_01::Models::SiteSeal
|
161
|
+
StampCapacityCollection = Azure::Web::Mgmt::V2018_02_01::Models::StampCapacityCollection
|
162
|
+
SiteCloneability = Azure::Web::Mgmt::V2018_02_01::Models::SiteCloneability
|
162
163
|
SourceControlCollection = Azure::Web::Mgmt::V2018_02_01::Models::SourceControlCollection
|
163
|
-
|
164
|
+
SlotSwapStatus = Azure::Web::Mgmt::V2018_02_01::Models::SlotSwapStatus
|
164
165
|
ValidateRequest = Azure::Web::Mgmt::V2018_02_01::Models::ValidateRequest
|
165
|
-
|
166
|
+
SlowRequestsBasedTrigger = Azure::Web::Mgmt::V2018_02_01::Models::SlowRequestsBasedTrigger
|
166
167
|
ValidateResponseError = Azure::Web::Mgmt::V2018_02_01::Models::ValidateResponseError
|
167
|
-
|
168
|
+
VirtualDirectory = Azure::Web::Mgmt::V2018_02_01::Models::VirtualDirectory
|
168
169
|
ValidateResponse = Azure::Web::Mgmt::V2018_02_01::Models::ValidateResponse
|
169
|
-
|
170
|
+
HostNameSslState = Azure::Web::Mgmt::V2018_02_01::Models::HostNameSslState
|
171
|
+
SkuInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::SkuInfoCollection
|
172
|
+
DefaultErrorResponseError = Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponseError
|
170
173
|
SkuInfo = Azure::Web::Mgmt::V2018_02_01::Models::SkuInfo
|
171
|
-
|
174
|
+
CsmOperationDescriptionProperties = Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDescriptionProperties
|
172
175
|
MetricAvailabilily = Azure::Web::Mgmt::V2018_02_01::Models::MetricAvailabilily
|
173
|
-
|
174
|
-
HostingEnvironmentDiagnostics = Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDiagnostics
|
175
|
-
DomainRecommendationSearchParameters = Azure::Web::Mgmt::V2018_02_01::Models::DomainRecommendationSearchParameters
|
176
|
+
FunctionEnvelopeCollection = Azure::Web::Mgmt::V2018_02_01::Models::FunctionEnvelopeCollection
|
176
177
|
FileSystemApplicationLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::FileSystemApplicationLogsConfig
|
177
|
-
|
178
|
+
NameIdentifierCollection = Azure::Web::Mgmt::V2018_02_01::Models::NameIdentifierCollection
|
178
179
|
AzureTableStorageApplicationLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::AzureTableStorageApplicationLogsConfig
|
179
|
-
|
180
|
+
PerfMonCounterCollection = Azure::Web::Mgmt::V2018_02_01::Models::PerfMonCounterCollection
|
180
181
|
AzureBlobStorageApplicationLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::AzureBlobStorageApplicationLogsConfig
|
181
|
-
|
182
|
+
HttpLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::HttpLogsConfig
|
182
183
|
ApplicationLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::ApplicationLogsConfig
|
183
|
-
|
184
|
+
AutoHealRules = Azure::Web::Mgmt::V2018_02_01::Models::AutoHealRules
|
184
185
|
AzureBlobStorageHttpLogsConfig = Azure::Web::Mgmt::V2018_02_01::Models::AzureBlobStorageHttpLogsConfig
|
185
|
-
|
186
|
+
SkuDescription = Azure::Web::Mgmt::V2018_02_01::Models::SkuDescription
|
187
|
+
HostingEnvironmentDiagnostics = Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDiagnostics
|
188
|
+
Address = Azure::Web::Mgmt::V2018_02_01::Models::Address
|
186
189
|
DatabaseBackupSetting = Azure::Web::Mgmt::V2018_02_01::Models::DatabaseBackupSetting
|
187
|
-
|
190
|
+
TopLevelDomainAgreementOption = Azure::Web::Mgmt::V2018_02_01::Models::TopLevelDomainAgreementOption
|
188
191
|
AppServiceEnvironmentCollection = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceEnvironmentCollection
|
189
|
-
|
192
|
+
ApiDefinitionInfo = Azure::Web::Mgmt::V2018_02_01::Models::ApiDefinitionInfo
|
190
193
|
BackupItemCollection = Azure::Web::Mgmt::V2018_02_01::Models::BackupItemCollection
|
191
|
-
|
194
|
+
MetricAvailability = Azure::Web::Mgmt::V2018_02_01::Models::MetricAvailability
|
192
195
|
BackupSchedule = Azure::Web::Mgmt::V2018_02_01::Models::BackupSchedule
|
193
|
-
|
196
|
+
ProcessThreadInfoCollection = Azure::Web::Mgmt::V2018_02_01::Models::ProcessThreadInfoCollection
|
194
197
|
AddressResponse = Azure::Web::Mgmt::V2018_02_01::Models::AddressResponse
|
195
|
-
|
198
|
+
SnapshotCollection = Azure::Web::Mgmt::V2018_02_01::Models::SnapshotCollection
|
196
199
|
ConnStringValueTypePair = Azure::Web::Mgmt::V2018_02_01::Models::ConnStringValueTypePair
|
197
|
-
|
200
|
+
ConnStringInfo = Azure::Web::Mgmt::V2018_02_01::Models::ConnStringInfo
|
198
201
|
WebJobCollection = Azure::Web::Mgmt::V2018_02_01::Models::WebJobCollection
|
199
202
|
AppServiceCertificateResource = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateResource
|
200
203
|
AppServiceCertificateOrder = Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateOrder
|
@@ -214,6 +217,7 @@ module Azure::Web::Profiles::Latest
|
|
214
217
|
Identifier = Azure::Web::Mgmt::V2018_02_01::Models::Identifier
|
215
218
|
HybridConnectionKey = Azure::Web::Mgmt::V2018_02_01::Models::HybridConnectionKey
|
216
219
|
HybridConnection = Azure::Web::Mgmt::V2018_02_01::Models::HybridConnection
|
220
|
+
DeletedSite = Azure::Web::Mgmt::V2018_02_01::Models::DeletedSite
|
217
221
|
Site = Azure::Web::Mgmt::V2018_02_01::Models::Site
|
218
222
|
AppServicePlan = Azure::Web::Mgmt::V2018_02_01::Models::AppServicePlan
|
219
223
|
Domain = Azure::Web::Mgmt::V2018_02_01::Models::Domain
|
@@ -237,6 +241,7 @@ module Azure::Web::Profiles::Latest
|
|
237
241
|
VnetParameters = Azure::Web::Mgmt::V2018_02_01::Models::VnetParameters
|
238
242
|
VnetValidationTestFailure = Azure::Web::Mgmt::V2018_02_01::Models::VnetValidationTestFailure
|
239
243
|
VnetValidationFailureDetails = Azure::Web::Mgmt::V2018_02_01::Models::VnetValidationFailureDetails
|
244
|
+
AzureStoragePropertyDictionaryResource = Azure::Web::Mgmt::V2018_02_01::Models::AzureStoragePropertyDictionaryResource
|
240
245
|
BackupItem = Azure::Web::Mgmt::V2018_02_01::Models::BackupItem
|
241
246
|
BackupRequest = Azure::Web::Mgmt::V2018_02_01::Models::BackupRequest
|
242
247
|
ConnectionStringDictionary = Azure::Web::Mgmt::V2018_02_01::Models::ConnectionStringDictionary
|
@@ -289,6 +294,7 @@ module Azure::Web::Profiles::Latest
|
|
289
294
|
WorkerPoolResource = Azure::Web::Mgmt::V2018_02_01::Models::WorkerPoolResource
|
290
295
|
AppServicePlanPatchResource = Azure::Web::Mgmt::V2018_02_01::Models::AppServicePlanPatchResource
|
291
296
|
HybridConnectionLimits = Azure::Web::Mgmt::V2018_02_01::Models::HybridConnectionLimits
|
297
|
+
ResourceHealthMetadata = Azure::Web::Mgmt::V2018_02_01::Models::ResourceHealthMetadata
|
292
298
|
KeyVaultSecretStatus = Azure::Web::Mgmt::V2018_02_01::Models::KeyVaultSecretStatus
|
293
299
|
CertificateProductType = Azure::Web::Mgmt::V2018_02_01::Models::CertificateProductType
|
294
300
|
ProvisioningState = Azure::Web::Mgmt::V2018_02_01::Models::ProvisioningState
|
@@ -299,6 +305,8 @@ module Azure::Web::Profiles::Latest
|
|
299
305
|
IpFilterTag = Azure::Web::Mgmt::V2018_02_01::Models::IpFilterTag
|
300
306
|
AutoHealActionType = Azure::Web::Mgmt::V2018_02_01::Models::AutoHealActionType
|
301
307
|
ConnectionStringType = Azure::Web::Mgmt::V2018_02_01::Models::ConnectionStringType
|
308
|
+
AzureStorageType = Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageType
|
309
|
+
AzureStorageState = Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageState
|
302
310
|
ScmType = Azure::Web::Mgmt::V2018_02_01::Models::ScmType
|
303
311
|
ManagedPipelineMode = Azure::Web::Mgmt::V2018_02_01::Models::ManagedPipelineMode
|
304
312
|
SiteLoadBalancing = Azure::Web::Mgmt::V2018_02_01::Models::SiteLoadBalancing
|
@@ -356,7 +364,7 @@ module Azure::Web::Profiles::Latest
|
|
356
364
|
# WebManagementClass
|
357
365
|
#
|
358
366
|
class WebManagementClass
|
359
|
-
attr_reader :app_service_certificate_orders, :certificate_registration_provider, :domains, :top_level_domains, :domain_registration_provider, :certificates, :deleted_web_apps, :diagnostics, :provider, :recommendations, :web_apps, :app_service_environments, :app_service_plans, :configurable, :base_url, :options, :model_classes
|
367
|
+
attr_reader :app_service_certificate_orders, :certificate_registration_provider, :domains, :top_level_domains, :domain_registration_provider, :certificates, :deleted_web_apps, :diagnostics, :provider, :recommendations, :web_apps, :app_service_environments, :app_service_plans, :resource_health_metadata_operations, :configurable, :base_url, :options, :model_classes
|
360
368
|
|
361
369
|
def initialize(options = {})
|
362
370
|
if options.is_a?(Hash) && options.length == 0
|
@@ -389,6 +397,7 @@ module Azure::Web::Profiles::Latest
|
|
389
397
|
@web_apps = @client_0.web_apps
|
390
398
|
@app_service_environments = @client_0.app_service_environments
|
391
399
|
@app_service_plans = @client_0.app_service_plans
|
400
|
+
@resource_health_metadata_operations = @client_0.resource_health_metadata_operations
|
392
401
|
|
393
402
|
@model_classes = ModelClasses.new
|
394
403
|
end
|
@@ -409,87 +418,90 @@ module Azure::Web::Profiles::Latest
|
|
409
418
|
end
|
410
419
|
|
411
420
|
class ModelClasses
|
412
|
-
def
|
413
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
414
|
-
end
|
415
|
-
def app_service_certificate
|
416
|
-
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificate
|
421
|
+
def identifier_collection
|
422
|
+
Azure::Web::Mgmt::V2018_02_01::Models::IdentifierCollection
|
417
423
|
end
|
418
424
|
def operation
|
419
425
|
Azure::Web::Mgmt::V2018_02_01::Models::Operation
|
420
426
|
end
|
421
|
-
def
|
422
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
423
|
-
end
|
424
|
-
def resource_metric_name
|
425
|
-
Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricName
|
427
|
+
def top_level_domain_collection
|
428
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TopLevelDomainCollection
|
426
429
|
end
|
427
430
|
def deployment_collection
|
428
431
|
Azure::Web::Mgmt::V2018_02_01::Models::DeploymentCollection
|
429
432
|
end
|
433
|
+
def certificate_details
|
434
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CertificateDetails
|
435
|
+
end
|
436
|
+
def certificate_collection
|
437
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CertificateCollection
|
438
|
+
end
|
439
|
+
def app_service_certificate_order_collection
|
440
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateOrderCollection
|
441
|
+
end
|
442
|
+
def snapshot_recovery_source
|
443
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SnapshotRecoverySource
|
444
|
+
end
|
445
|
+
def process_info_collection
|
446
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ProcessInfoCollection
|
447
|
+
end
|
430
448
|
def virtual_network_profile
|
431
449
|
Azure::Web::Mgmt::V2018_02_01::Models::VirtualNetworkProfile
|
432
450
|
end
|
433
|
-
def
|
434
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
451
|
+
def perf_mon_response
|
452
|
+
Azure::Web::Mgmt::V2018_02_01::Models::PerfMonResponse
|
435
453
|
end
|
436
454
|
def worker_pool
|
437
455
|
Azure::Web::Mgmt::V2018_02_01::Models::WorkerPool
|
438
456
|
end
|
439
|
-
def
|
440
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
457
|
+
def perf_mon_sample
|
458
|
+
Azure::Web::Mgmt::V2018_02_01::Models::PerfMonSample
|
441
459
|
end
|
442
460
|
def virtual_ipmapping
|
443
461
|
Azure::Web::Mgmt::V2018_02_01::Models::VirtualIPMapping
|
444
462
|
end
|
445
|
-
def
|
446
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
463
|
+
def site_seal_request
|
464
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteSealRequest
|
447
465
|
end
|
448
466
|
def stamp_capacity
|
449
467
|
Azure::Web::Mgmt::V2018_02_01::Models::StampCapacity
|
450
468
|
end
|
451
|
-
def
|
452
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
469
|
+
def process_module_info_collection
|
470
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ProcessModuleInfoCollection
|
453
471
|
end
|
454
472
|
def network_access_control_entry
|
455
473
|
Azure::Web::Mgmt::V2018_02_01::Models::NetworkAccessControlEntry
|
456
474
|
end
|
457
|
-
def
|
458
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
475
|
+
def public_certificate_collection
|
476
|
+
Azure::Web::Mgmt::V2018_02_01::Models::PublicCertificateCollection
|
459
477
|
end
|
460
478
|
def app_service_environment
|
461
479
|
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceEnvironment
|
462
480
|
end
|
463
|
-
def
|
464
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
481
|
+
def resource_metric_availability
|
482
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricAvailability
|
465
483
|
end
|
466
484
|
def app_service_plan_collection
|
467
485
|
Azure::Web::Mgmt::V2018_02_01::Models::AppServicePlanCollection
|
468
486
|
end
|
469
|
-
def
|
470
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
487
|
+
def site_config_resource_collection
|
488
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteConfigResourceCollection
|
471
489
|
end
|
472
490
|
def localizable_string
|
473
491
|
Azure::Web::Mgmt::V2018_02_01::Models::LocalizableString
|
474
492
|
end
|
475
|
-
def
|
476
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
493
|
+
def site_configuration_snapshot_info_collection
|
494
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteConfigurationSnapshotInfoCollection
|
477
495
|
end
|
478
496
|
def csm_usage_quota
|
479
497
|
Azure::Web::Mgmt::V2018_02_01::Models::CsmUsageQuota
|
480
498
|
end
|
481
|
-
def
|
482
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
499
|
+
def host_name_binding_collection
|
500
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HostNameBindingCollection
|
483
501
|
end
|
484
502
|
def csm_usage_quota_collection
|
485
503
|
Azure::Web::Mgmt::V2018_02_01::Models::CsmUsageQuotaCollection
|
486
504
|
end
|
487
|
-
def http_logs_config
|
488
|
-
Azure::Web::Mgmt::V2018_02_01::Models::HttpLogsConfig
|
489
|
-
end
|
490
|
-
def deleted_site
|
491
|
-
Azure::Web::Mgmt::V2018_02_01::Models::DeletedSite
|
492
|
-
end
|
493
505
|
def managed_service_identity
|
494
506
|
Azure::Web::Mgmt::V2018_02_01::Models::ManagedServiceIdentity
|
495
507
|
end
|
@@ -499,20 +511,20 @@ module Azure::Web::Profiles::Latest
|
|
499
511
|
def cloning_info
|
500
512
|
Azure::Web::Mgmt::V2018_02_01::Models::CloningInfo
|
501
513
|
end
|
502
|
-
def
|
503
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
514
|
+
def app_service_certificate
|
515
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificate
|
504
516
|
end
|
505
517
|
def ip_security_restriction
|
506
518
|
Azure::Web::Mgmt::V2018_02_01::Models::IpSecurityRestriction
|
507
519
|
end
|
508
|
-
def
|
509
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
520
|
+
def triggered_job_history_collection
|
521
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TriggeredJobHistoryCollection
|
510
522
|
end
|
511
523
|
def cors_settings
|
512
524
|
Azure::Web::Mgmt::V2018_02_01::Models::CorsSettings
|
513
525
|
end
|
514
|
-
def
|
515
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
526
|
+
def resource_metric_name
|
527
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricName
|
516
528
|
end
|
517
529
|
def auto_heal_actions
|
518
530
|
Azure::Web::Mgmt::V2018_02_01::Models::AutoHealActions
|
@@ -556,380 +568,383 @@ module Azure::Web::Profiles::Latest
|
|
556
568
|
def deleted_web_app_collection
|
557
569
|
Azure::Web::Mgmt::V2018_02_01::Models::DeletedWebAppCollection
|
558
570
|
end
|
559
|
-
def
|
560
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
571
|
+
def azure_storage_info_value
|
572
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageInfoValue
|
561
573
|
end
|
562
574
|
def solution
|
563
575
|
Azure::Web::Mgmt::V2018_02_01::Models::Solution
|
564
576
|
end
|
565
|
-
def
|
566
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
577
|
+
def site_config
|
578
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteConfig
|
567
579
|
end
|
568
580
|
def detector_abnormal_time_period
|
569
581
|
Azure::Web::Mgmt::V2018_02_01::Models::DetectorAbnormalTimePeriod
|
570
582
|
end
|
571
|
-
def
|
572
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
583
|
+
def site_extension_info_collection
|
584
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteExtensionInfoCollection
|
573
585
|
end
|
574
586
|
def abnormal_time_period
|
575
587
|
Azure::Web::Mgmt::V2018_02_01::Models::AbnormalTimePeriod
|
576
588
|
end
|
577
|
-
def
|
578
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
589
|
+
def sku_capacity
|
590
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SkuCapacity
|
579
591
|
end
|
580
|
-
def
|
581
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
592
|
+
def triggered_web_job_collection
|
593
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TriggeredWebJobCollection
|
582
594
|
end
|
583
|
-
def
|
584
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
595
|
+
def slot_difference_collection
|
596
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SlotDifferenceCollection
|
585
597
|
end
|
586
598
|
def diagnostic_metric_sample
|
587
599
|
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticMetricSample
|
588
600
|
end
|
589
|
-
def
|
590
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
601
|
+
def default_error_response_error_details_item
|
602
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponseErrorDetailsItem
|
591
603
|
end
|
592
604
|
def diagnostic_metric_set
|
593
605
|
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticMetricSet
|
594
606
|
end
|
595
|
-
def
|
596
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
607
|
+
def default_error_response
|
608
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponse
|
597
609
|
end
|
598
610
|
def data_source
|
599
611
|
Azure::Web::Mgmt::V2018_02_01::Models::DataSource
|
600
612
|
end
|
601
|
-
def
|
602
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
613
|
+
def log_specification
|
614
|
+
Azure::Web::Mgmt::V2018_02_01::Models::LogSpecification
|
603
615
|
end
|
604
616
|
def response_meta_data
|
605
617
|
Azure::Web::Mgmt::V2018_02_01::Models::ResponseMetaData
|
606
618
|
end
|
607
|
-
def
|
608
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
619
|
+
def dimension
|
620
|
+
Azure::Web::Mgmt::V2018_02_01::Models::Dimension
|
609
621
|
end
|
610
622
|
def analysis_data
|
611
623
|
Azure::Web::Mgmt::V2018_02_01::Models::AnalysisData
|
612
624
|
end
|
613
|
-
def
|
614
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
625
|
+
def service_specification
|
626
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ServiceSpecification
|
615
627
|
end
|
616
|
-
def
|
617
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
628
|
+
def csm_slot_entity
|
629
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmSlotEntity
|
618
630
|
end
|
619
|
-
def
|
620
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
631
|
+
def csm_operation_display
|
632
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDisplay
|
621
633
|
end
|
622
634
|
def data_table_response_column
|
623
635
|
Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseColumn
|
624
636
|
end
|
625
|
-
def
|
626
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
637
|
+
def csm_operation_collection
|
638
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationCollection
|
627
639
|
end
|
628
640
|
def data_table_response_object
|
629
641
|
Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseObject
|
630
642
|
end
|
631
|
-
def
|
632
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
643
|
+
def contact
|
644
|
+
Azure::Web::Mgmt::V2018_02_01::Models::Contact
|
633
645
|
end
|
634
646
|
def detector_info
|
635
647
|
Azure::Web::Mgmt::V2018_02_01::Models::DetectorInfo
|
636
648
|
end
|
637
|
-
def
|
638
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
649
|
+
def domain_purchase_consent
|
650
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainPurchaseConsent
|
639
651
|
end
|
640
652
|
def rendering
|
641
653
|
Azure::Web::Mgmt::V2018_02_01::Models::Rendering
|
642
654
|
end
|
643
|
-
def
|
644
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
655
|
+
def domain_availablility_check_result
|
656
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainAvailablilityCheckResult
|
645
657
|
end
|
646
658
|
def diagnostic_data
|
647
659
|
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticData
|
648
660
|
end
|
649
|
-
def
|
650
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
661
|
+
def domain_control_center_sso_request
|
662
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainControlCenterSsoRequest
|
651
663
|
end
|
652
|
-
def
|
653
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
664
|
+
def csm_publishing_profile_options
|
665
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmPublishingProfileOptions
|
654
666
|
end
|
655
|
-
def
|
656
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
667
|
+
def domain_ownership_identifier_collection
|
668
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainOwnershipIdentifierCollection
|
657
669
|
end
|
658
670
|
def detector_response_collection
|
659
671
|
Azure::Web::Mgmt::V2018_02_01::Models::DetectorResponseCollection
|
660
672
|
end
|
661
|
-
def
|
662
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
673
|
+
def domain_recommendation_search_parameters
|
674
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainRecommendationSearchParameters
|
663
675
|
end
|
664
|
-
def
|
665
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
676
|
+
def continuous_web_job_collection
|
677
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ContinuousWebJobCollection
|
666
678
|
end
|
667
|
-
def
|
668
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
679
|
+
def tld_legal_agreement
|
680
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TldLegalAgreement
|
669
681
|
end
|
670
682
|
def diagnostic_analysis_collection
|
671
683
|
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticAnalysisCollection
|
672
684
|
end
|
673
|
-
def top_level_domain_agreement_option
|
674
|
-
Azure::Web::Mgmt::V2018_02_01::Models::TopLevelDomainAgreementOption
|
675
|
-
end
|
676
|
-
def continuous_web_job_collection
|
677
|
-
Azure::Web::Mgmt::V2018_02_01::Models::ContinuousWebJobCollection
|
678
|
-
end
|
679
685
|
def enabled_config
|
680
686
|
Azure::Web::Mgmt::V2018_02_01::Models::EnabledConfig
|
681
687
|
end
|
688
|
+
def web_app_instance_collection
|
689
|
+
Azure::Web::Mgmt::V2018_02_01::Models::WebAppInstanceCollection
|
690
|
+
end
|
691
|
+
def app_service_certificate_collection
|
692
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateCollection
|
693
|
+
end
|
682
694
|
def diagnostic_category_collection
|
683
695
|
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticCategoryCollection
|
684
696
|
end
|
685
|
-
def app_service_certificate_order_collection
|
686
|
-
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceCertificateOrderCollection
|
687
|
-
end
|
688
697
|
def private_access_virtual_network
|
689
698
|
Azure::Web::Mgmt::V2018_02_01::Models::PrivateAccessVirtualNetwork
|
690
699
|
end
|
691
|
-
def
|
692
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
700
|
+
def diagnostic_detector_collection
|
701
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticDetectorCollection
|
693
702
|
end
|
694
703
|
def perf_mon_set
|
695
704
|
Azure::Web::Mgmt::V2018_02_01::Models::PerfMonSet
|
696
705
|
end
|
697
|
-
def
|
698
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
706
|
+
def network_trace
|
707
|
+
Azure::Web::Mgmt::V2018_02_01::Models::NetworkTrace
|
699
708
|
end
|
700
709
|
def stack_minor_version
|
701
710
|
Azure::Web::Mgmt::V2018_02_01::Models::StackMinorVersion
|
702
711
|
end
|
703
|
-
def
|
704
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
712
|
+
def site_cloneability_criterion
|
713
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteCloneabilityCriterion
|
705
714
|
end
|
706
715
|
def stack_major_version
|
707
716
|
Azure::Web::Mgmt::V2018_02_01::Models::StackMajorVersion
|
708
717
|
end
|
709
|
-
def
|
710
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
718
|
+
def msdeploy_log_entry
|
719
|
+
Azure::Web::Mgmt::V2018_02_01::Models::MSDeployLogEntry
|
711
720
|
end
|
712
721
|
def application_stack
|
713
722
|
Azure::Web::Mgmt::V2018_02_01::Models::ApplicationStack
|
714
723
|
end
|
715
|
-
def
|
716
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
724
|
+
def proxy_only_resource
|
725
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ProxyOnlyResource
|
717
726
|
end
|
718
727
|
def application_stack_collection
|
719
728
|
Azure::Web::Mgmt::V2018_02_01::Models::ApplicationStackCollection
|
720
729
|
end
|
721
|
-
def
|
722
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
730
|
+
def hosting_environment_profile
|
731
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentProfile
|
723
732
|
end
|
724
|
-
def
|
725
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
733
|
+
def resource_health_metadata_collection
|
734
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ResourceHealthMetadataCollection
|
726
735
|
end
|
727
|
-
def
|
728
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
736
|
+
def auto_heal_custom_action
|
737
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AutoHealCustomAction
|
729
738
|
end
|
730
739
|
def recommendation_collection
|
731
740
|
Azure::Web::Mgmt::V2018_02_01::Models::RecommendationCollection
|
732
741
|
end
|
733
|
-
def
|
734
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
742
|
+
def requests_based_trigger
|
743
|
+
Azure::Web::Mgmt::V2018_02_01::Models::RequestsBasedTrigger
|
735
744
|
end
|
736
|
-
def
|
737
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
745
|
+
def resource_collection
|
746
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ResourceCollection
|
738
747
|
end
|
739
|
-
def
|
740
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
748
|
+
def ramp_up_rule
|
749
|
+
Azure::Web::Mgmt::V2018_02_01::Models::RampUpRule
|
741
750
|
end
|
742
|
-
def
|
743
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
751
|
+
def hybrid_connection_collection
|
752
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HybridConnectionCollection
|
744
753
|
end
|
745
|
-
def
|
746
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
754
|
+
def handler_mapping
|
755
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HandlerMapping
|
747
756
|
end
|
748
757
|
def billing_meter_collection
|
749
758
|
Azure::Web::Mgmt::V2018_02_01::Models::BillingMeterCollection
|
750
759
|
end
|
751
|
-
def
|
752
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
760
|
+
def name_value_pair
|
761
|
+
Azure::Web::Mgmt::V2018_02_01::Models::NameValuePair
|
753
762
|
end
|
754
763
|
def csm_move_resource_envelope
|
755
764
|
Azure::Web::Mgmt::V2018_02_01::Models::CsmMoveResourceEnvelope
|
756
765
|
end
|
757
|
-
def
|
758
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
766
|
+
def capability
|
767
|
+
Azure::Web::Mgmt::V2018_02_01::Models::Capability
|
759
768
|
end
|
760
|
-
def
|
761
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
769
|
+
def worker_pool_collection
|
770
|
+
Azure::Web::Mgmt::V2018_02_01::Models::WorkerPoolCollection
|
762
771
|
end
|
763
|
-
def
|
764
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
772
|
+
def resource
|
773
|
+
Azure::Web::Mgmt::V2018_02_01::Models::Resource
|
765
774
|
end
|
766
775
|
def hosting_environment_deployment_info
|
767
776
|
Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDeploymentInfo
|
768
777
|
end
|
769
|
-
def
|
770
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
778
|
+
def name_identifier
|
779
|
+
Azure::Web::Mgmt::V2018_02_01::Models::NameIdentifier
|
771
780
|
end
|
772
781
|
def deployment_locations
|
773
782
|
Azure::Web::Mgmt::V2018_02_01::Models::DeploymentLocations
|
774
783
|
end
|
775
|
-
def
|
776
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
784
|
+
def metric_specification
|
785
|
+
Azure::Web::Mgmt::V2018_02_01::Models::MetricSpecification
|
777
786
|
end
|
778
787
|
def geo_region_collection
|
779
788
|
Azure::Web::Mgmt::V2018_02_01::Models::GeoRegionCollection
|
780
789
|
end
|
781
|
-
def
|
782
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
790
|
+
def csm_operation_description
|
791
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDescription
|
783
792
|
end
|
784
793
|
def global_csm_sku_description
|
785
794
|
Azure::Web::Mgmt::V2018_02_01::Models::GlobalCsmSkuDescription
|
786
795
|
end
|
787
|
-
def
|
788
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
796
|
+
def host_name
|
797
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HostName
|
789
798
|
end
|
790
|
-
def
|
791
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
799
|
+
def usage_collection
|
800
|
+
Azure::Web::Mgmt::V2018_02_01::Models::UsageCollection
|
792
801
|
end
|
793
|
-
def
|
794
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
802
|
+
def domain_collection
|
803
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DomainCollection
|
795
804
|
end
|
796
805
|
def premier_add_on_offer_collection
|
797
806
|
Azure::Web::Mgmt::V2018_02_01::Models::PremierAddOnOfferCollection
|
798
807
|
end
|
799
|
-
def
|
800
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
808
|
+
def file_system_http_logs_config
|
809
|
+
Azure::Web::Mgmt::V2018_02_01::Models::FileSystemHttpLogsConfig
|
801
810
|
end
|
802
811
|
def resource_name_availability
|
803
812
|
Azure::Web::Mgmt::V2018_02_01::Models::ResourceNameAvailability
|
804
813
|
end
|
805
|
-
def
|
806
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
814
|
+
def tld_legal_agreement_collection
|
815
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TldLegalAgreementCollection
|
807
816
|
end
|
808
817
|
def resource_name_availability_request
|
809
818
|
Azure::Web::Mgmt::V2018_02_01::Models::ResourceNameAvailabilityRequest
|
810
819
|
end
|
811
|
-
def
|
812
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
820
|
+
def private_access_subnet
|
821
|
+
Azure::Web::Mgmt::V2018_02_01::Models::PrivateAccessSubnet
|
813
822
|
end
|
814
823
|
def sku_infos
|
815
824
|
Azure::Web::Mgmt::V2018_02_01::Models::SkuInfos
|
816
825
|
end
|
817
|
-
def
|
818
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
826
|
+
def site_seal
|
827
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteSeal
|
819
828
|
end
|
820
|
-
def
|
821
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
829
|
+
def stamp_capacity_collection
|
830
|
+
Azure::Web::Mgmt::V2018_02_01::Models::StampCapacityCollection
|
822
831
|
end
|
823
|
-
def
|
824
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
832
|
+
def site_cloneability
|
833
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SiteCloneability
|
825
834
|
end
|
826
835
|
def source_control_collection
|
827
836
|
Azure::Web::Mgmt::V2018_02_01::Models::SourceControlCollection
|
828
837
|
end
|
829
|
-
def
|
830
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
838
|
+
def slot_swap_status
|
839
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SlotSwapStatus
|
831
840
|
end
|
832
841
|
def validate_request
|
833
842
|
Azure::Web::Mgmt::V2018_02_01::Models::ValidateRequest
|
834
843
|
end
|
835
|
-
def
|
836
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
844
|
+
def slow_requests_based_trigger
|
845
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SlowRequestsBasedTrigger
|
837
846
|
end
|
838
847
|
def validate_response_error
|
839
848
|
Azure::Web::Mgmt::V2018_02_01::Models::ValidateResponseError
|
840
849
|
end
|
841
|
-
def
|
842
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
850
|
+
def virtual_directory
|
851
|
+
Azure::Web::Mgmt::V2018_02_01::Models::VirtualDirectory
|
843
852
|
end
|
844
853
|
def validate_response
|
845
854
|
Azure::Web::Mgmt::V2018_02_01::Models::ValidateResponse
|
846
855
|
end
|
847
|
-
def
|
848
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
856
|
+
def host_name_ssl_state
|
857
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HostNameSslState
|
858
|
+
end
|
859
|
+
def sku_info_collection
|
860
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SkuInfoCollection
|
861
|
+
end
|
862
|
+
def default_error_response_error
|
863
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DefaultErrorResponseError
|
849
864
|
end
|
850
865
|
def sku_info
|
851
866
|
Azure::Web::Mgmt::V2018_02_01::Models::SkuInfo
|
852
867
|
end
|
853
|
-
def
|
854
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
868
|
+
def csm_operation_description_properties
|
869
|
+
Azure::Web::Mgmt::V2018_02_01::Models::CsmOperationDescriptionProperties
|
855
870
|
end
|
856
871
|
def metric_availabilily
|
857
872
|
Azure::Web::Mgmt::V2018_02_01::Models::MetricAvailabilily
|
858
873
|
end
|
859
|
-
def
|
860
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
861
|
-
end
|
862
|
-
def hosting_environment_diagnostics
|
863
|
-
Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDiagnostics
|
864
|
-
end
|
865
|
-
def domain_recommendation_search_parameters
|
866
|
-
Azure::Web::Mgmt::V2018_02_01::Models::DomainRecommendationSearchParameters
|
874
|
+
def function_envelope_collection
|
875
|
+
Azure::Web::Mgmt::V2018_02_01::Models::FunctionEnvelopeCollection
|
867
876
|
end
|
868
877
|
def file_system_application_logs_config
|
869
878
|
Azure::Web::Mgmt::V2018_02_01::Models::FileSystemApplicationLogsConfig
|
870
879
|
end
|
871
|
-
def
|
872
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
880
|
+
def name_identifier_collection
|
881
|
+
Azure::Web::Mgmt::V2018_02_01::Models::NameIdentifierCollection
|
873
882
|
end
|
874
883
|
def azure_table_storage_application_logs_config
|
875
884
|
Azure::Web::Mgmt::V2018_02_01::Models::AzureTableStorageApplicationLogsConfig
|
876
885
|
end
|
877
|
-
def
|
878
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
886
|
+
def perf_mon_counter_collection
|
887
|
+
Azure::Web::Mgmt::V2018_02_01::Models::PerfMonCounterCollection
|
879
888
|
end
|
880
889
|
def azure_blob_storage_application_logs_config
|
881
890
|
Azure::Web::Mgmt::V2018_02_01::Models::AzureBlobStorageApplicationLogsConfig
|
882
891
|
end
|
883
|
-
def
|
884
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
892
|
+
def http_logs_config
|
893
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HttpLogsConfig
|
885
894
|
end
|
886
895
|
def application_logs_config
|
887
896
|
Azure::Web::Mgmt::V2018_02_01::Models::ApplicationLogsConfig
|
888
897
|
end
|
889
|
-
def
|
890
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
898
|
+
def auto_heal_rules
|
899
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AutoHealRules
|
891
900
|
end
|
892
901
|
def azure_blob_storage_http_logs_config
|
893
902
|
Azure::Web::Mgmt::V2018_02_01::Models::AzureBlobStorageHttpLogsConfig
|
894
903
|
end
|
895
|
-
def
|
896
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
904
|
+
def sku_description
|
905
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SkuDescription
|
906
|
+
end
|
907
|
+
def hosting_environment_diagnostics
|
908
|
+
Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDiagnostics
|
909
|
+
end
|
910
|
+
def address
|
911
|
+
Azure::Web::Mgmt::V2018_02_01::Models::Address
|
897
912
|
end
|
898
913
|
def database_backup_setting
|
899
914
|
Azure::Web::Mgmt::V2018_02_01::Models::DatabaseBackupSetting
|
900
915
|
end
|
901
|
-
def
|
902
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
916
|
+
def top_level_domain_agreement_option
|
917
|
+
Azure::Web::Mgmt::V2018_02_01::Models::TopLevelDomainAgreementOption
|
903
918
|
end
|
904
919
|
def app_service_environment_collection
|
905
920
|
Azure::Web::Mgmt::V2018_02_01::Models::AppServiceEnvironmentCollection
|
906
921
|
end
|
907
|
-
def
|
908
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
922
|
+
def api_definition_info
|
923
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ApiDefinitionInfo
|
909
924
|
end
|
910
925
|
def backup_item_collection
|
911
926
|
Azure::Web::Mgmt::V2018_02_01::Models::BackupItemCollection
|
912
927
|
end
|
913
|
-
def
|
914
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
928
|
+
def metric_availability
|
929
|
+
Azure::Web::Mgmt::V2018_02_01::Models::MetricAvailability
|
915
930
|
end
|
916
931
|
def backup_schedule
|
917
932
|
Azure::Web::Mgmt::V2018_02_01::Models::BackupSchedule
|
918
933
|
end
|
919
|
-
def
|
920
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
934
|
+
def process_thread_info_collection
|
935
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ProcessThreadInfoCollection
|
921
936
|
end
|
922
937
|
def address_response
|
923
938
|
Azure::Web::Mgmt::V2018_02_01::Models::AddressResponse
|
924
939
|
end
|
925
|
-
def
|
926
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
940
|
+
def snapshot_collection
|
941
|
+
Azure::Web::Mgmt::V2018_02_01::Models::SnapshotCollection
|
927
942
|
end
|
928
943
|
def conn_string_value_type_pair
|
929
944
|
Azure::Web::Mgmt::V2018_02_01::Models::ConnStringValueTypePair
|
930
945
|
end
|
931
|
-
def
|
932
|
-
Azure::Web::Mgmt::V2018_02_01::Models::
|
946
|
+
def conn_string_info
|
947
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ConnStringInfo
|
933
948
|
end
|
934
949
|
def web_job_collection
|
935
950
|
Azure::Web::Mgmt::V2018_02_01::Models::WebJobCollection
|
@@ -988,6 +1003,9 @@ module Azure::Web::Profiles::Latest
|
|
988
1003
|
def hybrid_connection
|
989
1004
|
Azure::Web::Mgmt::V2018_02_01::Models::HybridConnection
|
990
1005
|
end
|
1006
|
+
def deleted_site
|
1007
|
+
Azure::Web::Mgmt::V2018_02_01::Models::DeletedSite
|
1008
|
+
end
|
991
1009
|
def site
|
992
1010
|
Azure::Web::Mgmt::V2018_02_01::Models::Site
|
993
1011
|
end
|
@@ -1057,6 +1075,9 @@ module Azure::Web::Profiles::Latest
|
|
1057
1075
|
def vnet_validation_failure_details
|
1058
1076
|
Azure::Web::Mgmt::V2018_02_01::Models::VnetValidationFailureDetails
|
1059
1077
|
end
|
1078
|
+
def azure_storage_property_dictionary_resource
|
1079
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AzureStoragePropertyDictionaryResource
|
1080
|
+
end
|
1060
1081
|
def backup_item
|
1061
1082
|
Azure::Web::Mgmt::V2018_02_01::Models::BackupItem
|
1062
1083
|
end
|
@@ -1213,6 +1234,9 @@ module Azure::Web::Profiles::Latest
|
|
1213
1234
|
def hybrid_connection_limits
|
1214
1235
|
Azure::Web::Mgmt::V2018_02_01::Models::HybridConnectionLimits
|
1215
1236
|
end
|
1237
|
+
def resource_health_metadata
|
1238
|
+
Azure::Web::Mgmt::V2018_02_01::Models::ResourceHealthMetadata
|
1239
|
+
end
|
1216
1240
|
def key_vault_secret_status
|
1217
1241
|
Azure::Web::Mgmt::V2018_02_01::Models::KeyVaultSecretStatus
|
1218
1242
|
end
|
@@ -1243,6 +1267,12 @@ module Azure::Web::Profiles::Latest
|
|
1243
1267
|
def connection_string_type
|
1244
1268
|
Azure::Web::Mgmt::V2018_02_01::Models::ConnectionStringType
|
1245
1269
|
end
|
1270
|
+
def azure_storage_type
|
1271
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageType
|
1272
|
+
end
|
1273
|
+
def azure_storage_state
|
1274
|
+
Azure::Web::Mgmt::V2018_02_01::Models::AzureStorageState
|
1275
|
+
end
|
1246
1276
|
def scm_type
|
1247
1277
|
Azure::Web::Mgmt::V2018_02_01::Models::ScmType
|
1248
1278
|
end
|