
com.pulumi.azurenative.migrate.outputs.SolutionPropertiesResponse 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.migrate.outputs;
import com.pulumi.azurenative.migrate.outputs.DatabasesSolutionSummaryResponse;
import com.pulumi.azurenative.migrate.outputs.ServersSolutionSummaryResponse;
import com.pulumi.azurenative.migrate.outputs.SolutionDetailsResponse;
import com.pulumi.azurenative.migrate.outputs.SolutionSummaryResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SolutionPropertiesResponse {
/**
* @return Gets or sets the cleanup state of the solution.
*
*/
private @Nullable String cleanupState;
/**
* @return Gets or sets the details of the solution.
*
*/
private @Nullable SolutionDetailsResponse details;
/**
* @return Gets or sets the goal of the solution.
*
*/
private @Nullable String goal;
/**
* @return Gets or sets the purpose of the solution.
*
*/
private @Nullable String purpose;
/**
* @return Gets or sets the current status of the solution.
*
*/
private @Nullable String status;
/**
* @return Gets or sets the summary of the solution.
*
*/
private @Nullable Object summary;
/**
* @return Gets or sets the tool being used in the solution.
*
*/
private @Nullable String tool;
private SolutionPropertiesResponse() {}
/**
* @return Gets or sets the cleanup state of the solution.
*
*/
public Optional cleanupState() {
return Optional.ofNullable(this.cleanupState);
}
/**
* @return Gets or sets the details of the solution.
*
*/
public Optional details() {
return Optional.ofNullable(this.details);
}
/**
* @return Gets or sets the goal of the solution.
*
*/
public Optional goal() {
return Optional.ofNullable(this.goal);
}
/**
* @return Gets or sets the purpose of the solution.
*
*/
public Optional purpose() {
return Optional.ofNullable(this.purpose);
}
/**
* @return Gets or sets the current status of the solution.
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
/**
* @return Gets or sets the summary of the solution.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy