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

com.pulumi.azurenative.cloudngfw.outputs.GetLocalRulestackSupportInfoResult 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.cloudngfw.outputs;

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

@CustomType
public final class GetLocalRulestackSupportInfoResult {
    /**
     * @return Support account associated with given resource
     * 
     */
    private @Nullable String accountId;
    /**
     * @return account registered in Customer Support Portal
     * 
     */
    private @Nullable String accountRegistered;
    /**
     * @return Product usage is in free trial period
     * 
     */
    private @Nullable String freeTrial;
    /**
     * @return Free trial credit remaining
     * 
     */
    private @Nullable Integer freeTrialCreditLeft;
    /**
     * @return Free trial days remaining
     * 
     */
    private @Nullable Integer freeTrialDaysLeft;
    /**
     * @return URL for paloaltonetworks live community
     * 
     */
    private @Nullable String helpURL;
    /**
     * @return product Serial associated with given resource
     * 
     */
    private @Nullable String productSerial;
    /**
     * @return product SKU associated with given resource
     * 
     */
    private @Nullable String productSku;
    /**
     * @return URL for registering product in paloaltonetworks Customer Service Portal
     * 
     */
    private @Nullable String registerURL;
    /**
     * @return URL for paloaltonetworks Customer Service Portal
     * 
     */
    private @Nullable String supportURL;
    /**
     * @return user domain is supported in Customer Support Portal
     * 
     */
    private @Nullable String userDomainSupported;
    /**
     * @return user registered in Customer Support Portal
     * 
     */
    private @Nullable String userRegistered;

    private GetLocalRulestackSupportInfoResult() {}
    /**
     * @return Support account associated with given resource
     * 
     */
    public Optional accountId() {
        return Optional.ofNullable(this.accountId);
    }
    /**
     * @return account registered in Customer Support Portal
     * 
     */
    public Optional accountRegistered() {
        return Optional.ofNullable(this.accountRegistered);
    }
    /**
     * @return Product usage is in free trial period
     * 
     */
    public Optional freeTrial() {
        return Optional.ofNullable(this.freeTrial);
    }
    /**
     * @return Free trial credit remaining
     * 
     */
    public Optional freeTrialCreditLeft() {
        return Optional.ofNullable(this.freeTrialCreditLeft);
    }
    /**
     * @return Free trial days remaining
     * 
     */
    public Optional freeTrialDaysLeft() {
        return Optional.ofNullable(this.freeTrialDaysLeft);
    }
    /**
     * @return URL for paloaltonetworks live community
     * 
     */
    public Optional helpURL() {
        return Optional.ofNullable(this.helpURL);
    }
    /**
     * @return product Serial associated with given resource
     * 
     */
    public Optional productSerial() {
        return Optional.ofNullable(this.productSerial);
    }
    /**
     * @return product SKU associated with given resource
     * 
     */
    public Optional productSku() {
        return Optional.ofNullable(this.productSku);
    }
    /**
     * @return URL for registering product in paloaltonetworks Customer Service Portal
     * 
     */
    public Optional registerURL() {
        return Optional.ofNullable(this.registerURL);
    }
    /**
     * @return URL for paloaltonetworks Customer Service Portal
     * 
     */
    public Optional supportURL() {
        return Optional.ofNullable(this.supportURL);
    }
    /**
     * @return user domain is supported in Customer Support Portal
     * 
     */
    public Optional userDomainSupported() {
        return Optional.ofNullable(this.userDomainSupported);
    }
    /**
     * @return user registered in Customer Support Portal
     * 
     */
    public Optional userRegistered() {
        return Optional.ofNullable(this.userRegistered);
    }

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

    public static Builder builder(GetLocalRulestackSupportInfoResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String accountId;
        private @Nullable String accountRegistered;
        private @Nullable String freeTrial;
        private @Nullable Integer freeTrialCreditLeft;
        private @Nullable Integer freeTrialDaysLeft;
        private @Nullable String helpURL;
        private @Nullable String productSerial;
        private @Nullable String productSku;
        private @Nullable String registerURL;
        private @Nullable String supportURL;
        private @Nullable String userDomainSupported;
        private @Nullable String userRegistered;
        public Builder() {}
        public Builder(GetLocalRulestackSupportInfoResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.accountId = defaults.accountId;
    	      this.accountRegistered = defaults.accountRegistered;
    	      this.freeTrial = defaults.freeTrial;
    	      this.freeTrialCreditLeft = defaults.freeTrialCreditLeft;
    	      this.freeTrialDaysLeft = defaults.freeTrialDaysLeft;
    	      this.helpURL = defaults.helpURL;
    	      this.productSerial = defaults.productSerial;
    	      this.productSku = defaults.productSku;
    	      this.registerURL = defaults.registerURL;
    	      this.supportURL = defaults.supportURL;
    	      this.userDomainSupported = defaults.userDomainSupported;
    	      this.userRegistered = defaults.userRegistered;
        }

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

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

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

            this.freeTrial = freeTrial;
            return this;
        }
        @CustomType.Setter
        public Builder freeTrialCreditLeft(@Nullable Integer freeTrialCreditLeft) {

            this.freeTrialCreditLeft = freeTrialCreditLeft;
            return this;
        }
        @CustomType.Setter
        public Builder freeTrialDaysLeft(@Nullable Integer freeTrialDaysLeft) {

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

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

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

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

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

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

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

            this.userRegistered = userRegistered;
            return this;
        }
        public GetLocalRulestackSupportInfoResult build() {
            final var _resultValue = new GetLocalRulestackSupportInfoResult();
            _resultValue.accountId = accountId;
            _resultValue.accountRegistered = accountRegistered;
            _resultValue.freeTrial = freeTrial;
            _resultValue.freeTrialCreditLeft = freeTrialCreditLeft;
            _resultValue.freeTrialDaysLeft = freeTrialDaysLeft;
            _resultValue.helpURL = helpURL;
            _resultValue.productSerial = productSerial;
            _resultValue.productSku = productSku;
            _resultValue.registerURL = registerURL;
            _resultValue.supportURL = supportURL;
            _resultValue.userDomainSupported = userDomainSupported;
            _resultValue.userRegistered = userRegistered;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy