source: vendor/google/apiclient-services/src/WorkloadManager/SapDiscovery.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: 3.3 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\WorkloadManager;
19
20class SapDiscovery extends \Google\Model
21{
22 protected $applicationLayerType = SapDiscoveryComponent::class;
23 protected $applicationLayerDataType = '';
24 protected $databaseLayerType = SapDiscoveryComponent::class;
25 protected $databaseLayerDataType = '';
26 protected $metadataType = SapDiscoveryMetadata::class;
27 protected $metadataDataType = '';
28 /**
29 * @var string
30 */
31 public $projectNumber;
32 /**
33 * @var string
34 */
35 public $systemId;
36 /**
37 * @var string
38 */
39 public $updateTime;
40 protected $workloadPropertiesType = SapDiscoveryWorkloadProperties::class;
41 protected $workloadPropertiesDataType = '';
42
43 /**
44 * @param SapDiscoveryComponent
45 */
46 public function setApplicationLayer(SapDiscoveryComponent $applicationLayer)
47 {
48 $this->applicationLayer = $applicationLayer;
49 }
50 /**
51 * @return SapDiscoveryComponent
52 */
53 public function getApplicationLayer()
54 {
55 return $this->applicationLayer;
56 }
57 /**
58 * @param SapDiscoveryComponent
59 */
60 public function setDatabaseLayer(SapDiscoveryComponent $databaseLayer)
61 {
62 $this->databaseLayer = $databaseLayer;
63 }
64 /**
65 * @return SapDiscoveryComponent
66 */
67 public function getDatabaseLayer()
68 {
69 return $this->databaseLayer;
70 }
71 /**
72 * @param SapDiscoveryMetadata
73 */
74 public function setMetadata(SapDiscoveryMetadata $metadata)
75 {
76 $this->metadata = $metadata;
77 }
78 /**
79 * @return SapDiscoveryMetadata
80 */
81 public function getMetadata()
82 {
83 return $this->metadata;
84 }
85 /**
86 * @param string
87 */
88 public function setProjectNumber($projectNumber)
89 {
90 $this->projectNumber = $projectNumber;
91 }
92 /**
93 * @return string
94 */
95 public function getProjectNumber()
96 {
97 return $this->projectNumber;
98 }
99 /**
100 * @param string
101 */
102 public function setSystemId($systemId)
103 {
104 $this->systemId = $systemId;
105 }
106 /**
107 * @return string
108 */
109 public function getSystemId()
110 {
111 return $this->systemId;
112 }
113 /**
114 * @param string
115 */
116 public function setUpdateTime($updateTime)
117 {
118 $this->updateTime = $updateTime;
119 }
120 /**
121 * @return string
122 */
123 public function getUpdateTime()
124 {
125 return $this->updateTime;
126 }
127 /**
128 * @param SapDiscoveryWorkloadProperties
129 */
130 public function setWorkloadProperties(SapDiscoveryWorkloadProperties $workloadProperties)
131 {
132 $this->workloadProperties = $workloadProperties;
133 }
134 /**
135 * @return SapDiscoveryWorkloadProperties
136 */
137 public function getWorkloadProperties()
138 {
139 return $this->workloadProperties;
140 }
141}
142
143// Adding a class alias for backwards compatibility with the previous class name.
144class_alias(SapDiscovery::class, 'Google_Service_WorkloadManager_SapDiscovery');
Note: See TracBrowser for help on using the repository browser.