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

com.pulumi.azurenative.compute.outputs.SystemDataResponse Maven / Gradle / Ivy

There is a newer version: 2.78.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.compute.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class SystemDataResponse {
    /**
     * @return Specifies the time in UTC at which the Cloud Service (extended support) resource was created. <br />Minimum api-version: 2022-04-04.
     * 
     */
    private String createdAt;
    /**
     * @return Specifies the time in UTC at which the Cloud Service (extended support) resource was last modified. <br />Minimum api-version: 2022-04-04.
     * 
     */
    private String lastModifiedAt;

    private SystemDataResponse() {}
    /**
     * @return Specifies the time in UTC at which the Cloud Service (extended support) resource was created. <br />Minimum api-version: 2022-04-04.
     * 
     */
    public String createdAt() {
        return this.createdAt;
    }
    /**
     * @return Specifies the time in UTC at which the Cloud Service (extended support) resource was last modified. <br />Minimum api-version: 2022-04-04.
     * 
     */
    public String lastModifiedAt() {
        return this.lastModifiedAt;
    }

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

    public static Builder builder(SystemDataResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String createdAt;
        private String lastModifiedAt;
        public Builder() {}
        public Builder(SystemDataResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.createdAt = defaults.createdAt;
    	      this.lastModifiedAt = defaults.lastModifiedAt;
        }

        @CustomType.Setter
        public Builder createdAt(String createdAt) {
            if (createdAt == null) {
              throw new MissingRequiredPropertyException("SystemDataResponse", "createdAt");
            }
            this.createdAt = createdAt;
            return this;
        }
        @CustomType.Setter
        public Builder lastModifiedAt(String lastModifiedAt) {
            if (lastModifiedAt == null) {
              throw new MissingRequiredPropertyException("SystemDataResponse", "lastModifiedAt");
            }
            this.lastModifiedAt = lastModifiedAt;
            return this;
        }
        public SystemDataResponse build() {
            final var _resultValue = new SystemDataResponse();
            _resultValue.createdAt = createdAt;
            _resultValue.lastModifiedAt = lastModifiedAt;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy