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

com.pulumi.azurenative.customerinsights.inputs.GetImageUploadUrlForDataPlainArgs 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.customerinsights.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetImageUploadUrlForDataPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetImageUploadUrlForDataPlainArgs Empty = new GetImageUploadUrlForDataPlainArgs();

    /**
     * Type of entity. Can be Profile or Interaction.
     * 
     */
    @Import(name="entityType")
    private @Nullable String entityType;

    /**
     * @return Type of entity. Can be Profile or Interaction.
     * 
     */
    public Optional entityType() {
        return Optional.ofNullable(this.entityType);
    }

    /**
     * Name of the entity type.
     * 
     */
    @Import(name="entityTypeName")
    private @Nullable String entityTypeName;

    /**
     * @return Name of the entity type.
     * 
     */
    public Optional entityTypeName() {
        return Optional.ofNullable(this.entityTypeName);
    }

    /**
     * The name of the hub.
     * 
     */
    @Import(name="hubName", required=true)
    private String hubName;

    /**
     * @return The name of the hub.
     * 
     */
    public String hubName() {
        return this.hubName;
    }

    /**
     * Relative path of the image.
     * 
     */
    @Import(name="relativePath")
    private @Nullable String relativePath;

    /**
     * @return Relative path of the image.
     * 
     */
    public Optional relativePath() {
        return Optional.ofNullable(this.relativePath);
    }

    /**
     * The name of the resource group.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetImageUploadUrlForDataPlainArgs() {}

    private GetImageUploadUrlForDataPlainArgs(GetImageUploadUrlForDataPlainArgs $) {
        this.entityType = $.entityType;
        this.entityTypeName = $.entityTypeName;
        this.hubName = $.hubName;
        this.relativePath = $.relativePath;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetImageUploadUrlForDataPlainArgs $;

        public Builder() {
            $ = new GetImageUploadUrlForDataPlainArgs();
        }

        public Builder(GetImageUploadUrlForDataPlainArgs defaults) {
            $ = new GetImageUploadUrlForDataPlainArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param entityType Type of entity. Can be Profile or Interaction.
         * 
         * @return builder
         * 
         */
        public Builder entityType(@Nullable String entityType) {
            $.entityType = entityType;
            return this;
        }

        /**
         * @param entityTypeName Name of the entity type.
         * 
         * @return builder
         * 
         */
        public Builder entityTypeName(@Nullable String entityTypeName) {
            $.entityTypeName = entityTypeName;
            return this;
        }

        /**
         * @param hubName The name of the hub.
         * 
         * @return builder
         * 
         */
        public Builder hubName(String hubName) {
            $.hubName = hubName;
            return this;
        }

        /**
         * @param relativePath Relative path of the image.
         * 
         * @return builder
         * 
         */
        public Builder relativePath(@Nullable String relativePath) {
            $.relativePath = relativePath;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetImageUploadUrlForDataPlainArgs build() {
            if ($.hubName == null) {
                throw new MissingRequiredPropertyException("GetImageUploadUrlForDataPlainArgs", "hubName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetImageUploadUrlForDataPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy