Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update timeouts and documentation #2683

Merged
merged 1 commit into from
Feb 11, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
455 changes: 255 additions & 200 deletions Bigtable/metadata/Admin/V2/BigtableInstanceAdmin.php

Large diffs are not rendered by default.

397 changes: 225 additions & 172 deletions Bigtable/metadata/Admin/V2/BigtableTableAdmin.php

Large diffs are not rendered by default.

104 changes: 60 additions & 44 deletions Bigtable/metadata/Admin/V2/Instance.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 45 additions & 34 deletions Bigtable/metadata/Admin/V2/Table.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Bigtable/src/Admin/V2/AppProfile.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Bigtable/src/Admin/V2/AppProfile/SingleClusterRouting.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions Bigtable/src/Admin/V2/BigtableInstanceAdminGrpcClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// GENERATED CODE -- DO NOT EDIT!

// Original file comments:
// Copyright 2018 Google LLC.
// Copyright 2019 Google LLC.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -78,7 +78,9 @@ public function ListInstances(\Google\Cloud\Bigtable\Admin\V2\ListInstancesReque
}

/**
* Updates an instance within a project.
* Updates an instance within a project. This method updates only the display
* name and type for an Instance. To update other Instance properties, such as
* labels, use PartialUpdateInstance.
* @param \Google\Cloud\Bigtable\Admin\V2\Instance $argument input argument
* @param array $metadata metadata
* @param array $options call options
Expand All @@ -92,7 +94,8 @@ public function UpdateInstance(\Google\Cloud\Bigtable\Admin\V2\Instance $argumen
}

/**
* Partially updates an instance within a project.
* Partially updates an instance within a project. This method can modify all
* fields of an Instance and is the preferred way to update an Instance.
* @param \Google\Cloud\Bigtable\Admin\V2\PartialUpdateInstanceRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
Expand Down
Loading