source: vendor/google/apiclient-services/src/Integrations/GoogleCloudConnectorsV1EventingConfig.php

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

Upload project files

  • Property mode set to 100644
File size: 5.1 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\Integrations;
19
20class GoogleCloudConnectorsV1EventingConfig extends \Google\Collection
21{
22 protected $collection_key = 'additionalVariables';
23 protected $additionalVariablesType = GoogleCloudConnectorsV1ConfigVariable::class;
24 protected $additionalVariablesDataType = 'array';
25 protected $authConfigType = GoogleCloudConnectorsV1AuthConfig::class;
26 protected $authConfigDataType = '';
27 protected $deadLetterConfigType = GoogleCloudConnectorsV1EventingConfigDeadLetterConfig::class;
28 protected $deadLetterConfigDataType = '';
29 /**
30 * @var bool
31 */
32 public $enrichmentEnabled;
33 /**
34 * @var string
35 */
36 public $eventsListenerIngressEndpoint;
37 protected $listenerAuthConfigType = GoogleCloudConnectorsV1AuthConfig::class;
38 protected $listenerAuthConfigDataType = '';
39 /**
40 * @var bool
41 */
42 public $privateConnectivityEnabled;
43 protected $proxyDestinationConfigType = GoogleCloudConnectorsV1DestinationConfig::class;
44 protected $proxyDestinationConfigDataType = '';
45 protected $registrationDestinationConfigType = GoogleCloudConnectorsV1DestinationConfig::class;
46 protected $registrationDestinationConfigDataType = '';
47
48 /**
49 * @param GoogleCloudConnectorsV1ConfigVariable[]
50 */
51 public function setAdditionalVariables($additionalVariables)
52 {
53 $this->additionalVariables = $additionalVariables;
54 }
55 /**
56 * @return GoogleCloudConnectorsV1ConfigVariable[]
57 */
58 public function getAdditionalVariables()
59 {
60 return $this->additionalVariables;
61 }
62 /**
63 * @param GoogleCloudConnectorsV1AuthConfig
64 */
65 public function setAuthConfig(GoogleCloudConnectorsV1AuthConfig $authConfig)
66 {
67 $this->authConfig = $authConfig;
68 }
69 /**
70 * @return GoogleCloudConnectorsV1AuthConfig
71 */
72 public function getAuthConfig()
73 {
74 return $this->authConfig;
75 }
76 /**
77 * @param GoogleCloudConnectorsV1EventingConfigDeadLetterConfig
78 */
79 public function setDeadLetterConfig(GoogleCloudConnectorsV1EventingConfigDeadLetterConfig $deadLetterConfig)
80 {
81 $this->deadLetterConfig = $deadLetterConfig;
82 }
83 /**
84 * @return GoogleCloudConnectorsV1EventingConfigDeadLetterConfig
85 */
86 public function getDeadLetterConfig()
87 {
88 return $this->deadLetterConfig;
89 }
90 /**
91 * @param bool
92 */
93 public function setEnrichmentEnabled($enrichmentEnabled)
94 {
95 $this->enrichmentEnabled = $enrichmentEnabled;
96 }
97 /**
98 * @return bool
99 */
100 public function getEnrichmentEnabled()
101 {
102 return $this->enrichmentEnabled;
103 }
104 /**
105 * @param string
106 */
107 public function setEventsListenerIngressEndpoint($eventsListenerIngressEndpoint)
108 {
109 $this->eventsListenerIngressEndpoint = $eventsListenerIngressEndpoint;
110 }
111 /**
112 * @return string
113 */
114 public function getEventsListenerIngressEndpoint()
115 {
116 return $this->eventsListenerIngressEndpoint;
117 }
118 /**
119 * @param GoogleCloudConnectorsV1AuthConfig
120 */
121 public function setListenerAuthConfig(GoogleCloudConnectorsV1AuthConfig $listenerAuthConfig)
122 {
123 $this->listenerAuthConfig = $listenerAuthConfig;
124 }
125 /**
126 * @return GoogleCloudConnectorsV1AuthConfig
127 */
128 public function getListenerAuthConfig()
129 {
130 return $this->listenerAuthConfig;
131 }
132 /**
133 * @param bool
134 */
135 public function setPrivateConnectivityEnabled($privateConnectivityEnabled)
136 {
137 $this->privateConnectivityEnabled = $privateConnectivityEnabled;
138 }
139 /**
140 * @return bool
141 */
142 public function getPrivateConnectivityEnabled()
143 {
144 return $this->privateConnectivityEnabled;
145 }
146 /**
147 * @param GoogleCloudConnectorsV1DestinationConfig
148 */
149 public function setProxyDestinationConfig(GoogleCloudConnectorsV1DestinationConfig $proxyDestinationConfig)
150 {
151 $this->proxyDestinationConfig = $proxyDestinationConfig;
152 }
153 /**
154 * @return GoogleCloudConnectorsV1DestinationConfig
155 */
156 public function getProxyDestinationConfig()
157 {
158 return $this->proxyDestinationConfig;
159 }
160 /**
161 * @param GoogleCloudConnectorsV1DestinationConfig
162 */
163 public function setRegistrationDestinationConfig(GoogleCloudConnectorsV1DestinationConfig $registrationDestinationConfig)
164 {
165 $this->registrationDestinationConfig = $registrationDestinationConfig;
166 }
167 /**
168 * @return GoogleCloudConnectorsV1DestinationConfig
169 */
170 public function getRegistrationDestinationConfig()
171 {
172 return $this->registrationDestinationConfig;
173 }
174}
175
176// Adding a class alias for backwards compatibility with the previous class name.
177class_alias(GoogleCloudConnectorsV1EventingConfig::class, 'Google_Service_Integrations_GoogleCloudConnectorsV1EventingConfig');
Note: See TracBrowser for help on using the repository browser.