-
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.
* generate avs 2020 03 * update version to 1.0.0
- Loading branch information
Showing
14 changed files
with
827 additions
and
21 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
95 changes: 95 additions & 0 deletions
95
..._03_20/src/main/java/com/microsoft/azure/management/avs/v2020_03_20/LogSpecification.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,95 @@ | ||
/** | ||
* 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.avs.v2020_03_20; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Specifications of the Log for Azure Monitoring. | ||
*/ | ||
public class LogSpecification { | ||
/** | ||
* Name of the log. | ||
*/ | ||
@JsonProperty(value = "name") | ||
private String name; | ||
|
||
/** | ||
* Localized friendly display name of the log. | ||
*/ | ||
@JsonProperty(value = "displayName") | ||
private String displayName; | ||
|
||
/** | ||
* Blob duration of the log. | ||
*/ | ||
@JsonProperty(value = "blobDuration") | ||
private String blobDuration; | ||
|
||
/** | ||
* Get name of the log. | ||
* | ||
* @return the name value | ||
*/ | ||
public String name() { | ||
return this.name; | ||
} | ||
|
||
/** | ||
* Set name of the log. | ||
* | ||
* @param name the name value to set | ||
* @return the LogSpecification object itself. | ||
*/ | ||
public LogSpecification withName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get localized friendly display name of the log. | ||
* | ||
* @return the displayName value | ||
*/ | ||
public String displayName() { | ||
return this.displayName; | ||
} | ||
|
||
/** | ||
* Set localized friendly display name of the log. | ||
* | ||
* @param displayName the displayName value to set | ||
* @return the LogSpecification object itself. | ||
*/ | ||
public LogSpecification withDisplayName(String displayName) { | ||
this.displayName = displayName; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get blob duration of the log. | ||
* | ||
* @return the blobDuration value | ||
*/ | ||
public String blobDuration() { | ||
return this.blobDuration; | ||
} | ||
|
||
/** | ||
* Set blob duration of the log. | ||
* | ||
* @param blobDuration the blobDuration value to set | ||
* @return the LogSpecification object itself. | ||
*/ | ||
public LogSpecification withBlobDuration(String blobDuration) { | ||
this.blobDuration = blobDuration; | ||
return this; | ||
} | ||
|
||
} |
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
69 changes: 69 additions & 0 deletions
69
...0_03_20/src/main/java/com/microsoft/azure/management/avs/v2020_03_20/MetricDimension.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,69 @@ | ||
/** | ||
* 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.avs.v2020_03_20; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Specifications of the Dimension of metrics. | ||
*/ | ||
public class MetricDimension { | ||
/** | ||
* Name of the dimension. | ||
*/ | ||
@JsonProperty(value = "name") | ||
private String name; | ||
|
||
/** | ||
* Localized friendly display name of the dimension. | ||
*/ | ||
@JsonProperty(value = "displayName") | ||
private String displayName; | ||
|
||
/** | ||
* Get name of the dimension. | ||
* | ||
* @return the name value | ||
*/ | ||
public String name() { | ||
return this.name; | ||
} | ||
|
||
/** | ||
* Set name of the dimension. | ||
* | ||
* @param name the name value to set | ||
* @return the MetricDimension object itself. | ||
*/ | ||
public MetricDimension withName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get localized friendly display name of the dimension. | ||
* | ||
* @return the displayName value | ||
*/ | ||
public String displayName() { | ||
return this.displayName; | ||
} | ||
|
||
/** | ||
* Set localized friendly display name of the dimension. | ||
* | ||
* @param displayName the displayName value to set | ||
* @return the MetricDimension object itself. | ||
*/ | ||
public MetricDimension withDisplayName(String displayName) { | ||
this.displayName = displayName; | ||
return this; | ||
} | ||
|
||
} |
Oops, something went wrong.