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.
CodeGen from PR 17213 in Azure/azure-rest-api-specs
Merge c58257efd15d1363d43f064efd8514445e0cb706 into 23ca45b7dfce24112bc686bae70c4424f33ae69e
- Loading branch information
SDKAuto
committed
Jan 7, 2022
1 parent
3a5e6ef
commit 606b512
Showing
63 changed files
with
1,302 additions
and
288 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
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
103 changes: 103 additions & 0 deletions
103
...anager/synapse/fluent/models/ManagedIntegrationRuntimeManagedVirtualNetworkReference.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,103 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.synapse.fluent.models; | ||
|
||
import com.azure.core.annotation.Fluent; | ||
import com.azure.core.util.logging.ClientLogger; | ||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** Managed integration runtime managed virtual network reference. */ | ||
@Fluent | ||
public final class ManagedIntegrationRuntimeManagedVirtualNetworkReference { | ||
@JsonIgnore | ||
private final ClientLogger logger = new ClientLogger(ManagedIntegrationRuntimeManagedVirtualNetworkReference.class); | ||
|
||
/* | ||
* The reference name of the managed virtual network. | ||
*/ | ||
@JsonProperty(value = "referenceName") | ||
private String referenceName; | ||
|
||
/* | ||
* The type of the managed virtual network. | ||
*/ | ||
@JsonProperty(value = "type") | ||
private String type; | ||
|
||
/* | ||
* The id of the managed virtual network. | ||
*/ | ||
@JsonProperty(value = "id") | ||
private String id; | ||
|
||
/** | ||
* Get the referenceName property: The reference name of the managed virtual network. | ||
* | ||
* @return the referenceName value. | ||
*/ | ||
public String referenceName() { | ||
return this.referenceName; | ||
} | ||
|
||
/** | ||
* Set the referenceName property: The reference name of the managed virtual network. | ||
* | ||
* @param referenceName the referenceName value to set. | ||
* @return the ManagedIntegrationRuntimeManagedVirtualNetworkReference object itself. | ||
*/ | ||
public ManagedIntegrationRuntimeManagedVirtualNetworkReference withReferenceName(String referenceName) { | ||
this.referenceName = referenceName; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the type property: The type of the managed virtual network. | ||
* | ||
* @return the type value. | ||
*/ | ||
public String type() { | ||
return this.type; | ||
} | ||
|
||
/** | ||
* Set the type property: The type of the managed virtual network. | ||
* | ||
* @param type the type value to set. | ||
* @return the ManagedIntegrationRuntimeManagedVirtualNetworkReference object itself. | ||
*/ | ||
public ManagedIntegrationRuntimeManagedVirtualNetworkReference withType(String type) { | ||
this.type = type; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the id property: The id of the managed virtual network. | ||
* | ||
* @return the id value. | ||
*/ | ||
public String id() { | ||
return this.id; | ||
} | ||
|
||
/** | ||
* Set the id property: The id of the managed virtual network. | ||
* | ||
* @param id the id value to set. | ||
* @return the ManagedIntegrationRuntimeManagedVirtualNetworkReference object itself. | ||
*/ | ||
public ManagedIntegrationRuntimeManagedVirtualNetworkReference withId(String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
|
||
/** | ||
* Validates the instance. | ||
* | ||
* @throws IllegalArgumentException thrown if the instance is not valid. | ||
*/ | ||
public void validate() { | ||
} | ||
} |
Oops, something went wrong.