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

com.pulumi.azurenative.migrate.outputs.ACRPropertiesResponse 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.migrate.outputs;

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

@CustomType
public final class ACRPropertiesResponse {
    /**
     * @return Gets or sets the azure container registry name.
     * 
     */
    private @Nullable String registryName;
    /**
     * @return Gets or sets the resource group of the resource.
     * 
     */
    private @Nullable String resourceGroup;
    /**
     * @return Gets or sets the subscription id of the resource.
     * 
     */
    private @Nullable String subscriptionId;
    /**
     * @return Gets or sets the tenant id.
     * 
     */
    private @Nullable String tenantId;

    private ACRPropertiesResponse() {}
    /**
     * @return Gets or sets the azure container registry name.
     * 
     */
    public Optional registryName() {
        return Optional.ofNullable(this.registryName);
    }
    /**
     * @return Gets or sets the resource group of the resource.
     * 
     */
    public Optional resourceGroup() {
        return Optional.ofNullable(this.resourceGroup);
    }
    /**
     * @return Gets or sets the subscription id of the resource.
     * 
     */
    public Optional subscriptionId() {
        return Optional.ofNullable(this.subscriptionId);
    }
    /**
     * @return Gets or sets the tenant id.
     * 
     */
    public Optional tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

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

    public static Builder builder(ACRPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String registryName;
        private @Nullable String resourceGroup;
        private @Nullable String subscriptionId;
        private @Nullable String tenantId;
        public Builder() {}
        public Builder(ACRPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.registryName = defaults.registryName;
    	      this.resourceGroup = defaults.resourceGroup;
    	      this.subscriptionId = defaults.subscriptionId;
    	      this.tenantId = defaults.tenantId;
        }

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

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

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

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

            this.tenantId = tenantId;
            return this;
        }
        public ACRPropertiesResponse build() {
            final var _resultValue = new ACRPropertiesResponse();
            _resultValue.registryName = registryName;
            _resultValue.resourceGroup = resourceGroup;
            _resultValue.subscriptionId = subscriptionId;
            _resultValue.tenantId = tenantId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy