-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathAsset.php
More file actions
341 lines (337 loc) Β· 9.94 KB
/
Asset.php
File metadata and controls
341 lines (337 loc) Β· 9.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\CloudAsset;
class Asset extends \Google\Collection
{
protected $collection_key = 'orgPolicy';
protected $accessLevelType = GoogleIdentityAccesscontextmanagerV1AccessLevel::class;
protected $accessLevelDataType = '';
protected $accessPolicyType = GoogleIdentityAccesscontextmanagerV1AccessPolicy::class;
protected $accessPolicyDataType = '';
/**
* The ancestry path of an asset in Google Cloud [resource
* hierarchy](https://cloud.google.com/resource-manager/docs/cloud-platform-
* resource-hierarchy), represented as a list of relative resource names. An
* ancestry path starts with the closest ancestor in the hierarchy and ends at
* root. If the asset is a project, folder, or organization, the ancestry path
* starts from the asset itself. Example: `["projects/123456789",
* "folders/5432", "organizations/1234"]`
*
* @var string[]
*/
public $ancestors;
protected $assetExceptionsType = AssetException::class;
protected $assetExceptionsDataType = 'array';
/**
* The type of the asset. Example: `compute.googleapis.com/Disk` See
* [Supported asset types](https://cloud.google.com/asset-
* inventory/docs/supported-asset-types) for more information.
*
* @var string
*/
public $assetType;
protected $iamPolicyType = Policy::class;
protected $iamPolicyDataType = '';
/**
* The full name of the asset. Example: `//compute.googleapis.com/projects/my_
* project_123/zones/zone1/instances/instance1` See [Resource names](https://c
* loud.google.com/apis/design/resource_names#full_resource_name) for more
* information.
*
* @var string
*/
public $name;
protected $orgPolicyType = GoogleCloudOrgpolicyV1Policy::class;
protected $orgPolicyDataType = 'array';
protected $osInventoryType = Inventory::class;
protected $osInventoryDataType = '';
protected $relatedAssetType = RelatedAsset::class;
protected $relatedAssetDataType = '';
protected $relatedAssetsType = RelatedAssets::class;
protected $relatedAssetsDataType = '';
protected $resourceType = CloudassetResource::class;
protected $resourceDataType = '';
protected $servicePerimeterType = GoogleIdentityAccesscontextmanagerV1ServicePerimeter::class;
protected $servicePerimeterDataType = '';
/**
* The last update timestamp of an asset. update_time is updated when
* create/update/delete operation is performed.
*
* @var string
*/
public $updateTime;
/**
* Also refer to the [access level user
* guide](https://cloud.google.com/access-context-
* manager/docs/overview#access-levels).
*
* @param GoogleIdentityAccesscontextmanagerV1AccessLevel $accessLevel
*/
public function setAccessLevel(GoogleIdentityAccesscontextmanagerV1AccessLevel $accessLevel)
{
$this->accessLevel = $accessLevel;
}
/**
* @return GoogleIdentityAccesscontextmanagerV1AccessLevel
*/
public function getAccessLevel()
{
return $this->accessLevel;
}
/**
* Also refer to the [access policy user
* guide](https://cloud.google.com/access-context-
* manager/docs/overview#access-policies).
*
* @param GoogleIdentityAccesscontextmanagerV1AccessPolicy $accessPolicy
*/
public function setAccessPolicy(GoogleIdentityAccesscontextmanagerV1AccessPolicy $accessPolicy)
{
$this->accessPolicy = $accessPolicy;
}
/**
* @return GoogleIdentityAccesscontextmanagerV1AccessPolicy
*/
public function getAccessPolicy()
{
return $this->accessPolicy;
}
/**
* The ancestry path of an asset in Google Cloud [resource
* hierarchy](https://cloud.google.com/resource-manager/docs/cloud-platform-
* resource-hierarchy), represented as a list of relative resource names. An
* ancestry path starts with the closest ancestor in the hierarchy and ends at
* root. If the asset is a project, folder, or organization, the ancestry path
* starts from the asset itself. Example: `["projects/123456789",
* "folders/5432", "organizations/1234"]`
*
* @param string[] $ancestors
*/
public function setAncestors($ancestors)
{
$this->ancestors = $ancestors;
}
/**
* @return string[]
*/
public function getAncestors()
{
return $this->ancestors;
}
/**
* The exceptions of a resource.
*
* @param AssetException[] $assetExceptions
*/
public function setAssetExceptions($assetExceptions)
{
$this->assetExceptions = $assetExceptions;
}
/**
* @return AssetException[]
*/
public function getAssetExceptions()
{
return $this->assetExceptions;
}
/**
* The type of the asset. Example: `compute.googleapis.com/Disk` See
* [Supported asset types](https://cloud.google.com/asset-
* inventory/docs/supported-asset-types) for more information.
*
* @param string $assetType
*/
public function setAssetType($assetType)
{
$this->assetType = $assetType;
}
/**
* @return string
*/
public function getAssetType()
{
return $this->assetType;
}
/**
* A representation of the IAM policy set on a Google Cloud resource. There
* can be a maximum of one IAM policy set on any given resource. In addition,
* IAM policies inherit their granted access scope from any policies set on
* parent resources in the resource hierarchy. Therefore, the effectively
* policy is the union of both the policy set on this resource and each policy
* set on all of the resource's ancestry resource levels in the hierarchy. See
* [this topic](https://cloud.google.com/iam/help/allow-policies/inheritance)
* for more information.
*
* @param Policy $iamPolicy
*/
public function setIamPolicy(Policy $iamPolicy)
{
$this->iamPolicy = $iamPolicy;
}
/**
* @return Policy
*/
public function getIamPolicy()
{
return $this->iamPolicy;
}
/**
* The full name of the asset. Example: `//compute.googleapis.com/projects/my_
* project_123/zones/zone1/instances/instance1` See [Resource names](https://c
* loud.google.com/apis/design/resource_names#full_resource_name) for more
* information.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* A representation of an [organization
* policy](https://cloud.google.com/resource-manager/docs/organization-
* policy/overview#organization_policy). There can be more than one
* organization policy with different constraints set on a given resource.
*
* @param GoogleCloudOrgpolicyV1Policy[] $orgPolicy
*/
public function setOrgPolicy($orgPolicy)
{
$this->orgPolicy = $orgPolicy;
}
/**
* @return GoogleCloudOrgpolicyV1Policy[]
*/
public function getOrgPolicy()
{
return $this->orgPolicy;
}
/**
* A representation of runtime OS Inventory information. See [this
* topic](https://cloud.google.com/compute/docs/instances/os-inventory-
* management) for more information.
*
* @param Inventory $osInventory
*/
public function setOsInventory(Inventory $osInventory)
{
$this->osInventory = $osInventory;
}
/**
* @return Inventory
*/
public function getOsInventory()
{
return $this->osInventory;
}
/**
* One related asset of the current asset.
*
* @param RelatedAsset $relatedAsset
*/
public function setRelatedAsset(RelatedAsset $relatedAsset)
{
$this->relatedAsset = $relatedAsset;
}
/**
* @return RelatedAsset
*/
public function getRelatedAsset()
{
return $this->relatedAsset;
}
/**
* DEPRECATED. This field only presents for the purpose of backward-
* compatibility. The server will never generate responses with this field.
* The related assets of the asset of one relationship type. One asset only
* represents one type of relationship.
*
* @deprecated
* @param RelatedAssets $relatedAssets
*/
public function setRelatedAssets(RelatedAssets $relatedAssets)
{
$this->relatedAssets = $relatedAssets;
}
/**
* @deprecated
* @return RelatedAssets
*/
public function getRelatedAssets()
{
return $this->relatedAssets;
}
/**
* A representation of the resource.
*
* @param CloudassetResource $resource
*/
public function setResource(CloudassetResource $resource)
{
$this->resource = $resource;
}
/**
* @return CloudassetResource
*/
public function getResource()
{
return $this->resource;
}
/**
* Also refer to the [service perimeter user
* guide](https://cloud.google.com/vpc-service-controls/docs/overview).
*
* @param GoogleIdentityAccesscontextmanagerV1ServicePerimeter $servicePerimeter
*/
public function setServicePerimeter(GoogleIdentityAccesscontextmanagerV1ServicePerimeter $servicePerimeter)
{
$this->servicePerimeter = $servicePerimeter;
}
/**
* @return GoogleIdentityAccesscontextmanagerV1ServicePerimeter
*/
public function getServicePerimeter()
{
return $this->servicePerimeter;
}
/**
* The last update timestamp of an asset. update_time is updated when
* create/update/delete operation is performed.
*
* @param string $updateTime
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Asset::class, 'Google_Service_CloudAsset_Asset');