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\OSConfig\Resource;
|
---|
19 |
|
---|
20 | use Google\Service\OSConfig\Inventory;
|
---|
21 | use Google\Service\OSConfig\ListInventoriesResponse;
|
---|
22 |
|
---|
23 | /**
|
---|
24 | * The "inventories" collection of methods.
|
---|
25 | * Typical usage is:
|
---|
26 | * <code>
|
---|
27 | * $osconfigService = new Google\Service\OSConfig(...);
|
---|
28 | * $inventories = $osconfigService->projects_locations_instances_inventories;
|
---|
29 | * </code>
|
---|
30 | */
|
---|
31 | class ProjectsLocationsInstancesInventories extends \Google\Service\Resource
|
---|
32 | {
|
---|
33 | /**
|
---|
34 | * Get inventory data for the specified VM instance. If the VM has no associated
|
---|
35 | * inventory, the message `NOT_FOUND` is returned. (inventories.get)
|
---|
36 | *
|
---|
37 | * @param string $name Required. API resource name for inventory resource.
|
---|
38 | * Format:
|
---|
39 | * `projects/{project}/locations/{location}/instances/{instance}/inventory` For
|
---|
40 | * `{project}`, either `project-number` or `project-id` can be provided. For
|
---|
41 | * `{instance}`, either Compute Engine `instance-id` or `instance-name` can be
|
---|
42 | * provided.
|
---|
43 | * @param array $optParams Optional parameters.
|
---|
44 | *
|
---|
45 | * @opt_param string view Inventory view indicating what information should be
|
---|
46 | * included in the inventory resource. If unspecified, the default view is
|
---|
47 | * BASIC.
|
---|
48 | * @return Inventory
|
---|
49 | * @throws \Google\Service\Exception
|
---|
50 | */
|
---|
51 | public function get($name, $optParams = [])
|
---|
52 | {
|
---|
53 | $params = ['name' => $name];
|
---|
54 | $params = array_merge($params, $optParams);
|
---|
55 | return $this->call('get', [$params], Inventory::class);
|
---|
56 | }
|
---|
57 | /**
|
---|
58 | * List inventory data for all VM instances in the specified zone.
|
---|
59 | * (inventories.listProjectsLocationsInstancesInventories)
|
---|
60 | *
|
---|
61 | * @param string $parent Required. The parent resource name. Format:
|
---|
62 | * `projects/{project}/locations/{location}/instances/-` For `{project}`, either
|
---|
63 | * `project-number` or `project-id` can be provided.
|
---|
64 | * @param array $optParams Optional parameters.
|
---|
65 | *
|
---|
66 | * @opt_param string filter If provided, this field specifies the criteria that
|
---|
67 | * must be met by a `Inventory` API resource to be included in the response.
|
---|
68 | * @opt_param int pageSize The maximum number of results to return.
|
---|
69 | * @opt_param string pageToken A pagination token returned from a previous call
|
---|
70 | * to `ListInventories` that indicates where this listing should continue from.
|
---|
71 | * @opt_param string view Inventory view indicating what information should be
|
---|
72 | * included in the inventory resource. If unspecified, the default view is
|
---|
73 | * BASIC.
|
---|
74 | * @return ListInventoriesResponse
|
---|
75 | * @throws \Google\Service\Exception
|
---|
76 | */
|
---|
77 | public function listProjectsLocationsInstancesInventories($parent, $optParams = [])
|
---|
78 | {
|
---|
79 | $params = ['parent' => $parent];
|
---|
80 | $params = array_merge($params, $optParams);
|
---|
81 | return $this->call('list', [$params], ListInventoriesResponse::class);
|
---|
82 | }
|
---|
83 | }
|
---|
84 |
|
---|
85 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
86 | class_alias(ProjectsLocationsInstancesInventories::class, 'Google_Service_OSConfig_Resource_ProjectsLocationsInstancesInventories');
|
---|