
com.pulumi.azurenative.security.outputs.GetAssignmentResult 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.security.outputs;
import com.pulumi.azurenative.security.outputs.AssignedComponentItemResponse;
import com.pulumi.azurenative.security.outputs.AssignedStandardItemResponse;
import com.pulumi.azurenative.security.outputs.AssignmentPropertiesResponseAdditionalData;
import com.pulumi.azurenative.security.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetAssignmentResult {
/**
* @return Additional data about the assignment
*
*/
private @Nullable AssignmentPropertiesResponseAdditionalData additionalData;
/**
* @return Component item with key as applied to this standard assignment over the given scope
*
*/
private @Nullable AssignedComponentItemResponse assignedComponent;
/**
* @return Standard item with key as applied to this standard assignment over the given scope
*
*/
private @Nullable AssignedStandardItemResponse assignedStandard;
/**
* @return description of the standardAssignment
*
*/
private @Nullable String description;
/**
* @return display name of the standardAssignment
*
*/
private @Nullable String displayName;
/**
* @return expected effect of this assignment (Disable/Exempt/etc)
*
*/
private @Nullable String effect;
/**
* @return Entity tag is used for comparing two or more entities from the same requested resource.
*
*/
private @Nullable String etag;
/**
* @return Expiration date of this assignment as a full ISO date
*
*/
private @Nullable String expiresOn;
/**
* @return Resource Id
*
*/
private String id;
/**
* @return Kind of the resource
*
*/
private @Nullable String kind;
/**
* @return Location where the resource is stored
*
*/
private @Nullable String location;
/**
* @return The assignment metadata. Metadata is an open ended object and is typically a collection of key value pairs.
*
*/
private @Nullable Object metadata;
/**
* @return Resource name
*
*/
private String name;
/**
* @return Scope to which the standardAssignment applies - can be a subscription path or a resource group under that subscription
*
*/
private @Nullable String scope;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return A list of key value pairs that describe the resource.
*
*/
private @Nullable Map tags;
/**
* @return Resource type
*
*/
private String type;
private GetAssignmentResult() {}
/**
* @return Additional data about the assignment
*
*/
public Optional additionalData() {
return Optional.ofNullable(this.additionalData);
}
/**
* @return Component item with key as applied to this standard assignment over the given scope
*
*/
public Optional assignedComponent() {
return Optional.ofNullable(this.assignedComponent);
}
/**
* @return Standard item with key as applied to this standard assignment over the given scope
*
*/
public Optional assignedStandard() {
return Optional.ofNullable(this.assignedStandard);
}
/**
* @return description of the standardAssignment
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return display name of the standardAssignment
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return expected effect of this assignment (Disable/Exempt/etc)
*
*/
public Optional effect() {
return Optional.ofNullable(this.effect);
}
/**
* @return Entity tag is used for comparing two or more entities from the same requested resource.
*
*/
public Optional etag() {
return Optional.ofNullable(this.etag);
}
/**
* @return Expiration date of this assignment as a full ISO date
*
*/
public Optional expiresOn() {
return Optional.ofNullable(this.expiresOn);
}
/**
* @return Resource Id
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of the resource
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Location where the resource is stored
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The assignment metadata. Metadata is an open ended object and is typically a collection of key value pairs.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy