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\Apigee;
|
---|
19 |
|
---|
20 | class GoogleCloudApigeeV1AddonsConfig extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $advancedApiOpsConfigType = GoogleCloudApigeeV1AdvancedApiOpsConfig::class;
|
---|
23 | protected $advancedApiOpsConfigDataType = '';
|
---|
24 | protected $analyticsConfigType = GoogleCloudApigeeV1AnalyticsConfig::class;
|
---|
25 | protected $analyticsConfigDataType = '';
|
---|
26 | protected $apiSecurityConfigType = GoogleCloudApigeeV1ApiSecurityConfig::class;
|
---|
27 | protected $apiSecurityConfigDataType = '';
|
---|
28 | protected $connectorsPlatformConfigType = GoogleCloudApigeeV1ConnectorsPlatformConfig::class;
|
---|
29 | protected $connectorsPlatformConfigDataType = '';
|
---|
30 | protected $integrationConfigType = GoogleCloudApigeeV1IntegrationConfig::class;
|
---|
31 | protected $integrationConfigDataType = '';
|
---|
32 | protected $monetizationConfigType = GoogleCloudApigeeV1MonetizationConfig::class;
|
---|
33 | protected $monetizationConfigDataType = '';
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @param GoogleCloudApigeeV1AdvancedApiOpsConfig
|
---|
37 | */
|
---|
38 | public function setAdvancedApiOpsConfig(GoogleCloudApigeeV1AdvancedApiOpsConfig $advancedApiOpsConfig)
|
---|
39 | {
|
---|
40 | $this->advancedApiOpsConfig = $advancedApiOpsConfig;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * @return GoogleCloudApigeeV1AdvancedApiOpsConfig
|
---|
44 | */
|
---|
45 | public function getAdvancedApiOpsConfig()
|
---|
46 | {
|
---|
47 | return $this->advancedApiOpsConfig;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @param GoogleCloudApigeeV1AnalyticsConfig
|
---|
51 | */
|
---|
52 | public function setAnalyticsConfig(GoogleCloudApigeeV1AnalyticsConfig $analyticsConfig)
|
---|
53 | {
|
---|
54 | $this->analyticsConfig = $analyticsConfig;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @return GoogleCloudApigeeV1AnalyticsConfig
|
---|
58 | */
|
---|
59 | public function getAnalyticsConfig()
|
---|
60 | {
|
---|
61 | return $this->analyticsConfig;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @param GoogleCloudApigeeV1ApiSecurityConfig
|
---|
65 | */
|
---|
66 | public function setApiSecurityConfig(GoogleCloudApigeeV1ApiSecurityConfig $apiSecurityConfig)
|
---|
67 | {
|
---|
68 | $this->apiSecurityConfig = $apiSecurityConfig;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @return GoogleCloudApigeeV1ApiSecurityConfig
|
---|
72 | */
|
---|
73 | public function getApiSecurityConfig()
|
---|
74 | {
|
---|
75 | return $this->apiSecurityConfig;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @param GoogleCloudApigeeV1ConnectorsPlatformConfig
|
---|
79 | */
|
---|
80 | public function setConnectorsPlatformConfig(GoogleCloudApigeeV1ConnectorsPlatformConfig $connectorsPlatformConfig)
|
---|
81 | {
|
---|
82 | $this->connectorsPlatformConfig = $connectorsPlatformConfig;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return GoogleCloudApigeeV1ConnectorsPlatformConfig
|
---|
86 | */
|
---|
87 | public function getConnectorsPlatformConfig()
|
---|
88 | {
|
---|
89 | return $this->connectorsPlatformConfig;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param GoogleCloudApigeeV1IntegrationConfig
|
---|
93 | */
|
---|
94 | public function setIntegrationConfig(GoogleCloudApigeeV1IntegrationConfig $integrationConfig)
|
---|
95 | {
|
---|
96 | $this->integrationConfig = $integrationConfig;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return GoogleCloudApigeeV1IntegrationConfig
|
---|
100 | */
|
---|
101 | public function getIntegrationConfig()
|
---|
102 | {
|
---|
103 | return $this->integrationConfig;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param GoogleCloudApigeeV1MonetizationConfig
|
---|
107 | */
|
---|
108 | public function setMonetizationConfig(GoogleCloudApigeeV1MonetizationConfig $monetizationConfig)
|
---|
109 | {
|
---|
110 | $this->monetizationConfig = $monetizationConfig;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return GoogleCloudApigeeV1MonetizationConfig
|
---|
114 | */
|
---|
115 | public function getMonetizationConfig()
|
---|
116 | {
|
---|
117 | return $this->monetizationConfig;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
122 | class_alias(GoogleCloudApigeeV1AddonsConfig::class, 'Google_Service_Apigee_GoogleCloudApigeeV1AddonsConfig');
|
---|