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

com.pulumi.googlenative.vmmigration.v1.outputs.ReplicationSyncResponse 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.vmmigration.v1.outputs;

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

@CustomType
public final class ReplicationSyncResponse {
    /**
     * @return The most updated snapshot created time in the source that finished replication.
     * 
     */
    private String lastSyncTime;

    private ReplicationSyncResponse() {}
    /**
     * @return The most updated snapshot created time in the source that finished replication.
     * 
     */
    public String lastSyncTime() {
        return this.lastSyncTime;
    }

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

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

        @CustomType.Setter
        public Builder lastSyncTime(String lastSyncTime) {
            this.lastSyncTime = Objects.requireNonNull(lastSyncTime);
            return this;
        }
        public ReplicationSyncResponse build() {
            final var o = new ReplicationSyncResponse();
            o.lastSyncTime = lastSyncTime;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy