com.pulumi.azurenative.datashare.outputs.GetScheduledSynchronizationSettingResult 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.datashare.outputs;
import com.pulumi.azurenative.datashare.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetScheduledSynchronizationSettingResult {
/**
* @return Time at which the synchronization setting was created.
*
*/
private String createdAt;
/**
* @return The resource id of the azure resource
*
*/
private String id;
/**
* @return Kind of synchronization setting.
* Expected value is 'ScheduleBased'.
*
*/
private String kind;
/**
* @return Name of the azure resource
*
*/
private String name;
/**
* @return Gets or sets the provisioning state
*
*/
private String provisioningState;
/**
* @return Recurrence Interval
*
*/
private String recurrenceInterval;
/**
* @return Synchronization time
*
*/
private String synchronizationTime;
/**
* @return System Data of the Azure resource.
*
*/
private SystemDataResponse systemData;
/**
* @return Type of the azure resource
*
*/
private String type;
/**
* @return Name of the user who created the synchronization setting.
*
*/
private String userName;
private GetScheduledSynchronizationSettingResult() {}
/**
* @return Time at which the synchronization setting was created.
*
*/
public String createdAt() {
return this.createdAt;
}
/**
* @return The resource id of the azure resource
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of synchronization setting.
* Expected value is 'ScheduleBased'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return Name of the azure resource
*
*/
public String name() {
return this.name;
}
/**
* @return Gets or sets the provisioning state
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Recurrence Interval
*
*/
public String recurrenceInterval() {
return this.recurrenceInterval;
}
/**
* @return Synchronization time
*
*/
public String synchronizationTime() {
return this.synchronizationTime;
}
/**
* @return System Data of the Azure resource.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Type of the azure resource
*
*/
public String type() {
return this.type;
}
/**
* @return Name of the user who created the synchronization setting.
*
*/
public String userName() {
return this.userName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetScheduledSynchronizationSettingResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String createdAt;
private String id;
private String kind;
private String name;
private String provisioningState;
private String recurrenceInterval;
private String synchronizationTime;
private SystemDataResponse systemData;
private String type;
private String userName;
public Builder() {}
public Builder(GetScheduledSynchronizationSettingResult defaults) {
Objects.requireNonNull(defaults);
this.createdAt = defaults.createdAt;
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.recurrenceInterval = defaults.recurrenceInterval;
this.synchronizationTime = defaults.synchronizationTime;
this.systemData = defaults.systemData;
this.type = defaults.type;
this.userName = defaults.userName;
}
@CustomType.Setter
public Builder createdAt(String createdAt) {
if (createdAt == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "createdAt");
}
this.createdAt = createdAt;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder recurrenceInterval(String recurrenceInterval) {
if (recurrenceInterval == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "recurrenceInterval");
}
this.recurrenceInterval = recurrenceInterval;
return this;
}
@CustomType.Setter
public Builder synchronizationTime(String synchronizationTime) {
if (synchronizationTime == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "synchronizationTime");
}
this.synchronizationTime = synchronizationTime;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder userName(String userName) {
if (userName == null) {
throw new MissingRequiredPropertyException("GetScheduledSynchronizationSettingResult", "userName");
}
this.userName = userName;
return this;
}
public GetScheduledSynchronizationSettingResult build() {
final var _resultValue = new GetScheduledSynchronizationSettingResult();
_resultValue.createdAt = createdAt;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.recurrenceInterval = recurrenceInterval;
_resultValue.synchronizationTime = synchronizationTime;
_resultValue.systemData = systemData;
_resultValue.type = type;
_resultValue.userName = userName;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy