Skip to content

Commit 962ee17

Browse files
committed
fix: update protobufs
1 parent d4fd00c commit 962ee17

52 files changed

Lines changed: 1250 additions & 57 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
],
2121
"autoload": {
2222
"psr-4": {
23-
"Cbws\\Grpc\\": "src/"
23+
"Cbws\\Grpc\\": "src/",
24+
"GPBMetadata\\Cbws\\": "metadata/"
25+
2426
}
2527
}
2628
}

src/Compute/V1alpha1/GPBMetadata/Compute.php renamed to metadata/Compute/Compute.php

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/GPBMetadata/Image.php renamed to metadata/Compute/Image.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/GPBMetadata/Machine.php renamed to metadata/Compute/Machine.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/GPBMetadata/MachineType.php renamed to metadata/Compute/MachineType.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

metadata/Longrunning/Operations.php

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/ComputeServiceClient.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function CreateMachine(\Cbws\Grpc\Compute\V1alpha1\CreateMachineRequest $
6969
$metadata = [], $options = []) {
7070
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/CreateMachine',
7171
$argument,
72-
['\Google\LongRunning\Operation', 'decode'],
72+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
7373
$metadata, $options);
7474
}
7575

@@ -83,7 +83,7 @@ public function StopMachine(\Cbws\Grpc\Compute\V1alpha1\StopMachineRequest $argu
8383
$metadata = [], $options = []) {
8484
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/StopMachine',
8585
$argument,
86-
['\Google\LongRunning\Operation', 'decode'],
86+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
8787
$metadata, $options);
8888
}
8989

@@ -97,7 +97,7 @@ public function StartMachine(\Cbws\Grpc\Compute\V1alpha1\StartMachineRequest $ar
9797
$metadata = [], $options = []) {
9898
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/StartMachine',
9999
$argument,
100-
['\Google\LongRunning\Operation', 'decode'],
100+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
101101
$metadata, $options);
102102
}
103103

@@ -111,7 +111,7 @@ public function ResetMachine(\Cbws\Grpc\Compute\V1alpha1\ResetMachineRequest $ar
111111
$metadata = [], $options = []) {
112112
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/ResetMachine',
113113
$argument,
114-
['\Google\LongRunning\Operation', 'decode'],
114+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
115115
$metadata, $options);
116116
}
117117

@@ -126,7 +126,7 @@ public function ReinstallMachine(\Cbws\Grpc\Compute\V1alpha1\ReinstallMachineReq
126126
$metadata = [], $options = []) {
127127
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/ReinstallMachine',
128128
$argument,
129-
['\Google\LongRunning\Operation', 'decode'],
129+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
130130
$metadata, $options);
131131
}
132132

@@ -141,7 +141,7 @@ public function ResizeMachine(\Cbws\Grpc\Compute\V1alpha1\ResizeMachineRequest $
141141
$metadata = [], $options = []) {
142142
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/ResizeMachine',
143143
$argument,
144-
['\Google\LongRunning\Operation', 'decode'],
144+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
145145
$metadata, $options);
146146
}
147147

@@ -155,7 +155,7 @@ public function UpdateMachine(\Cbws\Grpc\Compute\V1alpha1\UpdateMachineRequest $
155155
$metadata = [], $options = []) {
156156
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/UpdateMachine',
157157
$argument,
158-
['\Google\LongRunning\Operation', 'decode'],
158+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
159159
$metadata, $options);
160160
}
161161

@@ -169,7 +169,7 @@ public function DeleteMachine(\Cbws\Grpc\Compute\V1alpha1\DeleteMachineRequest $
169169
$metadata = [], $options = []) {
170170
return $this->_simpleRequest('/cbws.compute.v1alpha1.ComputeService/DeleteMachine',
171171
$argument,
172-
['\Google\LongRunning\Operation', 'decode'],
172+
['\Cbws\Grpc\Longrunning\Operation', 'decode'],
173173
$metadata, $options);
174174
}
175175

src/Compute/V1alpha1/CreateMachineMetadata.php

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/CreateMachineRequest.php

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Compute/V1alpha1/CreateMachineResponse.php

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)