com.pulumi.azurenative.datafactory.outputs.LinkedIntegrationRuntimeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datafactory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class LinkedIntegrationRuntimeResponse {
/**
* @return The creating time of the linked integration runtime.
*
*/
private String createTime;
/**
* @return The location of the data factory for which the linked integration runtime belong to.
*
*/
private String dataFactoryLocation;
/**
* @return The name of the data factory for which the linked integration runtime belong to.
*
*/
private String dataFactoryName;
/**
* @return The name of the linked integration runtime.
*
*/
private String name;
/**
* @return The subscription ID for which the linked integration runtime belong to.
*
*/
private String subscriptionId;
private LinkedIntegrationRuntimeResponse() {}
/**
* @return The creating time of the linked integration runtime.
*
*/
public String createTime() {
return this.createTime;
}
/**
* @return The location of the data factory for which the linked integration runtime belong to.
*
*/
public String dataFactoryLocation() {
return this.dataFactoryLocation;
}
/**
* @return The name of the data factory for which the linked integration runtime belong to.
*
*/
public String dataFactoryName() {
return this.dataFactoryName;
}
/**
* @return The name of the linked integration runtime.
*
*/
public String name() {
return this.name;
}
/**
* @return The subscription ID for which the linked integration runtime belong to.
*
*/
public String subscriptionId() {
return this.subscriptionId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LinkedIntegrationRuntimeResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String createTime;
private String dataFactoryLocation;
private String dataFactoryName;
private String name;
private String subscriptionId;
public Builder() {}
public Builder(LinkedIntegrationRuntimeResponse defaults) {
Objects.requireNonNull(defaults);
this.createTime = defaults.createTime;
this.dataFactoryLocation = defaults.dataFactoryLocation;
this.dataFactoryName = defaults.dataFactoryName;
this.name = defaults.name;
this.subscriptionId = defaults.subscriptionId;
}
@CustomType.Setter
public Builder createTime(String createTime) {
if (createTime == null) {
throw new MissingRequiredPropertyException("LinkedIntegrationRuntimeResponse", "createTime");
}
this.createTime = createTime;
return this;
}
@CustomType.Setter
public Builder dataFactoryLocation(String dataFactoryLocation) {
if (dataFactoryLocation == null) {
throw new MissingRequiredPropertyException("LinkedIntegrationRuntimeResponse", "dataFactoryLocation");
}
this.dataFactoryLocation = dataFactoryLocation;
return this;
}
@CustomType.Setter
public Builder dataFactoryName(String dataFactoryName) {
if (dataFactoryName == null) {
throw new MissingRequiredPropertyException("LinkedIntegrationRuntimeResponse", "dataFactoryName");
}
this.dataFactoryName = dataFactoryName;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("LinkedIntegrationRuntimeResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder subscriptionId(String subscriptionId) {
if (subscriptionId == null) {
throw new MissingRequiredPropertyException("LinkedIntegrationRuntimeResponse", "subscriptionId");
}
this.subscriptionId = subscriptionId;
return this;
}
public LinkedIntegrationRuntimeResponse build() {
final var _resultValue = new LinkedIntegrationRuntimeResponse();
_resultValue.createTime = createTime;
_resultValue.dataFactoryLocation = dataFactoryLocation;
_resultValue.dataFactoryName = dataFactoryName;
_resultValue.name = name;
_resultValue.subscriptionId = subscriptionId;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy