
com.pulumi.azurenative.dataprotection.outputs.FeatureSettingsResponse Maven / Gradle / Ivy
// *** 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.dataprotection.outputs;
import com.pulumi.azurenative.dataprotection.outputs.CrossSubscriptionRestoreSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FeatureSettingsResponse {
/**
* @return CrossSubscriptionRestore Settings
*
*/
private @Nullable CrossSubscriptionRestoreSettingsResponse crossSubscriptionRestoreSettings;
private FeatureSettingsResponse() {}
/**
* @return CrossSubscriptionRestore Settings
*
*/
public Optional crossSubscriptionRestoreSettings() {
return Optional.ofNullable(this.crossSubscriptionRestoreSettings);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FeatureSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable CrossSubscriptionRestoreSettingsResponse crossSubscriptionRestoreSettings;
public Builder() {}
public Builder(FeatureSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.crossSubscriptionRestoreSettings = defaults.crossSubscriptionRestoreSettings;
}
@CustomType.Setter
public Builder crossSubscriptionRestoreSettings(@Nullable CrossSubscriptionRestoreSettingsResponse crossSubscriptionRestoreSettings) {
this.crossSubscriptionRestoreSettings = crossSubscriptionRestoreSettings;
return this;
}
public FeatureSettingsResponse build() {
final var _resultValue = new FeatureSettingsResponse();
_resultValue.crossSubscriptionRestoreSettings = crossSubscriptionRestoreSettings;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy