forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SDK Automation
committed
Jun 22, 2020
1 parent
72d5383
commit cfa6a69
Showing
58 changed files
with
5,046 additions
and
43 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
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
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
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
38 changes: 38 additions & 0 deletions
38
...c/main/java/com/microsoft/azure/management/storage/v2019_06_01/ListContainersInclude.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,38 @@ | ||
/** | ||
* 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.storage.v2019_06_01; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for ListContainersInclude. | ||
*/ | ||
public final class ListContainersInclude extends ExpandableStringEnum<ListContainersInclude> { | ||
/** Static value deleted for ListContainersInclude. */ | ||
public static final ListContainersInclude DELETED = fromString("deleted"); | ||
|
||
/** | ||
* Creates or finds a ListContainersInclude from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding ListContainersInclude | ||
*/ | ||
@JsonCreator | ||
public static ListContainersInclude fromString(String name) { | ||
return fromString(name, ListContainersInclude.class); | ||
} | ||
|
||
/** | ||
* @return known ListContainersInclude values | ||
*/ | ||
public static Collection<ListContainersInclude> values() { | ||
return values(ListContainersInclude.class); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...019_06_01/src/main/java/com/microsoft/azure/management/storage/v2019_06_01/ListQueue.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,41 @@ | ||
/** | ||
* 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.storage.v2019_06_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.StorageManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.ListQueueInner; | ||
import java.util.Map; | ||
|
||
/** | ||
* Type representing ListQueue. | ||
*/ | ||
public interface ListQueue extends HasInner<ListQueueInner>, HasManager<StorageManager> { | ||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
/** | ||
* @return the metadata value. | ||
*/ | ||
Map<String, String> metadata(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
/** | ||
* @return the type value. | ||
*/ | ||
String type(); | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
...1/src/main/java/com/microsoft/azure/management/storage/v2019_06_01/ListQueueServices.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,27 @@ | ||
/** | ||
* 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.storage.v2019_06_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.StorageManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.ListQueueServicesInner; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.QueueServicePropertiesInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing ListQueueServices. | ||
*/ | ||
public interface ListQueueServices extends HasInner<ListQueueServicesInner>, HasManager<StorageManager> { | ||
/** | ||
* @return the value value. | ||
*/ | ||
List<QueueServicePropertiesInner> value(); | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
...1/src/main/java/com/microsoft/azure/management/storage/v2019_06_01/ListTableServices.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,27 @@ | ||
/** | ||
* 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.storage.v2019_06_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.StorageManager; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.ListTableServicesInner; | ||
import com.microsoft.azure.management.storage.v2019_06_01.implementation.TableServicePropertiesInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing ListTableServices. | ||
*/ | ||
public interface ListTableServices extends HasInner<ListTableServicesInner>, HasManager<StorageManager> { | ||
/** | ||
* @return the value value. | ||
*/ | ||
List<TableServicePropertiesInner> value(); | ||
|
||
} |
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
Oops, something went wrong.