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
18namespace Google\Service\Sasportal\Resource;
19
20use Google\Service\Sasportal\SasPortalDeployment;
21use Google\Service\Sasportal\SasPortalListDeploymentsResponse;
22
23/**
24 * The "deployments" collection of methods.
25 * Typical usage is:
26 *  <code>
27 *   $sasportalService = new Google\Service\Sasportal(...);
28 *   $deployments = $sasportalService->deployments;
29 *  </code>
30 */
31class CustomersNodesDeployments extends \Google\Service\Resource
32{
33  /**
34   * Creates a new deployment. (deployments.create)
35   *
36   * @param string $parent Required. The parent resource name where the deployment
37   * is to be created.
38   * @param SasPortalDeployment $postBody
39   * @param array $optParams Optional parameters.
40   * @return SasPortalDeployment
41   */
42  public function create($parent, SasPortalDeployment $postBody, $optParams = [])
43  {
44    $params = ['parent' => $parent, 'postBody' => $postBody];
45    $params = array_merge($params, $optParams);
46    return $this->call('create', [$params], SasPortalDeployment::class);
47  }
48  /**
49   * Lists deployments. (deployments.listCustomersNodesDeployments)
50   *
51   * @param string $parent Required. The parent resource name, for example,
52   * "nodes/1", customer/1/nodes/2.
53   * @param array $optParams Optional parameters.
54   *
55   * @opt_param string filter The filter expression. The filter should have the
56   * following format: "DIRECT_CHILDREN" or format: "direct_children". The filter
57   * is case insensitive. If empty, then no deployments are filtered.
58   * @opt_param int pageSize The maximum number of deployments to return in the
59   * response.
60   * @opt_param string pageToken A pagination token returned from a previous call
61   * to ListDeployments that indicates where this listing should continue from.
62   * @return SasPortalListDeploymentsResponse
63   */
64  public function listCustomersNodesDeployments($parent, $optParams = [])
65  {
66    $params = ['parent' => $parent];
67    $params = array_merge($params, $optParams);
68    return $this->call('list', [$params], SasPortalListDeploymentsResponse::class);
69  }
70}
71
72// Adding a class alias for backwards compatibility with the previous class name.
73class_alias(CustomersNodesDeployments::class, 'Google_Service_Sasportal_Resource_CustomersNodesDeployments');
74