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

com.pulumi.azurenative.apimanagement.WorkspacePolicyFragmentArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.apimanagement;

import com.pulumi.azurenative.apimanagement.enums.PolicyFragmentContentFormat;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WorkspacePolicyFragmentArgs extends com.pulumi.resources.ResourceArgs {

    public static final WorkspacePolicyFragmentArgs Empty = new WorkspacePolicyFragmentArgs();

    /**
     * Policy fragment description.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Policy fragment description.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * Format of the policy fragment content.
     * 
     */
    @Import(name="format")
    private @Nullable Output> format;

    /**
     * @return Format of the policy fragment content.
     * 
     */
    public Optional>> format() {
        return Optional.ofNullable(this.format);
    }

    /**
     * A resource identifier.
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return A resource identifier.
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

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

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the API Management service.
     * 
     */
    @Import(name="serviceName", required=true)
    private Output serviceName;

    /**
     * @return The name of the API Management service.
     * 
     */
    public Output serviceName() {
        return this.serviceName;
    }

    /**
     * Contents of the policy fragment.
     * 
     */
    @Import(name="value", required=true)
    private Output value;

    /**
     * @return Contents of the policy fragment.
     * 
     */
    public Output value() {
        return this.value;
    }

    /**
     * Workspace identifier. Must be unique in the current API Management service instance.
     * 
     */
    @Import(name="workspaceId", required=true)
    private Output workspaceId;

    /**
     * @return Workspace identifier. Must be unique in the current API Management service instance.
     * 
     */
    public Output workspaceId() {
        return this.workspaceId;
    }

    private WorkspacePolicyFragmentArgs() {}

    private WorkspacePolicyFragmentArgs(WorkspacePolicyFragmentArgs $) {
        this.description = $.description;
        this.format = $.format;
        this.id = $.id;
        this.resourceGroupName = $.resourceGroupName;
        this.serviceName = $.serviceName;
        this.value = $.value;
        this.workspaceId = $.workspaceId;
    }

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

    public static final class Builder {
        private WorkspacePolicyFragmentArgs $;

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

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

        /**
         * @param description Policy fragment description.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Policy fragment description.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param format Format of the policy fragment content.
         * 
         * @return builder
         * 
         */
        public Builder format(@Nullable Output> format) {
            $.format = format;
            return this;
        }

        /**
         * @param format Format of the policy fragment content.
         * 
         * @return builder
         * 
         */
        public Builder format(Either format) {
            return format(Output.of(format));
        }

        /**
         * @param format Format of the policy fragment content.
         * 
         * @return builder
         * 
         */
        public Builder format(String format) {
            return format(Either.ofLeft(format));
        }

        /**
         * @param format Format of the policy fragment content.
         * 
         * @return builder
         * 
         */
        public Builder format(PolicyFragmentContentFormat format) {
            return format(Either.ofRight(format));
        }

        /**
         * @param id A resource identifier.
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id A resource identifier.
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

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

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param serviceName The name of the API Management service.
         * 
         * @return builder
         * 
         */
        public Builder serviceName(Output serviceName) {
            $.serviceName = serviceName;
            return this;
        }

        /**
         * @param serviceName The name of the API Management service.
         * 
         * @return builder
         * 
         */
        public Builder serviceName(String serviceName) {
            return serviceName(Output.of(serviceName));
        }

        /**
         * @param value Contents of the policy fragment.
         * 
         * @return builder
         * 
         */
        public Builder value(Output value) {
            $.value = value;
            return this;
        }

        /**
         * @param value Contents of the policy fragment.
         * 
         * @return builder
         * 
         */
        public Builder value(String value) {
            return value(Output.of(value));
        }

        /**
         * @param workspaceId Workspace identifier. Must be unique in the current API Management service instance.
         * 
         * @return builder
         * 
         */
        public Builder workspaceId(Output workspaceId) {
            $.workspaceId = workspaceId;
            return this;
        }

        /**
         * @param workspaceId Workspace identifier. Must be unique in the current API Management service instance.
         * 
         * @return builder
         * 
         */
        public Builder workspaceId(String workspaceId) {
            return workspaceId(Output.of(workspaceId));
        }

        public WorkspacePolicyFragmentArgs build() {
            $.format = Codegen.stringProp("format").left(PolicyFragmentContentFormat.class).output().arg($.format).def("xml").getNullable();
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("WorkspacePolicyFragmentArgs", "resourceGroupName");
            }
            if ($.serviceName == null) {
                throw new MissingRequiredPropertyException("WorkspacePolicyFragmentArgs", "serviceName");
            }
            if ($.value == null) {
                throw new MissingRequiredPropertyException("WorkspacePolicyFragmentArgs", "value");
            }
            if ($.workspaceId == null) {
                throw new MissingRequiredPropertyException("WorkspacePolicyFragmentArgs", "workspaceId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy