source: vendor/google/apiclient-services/src/CloudBuild/BitbucketServerTriggerConfig.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: 2.9 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\CloudBuild;
19
20class BitbucketServerTriggerConfig extends \Google\Model
21{
22 protected $bitbucketServerConfigType = BitbucketServerConfig::class;
23 protected $bitbucketServerConfigDataType = '';
24 /**
25 * @var string
26 */
27 public $bitbucketServerConfigResource;
28 /**
29 * @var string
30 */
31 public $projectKey;
32 protected $pullRequestType = PullRequestFilter::class;
33 protected $pullRequestDataType = '';
34 protected $pushType = PushFilter::class;
35 protected $pushDataType = '';
36 /**
37 * @var string
38 */
39 public $repoSlug;
40
41 /**
42 * @param BitbucketServerConfig
43 */
44 public function setBitbucketServerConfig(BitbucketServerConfig $bitbucketServerConfig)
45 {
46 $this->bitbucketServerConfig = $bitbucketServerConfig;
47 }
48 /**
49 * @return BitbucketServerConfig
50 */
51 public function getBitbucketServerConfig()
52 {
53 return $this->bitbucketServerConfig;
54 }
55 /**
56 * @param string
57 */
58 public function setBitbucketServerConfigResource($bitbucketServerConfigResource)
59 {
60 $this->bitbucketServerConfigResource = $bitbucketServerConfigResource;
61 }
62 /**
63 * @return string
64 */
65 public function getBitbucketServerConfigResource()
66 {
67 return $this->bitbucketServerConfigResource;
68 }
69 /**
70 * @param string
71 */
72 public function setProjectKey($projectKey)
73 {
74 $this->projectKey = $projectKey;
75 }
76 /**
77 * @return string
78 */
79 public function getProjectKey()
80 {
81 return $this->projectKey;
82 }
83 /**
84 * @param PullRequestFilter
85 */
86 public function setPullRequest(PullRequestFilter $pullRequest)
87 {
88 $this->pullRequest = $pullRequest;
89 }
90 /**
91 * @return PullRequestFilter
92 */
93 public function getPullRequest()
94 {
95 return $this->pullRequest;
96 }
97 /**
98 * @param PushFilter
99 */
100 public function setPush(PushFilter $push)
101 {
102 $this->push = $push;
103 }
104 /**
105 * @return PushFilter
106 */
107 public function getPush()
108 {
109 return $this->push;
110 }
111 /**
112 * @param string
113 */
114 public function setRepoSlug($repoSlug)
115 {
116 $this->repoSlug = $repoSlug;
117 }
118 /**
119 * @return string
120 */
121 public function getRepoSlug()
122 {
123 return $this->repoSlug;
124 }
125}
126
127// Adding a class alias for backwards compatibility with the previous class name.
128class_alias(BitbucketServerTriggerConfig::class, 'Google_Service_CloudBuild_BitbucketServerTriggerConfig');
Note: See TracBrowser for help on using the repository browser.