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

com.pulumi.azurenative.securityinsights.outputs.GetIncidentTaskResult 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.securityinsights.outputs;

import com.pulumi.azurenative.securityinsights.outputs.ClientInfoResponse;
import com.pulumi.azurenative.securityinsights.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class GetIncidentTaskResult {
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    private @Nullable ClientInfoResponse createdBy;
    /**
     * @return The time the task was created
     * 
     */
    private String createdTimeUtc;
    /**
     * @return The description of the task
     * 
     */
    private @Nullable String description;
    /**
     * @return Etag of the azure resource
     * 
     */
    private @Nullable String etag;
    /**
     * @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
     * 
     */
    private String id;
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    private @Nullable ClientInfoResponse lastModifiedBy;
    /**
     * @return The last time the task was updated
     * 
     */
    private String lastModifiedTimeUtc;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    private String status;
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return The title of the task
     * 
     */
    private String title;
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    private String type;

    private GetIncidentTaskResult() {}
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    public Optional createdBy() {
        return Optional.ofNullable(this.createdBy);
    }
    /**
     * @return The time the task was created
     * 
     */
    public String createdTimeUtc() {
        return this.createdTimeUtc;
    }
    /**
     * @return The description of the task
     * 
     */
    public Optional description() {
        return Optional.ofNullable(this.description);
    }
    /**
     * @return Etag of the azure resource
     * 
     */
    public Optional etag() {
        return Optional.ofNullable(this.etag);
    }
    /**
     * @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    public Optional lastModifiedBy() {
        return Optional.ofNullable(this.lastModifiedBy);
    }
    /**
     * @return The last time the task was updated
     * 
     */
    public String lastModifiedTimeUtc() {
        return this.lastModifiedTimeUtc;
    }
    /**
     * @return The name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    public String status() {
        return this.status;
    }
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @return The title of the task
     * 
     */
    public String title() {
        return this.title;
    }
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    public String type() {
        return this.type;
    }

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

    public static Builder builder(GetIncidentTaskResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable ClientInfoResponse createdBy;
        private String createdTimeUtc;
        private @Nullable String description;
        private @Nullable String etag;
        private String id;
        private @Nullable ClientInfoResponse lastModifiedBy;
        private String lastModifiedTimeUtc;
        private String name;
        private String status;
        private SystemDataResponse systemData;
        private String title;
        private String type;
        public Builder() {}
        public Builder(GetIncidentTaskResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.createdBy = defaults.createdBy;
    	      this.createdTimeUtc = defaults.createdTimeUtc;
    	      this.description = defaults.description;
    	      this.etag = defaults.etag;
    	      this.id = defaults.id;
    	      this.lastModifiedBy = defaults.lastModifiedBy;
    	      this.lastModifiedTimeUtc = defaults.lastModifiedTimeUtc;
    	      this.name = defaults.name;
    	      this.status = defaults.status;
    	      this.systemData = defaults.systemData;
    	      this.title = defaults.title;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder createdBy(@Nullable ClientInfoResponse createdBy) {

            this.createdBy = createdBy;
            return this;
        }
        @CustomType.Setter
        public Builder createdTimeUtc(String createdTimeUtc) {
            if (createdTimeUtc == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "createdTimeUtc");
            }
            this.createdTimeUtc = createdTimeUtc;
            return this;
        }
        @CustomType.Setter
        public Builder description(@Nullable String description) {

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

            this.etag = etag;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder lastModifiedBy(@Nullable ClientInfoResponse lastModifiedBy) {

            this.lastModifiedBy = lastModifiedBy;
            return this;
        }
        @CustomType.Setter
        public Builder lastModifiedTimeUtc(String lastModifiedTimeUtc) {
            if (lastModifiedTimeUtc == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "lastModifiedTimeUtc");
            }
            this.lastModifiedTimeUtc = lastModifiedTimeUtc;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder status(String status) {
            if (status == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "status");
            }
            this.status = status;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder title(String title) {
            if (title == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "title");
            }
            this.title = title;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetIncidentTaskResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetIncidentTaskResult build() {
            final var _resultValue = new GetIncidentTaskResult();
            _resultValue.createdBy = createdBy;
            _resultValue.createdTimeUtc = createdTimeUtc;
            _resultValue.description = description;
            _resultValue.etag = etag;
            _resultValue.id = id;
            _resultValue.lastModifiedBy = lastModifiedBy;
            _resultValue.lastModifiedTimeUtc = lastModifiedTimeUtc;
            _resultValue.name = name;
            _resultValue.status = status;
            _resultValue.systemData = systemData;
            _resultValue.title = title;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy