
com.pulumi.azurenative.authorization.inputs.GetScopeAccessReviewScheduleDefinitionByIdPlainArgs 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.authorization.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetScopeAccessReviewScheduleDefinitionByIdPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetScopeAccessReviewScheduleDefinitionByIdPlainArgs Empty = new GetScopeAccessReviewScheduleDefinitionByIdPlainArgs();
/**
* The id of the access review schedule definition.
*
*/
@Import(name="scheduleDefinitionId", required=true)
private String scheduleDefinitionId;
/**
* @return The id of the access review schedule definition.
*
*/
public String scheduleDefinitionId() {
return this.scheduleDefinitionId;
}
/**
* The scope of the resource.
*
*/
@Import(name="scope", required=true)
private String scope;
/**
* @return The scope of the resource.
*
*/
public String scope() {
return this.scope;
}
private GetScopeAccessReviewScheduleDefinitionByIdPlainArgs() {}
private GetScopeAccessReviewScheduleDefinitionByIdPlainArgs(GetScopeAccessReviewScheduleDefinitionByIdPlainArgs $) {
this.scheduleDefinitionId = $.scheduleDefinitionId;
this.scope = $.scope;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetScopeAccessReviewScheduleDefinitionByIdPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetScopeAccessReviewScheduleDefinitionByIdPlainArgs $;
public Builder() {
$ = new GetScopeAccessReviewScheduleDefinitionByIdPlainArgs();
}
public Builder(GetScopeAccessReviewScheduleDefinitionByIdPlainArgs defaults) {
$ = new GetScopeAccessReviewScheduleDefinitionByIdPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param scheduleDefinitionId The id of the access review schedule definition.
*
* @return builder
*
*/
public Builder scheduleDefinitionId(String scheduleDefinitionId) {
$.scheduleDefinitionId = scheduleDefinitionId;
return this;
}
/**
* @param scope The scope of the resource.
*
* @return builder
*
*/
public Builder scope(String scope) {
$.scope = scope;
return this;
}
public GetScopeAccessReviewScheduleDefinitionByIdPlainArgs build() {
if ($.scheduleDefinitionId == null) {
throw new MissingRequiredPropertyException("GetScopeAccessReviewScheduleDefinitionByIdPlainArgs", "scheduleDefinitionId");
}
if ($.scope == null) {
throw new MissingRequiredPropertyException("GetScopeAccessReviewScheduleDefinitionByIdPlainArgs", "scope");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy