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

Commit

Permalink
docs: Fix NOT_STARTED state documentation in MigrationJob resource (#123
Browse files Browse the repository at this point in the history
)

* docs: Fix NOT_STARTED state documentation in MigrationJob resource

PiperOrigin-RevId: 402280922

Source-Link: googleapis/googleapis@ae3a4a2

Source-Link: googleapis/googleapis-gen@68fcede
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjhmY2VkZWViNTI5NTkwNmFkYjQwOTQ3YWJjNDZlYjg3OTQ4ZjUwMyJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Oct 11, 2021
1 parent aaf7d80 commit 6f42d60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
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

0 comments on commit 6f42d60

Please sign in to comment.