-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/pip/dot-kokoro/cryptography-41.0.3
- Loading branch information
Showing
27 changed files
with
472 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/ExternalDatasetReference.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.cloud.bigquery; | ||
|
||
import com.google.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import java.io.Serializable; | ||
import javax.annotation.Nullable; | ||
|
||
/** Configures the access a dataset defined in an external metadata storage. */ | ||
@AutoValue | ||
public abstract class ExternalDatasetReference implements Serializable { | ||
|
||
public static ExternalDatasetReference.Builder newBuilder() { | ||
return new AutoValue_ExternalDatasetReference.Builder(); | ||
} | ||
|
||
static ExternalDatasetReference fromPb( | ||
com.google.api.services.bigquery.model.ExternalDatasetReference externalDatasetReference) { | ||
ExternalDatasetReference.Builder builder = newBuilder(); | ||
|
||
if (externalDatasetReference.getConnection() != null) { | ||
builder.setConnection(externalDatasetReference.getConnection()); | ||
} | ||
if (externalDatasetReference.getExternalSource() != null) { | ||
builder.setExternalSource(externalDatasetReference.getExternalSource()); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
public com.google.api.services.bigquery.model.ExternalDatasetReference toPb() { | ||
com.google.api.services.bigquery.model.ExternalDatasetReference externalDatasetReference = | ||
new com.google.api.services.bigquery.model.ExternalDatasetReference(); | ||
|
||
externalDatasetReference.setConnection(getConnection()); | ||
externalDatasetReference.setExternalSource(getExternalSource()); | ||
return externalDatasetReference; | ||
} | ||
|
||
@Nullable | ||
public abstract String getConnection(); | ||
|
||
@Nullable | ||
public abstract String getExternalSource(); | ||
|
||
/** Returns a builder for an ExternalDatasetReference. */ | ||
@VisibleForTesting | ||
public abstract ExternalDatasetReference.Builder toBuilder(); | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
/** | ||
* The connection id that is used to access the external_source. Format: | ||
* projects/{project_id}/locations/{location_id}/connections/{connection_id} * | ||
*/ | ||
public abstract ExternalDatasetReference.Builder setConnection(String connection); | ||
|
||
/** External source that backs this dataset * */ | ||
public abstract ExternalDatasetReference.Builder setExternalSource(String externalSource); | ||
|
||
/** Creates a {@code ExternalDatasetReference} object. */ | ||
public abstract ExternalDatasetReference build(); | ||
} | ||
} |
Oops, something went wrong.