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 14925 in Azure/azure-rest-api-specs
Merge 550824666f8611250ce5240085d5ef293da294fa into c234651f2885c07ff4a77e50c883145949fda5fa
- Loading branch information
SDKAuto
committed
Jul 8, 2021
1 parent
b483fac
commit 32c1a01
Showing
35 changed files
with
748 additions
and
130 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
sdk/datafactory/azure-resourcemanager-datafactory/CHANGELOG.md
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
58 changes: 58 additions & 0 deletions
58
...ry/fluent/models/IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner.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,58 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.datafactory.fluent.models; | ||
|
||
import com.azure.core.annotation.Fluent; | ||
import com.azure.core.util.logging.ClientLogger; | ||
import com.azure.resourcemanager.datafactory.models.IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint; | ||
import com.fasterxml.jackson.annotation.JsonIgnore; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import java.util.List; | ||
|
||
/** Azure-SSIS integration runtime outbound network dependency endpoints. */ | ||
@Fluent | ||
public final class IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner { | ||
@JsonIgnore | ||
private final ClientLogger logger = | ||
new ClientLogger(IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner.class); | ||
|
||
/* | ||
* The list of outbound network dependency endpoints. | ||
*/ | ||
@JsonProperty(value = "value") | ||
private List<IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint> value; | ||
|
||
/** | ||
* Get the value property: The list of outbound network dependency endpoints. | ||
* | ||
* @return the value value. | ||
*/ | ||
public List<IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint> value() { | ||
return this.value; | ||
} | ||
|
||
/** | ||
* Set the value property: The list of outbound network dependency endpoints. | ||
* | ||
* @param value the value value to set. | ||
* @return the IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner object itself. | ||
*/ | ||
public IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner withValue( | ||
List<IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint> value) { | ||
this.value = value; | ||
return this; | ||
} | ||
|
||
/** | ||
* Validates the instance. | ||
* | ||
* @throws IllegalArgumentException thrown if the instance is not valid. | ||
*/ | ||
public void validate() { | ||
if (value() != null) { | ||
value().forEach(e -> e.validate()); | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...ry/implementation/IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseImpl.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,42 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.datafactory.implementation; | ||
|
||
import com.azure.resourcemanager.datafactory.fluent.models.IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner; | ||
import com.azure.resourcemanager.datafactory.models.IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint; | ||
import com.azure.resourcemanager.datafactory.models.IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponse; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
public final class IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseImpl | ||
implements IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponse { | ||
private IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner innerObject; | ||
|
||
private final com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager; | ||
|
||
IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseImpl( | ||
IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner innerObject, | ||
com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager) { | ||
this.innerObject = innerObject; | ||
this.serviceManager = serviceManager; | ||
} | ||
|
||
public List<IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint> value() { | ||
List<IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint> inner = this.innerModel().value(); | ||
if (inner != null) { | ||
return Collections.unmodifiableList(inner); | ||
} else { | ||
return Collections.emptyList(); | ||
} | ||
} | ||
|
||
public IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner innerModel() { | ||
return this.innerObject; | ||
} | ||
|
||
private com.azure.resourcemanager.datafactory.DataFactoryManager manager() { | ||
return this.serviceManager; | ||
} | ||
} |
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
Oops, something went wrong.