All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.labservices.outputs.RosterProfileResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.labservices.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class RosterProfileResponse {
    /**
     * @return The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode.
     * 
     */
    private @Nullable String activeDirectoryGroupId;
    /**
     * @return The base URI identifying the lms instance.
     * 
     */
    private @Nullable String lmsInstance;
    /**
     * @return The unique id of the azure lab services tool in the lms.
     * 
     */
    private @Nullable String ltiClientId;
    /**
     * @return The unique context identifier for the lab in the lms.
     * 
     */
    private @Nullable String ltiContextId;
    /**
     * @return The uri of the names and roles service endpoint on the lms for the class attached to this lab.
     * 
     */
    private @Nullable String ltiRosterEndpoint;

    private RosterProfileResponse() {}
    /**
     * @return The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode.
     * 
     */
    public Optional activeDirectoryGroupId() {
        return Optional.ofNullable(this.activeDirectoryGroupId);
    }
    /**
     * @return The base URI identifying the lms instance.
     * 
     */
    public Optional lmsInstance() {
        return Optional.ofNullable(this.lmsInstance);
    }
    /**
     * @return The unique id of the azure lab services tool in the lms.
     * 
     */
    public Optional ltiClientId() {
        return Optional.ofNullable(this.ltiClientId);
    }
    /**
     * @return The unique context identifier for the lab in the lms.
     * 
     */
    public Optional ltiContextId() {
        return Optional.ofNullable(this.ltiContextId);
    }
    /**
     * @return The uri of the names and roles service endpoint on the lms for the class attached to this lab.
     * 
     */
    public Optional ltiRosterEndpoint() {
        return Optional.ofNullable(this.ltiRosterEndpoint);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(RosterProfileResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String activeDirectoryGroupId;
        private @Nullable String lmsInstance;
        private @Nullable String ltiClientId;
        private @Nullable String ltiContextId;
        private @Nullable String ltiRosterEndpoint;
        public Builder() {}
        public Builder(RosterProfileResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.activeDirectoryGroupId = defaults.activeDirectoryGroupId;
    	      this.lmsInstance = defaults.lmsInstance;
    	      this.ltiClientId = defaults.ltiClientId;
    	      this.ltiContextId = defaults.ltiContextId;
    	      this.ltiRosterEndpoint = defaults.ltiRosterEndpoint;
        }

        @CustomType.Setter
        public Builder activeDirectoryGroupId(@Nullable String activeDirectoryGroupId) {

            this.activeDirectoryGroupId = activeDirectoryGroupId;
            return this;
        }
        @CustomType.Setter
        public Builder lmsInstance(@Nullable String lmsInstance) {

            this.lmsInstance = lmsInstance;
            return this;
        }
        @CustomType.Setter
        public Builder ltiClientId(@Nullable String ltiClientId) {

            this.ltiClientId = ltiClientId;
            return this;
        }
        @CustomType.Setter
        public Builder ltiContextId(@Nullable String ltiContextId) {

            this.ltiContextId = ltiContextId;
            return this;
        }
        @CustomType.Setter
        public Builder ltiRosterEndpoint(@Nullable String ltiRosterEndpoint) {

            this.ltiRosterEndpoint = ltiRosterEndpoint;
            return this;
        }
        public RosterProfileResponse build() {
            final var _resultValue = new RosterProfileResponse();
            _resultValue.activeDirectoryGroupId = activeDirectoryGroupId;
            _resultValue.lmsInstance = lmsInstance;
            _resultValue.ltiClientId = ltiClientId;
            _resultValue.ltiContextId = ltiContextId;
            _resultValue.ltiRosterEndpoint = ltiRosterEndpoint;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy