source: vendor/google/apiclient-services/src/Apigee/GoogleCloudApigeeV1ProfileConfigCategory.php

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

Upload project files

  • Property mode set to 100644
File size: 3.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\Apigee;
19
20class GoogleCloudApigeeV1ProfileConfigCategory extends \Google\Model
21{
22 protected $abuseType = GoogleCloudApigeeV1ProfileConfigAbuse::class;
23 protected $abuseDataType = '';
24 protected $authorizationType = GoogleCloudApigeeV1ProfileConfigAuthorization::class;
25 protected $authorizationDataType = '';
26 protected $corsType = GoogleCloudApigeeV1ProfileConfigCORS::class;
27 protected $corsDataType = '';
28 protected $mediationType = GoogleCloudApigeeV1ProfileConfigMediation::class;
29 protected $mediationDataType = '';
30 protected $mtlsType = GoogleCloudApigeeV1ProfileConfigMTLS::class;
31 protected $mtlsDataType = '';
32 protected $threatType = GoogleCloudApigeeV1ProfileConfigThreat::class;
33 protected $threatDataType = '';
34
35 /**
36 * @param GoogleCloudApigeeV1ProfileConfigAbuse
37 */
38 public function setAbuse(GoogleCloudApigeeV1ProfileConfigAbuse $abuse)
39 {
40 $this->abuse = $abuse;
41 }
42 /**
43 * @return GoogleCloudApigeeV1ProfileConfigAbuse
44 */
45 public function getAbuse()
46 {
47 return $this->abuse;
48 }
49 /**
50 * @param GoogleCloudApigeeV1ProfileConfigAuthorization
51 */
52 public function setAuthorization(GoogleCloudApigeeV1ProfileConfigAuthorization $authorization)
53 {
54 $this->authorization = $authorization;
55 }
56 /**
57 * @return GoogleCloudApigeeV1ProfileConfigAuthorization
58 */
59 public function getAuthorization()
60 {
61 return $this->authorization;
62 }
63 /**
64 * @param GoogleCloudApigeeV1ProfileConfigCORS
65 */
66 public function setCors(GoogleCloudApigeeV1ProfileConfigCORS $cors)
67 {
68 $this->cors = $cors;
69 }
70 /**
71 * @return GoogleCloudApigeeV1ProfileConfigCORS
72 */
73 public function getCors()
74 {
75 return $this->cors;
76 }
77 /**
78 * @param GoogleCloudApigeeV1ProfileConfigMediation
79 */
80 public function setMediation(GoogleCloudApigeeV1ProfileConfigMediation $mediation)
81 {
82 $this->mediation = $mediation;
83 }
84 /**
85 * @return GoogleCloudApigeeV1ProfileConfigMediation
86 */
87 public function getMediation()
88 {
89 return $this->mediation;
90 }
91 /**
92 * @param GoogleCloudApigeeV1ProfileConfigMTLS
93 */
94 public function setMtls(GoogleCloudApigeeV1ProfileConfigMTLS $mtls)
95 {
96 $this->mtls = $mtls;
97 }
98 /**
99 * @return GoogleCloudApigeeV1ProfileConfigMTLS
100 */
101 public function getMtls()
102 {
103 return $this->mtls;
104 }
105 /**
106 * @param GoogleCloudApigeeV1ProfileConfigThreat
107 */
108 public function setThreat(GoogleCloudApigeeV1ProfileConfigThreat $threat)
109 {
110 $this->threat = $threat;
111 }
112 /**
113 * @return GoogleCloudApigeeV1ProfileConfigThreat
114 */
115 public function getThreat()
116 {
117 return $this->threat;
118 }
119}
120
121// Adding a class alias for backwards compatibility with the previous class name.
122class_alias(GoogleCloudApigeeV1ProfileConfigCategory::class, 'Google_Service_Apigee_GoogleCloudApigeeV1ProfileConfigCategory');
Note: See TracBrowser for help on using the repository browser.