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

com.pulumi.kubernetes.networking.v1beta1.outputs.ParentReferencePatch Maven / Gradle / Ivy

There is a newer version: 4.19.0-alpha.1730750641
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.kubernetes.networking.v1beta1.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 ParentReferencePatch {
    /**
     * @return Group is the group of the object being referenced.
     * 
     */
    private @Nullable String group;
    /**
     * @return Name is the name of the object being referenced.
     * 
     */
    private @Nullable String name;
    /**
     * @return Namespace is the namespace of the object being referenced.
     * 
     */
    private @Nullable String namespace;
    /**
     * @return Resource is the resource of the object being referenced.
     * 
     */
    private @Nullable String resource;

    private ParentReferencePatch() {}
    /**
     * @return Group is the group of the object being referenced.
     * 
     */
    public Optional group() {
        return Optional.ofNullable(this.group);
    }
    /**
     * @return Name is the name of the object being referenced.
     * 
     */
    public Optional name() {
        return Optional.ofNullable(this.name);
    }
    /**
     * @return Namespace is the namespace of the object being referenced.
     * 
     */
    public Optional namespace() {
        return Optional.ofNullable(this.namespace);
    }
    /**
     * @return Resource is the resource of the object being referenced.
     * 
     */
    public Optional resource() {
        return Optional.ofNullable(this.resource);
    }

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

    public static Builder builder(ParentReferencePatch defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String group;
        private @Nullable String name;
        private @Nullable String namespace;
        private @Nullable String resource;
        public Builder() {}
        public Builder(ParentReferencePatch defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.group = defaults.group;
    	      this.name = defaults.name;
    	      this.namespace = defaults.namespace;
    	      this.resource = defaults.resource;
        }

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

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

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

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

            this.resource = resource;
            return this;
        }
        public ParentReferencePatch build() {
            final var _resultValue = new ParentReferencePatch();
            _resultValue.group = group;
            _resultValue.name = name;
            _resultValue.namespace = namespace;
            _resultValue.resource = resource;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy