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

com.pulumi.alicloud.cen.outputs.GetTransitRouterRouteTablePropagationsPropagation Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.cen.outputs;

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

@CustomType
public final class GetTransitRouterRouteTablePropagationsPropagation {
    private String id;
    /**
     * @return ID of the transit router route table association.
     * 
     */
    private String resourceId;
    /**
     * @return Type of the resource.
     * 
     */
    private String resourceType;
    /**
     * @return The status of the route table, including `Active`, `Enabling`, `Disabling`, `Deleted`.
     * 
     */
    private String status;
    /**
     * @return ID of the cen transit router attachment.
     * 
     */
    private String transitRouterAttachmentId;

    private GetTransitRouterRouteTablePropagationsPropagation() {}
    public String id() {
        return this.id;
    }
    /**
     * @return ID of the transit router route table association.
     * 
     */
    public String resourceId() {
        return this.resourceId;
    }
    /**
     * @return Type of the resource.
     * 
     */
    public String resourceType() {
        return this.resourceType;
    }
    /**
     * @return The status of the route table, including `Active`, `Enabling`, `Disabling`, `Deleted`.
     * 
     */
    public String status() {
        return this.status;
    }
    /**
     * @return ID of the cen transit router attachment.
     * 
     */
    public String transitRouterAttachmentId() {
        return this.transitRouterAttachmentId;
    }

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

    public static Builder builder(GetTransitRouterRouteTablePropagationsPropagation defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String id;
        private String resourceId;
        private String resourceType;
        private String status;
        private String transitRouterAttachmentId;
        public Builder() {}
        public Builder(GetTransitRouterRouteTablePropagationsPropagation defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.id = defaults.id;
    	      this.resourceId = defaults.resourceId;
    	      this.resourceType = defaults.resourceType;
    	      this.status = defaults.status;
    	      this.transitRouterAttachmentId = defaults.transitRouterAttachmentId;
        }

        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetTransitRouterRouteTablePropagationsPropagation", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder resourceId(String resourceId) {
            if (resourceId == null) {
              throw new MissingRequiredPropertyException("GetTransitRouterRouteTablePropagationsPropagation", "resourceId");
            }
            this.resourceId = resourceId;
            return this;
        }
        @CustomType.Setter
        public Builder resourceType(String resourceType) {
            if (resourceType == null) {
              throw new MissingRequiredPropertyException("GetTransitRouterRouteTablePropagationsPropagation", "resourceType");
            }
            this.resourceType = resourceType;
            return this;
        }
        @CustomType.Setter
        public Builder status(String status) {
            if (status == null) {
              throw new MissingRequiredPropertyException("GetTransitRouterRouteTablePropagationsPropagation", "status");
            }
            this.status = status;
            return this;
        }
        @CustomType.Setter
        public Builder transitRouterAttachmentId(String transitRouterAttachmentId) {
            if (transitRouterAttachmentId == null) {
              throw new MissingRequiredPropertyException("GetTransitRouterRouteTablePropagationsPropagation", "transitRouterAttachmentId");
            }
            this.transitRouterAttachmentId = transitRouterAttachmentId;
            return this;
        }
        public GetTransitRouterRouteTablePropagationsPropagation build() {
            final var _resultValue = new GetTransitRouterRouteTablePropagationsPropagation();
            _resultValue.id = id;
            _resultValue.resourceId = resourceId;
            _resultValue.resourceType = resourceType;
            _resultValue.status = status;
            _resultValue.transitRouterAttachmentId = transitRouterAttachmentId;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy