-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR web/resource-manager] WebApps - Add ResourceHealthMetadata.js…
…on to readme.md for SDK generation (#2336) * Generated from 1c9e1028cea9b1119b0fb396906d412c6d228c8e WebApps - Add ResourceHealthMetadata.json to readme.md for SDK generation * Generated from 4038e1418fea2b1092005a07b4ff72442d0038a1 Change deleted site model to be proxy only resource
- Loading branch information
1 parent
fcf3c04
commit b791de2
Showing
11 changed files
with
1,738 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...in/java/com/microsoft/azure/management/appservice/v2018_02_01/ResourceHealthMetadata.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.appservice.v2018_02_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.appservice.v2018_02_01.implementation.CertificateRegistrationManager; | ||
import com.microsoft.azure.management.appservice.v2018_02_01.implementation.ResourceHealthMetadataInner; | ||
|
||
/** | ||
* Type representing ResourceHealthMetadata. | ||
*/ | ||
public interface ResourceHealthMetadata extends HasInner<ResourceHealthMetadataInner>, HasManager<CertificateRegistrationManager> { | ||
/** | ||
* @return the category value. | ||
*/ | ||
String category(); | ||
|
||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
/** | ||
* @return the kind value. | ||
*/ | ||
String kind(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
/** | ||
* @return the signalAvailability value. | ||
*/ | ||
Boolean signalAvailability(); | ||
|
||
/** | ||
* @return the type value. | ||
*/ | ||
String type(); | ||
|
||
} |
82 changes: 82 additions & 0 deletions
82
...n/java/com/microsoft/azure/management/appservice/v2018_02_01/ResourceHealthMetadatas.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.appservice.v2018_02_01; | ||
|
||
import rx.Observable; | ||
|
||
/** | ||
* Type representing ResourceHealthMetadatas. | ||
*/ | ||
public interface ResourceHealthMetadatas { | ||
/** | ||
* Gets the category of ResourceHealthMetadata to use for the given site as a collection. | ||
* Gets the category of ResourceHealthMetadata to use for the given site as a collection. | ||
* | ||
* @param resourceGroupName Name of the resource group to which the resource belongs. | ||
* @param name Name of web app. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> listBySiteAsync(final String resourceGroupName, final String name); | ||
|
||
/** | ||
* Gets the category of ResourceHealthMetadata to use for the given site. | ||
* Gets the category of ResourceHealthMetadata to use for the given site. | ||
* | ||
* @param resourceGroupName Name of the resource group to which the resource belongs. | ||
* @param name Name of web app | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> getBySiteAsync(String resourceGroupName, String name); | ||
|
||
/** | ||
* List all ResourceHealthMetadata for all sites in the subscription. | ||
* List all ResourceHealthMetadata for all sites in the subscription. | ||
* | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> listAsync(); | ||
|
||
/** | ||
* List all ResourceHealthMetadata for all sites in the resource group in the subscription. | ||
* List all ResourceHealthMetadata for all sites in the resource group in the subscription. | ||
* | ||
* @param resourceGroupName Name of the resource group to which the resource belongs. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> listByResourceGroupAsync(final String resourceGroupName); | ||
|
||
/** | ||
* Gets the category of ResourceHealthMetadata to use for the given site as a collection. | ||
* Gets the category of ResourceHealthMetadata to use for the given site as a collection. | ||
* | ||
* @param resourceGroupName Name of the resource group to which the resource belongs. | ||
* @param name Name of web app. | ||
* @param slot Name of web app slot. If not specified then will default to production slot. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> listBySiteSlotAsync(final String resourceGroupName, final String name, final String slot); | ||
|
||
/** | ||
* Gets the category of ResourceHealthMetadata to use for the given site. | ||
* Gets the category of ResourceHealthMetadata to use for the given site. | ||
* | ||
* @param resourceGroupName Name of the resource group to which the resource belongs. | ||
* @param name Name of web app | ||
* @param slot Name of web app slot. If not specified then will default to production slot. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<ResourceHealthMetadata> getBySiteSlotAsync(String resourceGroupName, String name, String slot); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...ft/azure/management/appservice/v2018_02_01/implementation/ResourceHealthMetadataImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.appservice.v2018_02_01.implementation; | ||
|
||
import com.microsoft.azure.management.appservice.v2018_02_01.ResourceHealthMetadata; | ||
import com.microsoft.azure.arm.model.implementation.WrapperImpl; | ||
|
||
class ResourceHealthMetadataImpl extends WrapperImpl<ResourceHealthMetadataInner> implements ResourceHealthMetadata { | ||
private final CertificateRegistrationManager manager; | ||
ResourceHealthMetadataImpl(ResourceHealthMetadataInner inner, CertificateRegistrationManager manager) { | ||
super(inner); | ||
this.manager = manager; | ||
} | ||
|
||
@Override | ||
public CertificateRegistrationManager manager() { | ||
return this.manager; | ||
} | ||
|
||
@Override | ||
public String category() { | ||
return this.inner().category(); | ||
} | ||
|
||
@Override | ||
public String id() { | ||
return this.inner().id(); | ||
} | ||
|
||
@Override | ||
public String kind() { | ||
return this.inner().kind(); | ||
} | ||
|
||
@Override | ||
public String name() { | ||
return this.inner().name(); | ||
} | ||
|
||
@Override | ||
public Boolean signalAvailability() { | ||
return this.inner().signalAvailability(); | ||
} | ||
|
||
@Override | ||
public String type() { | ||
return this.inner().type(); | ||
} | ||
|
||
} |
Oops, something went wrong.