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 |
|
---|
18 | namespace Google\Service\ContainerAnalysis;
|
---|
19 |
|
---|
20 | class ContaineranalysisGoogleDevtoolsCloudbuildV1Source extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $connectedRepositoryType = ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::class;
|
---|
23 | protected $connectedRepositoryDataType = '';
|
---|
24 | protected $developerConnectConfigType = ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig::class;
|
---|
25 | protected $developerConnectConfigDataType = '';
|
---|
26 | protected $gitSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::class;
|
---|
27 | protected $gitSourceDataType = '';
|
---|
28 | protected $repoSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::class;
|
---|
29 | protected $repoSourceDataType = '';
|
---|
30 | protected $storageSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::class;
|
---|
31 | protected $storageSourceDataType = '';
|
---|
32 | protected $storageSourceManifestType = ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest::class;
|
---|
33 | protected $storageSourceManifestDataType = '';
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
---|
37 | */
|
---|
38 | public function setConnectedRepository(ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository $connectedRepository)
|
---|
39 | {
|
---|
40 | $this->connectedRepository = $connectedRepository;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
---|
44 | */
|
---|
45 | public function getConnectedRepository()
|
---|
46 | {
|
---|
47 | return $this->connectedRepository;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
---|
51 | */
|
---|
52 | public function setDeveloperConnectConfig(ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig $developerConnectConfig)
|
---|
53 | {
|
---|
54 | $this->developerConnectConfig = $developerConnectConfig;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1DeveloperConnectConfig
|
---|
58 | */
|
---|
59 | public function getDeveloperConnectConfig()
|
---|
60 | {
|
---|
61 | return $this->developerConnectConfig;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
---|
65 | */
|
---|
66 | public function setGitSource(ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource $gitSource)
|
---|
67 | {
|
---|
68 | $this->gitSource = $gitSource;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
|
---|
72 | */
|
---|
73 | public function getGitSource()
|
---|
74 | {
|
---|
75 | return $this->gitSource;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource
|
---|
79 | */
|
---|
80 | public function setRepoSource(ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource $repoSource)
|
---|
81 | {
|
---|
82 | $this->repoSource = $repoSource;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource
|
---|
86 | */
|
---|
87 | public function getRepoSource()
|
---|
88 | {
|
---|
89 | return $this->repoSource;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
---|
93 | */
|
---|
94 | public function setStorageSource(ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource $storageSource)
|
---|
95 | {
|
---|
96 | $this->storageSource = $storageSource;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
---|
100 | */
|
---|
101 | public function getStorageSource()
|
---|
102 | {
|
---|
103 | return $this->storageSource;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
|
---|
107 | */
|
---|
108 | public function setStorageSourceManifest(ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest $storageSourceManifest)
|
---|
109 | {
|
---|
110 | $this->storageSourceManifest = $storageSourceManifest;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
|
---|
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.
|
---|
122 | class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1Source::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1Source');
|
---|