Skip to content

Commit f9beb09

Browse files
1 parent 4bd1264 commit f9beb09

File tree

126 files changed

+13790
-0
lines changed

Some content is hidden

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

126 files changed

+13790
-0
lines changed

src/APIhub.php

Lines changed: 1395 additions & 0 deletions
Large diffs are not rendered by default.

src/APIhub/ApihubEmpty.php

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\APIhub;
19+
20+
class ApihubEmpty extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(ApihubEmpty::class, 'Google_Service_APIhub_ApihubEmpty');
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
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\APIhub;
19+
20+
class GoogleCloudApihubV1APIMetadata extends \Google\Collection
21+
{
22+
protected $collection_key = 'versions';
23+
protected $apiType = GoogleCloudApihubV1Api::class;
24+
protected $apiDataType = '';
25+
/**
26+
* @var string
27+
*/
28+
public $originalCreateTime;
29+
/**
30+
* @var string
31+
*/
32+
public $originalId;
33+
/**
34+
* @var string
35+
*/
36+
public $originalUpdateTime;
37+
protected $versionsType = GoogleCloudApihubV1VersionMetadata::class;
38+
protected $versionsDataType = 'array';
39+
40+
/**
41+
* @param GoogleCloudApihubV1Api
42+
*/
43+
public function setApi(GoogleCloudApihubV1Api $api)
44+
{
45+
$this->api = $api;
46+
}
47+
/**
48+
* @return GoogleCloudApihubV1Api
49+
*/
50+
public function getApi()
51+
{
52+
return $this->api;
53+
}
54+
/**
55+
* @param string
56+
*/
57+
public function setOriginalCreateTime($originalCreateTime)
58+
{
59+
$this->originalCreateTime = $originalCreateTime;
60+
}
61+
/**
62+
* @return string
63+
*/
64+
public function getOriginalCreateTime()
65+
{
66+
return $this->originalCreateTime;
67+
}
68+
/**
69+
* @param string
70+
*/
71+
public function setOriginalId($originalId)
72+
{
73+
$this->originalId = $originalId;
74+
}
75+
/**
76+
* @return string
77+
*/
78+
public function getOriginalId()
79+
{
80+
return $this->originalId;
81+
}
82+
/**
83+
* @param string
84+
*/
85+
public function setOriginalUpdateTime($originalUpdateTime)
86+
{
87+
$this->originalUpdateTime = $originalUpdateTime;
88+
}
89+
/**
90+
* @return string
91+
*/
92+
public function getOriginalUpdateTime()
93+
{
94+
return $this->originalUpdateTime;
95+
}
96+
/**
97+
* @param GoogleCloudApihubV1VersionMetadata[]
98+
*/
99+
public function setVersions($versions)
100+
{
101+
$this->versions = $versions;
102+
}
103+
/**
104+
* @return GoogleCloudApihubV1VersionMetadata[]
105+
*/
106+
public function getVersions()
107+
{
108+
return $this->versions;
109+
}
110+
}
111+
112+
// Adding a class alias for backwards compatibility with the previous class name.
113+
class_alias(GoogleCloudApihubV1APIMetadata::class, 'Google_Service_APIhub_GoogleCloudApihubV1APIMetadata');
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\APIhub;
19+
20+
class GoogleCloudApihubV1ActionExecutionDetail extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $actionId;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setActionId($actionId)
31+
{
32+
$this->actionId = $actionId;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getActionId()
38+
{
39+
return $this->actionId;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleCloudApihubV1ActionExecutionDetail::class, 'Google_Service_APIhub_GoogleCloudApihubV1ActionExecutionDetail');
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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\APIhub;
19+
20+
class GoogleCloudApihubV1AllowedValue extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $description;
26+
/**
27+
* @var string
28+
*/
29+
public $displayName;
30+
/**
31+
* @var string
32+
*/
33+
public $id;
34+
/**
35+
* @var bool
36+
*/
37+
public $immutable;
38+
39+
/**
40+
* @param string
41+
*/
42+
public function setDescription($description)
43+
{
44+
$this->description = $description;
45+
}
46+
/**
47+
* @return string
48+
*/
49+
public function getDescription()
50+
{
51+
return $this->description;
52+
}
53+
/**
54+
* @param string
55+
*/
56+
public function setDisplayName($displayName)
57+
{
58+
$this->displayName = $displayName;
59+
}
60+
/**
61+
* @return string
62+
*/
63+
public function getDisplayName()
64+
{
65+
return $this->displayName;
66+
}
67+
/**
68+
* @param string
69+
*/
70+
public function setId($id)
71+
{
72+
$this->id = $id;
73+
}
74+
/**
75+
* @return string
76+
*/
77+
public function getId()
78+
{
79+
return $this->id;
80+
}
81+
/**
82+
* @param bool
83+
*/
84+
public function setImmutable($immutable)
85+
{
86+
$this->immutable = $immutable;
87+
}
88+
/**
89+
* @return bool
90+
*/
91+
public function getImmutable()
92+
{
93+
return $this->immutable;
94+
}
95+
}
96+
97+
// Adding a class alias for backwards compatibility with the previous class name.
98+
class_alias(GoogleCloudApihubV1AllowedValue::class, 'Google_Service_APIhub_GoogleCloudApihubV1AllowedValue');

0 commit comments

Comments
 (0)