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.
Generated from 60de4c8e4df2bd90b44ed70a90d48385e6f6971a
Add Metrics Advisor API Properties.
- Loading branch information
SDK Automation
committed
Sep 8, 2020
1 parent
51b0378
commit c1c1385
Showing
8 changed files
with
324 additions
and
3 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
27 changes: 27 additions & 0 deletions
27
...t/azure/management/cognitiveservices/v2017_04_18/PrivateEndpointConnectionListResult.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.cognitiveservices.v2017_04_18; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.cognitiveservices.v2017_04_18.implementation.CognitiveServicesManager; | ||
import com.microsoft.azure.management.cognitiveservices.v2017_04_18.implementation.PrivateEndpointConnectionListResultInner; | ||
import com.microsoft.azure.management.cognitiveservices.v2017_04_18.implementation.PrivateEndpointConnectionInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing PrivateEndpointConnectionListResult. | ||
*/ | ||
public interface PrivateEndpointConnectionListResult extends HasInner<PrivateEndpointConnectionListResultInner>, HasManager<CognitiveServicesManager> { | ||
/** | ||
* @return the value value. | ||
*/ | ||
List<PrivateEndpointConnectionInner> 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
32 changes: 32 additions & 0 deletions
32
...cognitiveservices/v2017_04_18/implementation/PrivateEndpointConnectionListResultImpl.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,32 @@ | ||
/** | ||
* 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.cognitiveservices.v2017_04_18.implementation; | ||
|
||
import com.microsoft.azure.management.cognitiveservices.v2017_04_18.PrivateEndpointConnectionListResult; | ||
import com.microsoft.azure.arm.model.implementation.WrapperImpl; | ||
import java.util.List; | ||
|
||
class PrivateEndpointConnectionListResultImpl extends WrapperImpl<PrivateEndpointConnectionListResultInner> implements PrivateEndpointConnectionListResult { | ||
private final CognitiveServicesManager manager; | ||
PrivateEndpointConnectionListResultImpl(PrivateEndpointConnectionListResultInner inner, CognitiveServicesManager manager) { | ||
super(inner); | ||
this.manager = manager; | ||
} | ||
|
||
@Override | ||
public CognitiveServicesManager manager() { | ||
return this.manager; | ||
} | ||
|
||
@Override | ||
public List<PrivateEndpointConnectionInner> value() { | ||
return this.inner().value(); | ||
} | ||
|
||
} |
44 changes: 44 additions & 0 deletions
44
...ognitiveservices/v2017_04_18/implementation/PrivateEndpointConnectionListResultInner.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,44 @@ | ||
/** | ||
* 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.cognitiveservices.v2017_04_18.implementation; | ||
|
||
import java.util.List; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* A list of private endpoint connections. | ||
*/ | ||
public class PrivateEndpointConnectionListResultInner { | ||
/** | ||
* Array of private endpoint connections. | ||
*/ | ||
@JsonProperty(value = "value") | ||
private List<PrivateEndpointConnectionInner> value; | ||
|
||
/** | ||
* Get array of private endpoint connections. | ||
* | ||
* @return the value value | ||
*/ | ||
public List<PrivateEndpointConnectionInner> value() { | ||
return this.value; | ||
} | ||
|
||
/** | ||
* Set array of private endpoint connections. | ||
* | ||
* @param value the value value to set | ||
* @return the PrivateEndpointConnectionListResultInner object itself. | ||
*/ | ||
public PrivateEndpointConnectionListResultInner withValue(List<PrivateEndpointConnectionInner> value) { | ||
this.value = value; | ||
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
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