source: vendor/google/apiclient-services/src/ContainerAnalysis/ContaineranalysisGoogleDevtoolsCloudbuildV1SourceProvenance.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: 4.4 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\ContainerAnalysis;
19
20class ContaineranalysisGoogleDevtoolsCloudbuildV1SourceProvenance extends \Google\Model
21{
22 protected $fileHashesType = ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::class;
23 protected $fileHashesDataType = 'map';
24 protected $resolvedConnectedRepositoryType = ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::class;
25 protected $resolvedConnectedRepositoryDataType = '';
26 protected $resolvedGitSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::class;
27 protected $resolvedGitSourceDataType = '';
28 protected $resolvedRepoSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::class;
29 protected $resolvedRepoSourceDataType = '';
30 protected $resolvedStorageSourceType = ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource::class;
31 protected $resolvedStorageSourceDataType = '';
32 protected $resolvedStorageSourceManifestType = ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest::class;
33 protected $resolvedStorageSourceManifestDataType = '';
34
35 /**
36 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes[]
37 */
38 public function setFileHashes($fileHashes)
39 {
40 $this->fileHashes = $fileHashes;
41 }
42 /**
43 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes[]
44 */
45 public function getFileHashes()
46 {
47 return $this->fileHashes;
48 }
49 /**
50 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
51 */
52 public function setResolvedConnectedRepository(ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository $resolvedConnectedRepository)
53 {
54 $this->resolvedConnectedRepository = $resolvedConnectedRepository;
55 }
56 /**
57 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
58 */
59 public function getResolvedConnectedRepository()
60 {
61 return $this->resolvedConnectedRepository;
62 }
63 /**
64 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
65 */
66 public function setResolvedGitSource(ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource $resolvedGitSource)
67 {
68 $this->resolvedGitSource = $resolvedGitSource;
69 }
70 /**
71 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource
72 */
73 public function getResolvedGitSource()
74 {
75 return $this->resolvedGitSource;
76 }
77 /**
78 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource
79 */
80 public function setResolvedRepoSource(ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource $resolvedRepoSource)
81 {
82 $this->resolvedRepoSource = $resolvedRepoSource;
83 }
84 /**
85 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource
86 */
87 public function getResolvedRepoSource()
88 {
89 return $this->resolvedRepoSource;
90 }
91 /**
92 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
93 */
94 public function setResolvedStorageSource(ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource $resolvedStorageSource)
95 {
96 $this->resolvedStorageSource = $resolvedStorageSource;
97 }
98 /**
99 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
100 */
101 public function getResolvedStorageSource()
102 {
103 return $this->resolvedStorageSource;
104 }
105 /**
106 * @param ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
107 */
108 public function setResolvedStorageSourceManifest(ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest $resolvedStorageSourceManifest)
109 {
110 $this->resolvedStorageSourceManifest = $resolvedStorageSourceManifest;
111 }
112 /**
113 * @return ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
114 */
115 public function getResolvedStorageSourceManifest()
116 {
117 return $this->resolvedStorageSourceManifest;
118 }
119}
120
121// Adding a class alias for backwards compatibility with the previous class name.
122class_alias(ContaineranalysisGoogleDevtoolsCloudbuildV1SourceProvenance::class, 'Google_Service_ContainerAnalysis_ContaineranalysisGoogleDevtoolsCloudbuildV1SourceProvenance');
Note: See TracBrowser for help on using the repository browser.