Skip to content

Commit bfa12eb

Browse files
1 parent 3a9beb0 commit bfa12eb

26 files changed

Lines changed: 1481 additions & 0 deletions
Lines changed: 25 additions & 0 deletions
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\HypercomputeCluster;
19+
20+
class CheckClusterHealth extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(CheckClusterHealth::class, 'Google_Service_HypercomputeCluster_CheckClusterHealth');
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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\HypercomputeCluster;
19+
20+
class CreateFilestoreInstance extends \Google\Model
21+
{
22+
/**
23+
* Output only. Name of the Filestore instance, in the format
24+
* `projects/{project}/locations/{location}/instances/{instance}`
25+
*
26+
* @var string
27+
*/
28+
public $filestore;
29+
30+
/**
31+
* Output only. Name of the Filestore instance, in the format
32+
* `projects/{project}/locations/{location}/instances/{instance}`
33+
*
34+
* @param string $filestore
35+
*/
36+
public function setFilestore($filestore)
37+
{
38+
$this->filestore = $filestore;
39+
}
40+
/**
41+
* @return string
42+
*/
43+
public function getFilestore()
44+
{
45+
return $this->filestore;
46+
}
47+
}
48+
49+
// Adding a class alias for backwards compatibility with the previous class name.
50+
class_alias(CreateFilestoreInstance::class, 'Google_Service_HypercomputeCluster_CreateFilestoreInstance');
Lines changed: 25 additions & 0 deletions
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\HypercomputeCluster;
19+
20+
class CreateLoginNode extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(CreateLoginNode::class, 'Google_Service_HypercomputeCluster_CreateLoginNode');
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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\HypercomputeCluster;
19+
20+
class CreateLustreInstance extends \Google\Model
21+
{
22+
/**
23+
* Output only. Name of the Managed Lustre instance, in the format
24+
* `projects/{project}/locations/{location}/instances/{instance}`
25+
*
26+
* @var string
27+
*/
28+
public $lustre;
29+
30+
/**
31+
* Output only. Name of the Managed Lustre instance, in the format
32+
* `projects/{project}/locations/{location}/instances/{instance}`
33+
*
34+
* @param string $lustre
35+
*/
36+
public function setLustre($lustre)
37+
{
38+
$this->lustre = $lustre;
39+
}
40+
/**
41+
* @return string
42+
*/
43+
public function getLustre()
44+
{
45+
return $this->lustre;
46+
}
47+
}
48+
49+
// Adding a class alias for backwards compatibility with the previous class name.
50+
class_alias(CreateLustreInstance::class, 'Google_Service_HypercomputeCluster_CreateLustreInstance');
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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\HypercomputeCluster;
19+
20+
class CreateNetwork extends \Google\Model
21+
{
22+
/**
23+
* Output only. Name of the network to create, in the format
24+
* `projects/{project}/global/networks/{network}`.
25+
*
26+
* @var string
27+
*/
28+
public $network;
29+
30+
/**
31+
* Output only. Name of the network to create, in the format
32+
* `projects/{project}/global/networks/{network}`.
33+
*
34+
* @param string $network
35+
*/
36+
public function setNetwork($network)
37+
{
38+
$this->network = $network;
39+
}
40+
/**
41+
* @return string
42+
*/
43+
public function getNetwork()
44+
{
45+
return $this->network;
46+
}
47+
}
48+
49+
// Adding a class alias for backwards compatibility with the previous class name.
50+
class_alias(CreateNetwork::class, 'Google_Service_HypercomputeCluster_CreateNetwork');
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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\HypercomputeCluster;
19+
20+
class CreateNodeset extends \Google\Collection
21+
{
22+
protected $collection_key = 'nodesets';
23+
/**
24+
* Output only. Name of the nodeset to create
25+
*
26+
* @var string[]
27+
*/
28+
public $nodesets;
29+
30+
/**
31+
* Output only. Name of the nodeset to create
32+
*
33+
* @param string[] $nodesets
34+
*/
35+
public function setNodesets($nodesets)
36+
{
37+
$this->nodesets = $nodesets;
38+
}
39+
/**
40+
* @return string[]
41+
*/
42+
public function getNodesets()
43+
{
44+
return $this->nodesets;
45+
}
46+
}
47+
48+
// Adding a class alias for backwards compatibility with the previous class name.
49+
class_alias(CreateNodeset::class, 'Google_Service_HypercomputeCluster_CreateNodeset');
Lines changed: 25 additions & 0 deletions
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\HypercomputeCluster;
19+
20+
class CreateOrchestrator extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(CreateOrchestrator::class, 'Google_Service_HypercomputeCluster_CreateOrchestrator');
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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\HypercomputeCluster;
19+
20+
class CreatePartition extends \Google\Collection
21+
{
22+
protected $collection_key = 'partitions';
23+
/**
24+
* Output only. Name of the partition to create
25+
*
26+
* @var string[]
27+
*/
28+
public $partitions;
29+
30+
/**
31+
* Output only. Name of the partition to create
32+
*
33+
* @param string[] $partitions
34+
*/
35+
public function setPartitions($partitions)
36+
{
37+
$this->partitions = $partitions;
38+
}
39+
/**
40+
* @return string[]
41+
*/
42+
public function getPartitions()
43+
{
44+
return $this->partitions;
45+
}
46+
}
47+
48+
// Adding a class alias for backwards compatibility with the previous class name.
49+
class_alias(CreatePartition::class, 'Google_Service_HypercomputeCluster_CreatePartition');
Lines changed: 25 additions & 0 deletions
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\HypercomputeCluster;
19+
20+
class CreatePrivateServiceAccess extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(CreatePrivateServiceAccess::class, 'Google_Service_HypercomputeCluster_CreatePrivateServiceAccess');

0 commit comments

Comments
 (0)