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

com.pulumi.azurenative.awsconnector.outputs.ChangeProgressDetailsResponse 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.awsconnector.outputs;

import com.pulumi.azurenative.awsconnector.outputs.ConfigChangeStatusEnumValueResponse;
import com.pulumi.azurenative.awsconnector.outputs.InitiatedByEnumValueResponse;
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 ChangeProgressDetailsResponse {
    /**
     * @return <p>The ID of the configuration change.</p>
     * 
     */
    private @Nullable String changeId;
    /**
     * @return <p>The current status of the configuration change.</p>
     * 
     */
    private @Nullable ConfigChangeStatusEnumValueResponse configChangeStatus;
    /**
     * @return <p>The IAM principal who initiated the configuration change.</p>
     * 
     */
    private @Nullable InitiatedByEnumValueResponse initiatedBy;
    /**
     * @return <p>The last time that the configuration change was updated.</p>
     * 
     */
    private @Nullable String lastUpdatedTime;
    /**
     * @return <p>A message corresponding to the status of the configuration change.</p>
     * 
     */
    private @Nullable String message;
    /**
     * @return <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
     * 
     */
    private @Nullable String startTime;

    private ChangeProgressDetailsResponse() {}
    /**
     * @return <p>The ID of the configuration change.</p>
     * 
     */
    public Optional changeId() {
        return Optional.ofNullable(this.changeId);
    }
    /**
     * @return <p>The current status of the configuration change.</p>
     * 
     */
    public Optional configChangeStatus() {
        return Optional.ofNullable(this.configChangeStatus);
    }
    /**
     * @return <p>The IAM principal who initiated the configuration change.</p>
     * 
     */
    public Optional initiatedBy() {
        return Optional.ofNullable(this.initiatedBy);
    }
    /**
     * @return <p>The last time that the configuration change was updated.</p>
     * 
     */
    public Optional lastUpdatedTime() {
        return Optional.ofNullable(this.lastUpdatedTime);
    }
    /**
     * @return <p>A message corresponding to the status of the configuration change.</p>
     * 
     */
    public Optional message() {
        return Optional.ofNullable(this.message);
    }
    /**
     * @return <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
     * 
     */
    public Optional startTime() {
        return Optional.ofNullable(this.startTime);
    }

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

    public static Builder builder(ChangeProgressDetailsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String changeId;
        private @Nullable ConfigChangeStatusEnumValueResponse configChangeStatus;
        private @Nullable InitiatedByEnumValueResponse initiatedBy;
        private @Nullable String lastUpdatedTime;
        private @Nullable String message;
        private @Nullable String startTime;
        public Builder() {}
        public Builder(ChangeProgressDetailsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.changeId = defaults.changeId;
    	      this.configChangeStatus = defaults.configChangeStatus;
    	      this.initiatedBy = defaults.initiatedBy;
    	      this.lastUpdatedTime = defaults.lastUpdatedTime;
    	      this.message = defaults.message;
    	      this.startTime = defaults.startTime;
        }

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

            this.changeId = changeId;
            return this;
        }
        @CustomType.Setter
        public Builder configChangeStatus(@Nullable ConfigChangeStatusEnumValueResponse configChangeStatus) {

            this.configChangeStatus = configChangeStatus;
            return this;
        }
        @CustomType.Setter
        public Builder initiatedBy(@Nullable InitiatedByEnumValueResponse initiatedBy) {

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

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

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

            this.startTime = startTime;
            return this;
        }
        public ChangeProgressDetailsResponse build() {
            final var _resultValue = new ChangeProgressDetailsResponse();
            _resultValue.changeId = changeId;
            _resultValue.configChangeStatus = configChangeStatus;
            _resultValue.initiatedBy = initiatedBy;
            _resultValue.lastUpdatedTime = lastUpdatedTime;
            _resultValue.message = message;
            _resultValue.startTime = startTime;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy