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

com.pulumi.azurenative.compute.outputs.ShareInfoElementResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.compute.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class ShareInfoElementResponse {
    /**
     * @return A relative URI containing the ID of the VM that has the disk attached.
     * 
     */
    private String vmUri;

    private ShareInfoElementResponse() {}
    /**
     * @return A relative URI containing the ID of the VM that has the disk attached.
     * 
     */
    public String vmUri() {
        return this.vmUri;
    }

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

    public static Builder builder(ShareInfoElementResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String vmUri;
        public Builder() {}
        public Builder(ShareInfoElementResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.vmUri = defaults.vmUri;
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy