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

com.pulumi.azurenative.notificationhubs.outputs.AdmCredentialResponse 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.notificationhubs.outputs;

import com.pulumi.azurenative.notificationhubs.outputs.AdmCredentialPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;

@CustomType
public final class AdmCredentialResponse {
    /**
     * @return Description of a NotificationHub AdmCredential.
     * 
     */
    private AdmCredentialPropertiesResponse properties;

    private AdmCredentialResponse() {}
    /**
     * @return Description of a NotificationHub AdmCredential.
     * 
     */
    public AdmCredentialPropertiesResponse properties() {
        return this.properties;
    }

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

    public static Builder builder(AdmCredentialResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private AdmCredentialPropertiesResponse properties;
        public Builder() {}
        public Builder(AdmCredentialResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.properties = defaults.properties;
        }

        @CustomType.Setter
        public Builder properties(AdmCredentialPropertiesResponse properties) {
            if (properties == null) {
              throw new MissingRequiredPropertyException("AdmCredentialResponse", "properties");
            }
            this.properties = properties;
            return this;
        }
        public AdmCredentialResponse build() {
            final var _resultValue = new AdmCredentialResponse();
            _resultValue.properties = properties;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy