com.pulumi.googlenative.storagetransfer.v1.outputs.TransferManifestResponse 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.storagetransfer.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class TransferManifestResponse {
/**
* @return Specifies the path to the manifest in Cloud Storage. The Google-managed service account for the transfer must have `storage.objects.get` permission for this object. An example path is `gs://bucket_name/path/manifest.csv`.
*
*/
private String location;
private TransferManifestResponse() {}
/**
* @return Specifies the path to the manifest in Cloud Storage. The Google-managed service account for the transfer must have `storage.objects.get` permission for this object. An example path is `gs://bucket_name/path/manifest.csv`.
*
*/
public String location() {
return this.location;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TransferManifestResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String location;
public Builder() {}
public Builder(TransferManifestResponse defaults) {
Objects.requireNonNull(defaults);
this.location = defaults.location;
}
@CustomType.Setter
public Builder location(String location) {
this.location = Objects.requireNonNull(location);
return this;
}
public TransferManifestResponse build() {
final var o = new TransferManifestResponse();
o.location = location;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy