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

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

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

@CustomType
public final class GetAutomationRuleResult {
    /**
     * @return The actions to execute when the automation rule is triggered.
     * 
     */
    private List> actions;
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    private ClientInfoResponse createdBy;
    /**
     * @return The time the automation rule was created.
     * 
     */
    private String createdTimeUtc;
    /**
     * @return The display name of the automation rule.
     * 
     */
    private String displayName;
    /**
     * @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 ClientInfoResponse lastModifiedBy;
    /**
     * @return The last time the automation rule was updated.
     * 
     */
    private String lastModifiedTimeUtc;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    /**
     * @return The order of execution of the automation rule.
     * 
     */
    private Integer order;
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return Describes automation rule triggering logic.
     * 
     */
    private AutomationRuleTriggeringLogicResponse triggeringLogic;
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    private String type;

    private GetAutomationRuleResult() {}
    /**
     * @return The actions to execute when the automation rule is triggered.
     * 
     */
    public List> actions() {
        return this.actions;
    }
    /**
     * @return Information on the client (user or application) that made some action
     * 
     */
    public ClientInfoResponse createdBy() {
        return this.createdBy;
    }
    /**
     * @return The time the automation rule was created.
     * 
     */
    public String createdTimeUtc() {
        return this.createdTimeUtc;
    }
    /**
     * @return The display name of the automation rule.
     * 
     */
    public String displayName() {
        return this.displayName;
    }
    /**
     * @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 ClientInfoResponse lastModifiedBy() {
        return this.lastModifiedBy;
    }
    /**
     * @return The last time the automation rule was updated.
     * 
     */
    public String lastModifiedTimeUtc() {
        return this.lastModifiedTimeUtc;
    }
    /**
     * @return The name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return The order of execution of the automation rule.
     * 
     */
    public Integer order() {
        return this.order;
    }
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @return Describes automation rule triggering logic.
     * 
     */
    public AutomationRuleTriggeringLogicResponse triggeringLogic() {
        return this.triggeringLogic;
    }
    /**
     * @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(GetAutomationRuleResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List> actions;
        private ClientInfoResponse createdBy;
        private String createdTimeUtc;
        private String displayName;
        private @Nullable String etag;
        private String id;
        private ClientInfoResponse lastModifiedBy;
        private String lastModifiedTimeUtc;
        private String name;
        private Integer order;
        private SystemDataResponse systemData;
        private AutomationRuleTriggeringLogicResponse triggeringLogic;
        private String type;
        public Builder() {}
        public Builder(GetAutomationRuleResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.actions = defaults.actions;
    	      this.createdBy = defaults.createdBy;
    	      this.createdTimeUtc = defaults.createdTimeUtc;
    	      this.displayName = defaults.displayName;
    	      this.etag = defaults.etag;
    	      this.id = defaults.id;
    	      this.lastModifiedBy = defaults.lastModifiedBy;
    	      this.lastModifiedTimeUtc = defaults.lastModifiedTimeUtc;
    	      this.name = defaults.name;
    	      this.order = defaults.order;
    	      this.systemData = defaults.systemData;
    	      this.triggeringLogic = defaults.triggeringLogic;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder actions(List> actions) {
            if (actions == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "actions");
            }
            this.actions = actions;
            return this;
        }
        public Builder actions(Either... actions) {
            return actions(List.of(actions));
        }
        @CustomType.Setter
        public Builder createdBy(ClientInfoResponse createdBy) {
            if (createdBy == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "createdBy");
            }
            this.createdBy = createdBy;
            return this;
        }
        @CustomType.Setter
        public Builder createdTimeUtc(String createdTimeUtc) {
            if (createdTimeUtc == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "createdTimeUtc");
            }
            this.createdTimeUtc = createdTimeUtc;
            return this;
        }
        @CustomType.Setter
        public Builder displayName(String displayName) {
            if (displayName == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "displayName");
            }
            this.displayName = displayName;
            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("GetAutomationRuleResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder lastModifiedBy(ClientInfoResponse lastModifiedBy) {
            if (lastModifiedBy == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "lastModifiedBy");
            }
            this.lastModifiedBy = lastModifiedBy;
            return this;
        }
        @CustomType.Setter
        public Builder lastModifiedTimeUtc(String lastModifiedTimeUtc) {
            if (lastModifiedTimeUtc == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "lastModifiedTimeUtc");
            }
            this.lastModifiedTimeUtc = lastModifiedTimeUtc;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder order(Integer order) {
            if (order == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "order");
            }
            this.order = order;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder triggeringLogic(AutomationRuleTriggeringLogicResponse triggeringLogic) {
            if (triggeringLogic == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "triggeringLogic");
            }
            this.triggeringLogic = triggeringLogic;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetAutomationRuleResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetAutomationRuleResult build() {
            final var _resultValue = new GetAutomationRuleResult();
            _resultValue.actions = actions;
            _resultValue.createdBy = createdBy;
            _resultValue.createdTimeUtc = createdTimeUtc;
            _resultValue.displayName = displayName;
            _resultValue.etag = etag;
            _resultValue.id = id;
            _resultValue.lastModifiedBy = lastModifiedBy;
            _resultValue.lastModifiedTimeUtc = lastModifiedTimeUtc;
            _resultValue.name = name;
            _resultValue.order = order;
            _resultValue.systemData = systemData;
            _resultValue.triggeringLogic = triggeringLogic;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy