source: vendor/google/apiclient-services/src/NetAppFiles/AssetLocation.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 2.5 KB
Line 
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\NetAppFiles;
19
20class AssetLocation extends \Google\Collection
21{
22 protected $collection_key = 'parentAsset';
23 /**
24 * @var string
25 */
26 public $ccfeRmsPath;
27 protected $expectedType = IsolationExpectations::class;
28 protected $expectedDataType = '';
29 protected $extraParametersType = ExtraParameter::class;
30 protected $extraParametersDataType = 'array';
31 protected $locationDataType = LocationData::class;
32 protected $locationDataDataType = 'array';
33 protected $parentAssetType = CloudAsset::class;
34 protected $parentAssetDataType = 'array';
35
36 /**
37 * @param string
38 */
39 public function setCcfeRmsPath($ccfeRmsPath)
40 {
41 $this->ccfeRmsPath = $ccfeRmsPath;
42 }
43 /**
44 * @return string
45 */
46 public function getCcfeRmsPath()
47 {
48 return $this->ccfeRmsPath;
49 }
50 /**
51 * @param IsolationExpectations
52 */
53 public function setExpected(IsolationExpectations $expected)
54 {
55 $this->expected = $expected;
56 }
57 /**
58 * @return IsolationExpectations
59 */
60 public function getExpected()
61 {
62 return $this->expected;
63 }
64 /**
65 * @param ExtraParameter[]
66 */
67 public function setExtraParameters($extraParameters)
68 {
69 $this->extraParameters = $extraParameters;
70 }
71 /**
72 * @return ExtraParameter[]
73 */
74 public function getExtraParameters()
75 {
76 return $this->extraParameters;
77 }
78 /**
79 * @param LocationData[]
80 */
81 public function setLocationData($locationData)
82 {
83 $this->locationData = $locationData;
84 }
85 /**
86 * @return LocationData[]
87 */
88 public function getLocationData()
89 {
90 return $this->locationData;
91 }
92 /**
93 * @param CloudAsset[]
94 */
95 public function setParentAsset($parentAsset)
96 {
97 $this->parentAsset = $parentAsset;
98 }
99 /**
100 * @return CloudAsset[]
101 */
102 public function getParentAsset()
103 {
104 return $this->parentAsset;
105 }
106}
107
108// Adding a class alias for backwards compatibility with the previous class name.
109class_alias(AssetLocation::class, 'Google_Service_NetAppFiles_AssetLocation');
Note: See TracBrowser for help on using the repository browser.