Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

docs: Fix NOT_STARTED state documentation in MigrationJob resource #123

Merged
merged 2 commits into from Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -507,7 +507,9 @@ public static List<String> getDefaultServiceScopes() {

/** Returns a builder for the default credentials for this service. */
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() {
return GoogleCredentialsProvider.newBuilder().setScopesToApply(DEFAULT_SERVICE_SCOPES);
return GoogleCredentialsProvider.newBuilder()
.setScopesToApply(DEFAULT_SERVICE_SCOPES)
.setUseJwtAccessWithScope(true);
}

/** Returns a builder for the default ChannelProvider for this service. */
Expand Down
Expand Up @@ -411,7 +411,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
*
*
* <pre>
* The migration job is created, not started and is fully editable.
* The migration job is created and not started.
* </pre>
*
* <code>NOT_STARTED = 4;</code>
Expand Down Expand Up @@ -574,7 +574,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
*
*
* <pre>
* The migration job is created, not started and is fully editable.
* The migration job is created and not started.
* </pre>
*
* <code>NOT_STARTED = 4;</code>
Expand Down
Expand Up @@ -390,7 +390,7 @@ message MigrationJob {
// The migration job is being created.
CREATING = 3;

// The migration job is created, not started and is fully editable.
// The migration job is created and not started.
NOT_STARTED = 4;

// The migration job is running.
Expand Down