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

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

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

@CustomType
public final class WnsCredentialResponse {
    /**
     * @return Description of a NotificationHub WnsCredential.
     * 
     */
    private WnsCredentialPropertiesResponse properties;

    private WnsCredentialResponse() {}
    /**
     * @return Description of a NotificationHub WnsCredential.
     * 
     */
    public WnsCredentialPropertiesResponse properties() {
        return this.properties;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy