source: vendor/google/apiclient-services/src/CloudRun/GoogleDevtoolsCloudbuildV1Source.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 3.8 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\CloudRun;
19
20class GoogleDevtoolsCloudbuildV1Source extends \Google\Model
21{
22 protected $connectedRepositoryType = GoogleDevtoolsCloudbuildV1ConnectedRepository::class;
23 protected $connectedRepositoryDataType = '';
24 protected $developerConnectConfigType = GoogleDevtoolsCloudbuildV1DeveloperConnectConfig::class;
25 protected $developerConnectConfigDataType = '';
26 protected $gitSourceType = GoogleDevtoolsCloudbuildV1GitSource::class;
27 protected $gitSourceDataType = '';
28 protected $repoSourceType = GoogleDevtoolsCloudbuildV1RepoSource::class;
29 protected $repoSourceDataType = '';
30 protected $storageSourceType = GoogleDevtoolsCloudbuildV1StorageSource::class;
31 protected $storageSourceDataType = '';
32 protected $storageSourceManifestType = GoogleDevtoolsCloudbuildV1StorageSourceManifest::class;
33 protected $storageSourceManifestDataType = '';
34
35 /**
36 * @param GoogleDevtoolsCloudbuildV1ConnectedRepository
37 */
38 public function setConnectedRepository(GoogleDevtoolsCloudbuildV1ConnectedRepository $connectedRepository)
39 {
40 $this->connectedRepository = $connectedRepository;
41 }
42 /**
43 * @return GoogleDevtoolsCloudbuildV1ConnectedRepository
44 */
45 public function getConnectedRepository()
46 {
47 return $this->connectedRepository;
48 }
49 /**
50 * @param GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
51 */
52 public function setDeveloperConnectConfig(GoogleDevtoolsCloudbuildV1DeveloperConnectConfig $developerConnectConfig)
53 {
54 $this->developerConnectConfig = $developerConnectConfig;
55 }
56 /**
57 * @return GoogleDevtoolsCloudbuildV1DeveloperConnectConfig
58 */
59 public function getDeveloperConnectConfig()
60 {
61 return $this->developerConnectConfig;
62 }
63 /**
64 * @param GoogleDevtoolsCloudbuildV1GitSource
65 */
66 public function setGitSource(GoogleDevtoolsCloudbuildV1GitSource $gitSource)
67 {
68 $this->gitSource = $gitSource;
69 }
70 /**
71 * @return GoogleDevtoolsCloudbuildV1GitSource
72 */
73 public function getGitSource()
74 {
75 return $this->gitSource;
76 }
77 /**
78 * @param GoogleDevtoolsCloudbuildV1RepoSource
79 */
80 public function setRepoSource(GoogleDevtoolsCloudbuildV1RepoSource $repoSource)
81 {
82 $this->repoSource = $repoSource;
83 }
84 /**
85 * @return GoogleDevtoolsCloudbuildV1RepoSource
86 */
87 public function getRepoSource()
88 {
89 return $this->repoSource;
90 }
91 /**
92 * @param GoogleDevtoolsCloudbuildV1StorageSource
93 */
94 public function setStorageSource(GoogleDevtoolsCloudbuildV1StorageSource $storageSource)
95 {
96 $this->storageSource = $storageSource;
97 }
98 /**
99 * @return GoogleDevtoolsCloudbuildV1StorageSource
100 */
101 public function getStorageSource()
102 {
103 return $this->storageSource;
104 }
105 /**
106 * @param GoogleDevtoolsCloudbuildV1StorageSourceManifest
107 */
108 public function setStorageSourceManifest(GoogleDevtoolsCloudbuildV1StorageSourceManifest $storageSourceManifest)
109 {
110 $this->storageSourceManifest = $storageSourceManifest;
111 }
112 /**
113 * @return GoogleDevtoolsCloudbuildV1StorageSourceManifest
114 */
115 public function getStorageSourceManifest()
116 {
117 return $this->storageSourceManifest;
118 }
119}
120
121// Adding a class alias for backwards compatibility with the previous class name.
122class_alias(GoogleDevtoolsCloudbuildV1Source::class, 'Google_Service_CloudRun_GoogleDevtoolsCloudbuildV1Source');
Note: See TracBrowser for help on using the repository browser.