
com.pulumi.azurenative.databoxedge.outputs.GetCloudEdgeManagementRoleResult 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.databoxedge.outputs;
import com.pulumi.azurenative.databoxedge.outputs.EdgeProfileResponse;
import com.pulumi.azurenative.databoxedge.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 GetCloudEdgeManagementRoleResult {
/**
* @return Edge Profile of the resource
*
*/
private EdgeProfileResponse edgeProfile;
/**
* @return The path ID that uniquely identifies the object.
*
*/
private String id;
/**
* @return Role type.
* Expected value is 'CloudEdgeManagement'.
*
*/
private String kind;
/**
* @return Local Edge Management Status
*
*/
private String localManagementStatus;
/**
* @return The object name.
*
*/
private String name;
/**
* @return Role status.
*
*/
private String roleStatus;
/**
* @return Metadata pertaining to creation and last modification of Role
*
*/
private SystemDataResponse systemData;
/**
* @return The hierarchical type of the object.
*
*/
private String type;
private GetCloudEdgeManagementRoleResult() {}
/**
* @return Edge Profile of the resource
*
*/
public EdgeProfileResponse edgeProfile() {
return this.edgeProfile;
}
/**
* @return The path ID that uniquely identifies the object.
*
*/
public String id() {
return this.id;
}
/**
* @return Role type.
* Expected value is 'CloudEdgeManagement'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return Local Edge Management Status
*
*/
public String localManagementStatus() {
return this.localManagementStatus;
}
/**
* @return The object name.
*
*/
public String name() {
return this.name;
}
/**
* @return Role status.
*
*/
public String roleStatus() {
return this.roleStatus;
}
/**
* @return Metadata pertaining to creation and last modification of Role
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return The hierarchical type of the object.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCloudEdgeManagementRoleResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private EdgeProfileResponse edgeProfile;
private String id;
private String kind;
private String localManagementStatus;
private String name;
private String roleStatus;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetCloudEdgeManagementRoleResult defaults) {
Objects.requireNonNull(defaults);
this.edgeProfile = defaults.edgeProfile;
this.id = defaults.id;
this.kind = defaults.kind;
this.localManagementStatus = defaults.localManagementStatus;
this.name = defaults.name;
this.roleStatus = defaults.roleStatus;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder edgeProfile(EdgeProfileResponse edgeProfile) {
if (edgeProfile == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "edgeProfile");
}
this.edgeProfile = edgeProfile;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder localManagementStatus(String localManagementStatus) {
if (localManagementStatus == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "localManagementStatus");
}
this.localManagementStatus = localManagementStatus;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder roleStatus(String roleStatus) {
if (roleStatus == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "roleStatus");
}
this.roleStatus = roleStatus;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetCloudEdgeManagementRoleResult", "type");
}
this.type = type;
return this;
}
public GetCloudEdgeManagementRoleResult build() {
final var _resultValue = new GetCloudEdgeManagementRoleResult();
_resultValue.edgeProfile = edgeProfile;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.localManagementStatus = localManagementStatus;
_resultValue.name = name;
_resultValue.roleStatus = roleStatus;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy