forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 9918af1f272cce6411a3648d614b53e4a4d13a15
Add 202 example responses for export
- Loading branch information
SDK Automation
committed
Aug 14, 2019
1 parent
c57aaf0
commit 3c26e3a
Showing
23 changed files
with
821 additions
and
92 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
30 changes: 30 additions & 0 deletions
30
...6_06_01/src/main/java/com/microsoft/azure/management/resources/v2016_06_01/Operation.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,30 @@ | ||
/** | ||
* 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.resources.v2016_06_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.resources.v2016_06_01.implementation.ResourcesManager; | ||
import com.microsoft.azure.management.resources.v2016_06_01.implementation.OperationInner; | ||
|
||
/** | ||
* Type representing Operation. | ||
*/ | ||
public interface Operation extends HasInner<OperationInner>, HasManager<ResourcesManager> { | ||
/** | ||
* @return the display value. | ||
*/ | ||
OperationDisplay display(); | ||
|
||
/** | ||
* @return the name value. | ||
*/ | ||
String name(); | ||
|
||
} |
121 changes: 121 additions & 0 deletions
121
.../src/main/java/com/microsoft/azure/management/resources/v2016_06_01/OperationDisplay.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,121 @@ | ||
/** | ||
* 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.resources.v2016_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* The object that represents the operation. | ||
*/ | ||
public class OperationDisplay { | ||
/** | ||
* Service provider: Microsoft.Resources. | ||
*/ | ||
@JsonProperty(value = "provider") | ||
private String provider; | ||
|
||
/** | ||
* Resource on which the operation is performed: Profile, endpoint, etc. | ||
*/ | ||
@JsonProperty(value = "resource") | ||
private String resource; | ||
|
||
/** | ||
* Operation type: Read, write, delete, etc. | ||
*/ | ||
@JsonProperty(value = "operation") | ||
private String operation; | ||
|
||
/** | ||
* Description of the operation. | ||
*/ | ||
@JsonProperty(value = "description") | ||
private String description; | ||
|
||
/** | ||
* Get service provider: Microsoft.Resources. | ||
* | ||
* @return the provider value | ||
*/ | ||
public String provider() { | ||
return this.provider; | ||
} | ||
|
||
/** | ||
* Set service provider: Microsoft.Resources. | ||
* | ||
* @param provider the provider value to set | ||
* @return the OperationDisplay object itself. | ||
*/ | ||
public OperationDisplay withProvider(String provider) { | ||
this.provider = provider; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get resource on which the operation is performed: Profile, endpoint, etc. | ||
* | ||
* @return the resource value | ||
*/ | ||
public String resource() { | ||
return this.resource; | ||
} | ||
|
||
/** | ||
* Set resource on which the operation is performed: Profile, endpoint, etc. | ||
* | ||
* @param resource the resource value to set | ||
* @return the OperationDisplay object itself. | ||
*/ | ||
public OperationDisplay withResource(String resource) { | ||
this.resource = resource; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get operation type: Read, write, delete, etc. | ||
* | ||
* @return the operation value | ||
*/ | ||
public String operation() { | ||
return this.operation; | ||
} | ||
|
||
/** | ||
* Set operation type: Read, write, delete, etc. | ||
* | ||
* @param operation the operation value to set | ||
* @return the OperationDisplay object itself. | ||
*/ | ||
public OperationDisplay withOperation(String operation) { | ||
this.operation = operation; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get description of the operation. | ||
* | ||
* @return the description value | ||
*/ | ||
public String description() { | ||
return this.description; | ||
} | ||
|
||
/** | ||
* Set description of the operation. | ||
* | ||
* @param description the description value to set | ||
* @return the OperationDisplay object itself. | ||
*/ | ||
public OperationDisplay withDescription(String description) { | ||
this.description = description; | ||
return this; | ||
} | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
..._06_01/src/main/java/com/microsoft/azure/management/resources/v2016_06_01/Operations.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.resources.v2016_06_01; | ||
|
||
import rx.Observable; | ||
import com.microsoft.azure.management.resources.v2016_06_01.implementation.OperationsInner; | ||
import com.microsoft.azure.arm.model.HasInner; | ||
|
||
/** | ||
* Type representing Operations. | ||
*/ | ||
public interface Operations extends HasInner<OperationsInner> { | ||
/** | ||
* Lists all of the available Microsoft.Resources REST API operations. | ||
* | ||
* @throws IllegalArgumentException thrown if parameters fail the validation | ||
* @return the observable for the request | ||
*/ | ||
Observable<Operation> listAsync(); | ||
|
||
} |
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
37 changes: 37 additions & 0 deletions
37
...va/com/microsoft/azure/management/resources/v2016_06_01/implementation/OperationImpl.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,37 @@ | ||
/** | ||
* 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.resources.v2016_06_01.implementation; | ||
|
||
import com.microsoft.azure.management.resources.v2016_06_01.Operation; | ||
import com.microsoft.azure.arm.model.implementation.WrapperImpl; | ||
import com.microsoft.azure.management.resources.v2016_06_01.OperationDisplay; | ||
|
||
class OperationImpl extends WrapperImpl<OperationInner> implements Operation { | ||
private final ResourcesManager manager; | ||
OperationImpl(OperationInner inner, ResourcesManager manager) { | ||
super(inner); | ||
this.manager = manager; | ||
} | ||
|
||
@Override | ||
public ResourcesManager manager() { | ||
return this.manager; | ||
} | ||
|
||
@Override | ||
public OperationDisplay display() { | ||
return this.inner().display(); | ||
} | ||
|
||
@Override | ||
public String name() { | ||
return this.inner().name(); | ||
} | ||
|
||
} |
Oops, something went wrong.