Skip to content

Commit

Permalink
Generated from 9918af1f272cce6411a3648d614b53e4a4d13a15
Browse files Browse the repository at this point in the history
Add 202 example responses for export
  • Loading branch information
SDK Automation committed Aug 14, 2019
1 parent c57aaf0 commit 3c26e3a
Show file tree
Hide file tree
Showing 23 changed files with 821 additions and 92 deletions.
16 changes: 8 additions & 8 deletions resources/resource-manager/v2016_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-subscriptions</artifactId>
<artifactId>azure-mgmt-resources</artifactId>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Management</name>
<description>This package contains Microsoft Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<name>Microsoft Azure SDK for Resources Management</name>
<description>This package contains Microsoft Resources Management SDK.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.LocationInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.Manager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.ResourcesManager;

/**
* Type representing Location.
*/
public interface Location extends HasInner<LocationInner>, HasManager<Manager> {
public interface Location extends HasInner<LocationInner>, HasManager<ResourcesManager> {
/**
* @return the displayName value.
*/
Expand Down
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();

}
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;
}

}
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();

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

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.Manager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.ResourcesManager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.SubscriptionInner;

/**
* Type representing Subscription.
*/
public interface Subscription extends HasInner<SubscriptionInner>, HasManager<Manager> {
public interface Subscription extends HasInner<SubscriptionInner>, HasManager<ResourcesManager> {
/**
* @return the authorizationSource value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

package com.microsoft.azure.management.resources.v2016_06_01;

import com.microsoft.azure.PagedList;
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.SubscriptionsInner;
import rx.Observable;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.SubscriptionsInner;
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.resources.v2016_06_01.Location;

/**
* Type representing Subscriptions.
Expand All @@ -26,14 +26,6 @@ public interface Subscriptions extends HasInner<SubscriptionsInner> {
*/
Observable<Subscription> getAsync(String subscriptionId);

/**
* Gets all subscriptions for a tenant.
*
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
*/
PagedList<Subscription> list();

/**
* Gets all subscriptions for a tenant.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

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.Manager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.ResourcesManager;
import com.microsoft.azure.management.resources.v2016_06_01.implementation.TenantIdDescriptionInner;

/**
* Type representing TenantIdDescription.
*/
public interface TenantIdDescription extends HasInner<TenantIdDescriptionInner>, HasManager<Manager> {
public interface TenantIdDescription extends HasInner<TenantIdDescriptionInner>, HasManager<ResourcesManager> {
/**
* @return the id value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
import rx.Observable;

class LocationImpl extends WrapperImpl<LocationInner> implements Location {
private final Manager manager;
private final ResourcesManager manager;

LocationImpl(LocationInner inner, Manager manager) {
LocationImpl(LocationInner inner, ResourcesManager manager) {
super(inner);
this.manager = manager;
}

@Override
public Manager manager() {
public ResourcesManager manager() {
return this.manager;
}

Expand Down
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();
}

}
Loading

0 comments on commit 3c26e3a

Please sign in to comment.