
com.pulumi.azurenative.migrate.outputs.GetProjectResult 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.ProjectPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetProjectResult {
/**
* @return For optimistic concurrency control.
*
*/
private @Nullable String eTag;
/**
* @return Path reference to this project /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}
*
*/
private String id;
/**
* @return Azure location in which project is created.
*
*/
private @Nullable String location;
/**
* @return Name of the project.
*
*/
private String name;
/**
* @return Properties of the project.
*
*/
private ProjectPropertiesResponse properties;
/**
* @return Tags provided by Azure Tagging service.
*
*/
private @Nullable Object tags;
/**
* @return Type of the object = [Microsoft.Migrate/assessmentProjects].
*
*/
private String type;
private GetProjectResult() {}
/**
* @return For optimistic concurrency control.
*
*/
public Optional eTag() {
return Optional.ofNullable(this.eTag);
}
/**
* @return Path reference to this project /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}
*
*/
public String id() {
return this.id;
}
/**
* @return Azure location in which project is created.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return Name of the project.
*
*/
public String name() {
return this.name;
}
/**
* @return Properties of the project.
*
*/
public ProjectPropertiesResponse properties() {
return this.properties;
}
/**
* @return Tags provided by Azure Tagging service.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy