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

com.pulumi.googlenative.dataplex.v1.outputs.GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse Maven / Gradle / Ivy

// *** 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.googlenative.dataplex.v1.outputs;

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

@CustomType
public final class GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse {
    /**
     * @return The count of data items within the referenced resource.
     * 
     */
    private String dataItems;
    /**
     * @return The number of stored data bytes within the referenced resource.
     * 
     */
    private String dataSize;
    /**
     * @return The count of fileset entities within the referenced resource.
     * 
     */
    private String filesets;
    /**
     * @return The count of table entities within the referenced resource.
     * 
     */
    private String tables;

    private GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse() {}
    /**
     * @return The count of data items within the referenced resource.
     * 
     */
    public String dataItems() {
        return this.dataItems;
    }
    /**
     * @return The number of stored data bytes within the referenced resource.
     * 
     */
    public String dataSize() {
        return this.dataSize;
    }
    /**
     * @return The count of fileset entities within the referenced resource.
     * 
     */
    public String filesets() {
        return this.filesets;
    }
    /**
     * @return The count of table entities within the referenced resource.
     * 
     */
    public String tables() {
        return this.tables;
    }

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

    public static Builder builder(GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String dataItems;
        private String dataSize;
        private String filesets;
        private String tables;
        public Builder() {}
        public Builder(GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dataItems = defaults.dataItems;
    	      this.dataSize = defaults.dataSize;
    	      this.filesets = defaults.filesets;
    	      this.tables = defaults.tables;
        }

        @CustomType.Setter
        public Builder dataItems(String dataItems) {
            this.dataItems = Objects.requireNonNull(dataItems);
            return this;
        }
        @CustomType.Setter
        public Builder dataSize(String dataSize) {
            this.dataSize = Objects.requireNonNull(dataSize);
            return this;
        }
        @CustomType.Setter
        public Builder filesets(String filesets) {
            this.filesets = Objects.requireNonNull(filesets);
            return this;
        }
        @CustomType.Setter
        public Builder tables(String tables) {
            this.tables = Objects.requireNonNull(tables);
            return this;
        }
        public GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse build() {
            final var o = new GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse();
            o.dataItems = dataItems;
            o.dataSize = dataSize;
            o.filesets = filesets;
            o.tables = tables;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy