Skip to content

Commit 911ebf7

Browse files
1 parent 3ff42fe commit 911ebf7

6 files changed

+259
-1
lines changed

src/Spanner.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,17 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
700700
'databases',
701701
[
702702
'methods' => [
703-
'changequorum' => [
703+
'addSplitPoints' => [
704+
'path' => 'v1/{+database}:addSplitPoints',
705+
'httpMethod' => 'POST',
706+
'parameters' => [
707+
'database' => [
708+
'location' => 'path',
709+
'type' => 'string',
710+
'required' => true,
711+
],
712+
],
713+
],'changequorum' => [
704714
'path' => 'v1/{+name}:changequorum',
705715
'httpMethod' => 'POST',
706716
'parameters' => [

src/Spanner/AddSplitPointsRequest.php

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Spanner;
19+
20+
class AddSplitPointsRequest extends \Google\Collection
21+
{
22+
protected $collection_key = 'splitPoints';
23+
/**
24+
* @var string
25+
*/
26+
public $initiator;
27+
protected $splitPointsType = SplitPoints::class;
28+
protected $splitPointsDataType = 'array';
29+
30+
/**
31+
* @param string
32+
*/
33+
public function setInitiator($initiator)
34+
{
35+
$this->initiator = $initiator;
36+
}
37+
/**
38+
* @return string
39+
*/
40+
public function getInitiator()
41+
{
42+
return $this->initiator;
43+
}
44+
/**
45+
* @param SplitPoints[]
46+
*/
47+
public function setSplitPoints($splitPoints)
48+
{
49+
$this->splitPoints = $splitPoints;
50+
}
51+
/**
52+
* @return SplitPoints[]
53+
*/
54+
public function getSplitPoints()
55+
{
56+
return $this->splitPoints;
57+
}
58+
}
59+
60+
// Adding a class alias for backwards compatibility with the previous class name.
61+
class_alias(AddSplitPointsRequest::class, 'Google_Service_Spanner_AddSplitPointsRequest');
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Spanner;
19+
20+
class AddSplitPointsResponse extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(AddSplitPointsResponse::class, 'Google_Service_Spanner_AddSplitPointsResponse');

src/Spanner/Key.php

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Spanner;
19+
20+
class Key extends \Google\Collection
21+
{
22+
protected $collection_key = 'keyParts';
23+
/**
24+
* @var array[]
25+
*/
26+
public $keyParts;
27+
28+
/**
29+
* @param array[]
30+
*/
31+
public function setKeyParts($keyParts)
32+
{
33+
$this->keyParts = $keyParts;
34+
}
35+
/**
36+
* @return array[]
37+
*/
38+
public function getKeyParts()
39+
{
40+
return $this->keyParts;
41+
}
42+
}
43+
44+
// Adding a class alias for backwards compatibility with the previous class name.
45+
class_alias(Key::class, 'Google_Service_Spanner_Key');

src/Spanner/Resource/ProjectsInstancesDatabases.php

+20
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
namespace Google\Service\Spanner\Resource;
1919

20+
use Google\Service\Spanner\AddSplitPointsRequest;
21+
use Google\Service\Spanner\AddSplitPointsResponse;
2022
use Google\Service\Spanner\ChangeQuorumRequest;
2123
use Google\Service\Spanner\CreateDatabaseRequest;
2224
use Google\Service\Spanner\Database;
@@ -43,6 +45,24 @@
4345
*/
4446
class ProjectsInstancesDatabases extends \Google\Service\Resource
4547
{
48+
/**
49+
* Adds split points to specified tables, indexes of a database.
50+
* (databases.addSplitPoints)
51+
*
52+
* @param string $database Required. The database on whose tables/indexes split
53+
* points are to be added. Values are of the form
54+
* `projects//instances//databases/`.
55+
* @param AddSplitPointsRequest $postBody
56+
* @param array $optParams Optional parameters.
57+
* @return AddSplitPointsResponse
58+
* @throws \Google\Service\Exception
59+
*/
60+
public function addSplitPoints($database, AddSplitPointsRequest $postBody, $optParams = [])
61+
{
62+
$params = ['database' => $database, 'postBody' => $postBody];
63+
$params = array_merge($params, $optParams);
64+
return $this->call('addSplitPoints', [$params], AddSplitPointsResponse::class);
65+
}
4666
/**
4767
* `ChangeQuorum` is strictly restricted to databases that use dual-region
4868
* instance configurations. Initiates a background operation to change the

src/Spanner/SplitPoints.php

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Spanner;
19+
20+
class SplitPoints extends \Google\Collection
21+
{
22+
protected $collection_key = 'keys';
23+
/**
24+
* @var string
25+
*/
26+
public $expireTime;
27+
/**
28+
* @var string
29+
*/
30+
public $index;
31+
protected $keysType = Key::class;
32+
protected $keysDataType = 'array';
33+
/**
34+
* @var string
35+
*/
36+
public $table;
37+
38+
/**
39+
* @param string
40+
*/
41+
public function setExpireTime($expireTime)
42+
{
43+
$this->expireTime = $expireTime;
44+
}
45+
/**
46+
* @return string
47+
*/
48+
public function getExpireTime()
49+
{
50+
return $this->expireTime;
51+
}
52+
/**
53+
* @param string
54+
*/
55+
public function setIndex($index)
56+
{
57+
$this->index = $index;
58+
}
59+
/**
60+
* @return string
61+
*/
62+
public function getIndex()
63+
{
64+
return $this->index;
65+
}
66+
/**
67+
* @param Key[]
68+
*/
69+
public function setKeys($keys)
70+
{
71+
$this->keys = $keys;
72+
}
73+
/**
74+
* @return Key[]
75+
*/
76+
public function getKeys()
77+
{
78+
return $this->keys;
79+
}
80+
/**
81+
* @param string
82+
*/
83+
public function setTable($table)
84+
{
85+
$this->table = $table;
86+
}
87+
/**
88+
* @return string
89+
*/
90+
public function getTable()
91+
{
92+
return $this->table;
93+
}
94+
}
95+
96+
// Adding a class alias for backwards compatibility with the previous class name.
97+
class_alias(SplitPoints::class, 'Google_Service_Spanner_SplitPoints');

0 commit comments

Comments
 (0)