source: vendor/google/apiclient-services/src/Datastream/DiscoverConnectionProfileRequest.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.6 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\Datastream;
19
20class DiscoverConnectionProfileRequest extends \Google\Model
21{
22 protected $connectionProfileType = ConnectionProfile::class;
23 protected $connectionProfileDataType = '';
24 /**
25 * @var string
26 */
27 public $connectionProfileName;
28 /**
29 * @var bool
30 */
31 public $fullHierarchy;
32 /**
33 * @var int
34 */
35 public $hierarchyDepth;
36 protected $mysqlRdbmsType = MysqlRdbms::class;
37 protected $mysqlRdbmsDataType = '';
38 protected $oracleRdbmsType = OracleRdbms::class;
39 protected $oracleRdbmsDataType = '';
40 protected $postgresqlRdbmsType = PostgresqlRdbms::class;
41 protected $postgresqlRdbmsDataType = '';
42 protected $sqlServerRdbmsType = SqlServerRdbms::class;
43 protected $sqlServerRdbmsDataType = '';
44
45 /**
46 * @param ConnectionProfile
47 */
48 public function setConnectionProfile(ConnectionProfile $connectionProfile)
49 {
50 $this->connectionProfile = $connectionProfile;
51 }
52 /**
53 * @return ConnectionProfile
54 */
55 public function getConnectionProfile()
56 {
57 return $this->connectionProfile;
58 }
59 /**
60 * @param string
61 */
62 public function setConnectionProfileName($connectionProfileName)
63 {
64 $this->connectionProfileName = $connectionProfileName;
65 }
66 /**
67 * @return string
68 */
69 public function getConnectionProfileName()
70 {
71 return $this->connectionProfileName;
72 }
73 /**
74 * @param bool
75 */
76 public function setFullHierarchy($fullHierarchy)
77 {
78 $this->fullHierarchy = $fullHierarchy;
79 }
80 /**
81 * @return bool
82 */
83 public function getFullHierarchy()
84 {
85 return $this->fullHierarchy;
86 }
87 /**
88 * @param int
89 */
90 public function setHierarchyDepth($hierarchyDepth)
91 {
92 $this->hierarchyDepth = $hierarchyDepth;
93 }
94 /**
95 * @return int
96 */
97 public function getHierarchyDepth()
98 {
99 return $this->hierarchyDepth;
100 }
101 /**
102 * @param MysqlRdbms
103 */
104 public function setMysqlRdbms(MysqlRdbms $mysqlRdbms)
105 {
106 $this->mysqlRdbms = $mysqlRdbms;
107 }
108 /**
109 * @return MysqlRdbms
110 */
111 public function getMysqlRdbms()
112 {
113 return $this->mysqlRdbms;
114 }
115 /**
116 * @param OracleRdbms
117 */
118 public function setOracleRdbms(OracleRdbms $oracleRdbms)
119 {
120 $this->oracleRdbms = $oracleRdbms;
121 }
122 /**
123 * @return OracleRdbms
124 */
125 public function getOracleRdbms()
126 {
127 return $this->oracleRdbms;
128 }
129 /**
130 * @param PostgresqlRdbms
131 */
132 public function setPostgresqlRdbms(PostgresqlRdbms $postgresqlRdbms)
133 {
134 $this->postgresqlRdbms = $postgresqlRdbms;
135 }
136 /**
137 * @return PostgresqlRdbms
138 */
139 public function getPostgresqlRdbms()
140 {
141 return $this->postgresqlRdbms;
142 }
143 /**
144 * @param SqlServerRdbms
145 */
146 public function setSqlServerRdbms(SqlServerRdbms $sqlServerRdbms)
147 {
148 $this->sqlServerRdbms = $sqlServerRdbms;
149 }
150 /**
151 * @return SqlServerRdbms
152 */
153 public function getSqlServerRdbms()
154 {
155 return $this->sqlServerRdbms;
156 }
157}
158
159// Adding a class alias for backwards compatibility with the previous class name.
160class_alias(DiscoverConnectionProfileRequest::class, 'Google_Service_Datastream_DiscoverConnectionProfileRequest');
Note: See TracBrowser for help on using the repository browser.