forked from googleapis/google-api-php-client-services
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameter.php
More file actions
177 lines (173 loc) · 4.54 KB
/
GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameter.php
File metadata and controls
177 lines (173 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\OrgPolicyAPI;
class GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameter extends \Google\Model
{
/**
* This is only used for distinguishing unset values and should never be used.
* Results in an error.
*/
public const ITEM_TYPE_UNSPECIFIED = 'TYPE_UNSPECIFIED';
/**
* List parameter type.
*/
public const ITEM_LIST = 'LIST';
/**
* String parameter type.
*/
public const ITEM_STRING = 'STRING';
/**
* Boolean parameter type.
*/
public const ITEM_BOOLEAN = 'BOOLEAN';
/**
* This is only used for distinguishing unset values and should never be used.
* Results in an error.
*/
public const TYPE_TYPE_UNSPECIFIED = 'TYPE_UNSPECIFIED';
/**
* List parameter type.
*/
public const TYPE_LIST = 'LIST';
/**
* String parameter type.
*/
public const TYPE_STRING = 'STRING';
/**
* Boolean parameter type.
*/
public const TYPE_BOOLEAN = 'BOOLEAN';
/**
* Sets the value of the parameter in an assignment if no value is given.
*
* @var array
*/
public $defaultValue;
/**
* Determines the parameter's value structure. For example, `LIST` can be
* specified by defining `type: LIST`, and `item: STRING`.
*
* @var string
*/
public $item;
protected $metadataType = GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameterMetadata::class;
protected $metadataDataType = '';
/**
* Type of the parameter.
*
* @var string
*/
public $type;
/**
* Provides a CEL expression to specify the acceptable parameter values during
* assignment. For example, parameterName in ("parameterValue1",
* "parameterValue2").
*
* @var string
*/
public $validValuesExpr;
/**
* Sets the value of the parameter in an assignment if no value is given.
*
* @param array $defaultValue
*/
public function setDefaultValue($defaultValue)
{
$this->defaultValue = $defaultValue;
}
/**
* @return array
*/
public function getDefaultValue()
{
return $this->defaultValue;
}
/**
* Determines the parameter's value structure. For example, `LIST` can be
* specified by defining `type: LIST`, and `item: STRING`.
*
* Accepted values: TYPE_UNSPECIFIED, LIST, STRING, BOOLEAN
*
* @param self::ITEM_* $item
*/
public function setItem($item)
{
$this->item = $item;
}
/**
* @return self::ITEM_*
*/
public function getItem()
{
return $this->item;
}
/**
* Defines subproperties primarily used by the UI to display user-friendly
* information.
*
* @param GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameterMetadata $metadata
*/
public function setMetadata(GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameterMetadata $metadata)
{
$this->metadata = $metadata;
}
/**
* @return GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameterMetadata
*/
public function getMetadata()
{
return $this->metadata;
}
/**
* Type of the parameter.
*
* Accepted values: TYPE_UNSPECIFIED, LIST, STRING, BOOLEAN
*
* @param self::TYPE_* $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return self::TYPE_*
*/
public function getType()
{
return $this->type;
}
/**
* Provides a CEL expression to specify the acceptable parameter values during
* assignment. For example, parameterName in ("parameterValue1",
* "parameterValue2").
*
* @param string $validValuesExpr
*/
public function setValidValuesExpr($validValuesExpr)
{
$this->validValuesExpr = $validValuesExpr;
}
/**
* @return string
*/
public function getValidValuesExpr()
{
return $this->validValuesExpr;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameter::class, 'Google_Service_OrgPolicyAPI_GoogleCloudOrgpolicyV2ConstraintCustomConstraintDefinitionParameter');