pulumi-spotinst 3.112.0a1741317810__py3-none-any.whl → 3.128.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-spotinst might be problematic. Click here for more details.
- pulumi_spotinst/__init__.py +11 -1
- pulumi_spotinst/_inputs.py +2283 -1519
- pulumi_spotinst/_utilities.py +1 -1
- pulumi_spotinst/account.py +20 -19
- pulumi_spotinst/aws/__init__.py +2 -1
- pulumi_spotinst/aws/_inputs.py +4047 -3607
- pulumi_spotinst/aws/account.py +20 -19
- pulumi_spotinst/aws/beanstalk.py +254 -177
- pulumi_spotinst/aws/credentials.py +37 -36
- pulumi_spotinst/aws/elastigroup.py +970 -924
- pulumi_spotinst/aws/managed_instance.py +507 -506
- pulumi_spotinst/aws/mr_scalar.py +658 -653
- pulumi_spotinst/aws/ocean.py +668 -526
- pulumi_spotinst/aws/ocean_extended_resource_definition.py +37 -36
- pulumi_spotinst/aws/ocean_launch_spec.py +439 -297
- pulumi_spotinst/aws/outputs.py +2697 -2363
- pulumi_spotinst/aws/suspension.py +23 -22
- pulumi_spotinst/azure/__init__.py +2 -1
- pulumi_spotinst/azure/_inputs.py +607 -607
- pulumi_spotinst/azure/ocean_np.py +387 -386
- pulumi_spotinst/azure/ocean_np_virtual_node_group.py +323 -322
- pulumi_spotinst/azure/outputs.py +411 -411
- pulumi_spotinst/config/__init__.py +2 -1
- pulumi_spotinst/config/__init__.pyi +2 -2
- pulumi_spotinst/config/vars.py +6 -6
- pulumi_spotinst/credentials_azure.py +139 -89
- pulumi_spotinst/credentials_gcp.py +190 -189
- pulumi_spotinst/data_integration.py +40 -39
- pulumi_spotinst/ecs/__init__.py +2 -1
- pulumi_spotinst/ecs/_inputs.py +584 -584
- pulumi_spotinst/ecs/ocean.py +628 -415
- pulumi_spotinst/ecs/ocean_launch_spec.py +197 -196
- pulumi_spotinst/ecs/outputs.py +394 -394
- pulumi_spotinst/elastigroup_azure_v3.py +326 -325
- pulumi_spotinst/gcp/__init__.py +2 -1
- pulumi_spotinst/gcp/_inputs.py +573 -499
- pulumi_spotinst/gcp/elastigroup.py +491 -482
- pulumi_spotinst/gcp/outputs.py +395 -330
- pulumi_spotinst/gke/__init__.py +2 -1
- pulumi_spotinst/gke/_inputs.py +1120 -895
- pulumi_spotinst/gke/elastigroup.py +341 -340
- pulumi_spotinst/gke/ocean_import.py +204 -203
- pulumi_spotinst/gke/ocean_launch_spec.py +288 -216
- pulumi_spotinst/gke/ocean_launch_spec_import.py +37 -36
- pulumi_spotinst/gke/outputs.py +769 -583
- pulumi_spotinst/health_check.py +106 -65
- pulumi_spotinst/notification_center.py +344 -0
- pulumi_spotinst/ocean_right_sizing_rule.py +424 -77
- pulumi_spotinst/oceancd/__init__.py +2 -1
- pulumi_spotinst/oceancd/_inputs.py +764 -764
- pulumi_spotinst/oceancd/outputs.py +526 -526
- pulumi_spotinst/oceancd/rollout_spec.py +35 -34
- pulumi_spotinst/oceancd/strategy.py +22 -21
- pulumi_spotinst/oceancd/verification_provider.py +52 -51
- pulumi_spotinst/oceancd/verification_template.py +26 -25
- pulumi_spotinst/organization/__init__.py +2 -1
- pulumi_spotinst/organization/_inputs.py +68 -68
- pulumi_spotinst/organization/outputs.py +46 -46
- pulumi_spotinst/organization/policy.py +40 -39
- pulumi_spotinst/organization/programmatic_user.py +60 -59
- pulumi_spotinst/organization/user.py +108 -107
- pulumi_spotinst/organization/user_group.py +57 -56
- pulumi_spotinst/outputs.py +1539 -932
- pulumi_spotinst/provider.py +61 -40
- pulumi_spotinst/pulumi-plugin.json +1 -1
- pulumi_spotinst/spark/__init__.py +2 -1
- pulumi_spotinst/spark/_inputs.py +104 -104
- pulumi_spotinst/spark/ocean.py +38 -37
- pulumi_spotinst/spark/ocean_virtual_node_group.py +29 -28
- pulumi_spotinst/spark/outputs.py +72 -72
- pulumi_spotinst/stateful_node_azure.py +340 -343
- pulumi_spotinst/subscription.py +88 -87
- {pulumi_spotinst-3.112.0a1741317810.dist-info → pulumi_spotinst-3.128.0.dist-info}/METADATA +4 -4
- pulumi_spotinst-3.128.0.dist-info/RECORD +77 -0
- {pulumi_spotinst-3.112.0a1741317810.dist-info → pulumi_spotinst-3.128.0.dist-info}/WHEEL +1 -1
- pulumi_spotinst-3.112.0a1741317810.dist-info/RECORD +0 -76
- {pulumi_spotinst-3.112.0a1741317810.dist-info → pulumi_spotinst-3.128.0.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# coding=utf-8
|
|
2
|
-
# *** WARNING: this file was generated by
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import warnings
|
|
7
7
|
import sys
|
|
8
8
|
import pulumi
|
|
@@ -147,7 +147,7 @@ MYPY = False
|
|
|
147
147
|
|
|
148
148
|
if not MYPY:
|
|
149
149
|
class RolloutSpecFailurePolicyArgsDict(TypedDict):
|
|
150
|
-
action: pulumi.Input[str]
|
|
150
|
+
action: pulumi.Input[_builtins.str]
|
|
151
151
|
"""
|
|
152
152
|
Choose an action to perform on failure. Default is `abort`. Enum: "abort" "pause" "promote".
|
|
153
153
|
"""
|
|
@@ -157,36 +157,36 @@ elif False:
|
|
|
157
157
|
@pulumi.input_type
|
|
158
158
|
class RolloutSpecFailurePolicyArgs:
|
|
159
159
|
def __init__(__self__, *,
|
|
160
|
-
action: pulumi.Input[str]):
|
|
160
|
+
action: pulumi.Input[_builtins.str]):
|
|
161
161
|
"""
|
|
162
|
-
:param pulumi.Input[str] action: Choose an action to perform on failure. Default is `abort`. Enum: "abort" "pause" "promote".
|
|
162
|
+
:param pulumi.Input[_builtins.str] action: Choose an action to perform on failure. Default is `abort`. Enum: "abort" "pause" "promote".
|
|
163
163
|
"""
|
|
164
164
|
pulumi.set(__self__, "action", action)
|
|
165
165
|
|
|
166
|
-
@property
|
|
166
|
+
@_builtins.property
|
|
167
167
|
@pulumi.getter
|
|
168
|
-
def action(self) -> pulumi.Input[str]:
|
|
168
|
+
def action(self) -> pulumi.Input[_builtins.str]:
|
|
169
169
|
"""
|
|
170
170
|
Choose an action to perform on failure. Default is `abort`. Enum: "abort" "pause" "promote".
|
|
171
171
|
"""
|
|
172
172
|
return pulumi.get(self, "action")
|
|
173
173
|
|
|
174
174
|
@action.setter
|
|
175
|
-
def action(self, value: pulumi.Input[str]):
|
|
175
|
+
def action(self, value: pulumi.Input[_builtins.str]):
|
|
176
176
|
pulumi.set(self, "action", value)
|
|
177
177
|
|
|
178
178
|
|
|
179
179
|
if not MYPY:
|
|
180
180
|
class RolloutSpecSpotDeploymentArgsDict(TypedDict):
|
|
181
|
-
spot_deployments_cluster_id: NotRequired[pulumi.Input[str]]
|
|
181
|
+
spot_deployments_cluster_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
182
182
|
"""
|
|
183
183
|
Ocean CD cluster identifier for the references `SpotDeployment`.
|
|
184
184
|
"""
|
|
185
|
-
spot_deployments_name: NotRequired[pulumi.Input[str]]
|
|
185
|
+
spot_deployments_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
186
186
|
"""
|
|
187
187
|
The name of the `SpotDeployment` resource
|
|
188
188
|
"""
|
|
189
|
-
spot_deployments_namespace: NotRequired[pulumi.Input[str]]
|
|
189
|
+
spot_deployments_namespace: NotRequired[pulumi.Input[_builtins.str]]
|
|
190
190
|
"""
|
|
191
191
|
The namespace which the `SpotDeployment` resource exists within.
|
|
192
192
|
"""
|
|
@@ -196,13 +196,13 @@ elif False:
|
|
|
196
196
|
@pulumi.input_type
|
|
197
197
|
class RolloutSpecSpotDeploymentArgs:
|
|
198
198
|
def __init__(__self__, *,
|
|
199
|
-
spot_deployments_cluster_id: Optional[pulumi.Input[str]] = None,
|
|
200
|
-
spot_deployments_name: Optional[pulumi.Input[str]] = None,
|
|
201
|
-
spot_deployments_namespace: Optional[pulumi.Input[str]] = None):
|
|
199
|
+
spot_deployments_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
200
|
+
spot_deployments_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
201
|
+
spot_deployments_namespace: Optional[pulumi.Input[_builtins.str]] = None):
|
|
202
202
|
"""
|
|
203
|
-
:param pulumi.Input[str] spot_deployments_cluster_id: Ocean CD cluster identifier for the references `SpotDeployment`.
|
|
204
|
-
:param pulumi.Input[str] spot_deployments_name: The name of the `SpotDeployment` resource
|
|
205
|
-
:param pulumi.Input[str] spot_deployments_namespace: The namespace which the `SpotDeployment` resource exists within.
|
|
203
|
+
:param pulumi.Input[_builtins.str] spot_deployments_cluster_id: Ocean CD cluster identifier for the references `SpotDeployment`.
|
|
204
|
+
:param pulumi.Input[_builtins.str] spot_deployments_name: The name of the `SpotDeployment` resource
|
|
205
|
+
:param pulumi.Input[_builtins.str] spot_deployments_namespace: The namespace which the `SpotDeployment` resource exists within.
|
|
206
206
|
"""
|
|
207
207
|
if spot_deployments_cluster_id is not None:
|
|
208
208
|
pulumi.set(__self__, "spot_deployments_cluster_id", spot_deployments_cluster_id)
|
|
@@ -211,46 +211,46 @@ class RolloutSpecSpotDeploymentArgs:
|
|
|
211
211
|
if spot_deployments_namespace is not None:
|
|
212
212
|
pulumi.set(__self__, "spot_deployments_namespace", spot_deployments_namespace)
|
|
213
213
|
|
|
214
|
-
@property
|
|
214
|
+
@_builtins.property
|
|
215
215
|
@pulumi.getter(name="spotDeploymentsClusterId")
|
|
216
|
-
def spot_deployments_cluster_id(self) -> Optional[pulumi.Input[str]]:
|
|
216
|
+
def spot_deployments_cluster_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
217
217
|
"""
|
|
218
218
|
Ocean CD cluster identifier for the references `SpotDeployment`.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "spot_deployments_cluster_id")
|
|
221
221
|
|
|
222
222
|
@spot_deployments_cluster_id.setter
|
|
223
|
-
def spot_deployments_cluster_id(self, value: Optional[pulumi.Input[str]]):
|
|
223
|
+
def spot_deployments_cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
224
224
|
pulumi.set(self, "spot_deployments_cluster_id", value)
|
|
225
225
|
|
|
226
|
-
@property
|
|
226
|
+
@_builtins.property
|
|
227
227
|
@pulumi.getter(name="spotDeploymentsName")
|
|
228
|
-
def spot_deployments_name(self) -> Optional[pulumi.Input[str]]:
|
|
228
|
+
def spot_deployments_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
229
229
|
"""
|
|
230
230
|
The name of the `SpotDeployment` resource
|
|
231
231
|
"""
|
|
232
232
|
return pulumi.get(self, "spot_deployments_name")
|
|
233
233
|
|
|
234
234
|
@spot_deployments_name.setter
|
|
235
|
-
def spot_deployments_name(self, value: Optional[pulumi.Input[str]]):
|
|
235
|
+
def spot_deployments_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
236
236
|
pulumi.set(self, "spot_deployments_name", value)
|
|
237
237
|
|
|
238
|
-
@property
|
|
238
|
+
@_builtins.property
|
|
239
239
|
@pulumi.getter(name="spotDeploymentsNamespace")
|
|
240
|
-
def spot_deployments_namespace(self) -> Optional[pulumi.Input[str]]:
|
|
240
|
+
def spot_deployments_namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
241
241
|
"""
|
|
242
242
|
The namespace which the `SpotDeployment` resource exists within.
|
|
243
243
|
"""
|
|
244
244
|
return pulumi.get(self, "spot_deployments_namespace")
|
|
245
245
|
|
|
246
246
|
@spot_deployments_namespace.setter
|
|
247
|
-
def spot_deployments_namespace(self, value: Optional[pulumi.Input[str]]):
|
|
247
|
+
def spot_deployments_namespace(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
248
248
|
pulumi.set(self, "spot_deployments_namespace", value)
|
|
249
249
|
|
|
250
250
|
|
|
251
251
|
if not MYPY:
|
|
252
252
|
class RolloutSpecStrategyArgsDict(TypedDict):
|
|
253
|
-
strategy_name: pulumi.Input[str]
|
|
253
|
+
strategy_name: pulumi.Input[_builtins.str]
|
|
254
254
|
"""
|
|
255
255
|
Ocean CD strategy name identifier.
|
|
256
256
|
"""
|
|
@@ -264,29 +264,29 @@ elif False:
|
|
|
264
264
|
@pulumi.input_type
|
|
265
265
|
class RolloutSpecStrategyArgs:
|
|
266
266
|
def __init__(__self__, *,
|
|
267
|
-
strategy_name: pulumi.Input[str],
|
|
267
|
+
strategy_name: pulumi.Input[_builtins.str],
|
|
268
268
|
args: Optional[pulumi.Input[Sequence[pulumi.Input['RolloutSpecStrategyArgArgs']]]] = None):
|
|
269
269
|
"""
|
|
270
|
-
:param pulumi.Input[str] strategy_name: Ocean CD strategy name identifier.
|
|
270
|
+
:param pulumi.Input[_builtins.str] strategy_name: Ocean CD strategy name identifier.
|
|
271
271
|
:param pulumi.Input[Sequence[pulumi.Input['RolloutSpecStrategyArgArgs']]] args: Arguments defined in Verification Templates.
|
|
272
272
|
"""
|
|
273
273
|
pulumi.set(__self__, "strategy_name", strategy_name)
|
|
274
274
|
if args is not None:
|
|
275
275
|
pulumi.set(__self__, "args", args)
|
|
276
276
|
|
|
277
|
-
@property
|
|
277
|
+
@_builtins.property
|
|
278
278
|
@pulumi.getter(name="strategyName")
|
|
279
|
-
def strategy_name(self) -> pulumi.Input[str]:
|
|
279
|
+
def strategy_name(self) -> pulumi.Input[_builtins.str]:
|
|
280
280
|
"""
|
|
281
281
|
Ocean CD strategy name identifier.
|
|
282
282
|
"""
|
|
283
283
|
return pulumi.get(self, "strategy_name")
|
|
284
284
|
|
|
285
285
|
@strategy_name.setter
|
|
286
|
-
def strategy_name(self, value: pulumi.Input[str]):
|
|
286
|
+
def strategy_name(self, value: pulumi.Input[_builtins.str]):
|
|
287
287
|
pulumi.set(self, "strategy_name", value)
|
|
288
288
|
|
|
289
|
-
@property
|
|
289
|
+
@_builtins.property
|
|
290
290
|
@pulumi.getter
|
|
291
291
|
def args(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RolloutSpecStrategyArgArgs']]]]:
|
|
292
292
|
"""
|
|
@@ -301,11 +301,11 @@ class RolloutSpecStrategyArgs:
|
|
|
301
301
|
|
|
302
302
|
if not MYPY:
|
|
303
303
|
class RolloutSpecStrategyArgArgsDict(TypedDict):
|
|
304
|
-
arg_name: pulumi.Input[str]
|
|
304
|
+
arg_name: pulumi.Input[_builtins.str]
|
|
305
305
|
"""
|
|
306
306
|
Name of an argument.
|
|
307
307
|
"""
|
|
308
|
-
arg_value: NotRequired[pulumi.Input[str]]
|
|
308
|
+
arg_value: NotRequired[pulumi.Input[_builtins.str]]
|
|
309
309
|
"""
|
|
310
310
|
Value of an argument.
|
|
311
311
|
"""
|
|
@@ -319,12 +319,12 @@ elif False:
|
|
|
319
319
|
@pulumi.input_type
|
|
320
320
|
class RolloutSpecStrategyArgArgs:
|
|
321
321
|
def __init__(__self__, *,
|
|
322
|
-
arg_name: pulumi.Input[str],
|
|
323
|
-
arg_value: Optional[pulumi.Input[str]] = None,
|
|
322
|
+
arg_name: pulumi.Input[_builtins.str],
|
|
323
|
+
arg_value: Optional[pulumi.Input[_builtins.str]] = None,
|
|
324
324
|
value_from: Optional[pulumi.Input['RolloutSpecStrategyArgValueFromArgs']] = None):
|
|
325
325
|
"""
|
|
326
|
-
:param pulumi.Input[str] arg_name: Name of an argument.
|
|
327
|
-
:param pulumi.Input[str] arg_value: Value of an argument.
|
|
326
|
+
:param pulumi.Input[_builtins.str] arg_name: Name of an argument.
|
|
327
|
+
:param pulumi.Input[_builtins.str] arg_value: Value of an argument.
|
|
328
328
|
:param pulumi.Input['RolloutSpecStrategyArgValueFromArgs'] value_from: Defines from where to get the value of an argument.
|
|
329
329
|
"""
|
|
330
330
|
pulumi.set(__self__, "arg_name", arg_name)
|
|
@@ -333,31 +333,31 @@ class RolloutSpecStrategyArgArgs:
|
|
|
333
333
|
if value_from is not None:
|
|
334
334
|
pulumi.set(__self__, "value_from", value_from)
|
|
335
335
|
|
|
336
|
-
@property
|
|
336
|
+
@_builtins.property
|
|
337
337
|
@pulumi.getter(name="argName")
|
|
338
|
-
def arg_name(self) -> pulumi.Input[str]:
|
|
338
|
+
def arg_name(self) -> pulumi.Input[_builtins.str]:
|
|
339
339
|
"""
|
|
340
340
|
Name of an argument.
|
|
341
341
|
"""
|
|
342
342
|
return pulumi.get(self, "arg_name")
|
|
343
343
|
|
|
344
344
|
@arg_name.setter
|
|
345
|
-
def arg_name(self, value: pulumi.Input[str]):
|
|
345
|
+
def arg_name(self, value: pulumi.Input[_builtins.str]):
|
|
346
346
|
pulumi.set(self, "arg_name", value)
|
|
347
347
|
|
|
348
|
-
@property
|
|
348
|
+
@_builtins.property
|
|
349
349
|
@pulumi.getter(name="argValue")
|
|
350
|
-
def arg_value(self) -> Optional[pulumi.Input[str]]:
|
|
350
|
+
def arg_value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
351
351
|
"""
|
|
352
352
|
Value of an argument.
|
|
353
353
|
"""
|
|
354
354
|
return pulumi.get(self, "arg_value")
|
|
355
355
|
|
|
356
356
|
@arg_value.setter
|
|
357
|
-
def arg_value(self, value: Optional[pulumi.Input[str]]):
|
|
357
|
+
def arg_value(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
358
358
|
pulumi.set(self, "arg_value", value)
|
|
359
359
|
|
|
360
|
-
@property
|
|
360
|
+
@_builtins.property
|
|
361
361
|
@pulumi.getter(name="valueFrom")
|
|
362
362
|
def value_from(self) -> Optional[pulumi.Input['RolloutSpecStrategyArgValueFromArgs']]:
|
|
363
363
|
"""
|
|
@@ -388,7 +388,7 @@ class RolloutSpecStrategyArgValueFromArgs:
|
|
|
388
388
|
"""
|
|
389
389
|
pulumi.set(__self__, "field_ref", field_ref)
|
|
390
390
|
|
|
391
|
-
@property
|
|
391
|
+
@_builtins.property
|
|
392
392
|
@pulumi.getter(name="fieldRef")
|
|
393
393
|
def field_ref(self) -> pulumi.Input['RolloutSpecStrategyArgValueFromFieldRefArgs']:
|
|
394
394
|
"""
|
|
@@ -403,7 +403,7 @@ class RolloutSpecStrategyArgValueFromArgs:
|
|
|
403
403
|
|
|
404
404
|
if not MYPY:
|
|
405
405
|
class RolloutSpecStrategyArgValueFromFieldRefArgsDict(TypedDict):
|
|
406
|
-
field_path: pulumi.Input[str]
|
|
406
|
+
field_path: pulumi.Input[_builtins.str]
|
|
407
407
|
"""
|
|
408
408
|
Path to SpotDeployment's field from where to get the value of an argument.
|
|
409
409
|
"""
|
|
@@ -413,22 +413,22 @@ elif False:
|
|
|
413
413
|
@pulumi.input_type
|
|
414
414
|
class RolloutSpecStrategyArgValueFromFieldRefArgs:
|
|
415
415
|
def __init__(__self__, *,
|
|
416
|
-
field_path: pulumi.Input[str]):
|
|
416
|
+
field_path: pulumi.Input[_builtins.str]):
|
|
417
417
|
"""
|
|
418
|
-
:param pulumi.Input[str] field_path: Path to SpotDeployment's field from where to get the value of an argument.
|
|
418
|
+
:param pulumi.Input[_builtins.str] field_path: Path to SpotDeployment's field from where to get the value of an argument.
|
|
419
419
|
"""
|
|
420
420
|
pulumi.set(__self__, "field_path", field_path)
|
|
421
421
|
|
|
422
|
-
@property
|
|
422
|
+
@_builtins.property
|
|
423
423
|
@pulumi.getter(name="fieldPath")
|
|
424
|
-
def field_path(self) -> pulumi.Input[str]:
|
|
424
|
+
def field_path(self) -> pulumi.Input[_builtins.str]:
|
|
425
425
|
"""
|
|
426
426
|
Path to SpotDeployment's field from where to get the value of an argument.
|
|
427
427
|
"""
|
|
428
428
|
return pulumi.get(self, "field_path")
|
|
429
429
|
|
|
430
430
|
@field_path.setter
|
|
431
|
-
def field_path(self, value: pulumi.Input[str]):
|
|
431
|
+
def field_path(self, value: pulumi.Input[_builtins.str]):
|
|
432
432
|
pulumi.set(self, "field_path", value)
|
|
433
433
|
|
|
434
434
|
|
|
@@ -442,7 +442,7 @@ if not MYPY:
|
|
|
442
442
|
"""
|
|
443
443
|
Holds specific configuration to use Ambassador to route traffic.
|
|
444
444
|
"""
|
|
445
|
-
canary_service: NotRequired[pulumi.Input[str]]
|
|
445
|
+
canary_service: NotRequired[pulumi.Input[_builtins.str]]
|
|
446
446
|
"""
|
|
447
447
|
The canary service name.
|
|
448
448
|
"""
|
|
@@ -462,7 +462,7 @@ if not MYPY:
|
|
|
462
462
|
"""
|
|
463
463
|
Holds TrafficSplit specific configuration to route traffic.
|
|
464
464
|
"""
|
|
465
|
-
stable_service: NotRequired[pulumi.Input[str]]
|
|
465
|
+
stable_service: NotRequired[pulumi.Input[_builtins.str]]
|
|
466
466
|
"""
|
|
467
467
|
The stable service name.
|
|
468
468
|
"""
|
|
@@ -474,21 +474,21 @@ class RolloutSpecTrafficArgs:
|
|
|
474
474
|
def __init__(__self__, *,
|
|
475
475
|
alb: Optional[pulumi.Input['RolloutSpecTrafficAlbArgs']] = None,
|
|
476
476
|
ambassador: Optional[pulumi.Input['RolloutSpecTrafficAmbassadorArgs']] = None,
|
|
477
|
-
canary_service: Optional[pulumi.Input[str]] = None,
|
|
477
|
+
canary_service: Optional[pulumi.Input[_builtins.str]] = None,
|
|
478
478
|
istio: Optional[pulumi.Input['RolloutSpecTrafficIstioArgs']] = None,
|
|
479
479
|
nginx: Optional[pulumi.Input['RolloutSpecTrafficNginxArgs']] = None,
|
|
480
480
|
ping_pong: Optional[pulumi.Input['RolloutSpecTrafficPingPongArgs']] = None,
|
|
481
481
|
smi: Optional[pulumi.Input['RolloutSpecTrafficSmiArgs']] = None,
|
|
482
|
-
stable_service: Optional[pulumi.Input[str]] = None):
|
|
482
|
+
stable_service: Optional[pulumi.Input[_builtins.str]] = None):
|
|
483
483
|
"""
|
|
484
484
|
:param pulumi.Input['RolloutSpecTrafficAlbArgs'] alb: Holds ALB Ingress specific configuration to route traffic.
|
|
485
485
|
:param pulumi.Input['RolloutSpecTrafficAmbassadorArgs'] ambassador: Holds specific configuration to use Ambassador to route traffic.
|
|
486
|
-
:param pulumi.Input[str] canary_service: The canary service name.
|
|
486
|
+
:param pulumi.Input[_builtins.str] canary_service: The canary service name.
|
|
487
487
|
:param pulumi.Input['RolloutSpecTrafficIstioArgs'] istio: Holds Istio specific configuration to route traffic.
|
|
488
488
|
:param pulumi.Input['RolloutSpecTrafficNginxArgs'] nginx: Holds Nginx Ingress specific configuration to route traffic.
|
|
489
489
|
:param pulumi.Input['RolloutSpecTrafficPingPongArgs'] ping_pong: Holds the ping and pong services. You can use `pingPong` field only when using ALB as a traffic manager with the IP Mode approach.
|
|
490
490
|
:param pulumi.Input['RolloutSpecTrafficSmiArgs'] smi: Holds TrafficSplit specific configuration to route traffic.
|
|
491
|
-
:param pulumi.Input[str] stable_service: The stable service name.
|
|
491
|
+
:param pulumi.Input[_builtins.str] stable_service: The stable service name.
|
|
492
492
|
"""
|
|
493
493
|
if alb is not None:
|
|
494
494
|
pulumi.set(__self__, "alb", alb)
|
|
@@ -507,7 +507,7 @@ class RolloutSpecTrafficArgs:
|
|
|
507
507
|
if stable_service is not None:
|
|
508
508
|
pulumi.set(__self__, "stable_service", stable_service)
|
|
509
509
|
|
|
510
|
-
@property
|
|
510
|
+
@_builtins.property
|
|
511
511
|
@pulumi.getter
|
|
512
512
|
def alb(self) -> Optional[pulumi.Input['RolloutSpecTrafficAlbArgs']]:
|
|
513
513
|
"""
|
|
@@ -519,7 +519,7 @@ class RolloutSpecTrafficArgs:
|
|
|
519
519
|
def alb(self, value: Optional[pulumi.Input['RolloutSpecTrafficAlbArgs']]):
|
|
520
520
|
pulumi.set(self, "alb", value)
|
|
521
521
|
|
|
522
|
-
@property
|
|
522
|
+
@_builtins.property
|
|
523
523
|
@pulumi.getter
|
|
524
524
|
def ambassador(self) -> Optional[pulumi.Input['RolloutSpecTrafficAmbassadorArgs']]:
|
|
525
525
|
"""
|
|
@@ -531,19 +531,19 @@ class RolloutSpecTrafficArgs:
|
|
|
531
531
|
def ambassador(self, value: Optional[pulumi.Input['RolloutSpecTrafficAmbassadorArgs']]):
|
|
532
532
|
pulumi.set(self, "ambassador", value)
|
|
533
533
|
|
|
534
|
-
@property
|
|
534
|
+
@_builtins.property
|
|
535
535
|
@pulumi.getter(name="canaryService")
|
|
536
|
-
def canary_service(self) -> Optional[pulumi.Input[str]]:
|
|
536
|
+
def canary_service(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
537
537
|
"""
|
|
538
538
|
The canary service name.
|
|
539
539
|
"""
|
|
540
540
|
return pulumi.get(self, "canary_service")
|
|
541
541
|
|
|
542
542
|
@canary_service.setter
|
|
543
|
-
def canary_service(self, value: Optional[pulumi.Input[str]]):
|
|
543
|
+
def canary_service(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
544
544
|
pulumi.set(self, "canary_service", value)
|
|
545
545
|
|
|
546
|
-
@property
|
|
546
|
+
@_builtins.property
|
|
547
547
|
@pulumi.getter
|
|
548
548
|
def istio(self) -> Optional[pulumi.Input['RolloutSpecTrafficIstioArgs']]:
|
|
549
549
|
"""
|
|
@@ -555,7 +555,7 @@ class RolloutSpecTrafficArgs:
|
|
|
555
555
|
def istio(self, value: Optional[pulumi.Input['RolloutSpecTrafficIstioArgs']]):
|
|
556
556
|
pulumi.set(self, "istio", value)
|
|
557
557
|
|
|
558
|
-
@property
|
|
558
|
+
@_builtins.property
|
|
559
559
|
@pulumi.getter
|
|
560
560
|
def nginx(self) -> Optional[pulumi.Input['RolloutSpecTrafficNginxArgs']]:
|
|
561
561
|
"""
|
|
@@ -567,7 +567,7 @@ class RolloutSpecTrafficArgs:
|
|
|
567
567
|
def nginx(self, value: Optional[pulumi.Input['RolloutSpecTrafficNginxArgs']]):
|
|
568
568
|
pulumi.set(self, "nginx", value)
|
|
569
569
|
|
|
570
|
-
@property
|
|
570
|
+
@_builtins.property
|
|
571
571
|
@pulumi.getter(name="pingPong")
|
|
572
572
|
def ping_pong(self) -> Optional[pulumi.Input['RolloutSpecTrafficPingPongArgs']]:
|
|
573
573
|
"""
|
|
@@ -579,7 +579,7 @@ class RolloutSpecTrafficArgs:
|
|
|
579
579
|
def ping_pong(self, value: Optional[pulumi.Input['RolloutSpecTrafficPingPongArgs']]):
|
|
580
580
|
pulumi.set(self, "ping_pong", value)
|
|
581
581
|
|
|
582
|
-
@property
|
|
582
|
+
@_builtins.property
|
|
583
583
|
@pulumi.getter
|
|
584
584
|
def smi(self) -> Optional[pulumi.Input['RolloutSpecTrafficSmiArgs']]:
|
|
585
585
|
"""
|
|
@@ -591,34 +591,34 @@ class RolloutSpecTrafficArgs:
|
|
|
591
591
|
def smi(self, value: Optional[pulumi.Input['RolloutSpecTrafficSmiArgs']]):
|
|
592
592
|
pulumi.set(self, "smi", value)
|
|
593
593
|
|
|
594
|
-
@property
|
|
594
|
+
@_builtins.property
|
|
595
595
|
@pulumi.getter(name="stableService")
|
|
596
|
-
def stable_service(self) -> Optional[pulumi.Input[str]]:
|
|
596
|
+
def stable_service(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
597
597
|
"""
|
|
598
598
|
The stable service name.
|
|
599
599
|
"""
|
|
600
600
|
return pulumi.get(self, "stable_service")
|
|
601
601
|
|
|
602
602
|
@stable_service.setter
|
|
603
|
-
def stable_service(self, value: Optional[pulumi.Input[str]]):
|
|
603
|
+
def stable_service(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
604
604
|
pulumi.set(self, "stable_service", value)
|
|
605
605
|
|
|
606
606
|
|
|
607
607
|
if not MYPY:
|
|
608
608
|
class RolloutSpecTrafficAlbArgsDict(TypedDict):
|
|
609
|
-
alb_ingress: pulumi.Input[str]
|
|
609
|
+
alb_ingress: pulumi.Input[_builtins.str]
|
|
610
610
|
"""
|
|
611
611
|
Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
612
612
|
"""
|
|
613
|
-
alb_root_service: pulumi.Input[str]
|
|
613
|
+
alb_root_service: pulumi.Input[_builtins.str]
|
|
614
614
|
"""
|
|
615
615
|
References the service in the ingress to the controller should add the action to.
|
|
616
616
|
"""
|
|
617
|
-
service_port: pulumi.Input[int]
|
|
617
|
+
service_port: pulumi.Input[_builtins.int]
|
|
618
618
|
"""
|
|
619
619
|
Refers to the port that the Ingress action should route traffic to.
|
|
620
620
|
"""
|
|
621
|
-
alb_annotation_prefix: NotRequired[pulumi.Input[str]]
|
|
621
|
+
alb_annotation_prefix: NotRequired[pulumi.Input[_builtins.str]]
|
|
622
622
|
"""
|
|
623
623
|
Has to match the configured annotation prefix on the alb ingress controller.
|
|
624
624
|
"""
|
|
@@ -632,16 +632,16 @@ elif False:
|
|
|
632
632
|
@pulumi.input_type
|
|
633
633
|
class RolloutSpecTrafficAlbArgs:
|
|
634
634
|
def __init__(__self__, *,
|
|
635
|
-
alb_ingress: pulumi.Input[str],
|
|
636
|
-
alb_root_service: pulumi.Input[str],
|
|
637
|
-
service_port: pulumi.Input[int],
|
|
638
|
-
alb_annotation_prefix: Optional[pulumi.Input[str]] = None,
|
|
635
|
+
alb_ingress: pulumi.Input[_builtins.str],
|
|
636
|
+
alb_root_service: pulumi.Input[_builtins.str],
|
|
637
|
+
service_port: pulumi.Input[_builtins.int],
|
|
638
|
+
alb_annotation_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
639
639
|
stickiness_config: Optional[pulumi.Input['RolloutSpecTrafficAlbStickinessConfigArgs']] = None):
|
|
640
640
|
"""
|
|
641
|
-
:param pulumi.Input[str] alb_ingress: Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
642
|
-
:param pulumi.Input[str] alb_root_service: References the service in the ingress to the controller should add the action to.
|
|
643
|
-
:param pulumi.Input[int] service_port: Refers to the port that the Ingress action should route traffic to.
|
|
644
|
-
:param pulumi.Input[str] alb_annotation_prefix: Has to match the configured annotation prefix on the alb ingress controller.
|
|
641
|
+
:param pulumi.Input[_builtins.str] alb_ingress: Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
642
|
+
:param pulumi.Input[_builtins.str] alb_root_service: References the service in the ingress to the controller should add the action to.
|
|
643
|
+
:param pulumi.Input[_builtins.int] service_port: Refers to the port that the Ingress action should route traffic to.
|
|
644
|
+
:param pulumi.Input[_builtins.str] alb_annotation_prefix: Has to match the configured annotation prefix on the alb ingress controller.
|
|
645
645
|
:param pulumi.Input['RolloutSpecTrafficAlbStickinessConfigArgs'] stickiness_config: Allows to specify further settings on the ForwardConfig.
|
|
646
646
|
"""
|
|
647
647
|
pulumi.set(__self__, "alb_ingress", alb_ingress)
|
|
@@ -652,55 +652,55 @@ class RolloutSpecTrafficAlbArgs:
|
|
|
652
652
|
if stickiness_config is not None:
|
|
653
653
|
pulumi.set(__self__, "stickiness_config", stickiness_config)
|
|
654
654
|
|
|
655
|
-
@property
|
|
655
|
+
@_builtins.property
|
|
656
656
|
@pulumi.getter(name="albIngress")
|
|
657
|
-
def alb_ingress(self) -> pulumi.Input[str]:
|
|
657
|
+
def alb_ingress(self) -> pulumi.Input[_builtins.str]:
|
|
658
658
|
"""
|
|
659
659
|
Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
660
660
|
"""
|
|
661
661
|
return pulumi.get(self, "alb_ingress")
|
|
662
662
|
|
|
663
663
|
@alb_ingress.setter
|
|
664
|
-
def alb_ingress(self, value: pulumi.Input[str]):
|
|
664
|
+
def alb_ingress(self, value: pulumi.Input[_builtins.str]):
|
|
665
665
|
pulumi.set(self, "alb_ingress", value)
|
|
666
666
|
|
|
667
|
-
@property
|
|
667
|
+
@_builtins.property
|
|
668
668
|
@pulumi.getter(name="albRootService")
|
|
669
|
-
def alb_root_service(self) -> pulumi.Input[str]:
|
|
669
|
+
def alb_root_service(self) -> pulumi.Input[_builtins.str]:
|
|
670
670
|
"""
|
|
671
671
|
References the service in the ingress to the controller should add the action to.
|
|
672
672
|
"""
|
|
673
673
|
return pulumi.get(self, "alb_root_service")
|
|
674
674
|
|
|
675
675
|
@alb_root_service.setter
|
|
676
|
-
def alb_root_service(self, value: pulumi.Input[str]):
|
|
676
|
+
def alb_root_service(self, value: pulumi.Input[_builtins.str]):
|
|
677
677
|
pulumi.set(self, "alb_root_service", value)
|
|
678
678
|
|
|
679
|
-
@property
|
|
679
|
+
@_builtins.property
|
|
680
680
|
@pulumi.getter(name="servicePort")
|
|
681
|
-
def service_port(self) -> pulumi.Input[int]:
|
|
681
|
+
def service_port(self) -> pulumi.Input[_builtins.int]:
|
|
682
682
|
"""
|
|
683
683
|
Refers to the port that the Ingress action should route traffic to.
|
|
684
684
|
"""
|
|
685
685
|
return pulumi.get(self, "service_port")
|
|
686
686
|
|
|
687
687
|
@service_port.setter
|
|
688
|
-
def service_port(self, value: pulumi.Input[int]):
|
|
688
|
+
def service_port(self, value: pulumi.Input[_builtins.int]):
|
|
689
689
|
pulumi.set(self, "service_port", value)
|
|
690
690
|
|
|
691
|
-
@property
|
|
691
|
+
@_builtins.property
|
|
692
692
|
@pulumi.getter(name="albAnnotationPrefix")
|
|
693
|
-
def alb_annotation_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
693
|
+
def alb_annotation_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
694
694
|
"""
|
|
695
695
|
Has to match the configured annotation prefix on the alb ingress controller.
|
|
696
696
|
"""
|
|
697
697
|
return pulumi.get(self, "alb_annotation_prefix")
|
|
698
698
|
|
|
699
699
|
@alb_annotation_prefix.setter
|
|
700
|
-
def alb_annotation_prefix(self, value: Optional[pulumi.Input[str]]):
|
|
700
|
+
def alb_annotation_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
701
701
|
pulumi.set(self, "alb_annotation_prefix", value)
|
|
702
702
|
|
|
703
|
-
@property
|
|
703
|
+
@_builtins.property
|
|
704
704
|
@pulumi.getter(name="stickinessConfig")
|
|
705
705
|
def stickiness_config(self) -> Optional[pulumi.Input['RolloutSpecTrafficAlbStickinessConfigArgs']]:
|
|
706
706
|
"""
|
|
@@ -715,11 +715,11 @@ class RolloutSpecTrafficAlbArgs:
|
|
|
715
715
|
|
|
716
716
|
if not MYPY:
|
|
717
717
|
class RolloutSpecTrafficAlbStickinessConfigArgsDict(TypedDict):
|
|
718
|
-
duration_seconds: NotRequired[pulumi.Input[int]]
|
|
718
|
+
duration_seconds: NotRequired[pulumi.Input[_builtins.int]]
|
|
719
719
|
"""
|
|
720
720
|
Defines how long the load balancer should consistently route the user's request to the same target.
|
|
721
721
|
"""
|
|
722
|
-
enabled: NotRequired[pulumi.Input[bool]]
|
|
722
|
+
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
723
723
|
"""
|
|
724
724
|
Enables the load balancer to bind a user's session to a specific target.
|
|
725
725
|
"""
|
|
@@ -729,45 +729,45 @@ elif False:
|
|
|
729
729
|
@pulumi.input_type
|
|
730
730
|
class RolloutSpecTrafficAlbStickinessConfigArgs:
|
|
731
731
|
def __init__(__self__, *,
|
|
732
|
-
duration_seconds: Optional[pulumi.Input[int]] = None,
|
|
733
|
-
enabled: Optional[pulumi.Input[bool]] = None):
|
|
732
|
+
duration_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
733
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
734
734
|
"""
|
|
735
|
-
:param pulumi.Input[int] duration_seconds: Defines how long the load balancer should consistently route the user's request to the same target.
|
|
736
|
-
:param pulumi.Input[bool] enabled: Enables the load balancer to bind a user's session to a specific target.
|
|
735
|
+
:param pulumi.Input[_builtins.int] duration_seconds: Defines how long the load balancer should consistently route the user's request to the same target.
|
|
736
|
+
:param pulumi.Input[_builtins.bool] enabled: Enables the load balancer to bind a user's session to a specific target.
|
|
737
737
|
"""
|
|
738
738
|
if duration_seconds is not None:
|
|
739
739
|
pulumi.set(__self__, "duration_seconds", duration_seconds)
|
|
740
740
|
if enabled is not None:
|
|
741
741
|
pulumi.set(__self__, "enabled", enabled)
|
|
742
742
|
|
|
743
|
-
@property
|
|
743
|
+
@_builtins.property
|
|
744
744
|
@pulumi.getter(name="durationSeconds")
|
|
745
|
-
def duration_seconds(self) -> Optional[pulumi.Input[int]]:
|
|
745
|
+
def duration_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
746
746
|
"""
|
|
747
747
|
Defines how long the load balancer should consistently route the user's request to the same target.
|
|
748
748
|
"""
|
|
749
749
|
return pulumi.get(self, "duration_seconds")
|
|
750
750
|
|
|
751
751
|
@duration_seconds.setter
|
|
752
|
-
def duration_seconds(self, value: Optional[pulumi.Input[int]]):
|
|
752
|
+
def duration_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
753
753
|
pulumi.set(self, "duration_seconds", value)
|
|
754
754
|
|
|
755
|
-
@property
|
|
755
|
+
@_builtins.property
|
|
756
756
|
@pulumi.getter
|
|
757
|
-
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
757
|
+
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
758
758
|
"""
|
|
759
759
|
Enables the load balancer to bind a user's session to a specific target.
|
|
760
760
|
"""
|
|
761
761
|
return pulumi.get(self, "enabled")
|
|
762
762
|
|
|
763
763
|
@enabled.setter
|
|
764
|
-
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
764
|
+
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
765
765
|
pulumi.set(self, "enabled", value)
|
|
766
766
|
|
|
767
767
|
|
|
768
768
|
if not MYPY:
|
|
769
769
|
class RolloutSpecTrafficAmbassadorArgsDict(TypedDict):
|
|
770
|
-
mappings: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
770
|
+
mappings: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
771
771
|
"""
|
|
772
772
|
A list of names of the Ambassador Mappings used to route traffic to the service.
|
|
773
773
|
"""
|
|
@@ -777,22 +777,22 @@ elif False:
|
|
|
777
777
|
@pulumi.input_type
|
|
778
778
|
class RolloutSpecTrafficAmbassadorArgs:
|
|
779
779
|
def __init__(__self__, *,
|
|
780
|
-
mappings: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
780
|
+
mappings: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
781
781
|
"""
|
|
782
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] mappings: A list of names of the Ambassador Mappings used to route traffic to the service.
|
|
782
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] mappings: A list of names of the Ambassador Mappings used to route traffic to the service.
|
|
783
783
|
"""
|
|
784
784
|
pulumi.set(__self__, "mappings", mappings)
|
|
785
785
|
|
|
786
|
-
@property
|
|
786
|
+
@_builtins.property
|
|
787
787
|
@pulumi.getter
|
|
788
|
-
def mappings(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
788
|
+
def mappings(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
789
789
|
"""
|
|
790
790
|
A list of names of the Ambassador Mappings used to route traffic to the service.
|
|
791
791
|
"""
|
|
792
792
|
return pulumi.get(self, "mappings")
|
|
793
793
|
|
|
794
794
|
@mappings.setter
|
|
795
|
-
def mappings(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
795
|
+
def mappings(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
796
796
|
pulumi.set(self, "mappings", value)
|
|
797
797
|
|
|
798
798
|
|
|
@@ -822,7 +822,7 @@ class RolloutSpecTrafficIstioArgs:
|
|
|
822
822
|
if destination_rule is not None:
|
|
823
823
|
pulumi.set(__self__, "destination_rule", destination_rule)
|
|
824
824
|
|
|
825
|
-
@property
|
|
825
|
+
@_builtins.property
|
|
826
826
|
@pulumi.getter(name="virtualServices")
|
|
827
827
|
def virtual_services(self) -> pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceArgs']]]:
|
|
828
828
|
"""
|
|
@@ -834,7 +834,7 @@ class RolloutSpecTrafficIstioArgs:
|
|
|
834
834
|
def virtual_services(self, value: pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceArgs']]]):
|
|
835
835
|
pulumi.set(self, "virtual_services", value)
|
|
836
836
|
|
|
837
|
-
@property
|
|
837
|
+
@_builtins.property
|
|
838
838
|
@pulumi.getter(name="destinationRule")
|
|
839
839
|
def destination_rule(self) -> Optional[pulumi.Input['RolloutSpecTrafficIstioDestinationRuleArgs']]:
|
|
840
840
|
"""
|
|
@@ -849,15 +849,15 @@ class RolloutSpecTrafficIstioArgs:
|
|
|
849
849
|
|
|
850
850
|
if not MYPY:
|
|
851
851
|
class RolloutSpecTrafficIstioDestinationRuleArgsDict(TypedDict):
|
|
852
|
-
canary_subset_name: pulumi.Input[str]
|
|
852
|
+
canary_subset_name: pulumi.Input[_builtins.str]
|
|
853
853
|
"""
|
|
854
854
|
The subset name to modify labels with the canary version.
|
|
855
855
|
"""
|
|
856
|
-
destination_rule_name: pulumi.Input[str]
|
|
856
|
+
destination_rule_name: pulumi.Input[_builtins.str]
|
|
857
857
|
"""
|
|
858
858
|
Holds the name of the DestinationRule.
|
|
859
859
|
"""
|
|
860
|
-
stable_subset_name: pulumi.Input[str]
|
|
860
|
+
stable_subset_name: pulumi.Input[_builtins.str]
|
|
861
861
|
"""
|
|
862
862
|
The subset name to modify labels with the stable version.
|
|
863
863
|
"""
|
|
@@ -867,58 +867,58 @@ elif False:
|
|
|
867
867
|
@pulumi.input_type
|
|
868
868
|
class RolloutSpecTrafficIstioDestinationRuleArgs:
|
|
869
869
|
def __init__(__self__, *,
|
|
870
|
-
canary_subset_name: pulumi.Input[str],
|
|
871
|
-
destination_rule_name: pulumi.Input[str],
|
|
872
|
-
stable_subset_name: pulumi.Input[str]):
|
|
870
|
+
canary_subset_name: pulumi.Input[_builtins.str],
|
|
871
|
+
destination_rule_name: pulumi.Input[_builtins.str],
|
|
872
|
+
stable_subset_name: pulumi.Input[_builtins.str]):
|
|
873
873
|
"""
|
|
874
|
-
:param pulumi.Input[str] canary_subset_name: The subset name to modify labels with the canary version.
|
|
875
|
-
:param pulumi.Input[str] destination_rule_name: Holds the name of the DestinationRule.
|
|
876
|
-
:param pulumi.Input[str] stable_subset_name: The subset name to modify labels with the stable version.
|
|
874
|
+
:param pulumi.Input[_builtins.str] canary_subset_name: The subset name to modify labels with the canary version.
|
|
875
|
+
:param pulumi.Input[_builtins.str] destination_rule_name: Holds the name of the DestinationRule.
|
|
876
|
+
:param pulumi.Input[_builtins.str] stable_subset_name: The subset name to modify labels with the stable version.
|
|
877
877
|
"""
|
|
878
878
|
pulumi.set(__self__, "canary_subset_name", canary_subset_name)
|
|
879
879
|
pulumi.set(__self__, "destination_rule_name", destination_rule_name)
|
|
880
880
|
pulumi.set(__self__, "stable_subset_name", stable_subset_name)
|
|
881
881
|
|
|
882
|
-
@property
|
|
882
|
+
@_builtins.property
|
|
883
883
|
@pulumi.getter(name="canarySubsetName")
|
|
884
|
-
def canary_subset_name(self) -> pulumi.Input[str]:
|
|
884
|
+
def canary_subset_name(self) -> pulumi.Input[_builtins.str]:
|
|
885
885
|
"""
|
|
886
886
|
The subset name to modify labels with the canary version.
|
|
887
887
|
"""
|
|
888
888
|
return pulumi.get(self, "canary_subset_name")
|
|
889
889
|
|
|
890
890
|
@canary_subset_name.setter
|
|
891
|
-
def canary_subset_name(self, value: pulumi.Input[str]):
|
|
891
|
+
def canary_subset_name(self, value: pulumi.Input[_builtins.str]):
|
|
892
892
|
pulumi.set(self, "canary_subset_name", value)
|
|
893
893
|
|
|
894
|
-
@property
|
|
894
|
+
@_builtins.property
|
|
895
895
|
@pulumi.getter(name="destinationRuleName")
|
|
896
|
-
def destination_rule_name(self) -> pulumi.Input[str]:
|
|
896
|
+
def destination_rule_name(self) -> pulumi.Input[_builtins.str]:
|
|
897
897
|
"""
|
|
898
898
|
Holds the name of the DestinationRule.
|
|
899
899
|
"""
|
|
900
900
|
return pulumi.get(self, "destination_rule_name")
|
|
901
901
|
|
|
902
902
|
@destination_rule_name.setter
|
|
903
|
-
def destination_rule_name(self, value: pulumi.Input[str]):
|
|
903
|
+
def destination_rule_name(self, value: pulumi.Input[_builtins.str]):
|
|
904
904
|
pulumi.set(self, "destination_rule_name", value)
|
|
905
905
|
|
|
906
|
-
@property
|
|
906
|
+
@_builtins.property
|
|
907
907
|
@pulumi.getter(name="stableSubsetName")
|
|
908
|
-
def stable_subset_name(self) -> pulumi.Input[str]:
|
|
908
|
+
def stable_subset_name(self) -> pulumi.Input[_builtins.str]:
|
|
909
909
|
"""
|
|
910
910
|
The subset name to modify labels with the stable version.
|
|
911
911
|
"""
|
|
912
912
|
return pulumi.get(self, "stable_subset_name")
|
|
913
913
|
|
|
914
914
|
@stable_subset_name.setter
|
|
915
|
-
def stable_subset_name(self, value: pulumi.Input[str]):
|
|
915
|
+
def stable_subset_name(self, value: pulumi.Input[_builtins.str]):
|
|
916
916
|
pulumi.set(self, "stable_subset_name", value)
|
|
917
917
|
|
|
918
918
|
|
|
919
919
|
if not MYPY:
|
|
920
920
|
class RolloutSpecTrafficIstioVirtualServiceArgsDict(TypedDict):
|
|
921
|
-
virtual_service_name: pulumi.Input[str]
|
|
921
|
+
virtual_service_name: pulumi.Input[_builtins.str]
|
|
922
922
|
"""
|
|
923
923
|
Holds the name of the VirtualService.
|
|
924
924
|
"""
|
|
@@ -926,7 +926,7 @@ if not MYPY:
|
|
|
926
926
|
"""
|
|
927
927
|
A list of HTTPS routes within VirtualService.
|
|
928
928
|
"""
|
|
929
|
-
virtual_service_routes: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
929
|
+
virtual_service_routes: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
930
930
|
"""
|
|
931
931
|
A list of HTTP routes within VirtualService.
|
|
932
932
|
"""
|
|
@@ -936,13 +936,13 @@ elif False:
|
|
|
936
936
|
@pulumi.input_type
|
|
937
937
|
class RolloutSpecTrafficIstioVirtualServiceArgs:
|
|
938
938
|
def __init__(__self__, *,
|
|
939
|
-
virtual_service_name: pulumi.Input[str],
|
|
939
|
+
virtual_service_name: pulumi.Input[_builtins.str],
|
|
940
940
|
tls_routes: Optional[pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceTlsRouteArgs']]]] = None,
|
|
941
|
-
virtual_service_routes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
941
|
+
virtual_service_routes: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
942
942
|
"""
|
|
943
|
-
:param pulumi.Input[str] virtual_service_name: Holds the name of the VirtualService.
|
|
943
|
+
:param pulumi.Input[_builtins.str] virtual_service_name: Holds the name of the VirtualService.
|
|
944
944
|
:param pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceTlsRouteArgs']]] tls_routes: A list of HTTPS routes within VirtualService.
|
|
945
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] virtual_service_routes: A list of HTTP routes within VirtualService.
|
|
945
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] virtual_service_routes: A list of HTTP routes within VirtualService.
|
|
946
946
|
"""
|
|
947
947
|
pulumi.set(__self__, "virtual_service_name", virtual_service_name)
|
|
948
948
|
if tls_routes is not None:
|
|
@@ -950,19 +950,19 @@ class RolloutSpecTrafficIstioVirtualServiceArgs:
|
|
|
950
950
|
if virtual_service_routes is not None:
|
|
951
951
|
pulumi.set(__self__, "virtual_service_routes", virtual_service_routes)
|
|
952
952
|
|
|
953
|
-
@property
|
|
953
|
+
@_builtins.property
|
|
954
954
|
@pulumi.getter(name="virtualServiceName")
|
|
955
|
-
def virtual_service_name(self) -> pulumi.Input[str]:
|
|
955
|
+
def virtual_service_name(self) -> pulumi.Input[_builtins.str]:
|
|
956
956
|
"""
|
|
957
957
|
Holds the name of the VirtualService.
|
|
958
958
|
"""
|
|
959
959
|
return pulumi.get(self, "virtual_service_name")
|
|
960
960
|
|
|
961
961
|
@virtual_service_name.setter
|
|
962
|
-
def virtual_service_name(self, value: pulumi.Input[str]):
|
|
962
|
+
def virtual_service_name(self, value: pulumi.Input[_builtins.str]):
|
|
963
963
|
pulumi.set(self, "virtual_service_name", value)
|
|
964
964
|
|
|
965
|
-
@property
|
|
965
|
+
@_builtins.property
|
|
966
966
|
@pulumi.getter(name="tlsRoutes")
|
|
967
967
|
def tls_routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceTlsRouteArgs']]]]:
|
|
968
968
|
"""
|
|
@@ -974,26 +974,26 @@ class RolloutSpecTrafficIstioVirtualServiceArgs:
|
|
|
974
974
|
def tls_routes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RolloutSpecTrafficIstioVirtualServiceTlsRouteArgs']]]]):
|
|
975
975
|
pulumi.set(self, "tls_routes", value)
|
|
976
976
|
|
|
977
|
-
@property
|
|
977
|
+
@_builtins.property
|
|
978
978
|
@pulumi.getter(name="virtualServiceRoutes")
|
|
979
|
-
def virtual_service_routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
979
|
+
def virtual_service_routes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
980
980
|
"""
|
|
981
981
|
A list of HTTP routes within VirtualService.
|
|
982
982
|
"""
|
|
983
983
|
return pulumi.get(self, "virtual_service_routes")
|
|
984
984
|
|
|
985
985
|
@virtual_service_routes.setter
|
|
986
|
-
def virtual_service_routes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
986
|
+
def virtual_service_routes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
987
987
|
pulumi.set(self, "virtual_service_routes", value)
|
|
988
988
|
|
|
989
989
|
|
|
990
990
|
if not MYPY:
|
|
991
991
|
class RolloutSpecTrafficIstioVirtualServiceTlsRouteArgsDict(TypedDict):
|
|
992
|
-
port: NotRequired[pulumi.Input[int]]
|
|
992
|
+
port: NotRequired[pulumi.Input[_builtins.int]]
|
|
993
993
|
"""
|
|
994
994
|
The port of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
995
995
|
"""
|
|
996
|
-
sni_hosts: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
996
|
+
sni_hosts: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
997
997
|
"""
|
|
998
998
|
A list of all the SNI Hosts of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
999
999
|
"""
|
|
@@ -1003,45 +1003,45 @@ elif False:
|
|
|
1003
1003
|
@pulumi.input_type
|
|
1004
1004
|
class RolloutSpecTrafficIstioVirtualServiceTlsRouteArgs:
|
|
1005
1005
|
def __init__(__self__, *,
|
|
1006
|
-
port: Optional[pulumi.Input[int]] = None,
|
|
1007
|
-
sni_hosts: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1006
|
+
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1007
|
+
sni_hosts: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
1008
1008
|
"""
|
|
1009
|
-
:param pulumi.Input[int] port: The port of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1010
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] sni_hosts: A list of all the SNI Hosts of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1009
|
+
:param pulumi.Input[_builtins.int] port: The port of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1010
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] sni_hosts: A list of all the SNI Hosts of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1011
1011
|
"""
|
|
1012
1012
|
if port is not None:
|
|
1013
1013
|
pulumi.set(__self__, "port", port)
|
|
1014
1014
|
if sni_hosts is not None:
|
|
1015
1015
|
pulumi.set(__self__, "sni_hosts", sni_hosts)
|
|
1016
1016
|
|
|
1017
|
-
@property
|
|
1017
|
+
@_builtins.property
|
|
1018
1018
|
@pulumi.getter
|
|
1019
|
-
def port(self) -> Optional[pulumi.Input[int]]:
|
|
1019
|
+
def port(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1020
1020
|
"""
|
|
1021
1021
|
The port of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1022
1022
|
"""
|
|
1023
1023
|
return pulumi.get(self, "port")
|
|
1024
1024
|
|
|
1025
1025
|
@port.setter
|
|
1026
|
-
def port(self, value: Optional[pulumi.Input[int]]):
|
|
1026
|
+
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1027
1027
|
pulumi.set(self, "port", value)
|
|
1028
1028
|
|
|
1029
|
-
@property
|
|
1029
|
+
@_builtins.property
|
|
1030
1030
|
@pulumi.getter(name="sniHosts")
|
|
1031
|
-
def sni_hosts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1031
|
+
def sni_hosts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
1032
1032
|
"""
|
|
1033
1033
|
A list of all the SNI Hosts of the TLS Route desired to be matched in the given Istio VirtualService.
|
|
1034
1034
|
"""
|
|
1035
1035
|
return pulumi.get(self, "sni_hosts")
|
|
1036
1036
|
|
|
1037
1037
|
@sni_hosts.setter
|
|
1038
|
-
def sni_hosts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1038
|
+
def sni_hosts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
1039
1039
|
pulumi.set(self, "sni_hosts", value)
|
|
1040
1040
|
|
|
1041
1041
|
|
|
1042
1042
|
if not MYPY:
|
|
1043
1043
|
class RolloutSpecTrafficNginxArgsDict(TypedDict):
|
|
1044
|
-
stable_ingress: pulumi.Input[str]
|
|
1044
|
+
stable_ingress: pulumi.Input[_builtins.str]
|
|
1045
1045
|
"""
|
|
1046
1046
|
Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
1047
1047
|
"""
|
|
@@ -1049,7 +1049,7 @@ if not MYPY:
|
|
|
1049
1049
|
"""
|
|
1050
1050
|
Provides additional features to add to the canary ingress (such as routing by header, cookie, etc). You can add these Kubernetes annotations to specific Ingress objects to customize their behavior. Above are found examples of accepted k8s keys.For the full list of supported keys, you may reach the following documentation - https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#canary.
|
|
1051
1051
|
"""
|
|
1052
|
-
nginx_annotation_prefix: NotRequired[pulumi.Input[str]]
|
|
1052
|
+
nginx_annotation_prefix: NotRequired[pulumi.Input[_builtins.str]]
|
|
1053
1053
|
"""
|
|
1054
1054
|
Has to match the configured annotation prefix on the Nginx ingress controller.
|
|
1055
1055
|
"""
|
|
@@ -1059,13 +1059,13 @@ elif False:
|
|
|
1059
1059
|
@pulumi.input_type
|
|
1060
1060
|
class RolloutSpecTrafficNginxArgs:
|
|
1061
1061
|
def __init__(__self__, *,
|
|
1062
|
-
stable_ingress: pulumi.Input[str],
|
|
1062
|
+
stable_ingress: pulumi.Input[_builtins.str],
|
|
1063
1063
|
additional_ingress_annotation: Optional[pulumi.Input['RolloutSpecTrafficNginxAdditionalIngressAnnotationArgs']] = None,
|
|
1064
|
-
nginx_annotation_prefix: Optional[pulumi.Input[str]] = None):
|
|
1064
|
+
nginx_annotation_prefix: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1065
1065
|
"""
|
|
1066
|
-
:param pulumi.Input[str] stable_ingress: Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
1066
|
+
:param pulumi.Input[_builtins.str] stable_ingress: Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
1067
1067
|
:param pulumi.Input['RolloutSpecTrafficNginxAdditionalIngressAnnotationArgs'] additional_ingress_annotation: Provides additional features to add to the canary ingress (such as routing by header, cookie, etc). You can add these Kubernetes annotations to specific Ingress objects to customize their behavior. Above are found examples of accepted k8s keys.For the full list of supported keys, you may reach the following documentation - https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#canary.
|
|
1068
|
-
:param pulumi.Input[str] nginx_annotation_prefix: Has to match the configured annotation prefix on the Nginx ingress controller.
|
|
1068
|
+
:param pulumi.Input[_builtins.str] nginx_annotation_prefix: Has to match the configured annotation prefix on the Nginx ingress controller.
|
|
1069
1069
|
"""
|
|
1070
1070
|
pulumi.set(__self__, "stable_ingress", stable_ingress)
|
|
1071
1071
|
if additional_ingress_annotation is not None:
|
|
@@ -1073,19 +1073,19 @@ class RolloutSpecTrafficNginxArgs:
|
|
|
1073
1073
|
if nginx_annotation_prefix is not None:
|
|
1074
1074
|
pulumi.set(__self__, "nginx_annotation_prefix", nginx_annotation_prefix)
|
|
1075
1075
|
|
|
1076
|
-
@property
|
|
1076
|
+
@_builtins.property
|
|
1077
1077
|
@pulumi.getter(name="stableIngress")
|
|
1078
|
-
def stable_ingress(self) -> pulumi.Input[str]:
|
|
1078
|
+
def stable_ingress(self) -> pulumi.Input[_builtins.str]:
|
|
1079
1079
|
"""
|
|
1080
1080
|
Refers to the name of an `Ingress` resource in the same namespace as the `SpotDeployment`.
|
|
1081
1081
|
"""
|
|
1082
1082
|
return pulumi.get(self, "stable_ingress")
|
|
1083
1083
|
|
|
1084
1084
|
@stable_ingress.setter
|
|
1085
|
-
def stable_ingress(self, value: pulumi.Input[str]):
|
|
1085
|
+
def stable_ingress(self, value: pulumi.Input[_builtins.str]):
|
|
1086
1086
|
pulumi.set(self, "stable_ingress", value)
|
|
1087
1087
|
|
|
1088
|
-
@property
|
|
1088
|
+
@_builtins.property
|
|
1089
1089
|
@pulumi.getter(name="additionalIngressAnnotation")
|
|
1090
1090
|
def additional_ingress_annotation(self) -> Optional[pulumi.Input['RolloutSpecTrafficNginxAdditionalIngressAnnotationArgs']]:
|
|
1091
1091
|
"""
|
|
@@ -1097,26 +1097,26 @@ class RolloutSpecTrafficNginxArgs:
|
|
|
1097
1097
|
def additional_ingress_annotation(self, value: Optional[pulumi.Input['RolloutSpecTrafficNginxAdditionalIngressAnnotationArgs']]):
|
|
1098
1098
|
pulumi.set(self, "additional_ingress_annotation", value)
|
|
1099
1099
|
|
|
1100
|
-
@property
|
|
1100
|
+
@_builtins.property
|
|
1101
1101
|
@pulumi.getter(name="nginxAnnotationPrefix")
|
|
1102
|
-
def nginx_annotation_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
1102
|
+
def nginx_annotation_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1103
1103
|
"""
|
|
1104
1104
|
Has to match the configured annotation prefix on the Nginx ingress controller.
|
|
1105
1105
|
"""
|
|
1106
1106
|
return pulumi.get(self, "nginx_annotation_prefix")
|
|
1107
1107
|
|
|
1108
1108
|
@nginx_annotation_prefix.setter
|
|
1109
|
-
def nginx_annotation_prefix(self, value: Optional[pulumi.Input[str]]):
|
|
1109
|
+
def nginx_annotation_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1110
1110
|
pulumi.set(self, "nginx_annotation_prefix", value)
|
|
1111
1111
|
|
|
1112
1112
|
|
|
1113
1113
|
if not MYPY:
|
|
1114
1114
|
class RolloutSpecTrafficNginxAdditionalIngressAnnotationArgsDict(TypedDict):
|
|
1115
|
-
canary_by_header: NotRequired[pulumi.Input[str]]
|
|
1115
|
+
canary_by_header: NotRequired[pulumi.Input[_builtins.str]]
|
|
1116
1116
|
"""
|
|
1117
1117
|
Allows customizing the header value instead of using hardcoded values.
|
|
1118
1118
|
"""
|
|
1119
|
-
key1: NotRequired[pulumi.Input[str]]
|
|
1119
|
+
key1: NotRequired[pulumi.Input[_builtins.str]]
|
|
1120
1120
|
"""
|
|
1121
1121
|
Any of supported annotations.
|
|
1122
1122
|
"""
|
|
@@ -1126,49 +1126,49 @@ elif False:
|
|
|
1126
1126
|
@pulumi.input_type
|
|
1127
1127
|
class RolloutSpecTrafficNginxAdditionalIngressAnnotationArgs:
|
|
1128
1128
|
def __init__(__self__, *,
|
|
1129
|
-
canary_by_header: Optional[pulumi.Input[str]] = None,
|
|
1130
|
-
key1: Optional[pulumi.Input[str]] = None):
|
|
1129
|
+
canary_by_header: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1130
|
+
key1: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1131
1131
|
"""
|
|
1132
|
-
:param pulumi.Input[str] canary_by_header: Allows customizing the header value instead of using hardcoded values.
|
|
1133
|
-
:param pulumi.Input[str] key1: Any of supported annotations.
|
|
1132
|
+
:param pulumi.Input[_builtins.str] canary_by_header: Allows customizing the header value instead of using hardcoded values.
|
|
1133
|
+
:param pulumi.Input[_builtins.str] key1: Any of supported annotations.
|
|
1134
1134
|
"""
|
|
1135
1135
|
if canary_by_header is not None:
|
|
1136
1136
|
pulumi.set(__self__, "canary_by_header", canary_by_header)
|
|
1137
1137
|
if key1 is not None:
|
|
1138
1138
|
pulumi.set(__self__, "key1", key1)
|
|
1139
1139
|
|
|
1140
|
-
@property
|
|
1140
|
+
@_builtins.property
|
|
1141
1141
|
@pulumi.getter(name="canaryByHeader")
|
|
1142
|
-
def canary_by_header(self) -> Optional[pulumi.Input[str]]:
|
|
1142
|
+
def canary_by_header(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1143
1143
|
"""
|
|
1144
1144
|
Allows customizing the header value instead of using hardcoded values.
|
|
1145
1145
|
"""
|
|
1146
1146
|
return pulumi.get(self, "canary_by_header")
|
|
1147
1147
|
|
|
1148
1148
|
@canary_by_header.setter
|
|
1149
|
-
def canary_by_header(self, value: Optional[pulumi.Input[str]]):
|
|
1149
|
+
def canary_by_header(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1150
1150
|
pulumi.set(self, "canary_by_header", value)
|
|
1151
1151
|
|
|
1152
|
-
@property
|
|
1152
|
+
@_builtins.property
|
|
1153
1153
|
@pulumi.getter
|
|
1154
|
-
def key1(self) -> Optional[pulumi.Input[str]]:
|
|
1154
|
+
def key1(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1155
1155
|
"""
|
|
1156
1156
|
Any of supported annotations.
|
|
1157
1157
|
"""
|
|
1158
1158
|
return pulumi.get(self, "key1")
|
|
1159
1159
|
|
|
1160
1160
|
@key1.setter
|
|
1161
|
-
def key1(self, value: Optional[pulumi.Input[str]]):
|
|
1161
|
+
def key1(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1162
1162
|
pulumi.set(self, "key1", value)
|
|
1163
1163
|
|
|
1164
1164
|
|
|
1165
1165
|
if not MYPY:
|
|
1166
1166
|
class RolloutSpecTrafficPingPongArgsDict(TypedDict):
|
|
1167
|
-
ping_service: pulumi.Input[str]
|
|
1167
|
+
ping_service: pulumi.Input[_builtins.str]
|
|
1168
1168
|
"""
|
|
1169
1169
|
Holds the name of the ping service.
|
|
1170
1170
|
"""
|
|
1171
|
-
pong_service: pulumi.Input[str]
|
|
1171
|
+
pong_service: pulumi.Input[_builtins.str]
|
|
1172
1172
|
"""
|
|
1173
1173
|
Holds the name of the pong service.
|
|
1174
1174
|
"""
|
|
@@ -1178,47 +1178,47 @@ elif False:
|
|
|
1178
1178
|
@pulumi.input_type
|
|
1179
1179
|
class RolloutSpecTrafficPingPongArgs:
|
|
1180
1180
|
def __init__(__self__, *,
|
|
1181
|
-
ping_service: pulumi.Input[str],
|
|
1182
|
-
pong_service: pulumi.Input[str]):
|
|
1181
|
+
ping_service: pulumi.Input[_builtins.str],
|
|
1182
|
+
pong_service: pulumi.Input[_builtins.str]):
|
|
1183
1183
|
"""
|
|
1184
|
-
:param pulumi.Input[str] ping_service: Holds the name of the ping service.
|
|
1185
|
-
:param pulumi.Input[str] pong_service: Holds the name of the pong service.
|
|
1184
|
+
:param pulumi.Input[_builtins.str] ping_service: Holds the name of the ping service.
|
|
1185
|
+
:param pulumi.Input[_builtins.str] pong_service: Holds the name of the pong service.
|
|
1186
1186
|
"""
|
|
1187
1187
|
pulumi.set(__self__, "ping_service", ping_service)
|
|
1188
1188
|
pulumi.set(__self__, "pong_service", pong_service)
|
|
1189
1189
|
|
|
1190
|
-
@property
|
|
1190
|
+
@_builtins.property
|
|
1191
1191
|
@pulumi.getter(name="pingService")
|
|
1192
|
-
def ping_service(self) -> pulumi.Input[str]:
|
|
1192
|
+
def ping_service(self) -> pulumi.Input[_builtins.str]:
|
|
1193
1193
|
"""
|
|
1194
1194
|
Holds the name of the ping service.
|
|
1195
1195
|
"""
|
|
1196
1196
|
return pulumi.get(self, "ping_service")
|
|
1197
1197
|
|
|
1198
1198
|
@ping_service.setter
|
|
1199
|
-
def ping_service(self, value: pulumi.Input[str]):
|
|
1199
|
+
def ping_service(self, value: pulumi.Input[_builtins.str]):
|
|
1200
1200
|
pulumi.set(self, "ping_service", value)
|
|
1201
1201
|
|
|
1202
|
-
@property
|
|
1202
|
+
@_builtins.property
|
|
1203
1203
|
@pulumi.getter(name="pongService")
|
|
1204
|
-
def pong_service(self) -> pulumi.Input[str]:
|
|
1204
|
+
def pong_service(self) -> pulumi.Input[_builtins.str]:
|
|
1205
1205
|
"""
|
|
1206
1206
|
Holds the name of the pong service.
|
|
1207
1207
|
"""
|
|
1208
1208
|
return pulumi.get(self, "pong_service")
|
|
1209
1209
|
|
|
1210
1210
|
@pong_service.setter
|
|
1211
|
-
def pong_service(self, value: pulumi.Input[str]):
|
|
1211
|
+
def pong_service(self, value: pulumi.Input[_builtins.str]):
|
|
1212
1212
|
pulumi.set(self, "pong_service", value)
|
|
1213
1213
|
|
|
1214
1214
|
|
|
1215
1215
|
if not MYPY:
|
|
1216
1216
|
class RolloutSpecTrafficSmiArgsDict(TypedDict):
|
|
1217
|
-
smi_root_service: NotRequired[pulumi.Input[str]]
|
|
1217
|
+
smi_root_service: NotRequired[pulumi.Input[_builtins.str]]
|
|
1218
1218
|
"""
|
|
1219
1219
|
Holds the name of service that clients use to communicate.
|
|
1220
1220
|
"""
|
|
1221
|
-
traffic_split_name: NotRequired[pulumi.Input[str]]
|
|
1221
|
+
traffic_split_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
1222
1222
|
"""
|
|
1223
1223
|
Holds the name of the TrafficSplit.
|
|
1224
1224
|
"""
|
|
@@ -1228,39 +1228,39 @@ elif False:
|
|
|
1228
1228
|
@pulumi.input_type
|
|
1229
1229
|
class RolloutSpecTrafficSmiArgs:
|
|
1230
1230
|
def __init__(__self__, *,
|
|
1231
|
-
smi_root_service: Optional[pulumi.Input[str]] = None,
|
|
1232
|
-
traffic_split_name: Optional[pulumi.Input[str]] = None):
|
|
1231
|
+
smi_root_service: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1232
|
+
traffic_split_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1233
1233
|
"""
|
|
1234
|
-
:param pulumi.Input[str] smi_root_service: Holds the name of service that clients use to communicate.
|
|
1235
|
-
:param pulumi.Input[str] traffic_split_name: Holds the name of the TrafficSplit.
|
|
1234
|
+
:param pulumi.Input[_builtins.str] smi_root_service: Holds the name of service that clients use to communicate.
|
|
1235
|
+
:param pulumi.Input[_builtins.str] traffic_split_name: Holds the name of the TrafficSplit.
|
|
1236
1236
|
"""
|
|
1237
1237
|
if smi_root_service is not None:
|
|
1238
1238
|
pulumi.set(__self__, "smi_root_service", smi_root_service)
|
|
1239
1239
|
if traffic_split_name is not None:
|
|
1240
1240
|
pulumi.set(__self__, "traffic_split_name", traffic_split_name)
|
|
1241
1241
|
|
|
1242
|
-
@property
|
|
1242
|
+
@_builtins.property
|
|
1243
1243
|
@pulumi.getter(name="smiRootService")
|
|
1244
|
-
def smi_root_service(self) -> Optional[pulumi.Input[str]]:
|
|
1244
|
+
def smi_root_service(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1245
1245
|
"""
|
|
1246
1246
|
Holds the name of service that clients use to communicate.
|
|
1247
1247
|
"""
|
|
1248
1248
|
return pulumi.get(self, "smi_root_service")
|
|
1249
1249
|
|
|
1250
1250
|
@smi_root_service.setter
|
|
1251
|
-
def smi_root_service(self, value: Optional[pulumi.Input[str]]):
|
|
1251
|
+
def smi_root_service(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1252
1252
|
pulumi.set(self, "smi_root_service", value)
|
|
1253
1253
|
|
|
1254
|
-
@property
|
|
1254
|
+
@_builtins.property
|
|
1255
1255
|
@pulumi.getter(name="trafficSplitName")
|
|
1256
|
-
def traffic_split_name(self) -> Optional[pulumi.Input[str]]:
|
|
1256
|
+
def traffic_split_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1257
1257
|
"""
|
|
1258
1258
|
Holds the name of the TrafficSplit.
|
|
1259
1259
|
"""
|
|
1260
1260
|
return pulumi.get(self, "traffic_split_name")
|
|
1261
1261
|
|
|
1262
1262
|
@traffic_split_name.setter
|
|
1263
|
-
def traffic_split_name(self, value: Optional[pulumi.Input[str]]):
|
|
1263
|
+
def traffic_split_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1264
1264
|
pulumi.set(self, "traffic_split_name", value)
|
|
1265
1265
|
|
|
1266
1266
|
|
|
@@ -1290,7 +1290,7 @@ class StrategyCanaryArgs:
|
|
|
1290
1290
|
if background_verification is not None:
|
|
1291
1291
|
pulumi.set(__self__, "background_verification", background_verification)
|
|
1292
1292
|
|
|
1293
|
-
@property
|
|
1293
|
+
@_builtins.property
|
|
1294
1294
|
@pulumi.getter
|
|
1295
1295
|
def steps(self) -> pulumi.Input[Sequence[pulumi.Input['StrategyCanaryStepArgs']]]:
|
|
1296
1296
|
"""
|
|
@@ -1302,7 +1302,7 @@ class StrategyCanaryArgs:
|
|
|
1302
1302
|
def steps(self, value: pulumi.Input[Sequence[pulumi.Input['StrategyCanaryStepArgs']]]):
|
|
1303
1303
|
pulumi.set(self, "steps", value)
|
|
1304
1304
|
|
|
1305
|
-
@property
|
|
1305
|
+
@_builtins.property
|
|
1306
1306
|
@pulumi.getter(name="backgroundVerification")
|
|
1307
1307
|
def background_verification(self) -> Optional[pulumi.Input['StrategyCanaryBackgroundVerificationArgs']]:
|
|
1308
1308
|
"""
|
|
@@ -1317,7 +1317,7 @@ class StrategyCanaryArgs:
|
|
|
1317
1317
|
|
|
1318
1318
|
if not MYPY:
|
|
1319
1319
|
class StrategyCanaryBackgroundVerificationArgsDict(TypedDict):
|
|
1320
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
1320
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
1321
1321
|
"""
|
|
1322
1322
|
List of Verification Template names.
|
|
1323
1323
|
"""
|
|
@@ -1327,22 +1327,22 @@ elif False:
|
|
|
1327
1327
|
@pulumi.input_type
|
|
1328
1328
|
class StrategyCanaryBackgroundVerificationArgs:
|
|
1329
1329
|
def __init__(__self__, *,
|
|
1330
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1330
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1331
1331
|
"""
|
|
1332
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] template_names: List of Verification Template names.
|
|
1332
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] template_names: List of Verification Template names.
|
|
1333
1333
|
"""
|
|
1334
1334
|
pulumi.set(__self__, "template_names", template_names)
|
|
1335
1335
|
|
|
1336
|
-
@property
|
|
1336
|
+
@_builtins.property
|
|
1337
1337
|
@pulumi.getter(name="templateNames")
|
|
1338
|
-
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
1338
|
+
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
1339
1339
|
"""
|
|
1340
1340
|
List of Verification Template names.
|
|
1341
1341
|
"""
|
|
1342
1342
|
return pulumi.get(self, "template_names")
|
|
1343
1343
|
|
|
1344
1344
|
@template_names.setter
|
|
1345
|
-
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1345
|
+
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1346
1346
|
pulumi.set(self, "template_names", value)
|
|
1347
1347
|
|
|
1348
1348
|
|
|
@@ -1360,11 +1360,11 @@ if not MYPY:
|
|
|
1360
1360
|
"""
|
|
1361
1361
|
Defines the list of HeaderRoutes to add to the Rollout.
|
|
1362
1362
|
"""
|
|
1363
|
-
set_weight: NotRequired[pulumi.Input[int]]
|
|
1363
|
+
set_weight: NotRequired[pulumi.Input[_builtins.int]]
|
|
1364
1364
|
"""
|
|
1365
1365
|
Defines the percentage that the new version should receive.
|
|
1366
1366
|
"""
|
|
1367
|
-
step_name: NotRequired[pulumi.Input[str]]
|
|
1367
|
+
step_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
1368
1368
|
verification: NotRequired[pulumi.Input['StrategyCanaryStepVerificationArgsDict']]
|
|
1369
1369
|
"""
|
|
1370
1370
|
Represents the list of verifications to run in a step.
|
|
@@ -1378,14 +1378,14 @@ class StrategyCanaryStepArgs:
|
|
|
1378
1378
|
pause: Optional[pulumi.Input['StrategyCanaryStepPauseArgs']] = None,
|
|
1379
1379
|
set_canary_scale: Optional[pulumi.Input['StrategyCanaryStepSetCanaryScaleArgs']] = None,
|
|
1380
1380
|
set_header_route: Optional[pulumi.Input['StrategyCanaryStepSetHeaderRouteArgs']] = None,
|
|
1381
|
-
set_weight: Optional[pulumi.Input[int]] = None,
|
|
1382
|
-
step_name: Optional[pulumi.Input[str]] = None,
|
|
1381
|
+
set_weight: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1382
|
+
step_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1383
1383
|
verification: Optional[pulumi.Input['StrategyCanaryStepVerificationArgs']] = None):
|
|
1384
1384
|
"""
|
|
1385
1385
|
:param pulumi.Input['StrategyCanaryStepPauseArgs'] pause: Defines the duration of time to freeze the rollout.
|
|
1386
1386
|
:param pulumi.Input['StrategyCanaryStepSetCanaryScaleArgs'] set_canary_scale: Defines how to scale the version without traffic weight changing.
|
|
1387
1387
|
:param pulumi.Input['StrategyCanaryStepSetHeaderRouteArgs'] set_header_route: Defines the list of HeaderRoutes to add to the Rollout.
|
|
1388
|
-
:param pulumi.Input[int] set_weight: Defines the percentage that the new version should receive.
|
|
1388
|
+
:param pulumi.Input[_builtins.int] set_weight: Defines the percentage that the new version should receive.
|
|
1389
1389
|
:param pulumi.Input['StrategyCanaryStepVerificationArgs'] verification: Represents the list of verifications to run in a step.
|
|
1390
1390
|
"""
|
|
1391
1391
|
if pause is not None:
|
|
@@ -1401,7 +1401,7 @@ class StrategyCanaryStepArgs:
|
|
|
1401
1401
|
if verification is not None:
|
|
1402
1402
|
pulumi.set(__self__, "verification", verification)
|
|
1403
1403
|
|
|
1404
|
-
@property
|
|
1404
|
+
@_builtins.property
|
|
1405
1405
|
@pulumi.getter
|
|
1406
1406
|
def pause(self) -> Optional[pulumi.Input['StrategyCanaryStepPauseArgs']]:
|
|
1407
1407
|
"""
|
|
@@ -1413,7 +1413,7 @@ class StrategyCanaryStepArgs:
|
|
|
1413
1413
|
def pause(self, value: Optional[pulumi.Input['StrategyCanaryStepPauseArgs']]):
|
|
1414
1414
|
pulumi.set(self, "pause", value)
|
|
1415
1415
|
|
|
1416
|
-
@property
|
|
1416
|
+
@_builtins.property
|
|
1417
1417
|
@pulumi.getter(name="setCanaryScale")
|
|
1418
1418
|
def set_canary_scale(self) -> Optional[pulumi.Input['StrategyCanaryStepSetCanaryScaleArgs']]:
|
|
1419
1419
|
"""
|
|
@@ -1425,7 +1425,7 @@ class StrategyCanaryStepArgs:
|
|
|
1425
1425
|
def set_canary_scale(self, value: Optional[pulumi.Input['StrategyCanaryStepSetCanaryScaleArgs']]):
|
|
1426
1426
|
pulumi.set(self, "set_canary_scale", value)
|
|
1427
1427
|
|
|
1428
|
-
@property
|
|
1428
|
+
@_builtins.property
|
|
1429
1429
|
@pulumi.getter(name="setHeaderRoute")
|
|
1430
1430
|
def set_header_route(self) -> Optional[pulumi.Input['StrategyCanaryStepSetHeaderRouteArgs']]:
|
|
1431
1431
|
"""
|
|
@@ -1437,28 +1437,28 @@ class StrategyCanaryStepArgs:
|
|
|
1437
1437
|
def set_header_route(self, value: Optional[pulumi.Input['StrategyCanaryStepSetHeaderRouteArgs']]):
|
|
1438
1438
|
pulumi.set(self, "set_header_route", value)
|
|
1439
1439
|
|
|
1440
|
-
@property
|
|
1440
|
+
@_builtins.property
|
|
1441
1441
|
@pulumi.getter(name="setWeight")
|
|
1442
|
-
def set_weight(self) -> Optional[pulumi.Input[int]]:
|
|
1442
|
+
def set_weight(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1443
1443
|
"""
|
|
1444
1444
|
Defines the percentage that the new version should receive.
|
|
1445
1445
|
"""
|
|
1446
1446
|
return pulumi.get(self, "set_weight")
|
|
1447
1447
|
|
|
1448
1448
|
@set_weight.setter
|
|
1449
|
-
def set_weight(self, value: Optional[pulumi.Input[int]]):
|
|
1449
|
+
def set_weight(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1450
1450
|
pulumi.set(self, "set_weight", value)
|
|
1451
1451
|
|
|
1452
|
-
@property
|
|
1452
|
+
@_builtins.property
|
|
1453
1453
|
@pulumi.getter(name="stepName")
|
|
1454
|
-
def step_name(self) -> Optional[pulumi.Input[str]]:
|
|
1454
|
+
def step_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1455
1455
|
return pulumi.get(self, "step_name")
|
|
1456
1456
|
|
|
1457
1457
|
@step_name.setter
|
|
1458
|
-
def step_name(self, value: Optional[pulumi.Input[str]]):
|
|
1458
|
+
def step_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1459
1459
|
pulumi.set(self, "step_name", value)
|
|
1460
1460
|
|
|
1461
|
-
@property
|
|
1461
|
+
@_builtins.property
|
|
1462
1462
|
@pulumi.getter
|
|
1463
1463
|
def verification(self) -> Optional[pulumi.Input['StrategyCanaryStepVerificationArgs']]:
|
|
1464
1464
|
"""
|
|
@@ -1473,7 +1473,7 @@ class StrategyCanaryStepArgs:
|
|
|
1473
1473
|
|
|
1474
1474
|
if not MYPY:
|
|
1475
1475
|
class StrategyCanaryStepPauseArgsDict(TypedDict):
|
|
1476
|
-
duration: NotRequired[pulumi.Input[str]]
|
|
1476
|
+
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
1477
1477
|
"""
|
|
1478
1478
|
The amount of time to wait before moving to the next step.
|
|
1479
1479
|
"""
|
|
@@ -1483,37 +1483,37 @@ elif False:
|
|
|
1483
1483
|
@pulumi.input_type
|
|
1484
1484
|
class StrategyCanaryStepPauseArgs:
|
|
1485
1485
|
def __init__(__self__, *,
|
|
1486
|
-
duration: Optional[pulumi.Input[str]] = None):
|
|
1486
|
+
duration: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1487
1487
|
"""
|
|
1488
|
-
:param pulumi.Input[str] duration: The amount of time to wait before moving to the next step.
|
|
1488
|
+
:param pulumi.Input[_builtins.str] duration: The amount of time to wait before moving to the next step.
|
|
1489
1489
|
"""
|
|
1490
1490
|
if duration is not None:
|
|
1491
1491
|
pulumi.set(__self__, "duration", duration)
|
|
1492
1492
|
|
|
1493
|
-
@property
|
|
1493
|
+
@_builtins.property
|
|
1494
1494
|
@pulumi.getter
|
|
1495
|
-
def duration(self) -> Optional[pulumi.Input[str]]:
|
|
1495
|
+
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1496
1496
|
"""
|
|
1497
1497
|
The amount of time to wait before moving to the next step.
|
|
1498
1498
|
"""
|
|
1499
1499
|
return pulumi.get(self, "duration")
|
|
1500
1500
|
|
|
1501
1501
|
@duration.setter
|
|
1502
|
-
def duration(self, value: Optional[pulumi.Input[str]]):
|
|
1502
|
+
def duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1503
1503
|
pulumi.set(self, "duration", value)
|
|
1504
1504
|
|
|
1505
1505
|
|
|
1506
1506
|
if not MYPY:
|
|
1507
1507
|
class StrategyCanaryStepSetCanaryScaleArgsDict(TypedDict):
|
|
1508
|
-
match_traffic_weight: NotRequired[pulumi.Input[bool]]
|
|
1508
|
+
match_traffic_weight: NotRequired[pulumi.Input[_builtins.bool]]
|
|
1509
1509
|
"""
|
|
1510
1510
|
Defines whether a rollout should match the current canary's setWeight step.
|
|
1511
1511
|
"""
|
|
1512
|
-
replicas: NotRequired[pulumi.Input[int]]
|
|
1512
|
+
replicas: NotRequired[pulumi.Input[_builtins.int]]
|
|
1513
1513
|
"""
|
|
1514
1514
|
Sets the number of replicas the new version should have.
|
|
1515
1515
|
"""
|
|
1516
|
-
weight: NotRequired[pulumi.Input[int]]
|
|
1516
|
+
weight: NotRequired[pulumi.Input[_builtins.int]]
|
|
1517
1517
|
"""
|
|
1518
1518
|
Sets the percentage of replicas the new version should have.
|
|
1519
1519
|
"""
|
|
@@ -1523,13 +1523,13 @@ elif False:
|
|
|
1523
1523
|
@pulumi.input_type
|
|
1524
1524
|
class StrategyCanaryStepSetCanaryScaleArgs:
|
|
1525
1525
|
def __init__(__self__, *,
|
|
1526
|
-
match_traffic_weight: Optional[pulumi.Input[bool]] = None,
|
|
1527
|
-
replicas: Optional[pulumi.Input[int]] = None,
|
|
1528
|
-
weight: Optional[pulumi.Input[int]] = None):
|
|
1526
|
+
match_traffic_weight: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1527
|
+
replicas: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1528
|
+
weight: Optional[pulumi.Input[_builtins.int]] = None):
|
|
1529
1529
|
"""
|
|
1530
|
-
:param pulumi.Input[bool] match_traffic_weight: Defines whether a rollout should match the current canary's setWeight step.
|
|
1531
|
-
:param pulumi.Input[int] replicas: Sets the number of replicas the new version should have.
|
|
1532
|
-
:param pulumi.Input[int] weight: Sets the percentage of replicas the new version should have.
|
|
1530
|
+
:param pulumi.Input[_builtins.bool] match_traffic_weight: Defines whether a rollout should match the current canary's setWeight step.
|
|
1531
|
+
:param pulumi.Input[_builtins.int] replicas: Sets the number of replicas the new version should have.
|
|
1532
|
+
:param pulumi.Input[_builtins.int] weight: Sets the percentage of replicas the new version should have.
|
|
1533
1533
|
"""
|
|
1534
1534
|
if match_traffic_weight is not None:
|
|
1535
1535
|
pulumi.set(__self__, "match_traffic_weight", match_traffic_weight)
|
|
@@ -1538,46 +1538,46 @@ class StrategyCanaryStepSetCanaryScaleArgs:
|
|
|
1538
1538
|
if weight is not None:
|
|
1539
1539
|
pulumi.set(__self__, "weight", weight)
|
|
1540
1540
|
|
|
1541
|
-
@property
|
|
1541
|
+
@_builtins.property
|
|
1542
1542
|
@pulumi.getter(name="matchTrafficWeight")
|
|
1543
|
-
def match_traffic_weight(self) -> Optional[pulumi.Input[bool]]:
|
|
1543
|
+
def match_traffic_weight(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1544
1544
|
"""
|
|
1545
1545
|
Defines whether a rollout should match the current canary's setWeight step.
|
|
1546
1546
|
"""
|
|
1547
1547
|
return pulumi.get(self, "match_traffic_weight")
|
|
1548
1548
|
|
|
1549
1549
|
@match_traffic_weight.setter
|
|
1550
|
-
def match_traffic_weight(self, value: Optional[pulumi.Input[bool]]):
|
|
1550
|
+
def match_traffic_weight(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1551
1551
|
pulumi.set(self, "match_traffic_weight", value)
|
|
1552
1552
|
|
|
1553
|
-
@property
|
|
1553
|
+
@_builtins.property
|
|
1554
1554
|
@pulumi.getter
|
|
1555
|
-
def replicas(self) -> Optional[pulumi.Input[int]]:
|
|
1555
|
+
def replicas(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1556
1556
|
"""
|
|
1557
1557
|
Sets the number of replicas the new version should have.
|
|
1558
1558
|
"""
|
|
1559
1559
|
return pulumi.get(self, "replicas")
|
|
1560
1560
|
|
|
1561
1561
|
@replicas.setter
|
|
1562
|
-
def replicas(self, value: Optional[pulumi.Input[int]]):
|
|
1562
|
+
def replicas(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1563
1563
|
pulumi.set(self, "replicas", value)
|
|
1564
1564
|
|
|
1565
|
-
@property
|
|
1565
|
+
@_builtins.property
|
|
1566
1566
|
@pulumi.getter
|
|
1567
|
-
def weight(self) -> Optional[pulumi.Input[int]]:
|
|
1567
|
+
def weight(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1568
1568
|
"""
|
|
1569
1569
|
Sets the percentage of replicas the new version should have.
|
|
1570
1570
|
"""
|
|
1571
1571
|
return pulumi.get(self, "weight")
|
|
1572
1572
|
|
|
1573
1573
|
@weight.setter
|
|
1574
|
-
def weight(self, value: Optional[pulumi.Input[int]]):
|
|
1574
|
+
def weight(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1575
1575
|
pulumi.set(self, "weight", value)
|
|
1576
1576
|
|
|
1577
1577
|
|
|
1578
1578
|
if not MYPY:
|
|
1579
1579
|
class StrategyCanaryStepSetHeaderRouteArgsDict(TypedDict):
|
|
1580
|
-
header_route_name: pulumi.Input[str]
|
|
1580
|
+
header_route_name: pulumi.Input[_builtins.str]
|
|
1581
1581
|
"""
|
|
1582
1582
|
The name of the HeaderRoute group.
|
|
1583
1583
|
"""
|
|
@@ -1591,28 +1591,28 @@ elif False:
|
|
|
1591
1591
|
@pulumi.input_type
|
|
1592
1592
|
class StrategyCanaryStepSetHeaderRouteArgs:
|
|
1593
1593
|
def __init__(__self__, *,
|
|
1594
|
-
header_route_name: pulumi.Input[str],
|
|
1594
|
+
header_route_name: pulumi.Input[_builtins.str],
|
|
1595
1595
|
matches: pulumi.Input[Sequence[pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchArgs']]]):
|
|
1596
1596
|
"""
|
|
1597
|
-
:param pulumi.Input[str] header_route_name: The name of the HeaderRoute group.
|
|
1597
|
+
:param pulumi.Input[_builtins.str] header_route_name: The name of the HeaderRoute group.
|
|
1598
1598
|
:param pulumi.Input[Sequence[pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchArgs']]] matches: The matching rules for the header route.
|
|
1599
1599
|
"""
|
|
1600
1600
|
pulumi.set(__self__, "header_route_name", header_route_name)
|
|
1601
1601
|
pulumi.set(__self__, "matches", matches)
|
|
1602
1602
|
|
|
1603
|
-
@property
|
|
1603
|
+
@_builtins.property
|
|
1604
1604
|
@pulumi.getter(name="headerRouteName")
|
|
1605
|
-
def header_route_name(self) -> pulumi.Input[str]:
|
|
1605
|
+
def header_route_name(self) -> pulumi.Input[_builtins.str]:
|
|
1606
1606
|
"""
|
|
1607
1607
|
The name of the HeaderRoute group.
|
|
1608
1608
|
"""
|
|
1609
1609
|
return pulumi.get(self, "header_route_name")
|
|
1610
1610
|
|
|
1611
1611
|
@header_route_name.setter
|
|
1612
|
-
def header_route_name(self, value: pulumi.Input[str]):
|
|
1612
|
+
def header_route_name(self, value: pulumi.Input[_builtins.str]):
|
|
1613
1613
|
pulumi.set(self, "header_route_name", value)
|
|
1614
1614
|
|
|
1615
|
-
@property
|
|
1615
|
+
@_builtins.property
|
|
1616
1616
|
@pulumi.getter
|
|
1617
1617
|
def matches(self) -> pulumi.Input[Sequence[pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchArgs']]]:
|
|
1618
1618
|
"""
|
|
@@ -1627,7 +1627,7 @@ class StrategyCanaryStepSetHeaderRouteArgs:
|
|
|
1627
1627
|
|
|
1628
1628
|
if not MYPY:
|
|
1629
1629
|
class StrategyCanaryStepSetHeaderRouteMatchArgsDict(TypedDict):
|
|
1630
|
-
header_name: pulumi.Input[str]
|
|
1630
|
+
header_name: pulumi.Input[_builtins.str]
|
|
1631
1631
|
"""
|
|
1632
1632
|
The name of the header.
|
|
1633
1633
|
"""
|
|
@@ -1641,28 +1641,28 @@ elif False:
|
|
|
1641
1641
|
@pulumi.input_type
|
|
1642
1642
|
class StrategyCanaryStepSetHeaderRouteMatchArgs:
|
|
1643
1643
|
def __init__(__self__, *,
|
|
1644
|
-
header_name: pulumi.Input[str],
|
|
1644
|
+
header_name: pulumi.Input[_builtins.str],
|
|
1645
1645
|
header_value: pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgs']):
|
|
1646
1646
|
"""
|
|
1647
|
-
:param pulumi.Input[str] header_name: The name of the header.
|
|
1647
|
+
:param pulumi.Input[_builtins.str] header_name: The name of the header.
|
|
1648
1648
|
:param pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgs'] header_value: Defines a single header to add to the Rollout. Must be only one initialized from the following (exact, prefix, regex).
|
|
1649
1649
|
"""
|
|
1650
1650
|
pulumi.set(__self__, "header_name", header_name)
|
|
1651
1651
|
pulumi.set(__self__, "header_value", header_value)
|
|
1652
1652
|
|
|
1653
|
-
@property
|
|
1653
|
+
@_builtins.property
|
|
1654
1654
|
@pulumi.getter(name="headerName")
|
|
1655
|
-
def header_name(self) -> pulumi.Input[str]:
|
|
1655
|
+
def header_name(self) -> pulumi.Input[_builtins.str]:
|
|
1656
1656
|
"""
|
|
1657
1657
|
The name of the header.
|
|
1658
1658
|
"""
|
|
1659
1659
|
return pulumi.get(self, "header_name")
|
|
1660
1660
|
|
|
1661
1661
|
@header_name.setter
|
|
1662
|
-
def header_name(self, value: pulumi.Input[str]):
|
|
1662
|
+
def header_name(self, value: pulumi.Input[_builtins.str]):
|
|
1663
1663
|
pulumi.set(self, "header_name", value)
|
|
1664
1664
|
|
|
1665
|
-
@property
|
|
1665
|
+
@_builtins.property
|
|
1666
1666
|
@pulumi.getter(name="headerValue")
|
|
1667
1667
|
def header_value(self) -> pulumi.Input['StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgs']:
|
|
1668
1668
|
"""
|
|
@@ -1677,15 +1677,15 @@ class StrategyCanaryStepSetHeaderRouteMatchArgs:
|
|
|
1677
1677
|
|
|
1678
1678
|
if not MYPY:
|
|
1679
1679
|
class StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgsDict(TypedDict):
|
|
1680
|
-
exact: NotRequired[pulumi.Input[str]]
|
|
1680
|
+
exact: NotRequired[pulumi.Input[_builtins.str]]
|
|
1681
1681
|
"""
|
|
1682
1682
|
The exact header value.
|
|
1683
1683
|
"""
|
|
1684
|
-
prefix: NotRequired[pulumi.Input[str]]
|
|
1684
|
+
prefix: NotRequired[pulumi.Input[_builtins.str]]
|
|
1685
1685
|
"""
|
|
1686
1686
|
The prefix of the value.
|
|
1687
1687
|
"""
|
|
1688
|
-
regex: NotRequired[pulumi.Input[str]]
|
|
1688
|
+
regex: NotRequired[pulumi.Input[_builtins.str]]
|
|
1689
1689
|
"""
|
|
1690
1690
|
The value in a regex format.
|
|
1691
1691
|
"""
|
|
@@ -1695,13 +1695,13 @@ elif False:
|
|
|
1695
1695
|
@pulumi.input_type
|
|
1696
1696
|
class StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgs:
|
|
1697
1697
|
def __init__(__self__, *,
|
|
1698
|
-
exact: Optional[pulumi.Input[str]] = None,
|
|
1699
|
-
prefix: Optional[pulumi.Input[str]] = None,
|
|
1700
|
-
regex: Optional[pulumi.Input[str]] = None):
|
|
1698
|
+
exact: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1699
|
+
prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1700
|
+
regex: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1701
1701
|
"""
|
|
1702
|
-
:param pulumi.Input[str] exact: The exact header value.
|
|
1703
|
-
:param pulumi.Input[str] prefix: The prefix of the value.
|
|
1704
|
-
:param pulumi.Input[str] regex: The value in a regex format.
|
|
1702
|
+
:param pulumi.Input[_builtins.str] exact: The exact header value.
|
|
1703
|
+
:param pulumi.Input[_builtins.str] prefix: The prefix of the value.
|
|
1704
|
+
:param pulumi.Input[_builtins.str] regex: The value in a regex format.
|
|
1705
1705
|
"""
|
|
1706
1706
|
if exact is not None:
|
|
1707
1707
|
pulumi.set(__self__, "exact", exact)
|
|
@@ -1710,46 +1710,46 @@ class StrategyCanaryStepSetHeaderRouteMatchHeaderValueArgs:
|
|
|
1710
1710
|
if regex is not None:
|
|
1711
1711
|
pulumi.set(__self__, "regex", regex)
|
|
1712
1712
|
|
|
1713
|
-
@property
|
|
1713
|
+
@_builtins.property
|
|
1714
1714
|
@pulumi.getter
|
|
1715
|
-
def exact(self) -> Optional[pulumi.Input[str]]:
|
|
1715
|
+
def exact(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1716
1716
|
"""
|
|
1717
1717
|
The exact header value.
|
|
1718
1718
|
"""
|
|
1719
1719
|
return pulumi.get(self, "exact")
|
|
1720
1720
|
|
|
1721
1721
|
@exact.setter
|
|
1722
|
-
def exact(self, value: Optional[pulumi.Input[str]]):
|
|
1722
|
+
def exact(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1723
1723
|
pulumi.set(self, "exact", value)
|
|
1724
1724
|
|
|
1725
|
-
@property
|
|
1725
|
+
@_builtins.property
|
|
1726
1726
|
@pulumi.getter
|
|
1727
|
-
def prefix(self) -> Optional[pulumi.Input[str]]:
|
|
1727
|
+
def prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1728
1728
|
"""
|
|
1729
1729
|
The prefix of the value.
|
|
1730
1730
|
"""
|
|
1731
1731
|
return pulumi.get(self, "prefix")
|
|
1732
1732
|
|
|
1733
1733
|
@prefix.setter
|
|
1734
|
-
def prefix(self, value: Optional[pulumi.Input[str]]):
|
|
1734
|
+
def prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1735
1735
|
pulumi.set(self, "prefix", value)
|
|
1736
1736
|
|
|
1737
|
-
@property
|
|
1737
|
+
@_builtins.property
|
|
1738
1738
|
@pulumi.getter
|
|
1739
|
-
def regex(self) -> Optional[pulumi.Input[str]]:
|
|
1739
|
+
def regex(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1740
1740
|
"""
|
|
1741
1741
|
The value in a regex format.
|
|
1742
1742
|
"""
|
|
1743
1743
|
return pulumi.get(self, "regex")
|
|
1744
1744
|
|
|
1745
1745
|
@regex.setter
|
|
1746
|
-
def regex(self, value: Optional[pulumi.Input[str]]):
|
|
1746
|
+
def regex(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1747
1747
|
pulumi.set(self, "regex", value)
|
|
1748
1748
|
|
|
1749
1749
|
|
|
1750
1750
|
if not MYPY:
|
|
1751
1751
|
class StrategyCanaryStepVerificationArgsDict(TypedDict):
|
|
1752
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
1752
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
1753
1753
|
"""
|
|
1754
1754
|
List of Verification Template names.
|
|
1755
1755
|
"""
|
|
@@ -1759,22 +1759,22 @@ elif False:
|
|
|
1759
1759
|
@pulumi.input_type
|
|
1760
1760
|
class StrategyCanaryStepVerificationArgs:
|
|
1761
1761
|
def __init__(__self__, *,
|
|
1762
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1762
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1763
1763
|
"""
|
|
1764
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] template_names: List of Verification Template names.
|
|
1764
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] template_names: List of Verification Template names.
|
|
1765
1765
|
"""
|
|
1766
1766
|
pulumi.set(__self__, "template_names", template_names)
|
|
1767
1767
|
|
|
1768
|
-
@property
|
|
1768
|
+
@_builtins.property
|
|
1769
1769
|
@pulumi.getter(name="templateNames")
|
|
1770
|
-
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
1770
|
+
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
1771
1771
|
"""
|
|
1772
1772
|
List of Verification Template names.
|
|
1773
1773
|
"""
|
|
1774
1774
|
return pulumi.get(self, "template_names")
|
|
1775
1775
|
|
|
1776
1776
|
@template_names.setter
|
|
1777
|
-
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1777
|
+
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1778
1778
|
pulumi.set(self, "template_names", value)
|
|
1779
1779
|
|
|
1780
1780
|
|
|
@@ -1796,7 +1796,7 @@ class StrategyRollingArgs:
|
|
|
1796
1796
|
"""
|
|
1797
1797
|
pulumi.set(__self__, "steps", steps)
|
|
1798
1798
|
|
|
1799
|
-
@property
|
|
1799
|
+
@_builtins.property
|
|
1800
1800
|
@pulumi.getter
|
|
1801
1801
|
def steps(self) -> pulumi.Input[Sequence[pulumi.Input['StrategyRollingStepArgs']]]:
|
|
1802
1802
|
"""
|
|
@@ -1815,7 +1815,7 @@ if not MYPY:
|
|
|
1815
1815
|
"""
|
|
1816
1816
|
Defines the duration of time to freeze the rollout.
|
|
1817
1817
|
"""
|
|
1818
|
-
steps_name: NotRequired[pulumi.Input[str]]
|
|
1818
|
+
steps_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
1819
1819
|
verification: NotRequired[pulumi.Input['StrategyRollingStepVerificationArgsDict']]
|
|
1820
1820
|
"""
|
|
1821
1821
|
Represents the list of verifications to run in a step.
|
|
@@ -1827,7 +1827,7 @@ elif False:
|
|
|
1827
1827
|
class StrategyRollingStepArgs:
|
|
1828
1828
|
def __init__(__self__, *,
|
|
1829
1829
|
pause: Optional[pulumi.Input['StrategyRollingStepPauseArgs']] = None,
|
|
1830
|
-
steps_name: Optional[pulumi.Input[str]] = None,
|
|
1830
|
+
steps_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1831
1831
|
verification: Optional[pulumi.Input['StrategyRollingStepVerificationArgs']] = None):
|
|
1832
1832
|
"""
|
|
1833
1833
|
:param pulumi.Input['StrategyRollingStepPauseArgs'] pause: Defines the duration of time to freeze the rollout.
|
|
@@ -1840,7 +1840,7 @@ class StrategyRollingStepArgs:
|
|
|
1840
1840
|
if verification is not None:
|
|
1841
1841
|
pulumi.set(__self__, "verification", verification)
|
|
1842
1842
|
|
|
1843
|
-
@property
|
|
1843
|
+
@_builtins.property
|
|
1844
1844
|
@pulumi.getter
|
|
1845
1845
|
def pause(self) -> Optional[pulumi.Input['StrategyRollingStepPauseArgs']]:
|
|
1846
1846
|
"""
|
|
@@ -1852,16 +1852,16 @@ class StrategyRollingStepArgs:
|
|
|
1852
1852
|
def pause(self, value: Optional[pulumi.Input['StrategyRollingStepPauseArgs']]):
|
|
1853
1853
|
pulumi.set(self, "pause", value)
|
|
1854
1854
|
|
|
1855
|
-
@property
|
|
1855
|
+
@_builtins.property
|
|
1856
1856
|
@pulumi.getter(name="stepsName")
|
|
1857
|
-
def steps_name(self) -> Optional[pulumi.Input[str]]:
|
|
1857
|
+
def steps_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1858
1858
|
return pulumi.get(self, "steps_name")
|
|
1859
1859
|
|
|
1860
1860
|
@steps_name.setter
|
|
1861
|
-
def steps_name(self, value: Optional[pulumi.Input[str]]):
|
|
1861
|
+
def steps_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1862
1862
|
pulumi.set(self, "steps_name", value)
|
|
1863
1863
|
|
|
1864
|
-
@property
|
|
1864
|
+
@_builtins.property
|
|
1865
1865
|
@pulumi.getter
|
|
1866
1866
|
def verification(self) -> Optional[pulumi.Input['StrategyRollingStepVerificationArgs']]:
|
|
1867
1867
|
"""
|
|
@@ -1876,7 +1876,7 @@ class StrategyRollingStepArgs:
|
|
|
1876
1876
|
|
|
1877
1877
|
if not MYPY:
|
|
1878
1878
|
class StrategyRollingStepPauseArgsDict(TypedDict):
|
|
1879
|
-
duration: NotRequired[pulumi.Input[str]]
|
|
1879
|
+
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
1880
1880
|
"""
|
|
1881
1881
|
The amount of time to wait before moving to the next step.
|
|
1882
1882
|
"""
|
|
@@ -1886,29 +1886,29 @@ elif False:
|
|
|
1886
1886
|
@pulumi.input_type
|
|
1887
1887
|
class StrategyRollingStepPauseArgs:
|
|
1888
1888
|
def __init__(__self__, *,
|
|
1889
|
-
duration: Optional[pulumi.Input[str]] = None):
|
|
1889
|
+
duration: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1890
1890
|
"""
|
|
1891
|
-
:param pulumi.Input[str] duration: The amount of time to wait before moving to the next step.
|
|
1891
|
+
:param pulumi.Input[_builtins.str] duration: The amount of time to wait before moving to the next step.
|
|
1892
1892
|
"""
|
|
1893
1893
|
if duration is not None:
|
|
1894
1894
|
pulumi.set(__self__, "duration", duration)
|
|
1895
1895
|
|
|
1896
|
-
@property
|
|
1896
|
+
@_builtins.property
|
|
1897
1897
|
@pulumi.getter
|
|
1898
|
-
def duration(self) -> Optional[pulumi.Input[str]]:
|
|
1898
|
+
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1899
1899
|
"""
|
|
1900
1900
|
The amount of time to wait before moving to the next step.
|
|
1901
1901
|
"""
|
|
1902
1902
|
return pulumi.get(self, "duration")
|
|
1903
1903
|
|
|
1904
1904
|
@duration.setter
|
|
1905
|
-
def duration(self, value: Optional[pulumi.Input[str]]):
|
|
1905
|
+
def duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1906
1906
|
pulumi.set(self, "duration", value)
|
|
1907
1907
|
|
|
1908
1908
|
|
|
1909
1909
|
if not MYPY:
|
|
1910
1910
|
class StrategyRollingStepVerificationArgsDict(TypedDict):
|
|
1911
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
1911
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
1912
1912
|
"""
|
|
1913
1913
|
List of Verification Template names.
|
|
1914
1914
|
"""
|
|
@@ -1918,28 +1918,28 @@ elif False:
|
|
|
1918
1918
|
@pulumi.input_type
|
|
1919
1919
|
class StrategyRollingStepVerificationArgs:
|
|
1920
1920
|
def __init__(__self__, *,
|
|
1921
|
-
template_names: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1921
|
+
template_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1922
1922
|
"""
|
|
1923
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] template_names: List of Verification Template names.
|
|
1923
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] template_names: List of Verification Template names.
|
|
1924
1924
|
"""
|
|
1925
1925
|
pulumi.set(__self__, "template_names", template_names)
|
|
1926
1926
|
|
|
1927
|
-
@property
|
|
1927
|
+
@_builtins.property
|
|
1928
1928
|
@pulumi.getter(name="templateNames")
|
|
1929
|
-
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
1929
|
+
def template_names(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
1930
1930
|
"""
|
|
1931
1931
|
List of Verification Template names.
|
|
1932
1932
|
"""
|
|
1933
1933
|
return pulumi.get(self, "template_names")
|
|
1934
1934
|
|
|
1935
1935
|
@template_names.setter
|
|
1936
|
-
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
1936
|
+
def template_names(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1937
1937
|
pulumi.set(self, "template_names", value)
|
|
1938
1938
|
|
|
1939
1939
|
|
|
1940
1940
|
if not MYPY:
|
|
1941
1941
|
class VerificationProviderCloudWatchArgsDict(TypedDict):
|
|
1942
|
-
iam_arn: pulumi.Input[str]
|
|
1942
|
+
iam_arn: pulumi.Input[_builtins.str]
|
|
1943
1943
|
"""
|
|
1944
1944
|
Set label key.
|
|
1945
1945
|
"""
|
|
@@ -1949,36 +1949,36 @@ elif False:
|
|
|
1949
1949
|
@pulumi.input_type
|
|
1950
1950
|
class VerificationProviderCloudWatchArgs:
|
|
1951
1951
|
def __init__(__self__, *,
|
|
1952
|
-
iam_arn: pulumi.Input[str]):
|
|
1952
|
+
iam_arn: pulumi.Input[_builtins.str]):
|
|
1953
1953
|
"""
|
|
1954
|
-
:param pulumi.Input[str] iam_arn: Set label key.
|
|
1954
|
+
:param pulumi.Input[_builtins.str] iam_arn: Set label key.
|
|
1955
1955
|
"""
|
|
1956
1956
|
pulumi.set(__self__, "iam_arn", iam_arn)
|
|
1957
1957
|
|
|
1958
|
-
@property
|
|
1958
|
+
@_builtins.property
|
|
1959
1959
|
@pulumi.getter(name="iamArn")
|
|
1960
|
-
def iam_arn(self) -> pulumi.Input[str]:
|
|
1960
|
+
def iam_arn(self) -> pulumi.Input[_builtins.str]:
|
|
1961
1961
|
"""
|
|
1962
1962
|
Set label key.
|
|
1963
1963
|
"""
|
|
1964
1964
|
return pulumi.get(self, "iam_arn")
|
|
1965
1965
|
|
|
1966
1966
|
@iam_arn.setter
|
|
1967
|
-
def iam_arn(self, value: pulumi.Input[str]):
|
|
1967
|
+
def iam_arn(self, value: pulumi.Input[_builtins.str]):
|
|
1968
1968
|
pulumi.set(self, "iam_arn", value)
|
|
1969
1969
|
|
|
1970
1970
|
|
|
1971
1971
|
if not MYPY:
|
|
1972
1972
|
class VerificationProviderDatadogArgsDict(TypedDict):
|
|
1973
|
-
address: pulumi.Input[str]
|
|
1973
|
+
address: pulumi.Input[_builtins.str]
|
|
1974
1974
|
"""
|
|
1975
1975
|
DataDog API URL.
|
|
1976
1976
|
"""
|
|
1977
|
-
api_key: pulumi.Input[str]
|
|
1977
|
+
api_key: pulumi.Input[_builtins.str]
|
|
1978
1978
|
"""
|
|
1979
1979
|
API key required by the Datadog Agent to submit metrics and events to Datadog.
|
|
1980
1980
|
"""
|
|
1981
|
-
app_key: pulumi.Input[str]
|
|
1981
|
+
app_key: pulumi.Input[_builtins.str]
|
|
1982
1982
|
"""
|
|
1983
1983
|
API key that gives users access to Datadog’s programmatic API.
|
|
1984
1984
|
"""
|
|
@@ -1988,66 +1988,66 @@ elif False:
|
|
|
1988
1988
|
@pulumi.input_type
|
|
1989
1989
|
class VerificationProviderDatadogArgs:
|
|
1990
1990
|
def __init__(__self__, *,
|
|
1991
|
-
address: pulumi.Input[str],
|
|
1992
|
-
api_key: pulumi.Input[str],
|
|
1993
|
-
app_key: pulumi.Input[str]):
|
|
1991
|
+
address: pulumi.Input[_builtins.str],
|
|
1992
|
+
api_key: pulumi.Input[_builtins.str],
|
|
1993
|
+
app_key: pulumi.Input[_builtins.str]):
|
|
1994
1994
|
"""
|
|
1995
|
-
:param pulumi.Input[str] address: DataDog API URL.
|
|
1996
|
-
:param pulumi.Input[str] api_key: API key required by the Datadog Agent to submit metrics and events to Datadog.
|
|
1997
|
-
:param pulumi.Input[str] app_key: API key that gives users access to Datadog’s programmatic API.
|
|
1995
|
+
:param pulumi.Input[_builtins.str] address: DataDog API URL.
|
|
1996
|
+
:param pulumi.Input[_builtins.str] api_key: API key required by the Datadog Agent to submit metrics and events to Datadog.
|
|
1997
|
+
:param pulumi.Input[_builtins.str] app_key: API key that gives users access to Datadog’s programmatic API.
|
|
1998
1998
|
"""
|
|
1999
1999
|
pulumi.set(__self__, "address", address)
|
|
2000
2000
|
pulumi.set(__self__, "api_key", api_key)
|
|
2001
2001
|
pulumi.set(__self__, "app_key", app_key)
|
|
2002
2002
|
|
|
2003
|
-
@property
|
|
2003
|
+
@_builtins.property
|
|
2004
2004
|
@pulumi.getter
|
|
2005
|
-
def address(self) -> pulumi.Input[str]:
|
|
2005
|
+
def address(self) -> pulumi.Input[_builtins.str]:
|
|
2006
2006
|
"""
|
|
2007
2007
|
DataDog API URL.
|
|
2008
2008
|
"""
|
|
2009
2009
|
return pulumi.get(self, "address")
|
|
2010
2010
|
|
|
2011
2011
|
@address.setter
|
|
2012
|
-
def address(self, value: pulumi.Input[str]):
|
|
2012
|
+
def address(self, value: pulumi.Input[_builtins.str]):
|
|
2013
2013
|
pulumi.set(self, "address", value)
|
|
2014
2014
|
|
|
2015
|
-
@property
|
|
2015
|
+
@_builtins.property
|
|
2016
2016
|
@pulumi.getter(name="apiKey")
|
|
2017
|
-
def api_key(self) -> pulumi.Input[str]:
|
|
2017
|
+
def api_key(self) -> pulumi.Input[_builtins.str]:
|
|
2018
2018
|
"""
|
|
2019
2019
|
API key required by the Datadog Agent to submit metrics and events to Datadog.
|
|
2020
2020
|
"""
|
|
2021
2021
|
return pulumi.get(self, "api_key")
|
|
2022
2022
|
|
|
2023
2023
|
@api_key.setter
|
|
2024
|
-
def api_key(self, value: pulumi.Input[str]):
|
|
2024
|
+
def api_key(self, value: pulumi.Input[_builtins.str]):
|
|
2025
2025
|
pulumi.set(self, "api_key", value)
|
|
2026
2026
|
|
|
2027
|
-
@property
|
|
2027
|
+
@_builtins.property
|
|
2028
2028
|
@pulumi.getter(name="appKey")
|
|
2029
|
-
def app_key(self) -> pulumi.Input[str]:
|
|
2029
|
+
def app_key(self) -> pulumi.Input[_builtins.str]:
|
|
2030
2030
|
"""
|
|
2031
2031
|
API key that gives users access to Datadog’s programmatic API.
|
|
2032
2032
|
"""
|
|
2033
2033
|
return pulumi.get(self, "app_key")
|
|
2034
2034
|
|
|
2035
2035
|
@app_key.setter
|
|
2036
|
-
def app_key(self, value: pulumi.Input[str]):
|
|
2036
|
+
def app_key(self, value: pulumi.Input[_builtins.str]):
|
|
2037
2037
|
pulumi.set(self, "app_key", value)
|
|
2038
2038
|
|
|
2039
2039
|
|
|
2040
2040
|
if not MYPY:
|
|
2041
2041
|
class VerificationProviderJenkinsArgsDict(TypedDict):
|
|
2042
|
-
api_token: pulumi.Input[str]
|
|
2042
|
+
api_token: pulumi.Input[_builtins.str]
|
|
2043
2043
|
"""
|
|
2044
2044
|
The Jenkins server’s access apiToken.
|
|
2045
2045
|
"""
|
|
2046
|
-
base_url: pulumi.Input[str]
|
|
2046
|
+
base_url: pulumi.Input[_builtins.str]
|
|
2047
2047
|
"""
|
|
2048
2048
|
The address of the Jenkins server within the cluster.
|
|
2049
2049
|
"""
|
|
2050
|
-
username: pulumi.Input[str]
|
|
2050
|
+
username: pulumi.Input[_builtins.str]
|
|
2051
2051
|
"""
|
|
2052
2052
|
The Jenkins server’s access username.
|
|
2053
2053
|
"""
|
|
@@ -2057,71 +2057,71 @@ elif False:
|
|
|
2057
2057
|
@pulumi.input_type
|
|
2058
2058
|
class VerificationProviderJenkinsArgs:
|
|
2059
2059
|
def __init__(__self__, *,
|
|
2060
|
-
api_token: pulumi.Input[str],
|
|
2061
|
-
base_url: pulumi.Input[str],
|
|
2062
|
-
username: pulumi.Input[str]):
|
|
2060
|
+
api_token: pulumi.Input[_builtins.str],
|
|
2061
|
+
base_url: pulumi.Input[_builtins.str],
|
|
2062
|
+
username: pulumi.Input[_builtins.str]):
|
|
2063
2063
|
"""
|
|
2064
|
-
:param pulumi.Input[str] api_token: The Jenkins server’s access apiToken.
|
|
2065
|
-
:param pulumi.Input[str] base_url: The address of the Jenkins server within the cluster.
|
|
2066
|
-
:param pulumi.Input[str] username: The Jenkins server’s access username.
|
|
2064
|
+
:param pulumi.Input[_builtins.str] api_token: The Jenkins server’s access apiToken.
|
|
2065
|
+
:param pulumi.Input[_builtins.str] base_url: The address of the Jenkins server within the cluster.
|
|
2066
|
+
:param pulumi.Input[_builtins.str] username: The Jenkins server’s access username.
|
|
2067
2067
|
"""
|
|
2068
2068
|
pulumi.set(__self__, "api_token", api_token)
|
|
2069
2069
|
pulumi.set(__self__, "base_url", base_url)
|
|
2070
2070
|
pulumi.set(__self__, "username", username)
|
|
2071
2071
|
|
|
2072
|
-
@property
|
|
2072
|
+
@_builtins.property
|
|
2073
2073
|
@pulumi.getter(name="apiToken")
|
|
2074
|
-
def api_token(self) -> pulumi.Input[str]:
|
|
2074
|
+
def api_token(self) -> pulumi.Input[_builtins.str]:
|
|
2075
2075
|
"""
|
|
2076
2076
|
The Jenkins server’s access apiToken.
|
|
2077
2077
|
"""
|
|
2078
2078
|
return pulumi.get(self, "api_token")
|
|
2079
2079
|
|
|
2080
2080
|
@api_token.setter
|
|
2081
|
-
def api_token(self, value: pulumi.Input[str]):
|
|
2081
|
+
def api_token(self, value: pulumi.Input[_builtins.str]):
|
|
2082
2082
|
pulumi.set(self, "api_token", value)
|
|
2083
2083
|
|
|
2084
|
-
@property
|
|
2084
|
+
@_builtins.property
|
|
2085
2085
|
@pulumi.getter(name="baseUrl")
|
|
2086
|
-
def base_url(self) -> pulumi.Input[str]:
|
|
2086
|
+
def base_url(self) -> pulumi.Input[_builtins.str]:
|
|
2087
2087
|
"""
|
|
2088
2088
|
The address of the Jenkins server within the cluster.
|
|
2089
2089
|
"""
|
|
2090
2090
|
return pulumi.get(self, "base_url")
|
|
2091
2091
|
|
|
2092
2092
|
@base_url.setter
|
|
2093
|
-
def base_url(self, value: pulumi.Input[str]):
|
|
2093
|
+
def base_url(self, value: pulumi.Input[_builtins.str]):
|
|
2094
2094
|
pulumi.set(self, "base_url", value)
|
|
2095
2095
|
|
|
2096
|
-
@property
|
|
2096
|
+
@_builtins.property
|
|
2097
2097
|
@pulumi.getter
|
|
2098
|
-
def username(self) -> pulumi.Input[str]:
|
|
2098
|
+
def username(self) -> pulumi.Input[_builtins.str]:
|
|
2099
2099
|
"""
|
|
2100
2100
|
The Jenkins server’s access username.
|
|
2101
2101
|
"""
|
|
2102
2102
|
return pulumi.get(self, "username")
|
|
2103
2103
|
|
|
2104
2104
|
@username.setter
|
|
2105
|
-
def username(self, value: pulumi.Input[str]):
|
|
2105
|
+
def username(self, value: pulumi.Input[_builtins.str]):
|
|
2106
2106
|
pulumi.set(self, "username", value)
|
|
2107
2107
|
|
|
2108
2108
|
|
|
2109
2109
|
if not MYPY:
|
|
2110
2110
|
class VerificationProviderNewRelicArgsDict(TypedDict):
|
|
2111
|
-
account_id: pulumi.Input[str]
|
|
2112
|
-
personal_api_key: pulumi.Input[str]
|
|
2111
|
+
account_id: pulumi.Input[_builtins.str]
|
|
2112
|
+
personal_api_key: pulumi.Input[_builtins.str]
|
|
2113
2113
|
"""
|
|
2114
2114
|
The NewRelic user key
|
|
2115
2115
|
"""
|
|
2116
|
-
base_url_nerd_graph: NotRequired[pulumi.Input[str]]
|
|
2116
|
+
base_url_nerd_graph: NotRequired[pulumi.Input[_builtins.str]]
|
|
2117
2117
|
"""
|
|
2118
2118
|
The base URL for NerdGraph for a proxy.
|
|
2119
2119
|
"""
|
|
2120
|
-
base_url_rest: NotRequired[pulumi.Input[str]]
|
|
2120
|
+
base_url_rest: NotRequired[pulumi.Input[_builtins.str]]
|
|
2121
2121
|
"""
|
|
2122
2122
|
The base URL of the New Relic REST API for a proxy.
|
|
2123
2123
|
"""
|
|
2124
|
-
region: NotRequired[pulumi.Input[str]]
|
|
2124
|
+
region: NotRequired[pulumi.Input[_builtins.str]]
|
|
2125
2125
|
"""
|
|
2126
2126
|
A region which the account is attached to. Default is "us".
|
|
2127
2127
|
"""
|
|
@@ -2131,16 +2131,16 @@ elif False:
|
|
|
2131
2131
|
@pulumi.input_type
|
|
2132
2132
|
class VerificationProviderNewRelicArgs:
|
|
2133
2133
|
def __init__(__self__, *,
|
|
2134
|
-
account_id: pulumi.Input[str],
|
|
2135
|
-
personal_api_key: pulumi.Input[str],
|
|
2136
|
-
base_url_nerd_graph: Optional[pulumi.Input[str]] = None,
|
|
2137
|
-
base_url_rest: Optional[pulumi.Input[str]] = None,
|
|
2138
|
-
region: Optional[pulumi.Input[str]] = None):
|
|
2134
|
+
account_id: pulumi.Input[_builtins.str],
|
|
2135
|
+
personal_api_key: pulumi.Input[_builtins.str],
|
|
2136
|
+
base_url_nerd_graph: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2137
|
+
base_url_rest: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2138
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2139
2139
|
"""
|
|
2140
|
-
:param pulumi.Input[str] personal_api_key: The NewRelic user key
|
|
2141
|
-
:param pulumi.Input[str] base_url_nerd_graph: The base URL for NerdGraph for a proxy.
|
|
2142
|
-
:param pulumi.Input[str] base_url_rest: The base URL of the New Relic REST API for a proxy.
|
|
2143
|
-
:param pulumi.Input[str] region: A region which the account is attached to. Default is "us".
|
|
2140
|
+
:param pulumi.Input[_builtins.str] personal_api_key: The NewRelic user key
|
|
2141
|
+
:param pulumi.Input[_builtins.str] base_url_nerd_graph: The base URL for NerdGraph for a proxy.
|
|
2142
|
+
:param pulumi.Input[_builtins.str] base_url_rest: The base URL of the New Relic REST API for a proxy.
|
|
2143
|
+
:param pulumi.Input[_builtins.str] region: A region which the account is attached to. Default is "us".
|
|
2144
2144
|
"""
|
|
2145
2145
|
pulumi.set(__self__, "account_id", account_id)
|
|
2146
2146
|
pulumi.set(__self__, "personal_api_key", personal_api_key)
|
|
@@ -2151,67 +2151,67 @@ class VerificationProviderNewRelicArgs:
|
|
|
2151
2151
|
if region is not None:
|
|
2152
2152
|
pulumi.set(__self__, "region", region)
|
|
2153
2153
|
|
|
2154
|
-
@property
|
|
2154
|
+
@_builtins.property
|
|
2155
2155
|
@pulumi.getter(name="accountId")
|
|
2156
|
-
def account_id(self) -> pulumi.Input[str]:
|
|
2156
|
+
def account_id(self) -> pulumi.Input[_builtins.str]:
|
|
2157
2157
|
return pulumi.get(self, "account_id")
|
|
2158
2158
|
|
|
2159
2159
|
@account_id.setter
|
|
2160
|
-
def account_id(self, value: pulumi.Input[str]):
|
|
2160
|
+
def account_id(self, value: pulumi.Input[_builtins.str]):
|
|
2161
2161
|
pulumi.set(self, "account_id", value)
|
|
2162
2162
|
|
|
2163
|
-
@property
|
|
2163
|
+
@_builtins.property
|
|
2164
2164
|
@pulumi.getter(name="personalApiKey")
|
|
2165
|
-
def personal_api_key(self) -> pulumi.Input[str]:
|
|
2165
|
+
def personal_api_key(self) -> pulumi.Input[_builtins.str]:
|
|
2166
2166
|
"""
|
|
2167
2167
|
The NewRelic user key
|
|
2168
2168
|
"""
|
|
2169
2169
|
return pulumi.get(self, "personal_api_key")
|
|
2170
2170
|
|
|
2171
2171
|
@personal_api_key.setter
|
|
2172
|
-
def personal_api_key(self, value: pulumi.Input[str]):
|
|
2172
|
+
def personal_api_key(self, value: pulumi.Input[_builtins.str]):
|
|
2173
2173
|
pulumi.set(self, "personal_api_key", value)
|
|
2174
2174
|
|
|
2175
|
-
@property
|
|
2175
|
+
@_builtins.property
|
|
2176
2176
|
@pulumi.getter(name="baseUrlNerdGraph")
|
|
2177
|
-
def base_url_nerd_graph(self) -> Optional[pulumi.Input[str]]:
|
|
2177
|
+
def base_url_nerd_graph(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2178
2178
|
"""
|
|
2179
2179
|
The base URL for NerdGraph for a proxy.
|
|
2180
2180
|
"""
|
|
2181
2181
|
return pulumi.get(self, "base_url_nerd_graph")
|
|
2182
2182
|
|
|
2183
2183
|
@base_url_nerd_graph.setter
|
|
2184
|
-
def base_url_nerd_graph(self, value: Optional[pulumi.Input[str]]):
|
|
2184
|
+
def base_url_nerd_graph(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2185
2185
|
pulumi.set(self, "base_url_nerd_graph", value)
|
|
2186
2186
|
|
|
2187
|
-
@property
|
|
2187
|
+
@_builtins.property
|
|
2188
2188
|
@pulumi.getter(name="baseUrlRest")
|
|
2189
|
-
def base_url_rest(self) -> Optional[pulumi.Input[str]]:
|
|
2189
|
+
def base_url_rest(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2190
2190
|
"""
|
|
2191
2191
|
The base URL of the New Relic REST API for a proxy.
|
|
2192
2192
|
"""
|
|
2193
2193
|
return pulumi.get(self, "base_url_rest")
|
|
2194
2194
|
|
|
2195
2195
|
@base_url_rest.setter
|
|
2196
|
-
def base_url_rest(self, value: Optional[pulumi.Input[str]]):
|
|
2196
|
+
def base_url_rest(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2197
2197
|
pulumi.set(self, "base_url_rest", value)
|
|
2198
2198
|
|
|
2199
|
-
@property
|
|
2199
|
+
@_builtins.property
|
|
2200
2200
|
@pulumi.getter
|
|
2201
|
-
def region(self) -> Optional[pulumi.Input[str]]:
|
|
2201
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2202
2202
|
"""
|
|
2203
2203
|
A region which the account is attached to. Default is "us".
|
|
2204
2204
|
"""
|
|
2205
2205
|
return pulumi.get(self, "region")
|
|
2206
2206
|
|
|
2207
2207
|
@region.setter
|
|
2208
|
-
def region(self, value: Optional[pulumi.Input[str]]):
|
|
2208
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2209
2209
|
pulumi.set(self, "region", value)
|
|
2210
2210
|
|
|
2211
2211
|
|
|
2212
2212
|
if not MYPY:
|
|
2213
2213
|
class VerificationProviderPrometheusArgsDict(TypedDict):
|
|
2214
|
-
address: pulumi.Input[str]
|
|
2214
|
+
address: pulumi.Input[_builtins.str]
|
|
2215
2215
|
"""
|
|
2216
2216
|
The address which the Prometheus server available on.
|
|
2217
2217
|
"""
|
|
@@ -2221,32 +2221,32 @@ elif False:
|
|
|
2221
2221
|
@pulumi.input_type
|
|
2222
2222
|
class VerificationProviderPrometheusArgs:
|
|
2223
2223
|
def __init__(__self__, *,
|
|
2224
|
-
address: pulumi.Input[str]):
|
|
2224
|
+
address: pulumi.Input[_builtins.str]):
|
|
2225
2225
|
"""
|
|
2226
|
-
:param pulumi.Input[str] address: The address which the Prometheus server available on.
|
|
2226
|
+
:param pulumi.Input[_builtins.str] address: The address which the Prometheus server available on.
|
|
2227
2227
|
"""
|
|
2228
2228
|
pulumi.set(__self__, "address", address)
|
|
2229
2229
|
|
|
2230
|
-
@property
|
|
2230
|
+
@_builtins.property
|
|
2231
2231
|
@pulumi.getter
|
|
2232
|
-
def address(self) -> pulumi.Input[str]:
|
|
2232
|
+
def address(self) -> pulumi.Input[_builtins.str]:
|
|
2233
2233
|
"""
|
|
2234
2234
|
The address which the Prometheus server available on.
|
|
2235
2235
|
"""
|
|
2236
2236
|
return pulumi.get(self, "address")
|
|
2237
2237
|
|
|
2238
2238
|
@address.setter
|
|
2239
|
-
def address(self, value: pulumi.Input[str]):
|
|
2239
|
+
def address(self, value: pulumi.Input[_builtins.str]):
|
|
2240
2240
|
pulumi.set(self, "address", value)
|
|
2241
2241
|
|
|
2242
2242
|
|
|
2243
2243
|
if not MYPY:
|
|
2244
2244
|
class VerificationTemplateArgArgsDict(TypedDict):
|
|
2245
|
-
arg_name: pulumi.Input[str]
|
|
2245
|
+
arg_name: pulumi.Input[_builtins.str]
|
|
2246
2246
|
"""
|
|
2247
2247
|
Name of an argument.
|
|
2248
2248
|
"""
|
|
2249
|
-
value: NotRequired[pulumi.Input[str]]
|
|
2249
|
+
value: NotRequired[pulumi.Input[_builtins.str]]
|
|
2250
2250
|
"""
|
|
2251
2251
|
String representation of data.
|
|
2252
2252
|
"""
|
|
@@ -2260,12 +2260,12 @@ elif False:
|
|
|
2260
2260
|
@pulumi.input_type
|
|
2261
2261
|
class VerificationTemplateArgArgs:
|
|
2262
2262
|
def __init__(__self__, *,
|
|
2263
|
-
arg_name: pulumi.Input[str],
|
|
2264
|
-
value: Optional[pulumi.Input[str]] = None,
|
|
2263
|
+
arg_name: pulumi.Input[_builtins.str],
|
|
2264
|
+
value: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2265
2265
|
value_from: Optional[pulumi.Input['VerificationTemplateArgValueFromArgs']] = None):
|
|
2266
2266
|
"""
|
|
2267
|
-
:param pulumi.Input[str] arg_name: Name of an argument.
|
|
2268
|
-
:param pulumi.Input[str] value: String representation of data.
|
|
2267
|
+
:param pulumi.Input[_builtins.str] arg_name: Name of an argument.
|
|
2268
|
+
:param pulumi.Input[_builtins.str] value: String representation of data.
|
|
2269
2269
|
:param pulumi.Input['VerificationTemplateArgValueFromArgs'] value_from: ValueFrom object.
|
|
2270
2270
|
"""
|
|
2271
2271
|
pulumi.set(__self__, "arg_name", arg_name)
|
|
@@ -2274,31 +2274,31 @@ class VerificationTemplateArgArgs:
|
|
|
2274
2274
|
if value_from is not None:
|
|
2275
2275
|
pulumi.set(__self__, "value_from", value_from)
|
|
2276
2276
|
|
|
2277
|
-
@property
|
|
2277
|
+
@_builtins.property
|
|
2278
2278
|
@pulumi.getter(name="argName")
|
|
2279
|
-
def arg_name(self) -> pulumi.Input[str]:
|
|
2279
|
+
def arg_name(self) -> pulumi.Input[_builtins.str]:
|
|
2280
2280
|
"""
|
|
2281
2281
|
Name of an argument.
|
|
2282
2282
|
"""
|
|
2283
2283
|
return pulumi.get(self, "arg_name")
|
|
2284
2284
|
|
|
2285
2285
|
@arg_name.setter
|
|
2286
|
-
def arg_name(self, value: pulumi.Input[str]):
|
|
2286
|
+
def arg_name(self, value: pulumi.Input[_builtins.str]):
|
|
2287
2287
|
pulumi.set(self, "arg_name", value)
|
|
2288
2288
|
|
|
2289
|
-
@property
|
|
2289
|
+
@_builtins.property
|
|
2290
2290
|
@pulumi.getter
|
|
2291
|
-
def value(self) -> Optional[pulumi.Input[str]]:
|
|
2291
|
+
def value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2292
2292
|
"""
|
|
2293
2293
|
String representation of data.
|
|
2294
2294
|
"""
|
|
2295
2295
|
return pulumi.get(self, "value")
|
|
2296
2296
|
|
|
2297
2297
|
@value.setter
|
|
2298
|
-
def value(self, value: Optional[pulumi.Input[str]]):
|
|
2298
|
+
def value(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2299
2299
|
pulumi.set(self, "value", value)
|
|
2300
2300
|
|
|
2301
|
-
@property
|
|
2301
|
+
@_builtins.property
|
|
2302
2302
|
@pulumi.getter(name="valueFrom")
|
|
2303
2303
|
def value_from(self) -> Optional[pulumi.Input['VerificationTemplateArgValueFromArgs']]:
|
|
2304
2304
|
"""
|
|
@@ -2330,7 +2330,7 @@ class VerificationTemplateArgValueFromArgs:
|
|
|
2330
2330
|
if secret_key_ref is not None:
|
|
2331
2331
|
pulumi.set(__self__, "secret_key_ref", secret_key_ref)
|
|
2332
2332
|
|
|
2333
|
-
@property
|
|
2333
|
+
@_builtins.property
|
|
2334
2334
|
@pulumi.getter(name="secretKeyRef")
|
|
2335
2335
|
def secret_key_ref(self) -> Optional[pulumi.Input['VerificationTemplateArgValueFromSecretKeyRefArgs']]:
|
|
2336
2336
|
"""
|
|
@@ -2345,11 +2345,11 @@ class VerificationTemplateArgValueFromArgs:
|
|
|
2345
2345
|
|
|
2346
2346
|
if not MYPY:
|
|
2347
2347
|
class VerificationTemplateArgValueFromSecretKeyRefArgsDict(TypedDict):
|
|
2348
|
-
key: pulumi.Input[str]
|
|
2348
|
+
key: pulumi.Input[_builtins.str]
|
|
2349
2349
|
"""
|
|
2350
2350
|
The name of the field inside the secret.
|
|
2351
2351
|
"""
|
|
2352
|
-
name: pulumi.Input[str]
|
|
2352
|
+
name: pulumi.Input[_builtins.str]
|
|
2353
2353
|
"""
|
|
2354
2354
|
The name of the secret.
|
|
2355
2355
|
"""
|
|
@@ -2359,43 +2359,43 @@ elif False:
|
|
|
2359
2359
|
@pulumi.input_type
|
|
2360
2360
|
class VerificationTemplateArgValueFromSecretKeyRefArgs:
|
|
2361
2361
|
def __init__(__self__, *,
|
|
2362
|
-
key: pulumi.Input[str],
|
|
2363
|
-
name: pulumi.Input[str]):
|
|
2362
|
+
key: pulumi.Input[_builtins.str],
|
|
2363
|
+
name: pulumi.Input[_builtins.str]):
|
|
2364
2364
|
"""
|
|
2365
|
-
:param pulumi.Input[str] key: The name of the field inside the secret.
|
|
2366
|
-
:param pulumi.Input[str] name: The name of the secret.
|
|
2365
|
+
:param pulumi.Input[_builtins.str] key: The name of the field inside the secret.
|
|
2366
|
+
:param pulumi.Input[_builtins.str] name: The name of the secret.
|
|
2367
2367
|
"""
|
|
2368
2368
|
pulumi.set(__self__, "key", key)
|
|
2369
2369
|
pulumi.set(__self__, "name", name)
|
|
2370
2370
|
|
|
2371
|
-
@property
|
|
2371
|
+
@_builtins.property
|
|
2372
2372
|
@pulumi.getter
|
|
2373
|
-
def key(self) -> pulumi.Input[str]:
|
|
2373
|
+
def key(self) -> pulumi.Input[_builtins.str]:
|
|
2374
2374
|
"""
|
|
2375
2375
|
The name of the field inside the secret.
|
|
2376
2376
|
"""
|
|
2377
2377
|
return pulumi.get(self, "key")
|
|
2378
2378
|
|
|
2379
2379
|
@key.setter
|
|
2380
|
-
def key(self, value: pulumi.Input[str]):
|
|
2380
|
+
def key(self, value: pulumi.Input[_builtins.str]):
|
|
2381
2381
|
pulumi.set(self, "key", value)
|
|
2382
2382
|
|
|
2383
|
-
@property
|
|
2383
|
+
@_builtins.property
|
|
2384
2384
|
@pulumi.getter
|
|
2385
|
-
def name(self) -> pulumi.Input[str]:
|
|
2385
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
2386
2386
|
"""
|
|
2387
2387
|
The name of the secret.
|
|
2388
2388
|
"""
|
|
2389
2389
|
return pulumi.get(self, "name")
|
|
2390
2390
|
|
|
2391
2391
|
@name.setter
|
|
2392
|
-
def name(self, value: pulumi.Input[str]):
|
|
2392
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
2393
2393
|
pulumi.set(self, "name", value)
|
|
2394
2394
|
|
|
2395
2395
|
|
|
2396
2396
|
if not MYPY:
|
|
2397
2397
|
class VerificationTemplateMetricArgsDict(TypedDict):
|
|
2398
|
-
metrics_name: pulumi.Input[str]
|
|
2398
|
+
metrics_name: pulumi.Input[_builtins.str]
|
|
2399
2399
|
"""
|
|
2400
2400
|
The name of the verification metric.
|
|
2401
2401
|
"""
|
|
@@ -2407,35 +2407,35 @@ if not MYPY:
|
|
|
2407
2407
|
"""
|
|
2408
2408
|
Baseline Object.
|
|
2409
2409
|
"""
|
|
2410
|
-
consecutive_error_limit: NotRequired[pulumi.Input[int]]
|
|
2410
|
+
consecutive_error_limit: NotRequired[pulumi.Input[_builtins.int]]
|
|
2411
2411
|
"""
|
|
2412
2412
|
The maximum number of times the measurement is allowed to error in succession, before the metric is considered error.Default is 4.When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2413
2413
|
"""
|
|
2414
|
-
count: NotRequired[pulumi.Input[int]]
|
|
2414
|
+
count: NotRequired[pulumi.Input[_builtins.int]]
|
|
2415
2415
|
"""
|
|
2416
2416
|
The number of times to run the measurement. If both interval and count are omitted, the effective count is 1. If only interval is specified, metric runs indefinitely. If count > 1, interval must be specified. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2417
2417
|
"""
|
|
2418
|
-
dry_run: NotRequired[pulumi.Input[bool]]
|
|
2418
|
+
dry_run: NotRequired[pulumi.Input[_builtins.bool]]
|
|
2419
2419
|
"""
|
|
2420
2420
|
Defines whether the metric should have an impact on the result of the rollout.
|
|
2421
2421
|
"""
|
|
2422
|
-
failure_condition: NotRequired[pulumi.Input[str]]
|
|
2422
|
+
failure_condition: NotRequired[pulumi.Input[_builtins.str]]
|
|
2423
2423
|
"""
|
|
2424
2424
|
An expression which determines if a measurement is considered failed.If failureCondition is set, then successCondition is not allowed. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2425
2425
|
"""
|
|
2426
|
-
failure_limit: NotRequired[pulumi.Input[int]]
|
|
2426
|
+
failure_limit: NotRequired[pulumi.Input[_builtins.int]]
|
|
2427
2427
|
"""
|
|
2428
2428
|
The maximum number of times the measurement is allowed to fail, before the entire metric is considered failed.Default is 0. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2429
2429
|
"""
|
|
2430
|
-
initial_delay: NotRequired[pulumi.Input[str]]
|
|
2430
|
+
initial_delay: NotRequired[pulumi.Input[_builtins.str]]
|
|
2431
2431
|
"""
|
|
2432
2432
|
How long to wait before starting this metric measurements. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2433
2433
|
"""
|
|
2434
|
-
interval: NotRequired[pulumi.Input[str]]
|
|
2434
|
+
interval: NotRequired[pulumi.Input[_builtins.str]]
|
|
2435
2435
|
"""
|
|
2436
2436
|
Defines an interval string (30s, 5m, 1h) between each verification measurements. If omitted, will perform a single measurement.When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2437
2437
|
"""
|
|
2438
|
-
success_condition: NotRequired[pulumi.Input[str]]
|
|
2438
|
+
success_condition: NotRequired[pulumi.Input[_builtins.str]]
|
|
2439
2439
|
"""
|
|
2440
2440
|
An expression which determines if a measurement is considered successful. The keyword `result` is a variable reference to the value of measurement. Results can be both structured data or primitive. If successCondition is set, then failureCondition is not allowed. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2441
2441
|
"""
|
|
@@ -2445,29 +2445,29 @@ elif False:
|
|
|
2445
2445
|
@pulumi.input_type
|
|
2446
2446
|
class VerificationTemplateMetricArgs:
|
|
2447
2447
|
def __init__(__self__, *,
|
|
2448
|
-
metrics_name: pulumi.Input[str],
|
|
2448
|
+
metrics_name: pulumi.Input[_builtins.str],
|
|
2449
2449
|
providers: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderArgs']]],
|
|
2450
2450
|
baseline: Optional[pulumi.Input['VerificationTemplateMetricBaselineArgs']] = None,
|
|
2451
|
-
consecutive_error_limit: Optional[pulumi.Input[int]] = None,
|
|
2452
|
-
count: Optional[pulumi.Input[int]] = None,
|
|
2453
|
-
dry_run: Optional[pulumi.Input[bool]] = None,
|
|
2454
|
-
failure_condition: Optional[pulumi.Input[str]] = None,
|
|
2455
|
-
failure_limit: Optional[pulumi.Input[int]] = None,
|
|
2456
|
-
initial_delay: Optional[pulumi.Input[str]] = None,
|
|
2457
|
-
interval: Optional[pulumi.Input[str]] = None,
|
|
2458
|
-
success_condition: Optional[pulumi.Input[str]] = None):
|
|
2459
|
-
"""
|
|
2460
|
-
:param pulumi.Input[str] metrics_name: The name of the verification metric.
|
|
2451
|
+
consecutive_error_limit: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2452
|
+
count: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2453
|
+
dry_run: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
2454
|
+
failure_condition: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2455
|
+
failure_limit: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2456
|
+
initial_delay: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2457
|
+
interval: Optional[pulumi.Input[_builtins.str]] = None,
|
|
2458
|
+
success_condition: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2459
|
+
"""
|
|
2460
|
+
:param pulumi.Input[_builtins.str] metrics_name: The name of the verification metric.
|
|
2461
2461
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderArgs']]] providers: The name of the monitoring tool chosen for the metric.
|
|
2462
2462
|
:param pulumi.Input['VerificationTemplateMetricBaselineArgs'] baseline: Baseline Object.
|
|
2463
|
-
:param pulumi.Input[int] consecutive_error_limit: The maximum number of times the measurement is allowed to error in succession, before the metric is considered error.Default is 4.When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2464
|
-
:param pulumi.Input[int] count: The number of times to run the measurement. If both interval and count are omitted, the effective count is 1. If only interval is specified, metric runs indefinitely. If count > 1, interval must be specified. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2465
|
-
:param pulumi.Input[bool] dry_run: Defines whether the metric should have an impact on the result of the rollout.
|
|
2466
|
-
:param pulumi.Input[str] failure_condition: An expression which determines if a measurement is considered failed.If failureCondition is set, then successCondition is not allowed. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2467
|
-
:param pulumi.Input[int] failure_limit: The maximum number of times the measurement is allowed to fail, before the entire metric is considered failed.Default is 0. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2468
|
-
:param pulumi.Input[str] initial_delay: How long to wait before starting this metric measurements. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2469
|
-
:param pulumi.Input[str] interval: Defines an interval string (30s, 5m, 1h) between each verification measurements. If omitted, will perform a single measurement.When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2470
|
-
:param pulumi.Input[str] success_condition: An expression which determines if a measurement is considered successful. The keyword `result` is a variable reference to the value of measurement. Results can be both structured data or primitive. If successCondition is set, then failureCondition is not allowed. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2463
|
+
:param pulumi.Input[_builtins.int] consecutive_error_limit: The maximum number of times the measurement is allowed to error in succession, before the metric is considered error.Default is 4.When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2464
|
+
:param pulumi.Input[_builtins.int] count: The number of times to run the measurement. If both interval and count are omitted, the effective count is 1. If only interval is specified, metric runs indefinitely. If count > 1, interval must be specified. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2465
|
+
:param pulumi.Input[_builtins.bool] dry_run: Defines whether the metric should have an impact on the result of the rollout.
|
|
2466
|
+
:param pulumi.Input[_builtins.str] failure_condition: An expression which determines if a measurement is considered failed.If failureCondition is set, then successCondition is not allowed. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2467
|
+
:param pulumi.Input[_builtins.int] failure_limit: The maximum number of times the measurement is allowed to fail, before the entire metric is considered failed.Default is 0. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2468
|
+
:param pulumi.Input[_builtins.str] initial_delay: How long to wait before starting this metric measurements. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2469
|
+
:param pulumi.Input[_builtins.str] interval: Defines an interval string (30s, 5m, 1h) between each verification measurements. If omitted, will perform a single measurement.When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2470
|
+
:param pulumi.Input[_builtins.str] success_condition: An expression which determines if a measurement is considered successful. The keyword `result` is a variable reference to the value of measurement. Results can be both structured data or primitive. If successCondition is set, then failureCondition is not allowed. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2471
2471
|
"""
|
|
2472
2472
|
pulumi.set(__self__, "metrics_name", metrics_name)
|
|
2473
2473
|
pulumi.set(__self__, "providers", providers)
|
|
@@ -2490,19 +2490,19 @@ class VerificationTemplateMetricArgs:
|
|
|
2490
2490
|
if success_condition is not None:
|
|
2491
2491
|
pulumi.set(__self__, "success_condition", success_condition)
|
|
2492
2492
|
|
|
2493
|
-
@property
|
|
2493
|
+
@_builtins.property
|
|
2494
2494
|
@pulumi.getter(name="metricsName")
|
|
2495
|
-
def metrics_name(self) -> pulumi.Input[str]:
|
|
2495
|
+
def metrics_name(self) -> pulumi.Input[_builtins.str]:
|
|
2496
2496
|
"""
|
|
2497
2497
|
The name of the verification metric.
|
|
2498
2498
|
"""
|
|
2499
2499
|
return pulumi.get(self, "metrics_name")
|
|
2500
2500
|
|
|
2501
2501
|
@metrics_name.setter
|
|
2502
|
-
def metrics_name(self, value: pulumi.Input[str]):
|
|
2502
|
+
def metrics_name(self, value: pulumi.Input[_builtins.str]):
|
|
2503
2503
|
pulumi.set(self, "metrics_name", value)
|
|
2504
2504
|
|
|
2505
|
-
@property
|
|
2505
|
+
@_builtins.property
|
|
2506
2506
|
@pulumi.getter
|
|
2507
2507
|
def providers(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderArgs']]]:
|
|
2508
2508
|
"""
|
|
@@ -2514,7 +2514,7 @@ class VerificationTemplateMetricArgs:
|
|
|
2514
2514
|
def providers(self, value: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderArgs']]]):
|
|
2515
2515
|
pulumi.set(self, "providers", value)
|
|
2516
2516
|
|
|
2517
|
-
@property
|
|
2517
|
+
@_builtins.property
|
|
2518
2518
|
@pulumi.getter
|
|
2519
2519
|
def baseline(self) -> Optional[pulumi.Input['VerificationTemplateMetricBaselineArgs']]:
|
|
2520
2520
|
"""
|
|
@@ -2526,100 +2526,100 @@ class VerificationTemplateMetricArgs:
|
|
|
2526
2526
|
def baseline(self, value: Optional[pulumi.Input['VerificationTemplateMetricBaselineArgs']]):
|
|
2527
2527
|
pulumi.set(self, "baseline", value)
|
|
2528
2528
|
|
|
2529
|
-
@property
|
|
2529
|
+
@_builtins.property
|
|
2530
2530
|
@pulumi.getter(name="consecutiveErrorLimit")
|
|
2531
|
-
def consecutive_error_limit(self) -> Optional[pulumi.Input[int]]:
|
|
2531
|
+
def consecutive_error_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2532
2532
|
"""
|
|
2533
2533
|
The maximum number of times the measurement is allowed to error in succession, before the metric is considered error.Default is 4.When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2534
2534
|
"""
|
|
2535
2535
|
return pulumi.get(self, "consecutive_error_limit")
|
|
2536
2536
|
|
|
2537
2537
|
@consecutive_error_limit.setter
|
|
2538
|
-
def consecutive_error_limit(self, value: Optional[pulumi.Input[int]]):
|
|
2538
|
+
def consecutive_error_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2539
2539
|
pulumi.set(self, "consecutive_error_limit", value)
|
|
2540
2540
|
|
|
2541
|
-
@property
|
|
2541
|
+
@_builtins.property
|
|
2542
2542
|
@pulumi.getter
|
|
2543
|
-
def count(self) -> Optional[pulumi.Input[int]]:
|
|
2543
|
+
def count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2544
2544
|
"""
|
|
2545
2545
|
The number of times to run the measurement. If both interval and count are omitted, the effective count is 1. If only interval is specified, metric runs indefinitely. If count > 1, interval must be specified. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2546
2546
|
"""
|
|
2547
2547
|
return pulumi.get(self, "count")
|
|
2548
2548
|
|
|
2549
2549
|
@count.setter
|
|
2550
|
-
def count(self, value: Optional[pulumi.Input[int]]):
|
|
2550
|
+
def count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2551
2551
|
pulumi.set(self, "count", value)
|
|
2552
2552
|
|
|
2553
|
-
@property
|
|
2553
|
+
@_builtins.property
|
|
2554
2554
|
@pulumi.getter(name="dryRun")
|
|
2555
|
-
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
2555
|
+
def dry_run(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
2556
2556
|
"""
|
|
2557
2557
|
Defines whether the metric should have an impact on the result of the rollout.
|
|
2558
2558
|
"""
|
|
2559
2559
|
return pulumi.get(self, "dry_run")
|
|
2560
2560
|
|
|
2561
2561
|
@dry_run.setter
|
|
2562
|
-
def dry_run(self, value: Optional[pulumi.Input[bool]]):
|
|
2562
|
+
def dry_run(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
2563
2563
|
pulumi.set(self, "dry_run", value)
|
|
2564
2564
|
|
|
2565
|
-
@property
|
|
2565
|
+
@_builtins.property
|
|
2566
2566
|
@pulumi.getter(name="failureCondition")
|
|
2567
|
-
def failure_condition(self) -> Optional[pulumi.Input[str]]:
|
|
2567
|
+
def failure_condition(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2568
2568
|
"""
|
|
2569
2569
|
An expression which determines if a measurement is considered failed.If failureCondition is set, then successCondition is not allowed. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2570
2570
|
"""
|
|
2571
2571
|
return pulumi.get(self, "failure_condition")
|
|
2572
2572
|
|
|
2573
2573
|
@failure_condition.setter
|
|
2574
|
-
def failure_condition(self, value: Optional[pulumi.Input[str]]):
|
|
2574
|
+
def failure_condition(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2575
2575
|
pulumi.set(self, "failure_condition", value)
|
|
2576
2576
|
|
|
2577
|
-
@property
|
|
2577
|
+
@_builtins.property
|
|
2578
2578
|
@pulumi.getter(name="failureLimit")
|
|
2579
|
-
def failure_limit(self) -> Optional[pulumi.Input[int]]:
|
|
2579
|
+
def failure_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2580
2580
|
"""
|
|
2581
2581
|
The maximum number of times the measurement is allowed to fail, before the entire metric is considered failed.Default is 0. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2582
2582
|
"""
|
|
2583
2583
|
return pulumi.get(self, "failure_limit")
|
|
2584
2584
|
|
|
2585
2585
|
@failure_limit.setter
|
|
2586
|
-
def failure_limit(self, value: Optional[pulumi.Input[int]]):
|
|
2586
|
+
def failure_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2587
2587
|
pulumi.set(self, "failure_limit", value)
|
|
2588
2588
|
|
|
2589
|
-
@property
|
|
2589
|
+
@_builtins.property
|
|
2590
2590
|
@pulumi.getter(name="initialDelay")
|
|
2591
|
-
def initial_delay(self) -> Optional[pulumi.Input[str]]:
|
|
2591
|
+
def initial_delay(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2592
2592
|
"""
|
|
2593
2593
|
How long to wait before starting this metric measurements. When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2594
2594
|
"""
|
|
2595
2595
|
return pulumi.get(self, "initial_delay")
|
|
2596
2596
|
|
|
2597
2597
|
@initial_delay.setter
|
|
2598
|
-
def initial_delay(self, value: Optional[pulumi.Input[str]]):
|
|
2598
|
+
def initial_delay(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2599
2599
|
pulumi.set(self, "initial_delay", value)
|
|
2600
2600
|
|
|
2601
|
-
@property
|
|
2601
|
+
@_builtins.property
|
|
2602
2602
|
@pulumi.getter
|
|
2603
|
-
def interval(self) -> Optional[pulumi.Input[str]]:
|
|
2603
|
+
def interval(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2604
2604
|
"""
|
|
2605
2605
|
Defines an interval string (30s, 5m, 1h) between each verification measurements. If omitted, will perform a single measurement.When choosing Jenkins as the provider, there is no need to send this variable.
|
|
2606
2606
|
"""
|
|
2607
2607
|
return pulumi.get(self, "interval")
|
|
2608
2608
|
|
|
2609
2609
|
@interval.setter
|
|
2610
|
-
def interval(self, value: Optional[pulumi.Input[str]]):
|
|
2610
|
+
def interval(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2611
2611
|
pulumi.set(self, "interval", value)
|
|
2612
2612
|
|
|
2613
|
-
@property
|
|
2613
|
+
@_builtins.property
|
|
2614
2614
|
@pulumi.getter(name="successCondition")
|
|
2615
|
-
def success_condition(self) -> Optional[pulumi.Input[str]]:
|
|
2615
|
+
def success_condition(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2616
2616
|
"""
|
|
2617
2617
|
An expression which determines if a measurement is considered successful. The keyword `result` is a variable reference to the value of measurement. Results can be both structured data or primitive. If successCondition is set, then failureCondition is not allowed. When choosing `Jenkins` as the provider, there is no need to send this variable.
|
|
2618
2618
|
"""
|
|
2619
2619
|
return pulumi.get(self, "success_condition")
|
|
2620
2620
|
|
|
2621
2621
|
@success_condition.setter
|
|
2622
|
-
def success_condition(self, value: Optional[pulumi.Input[str]]):
|
|
2622
|
+
def success_condition(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2623
2623
|
pulumi.set(self, "success_condition", value)
|
|
2624
2624
|
|
|
2625
2625
|
|
|
@@ -2629,15 +2629,15 @@ if not MYPY:
|
|
|
2629
2629
|
"""
|
|
2630
2630
|
The name of the monitoring tool chosen for the metric.
|
|
2631
2631
|
"""
|
|
2632
|
-
threshold: pulumi.Input[str]
|
|
2632
|
+
threshold: pulumi.Input[_builtins.str]
|
|
2633
2633
|
"""
|
|
2634
2634
|
A mathematical expression needed for the comparison. Enum: "<" ">" "<=" ">=" "=" "range"
|
|
2635
2635
|
"""
|
|
2636
|
-
max_range: NotRequired[pulumi.Input[int]]
|
|
2636
|
+
max_range: NotRequired[pulumi.Input[_builtins.int]]
|
|
2637
2637
|
"""
|
|
2638
2638
|
Number in percent we allow the new version’s data result to be under baseline data result.
|
|
2639
2639
|
"""
|
|
2640
|
-
min_range: NotRequired[pulumi.Input[int]]
|
|
2640
|
+
min_range: NotRequired[pulumi.Input[_builtins.int]]
|
|
2641
2641
|
"""
|
|
2642
2642
|
Number in percent we allow the new version’s data result to be under baseline data result.*
|
|
2643
2643
|
"""
|
|
@@ -2648,14 +2648,14 @@ elif False:
|
|
|
2648
2648
|
class VerificationTemplateMetricBaselineArgs:
|
|
2649
2649
|
def __init__(__self__, *,
|
|
2650
2650
|
baseline_providers: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderArgs']]],
|
|
2651
|
-
threshold: pulumi.Input[str],
|
|
2652
|
-
max_range: Optional[pulumi.Input[int]] = None,
|
|
2653
|
-
min_range: Optional[pulumi.Input[int]] = None):
|
|
2651
|
+
threshold: pulumi.Input[_builtins.str],
|
|
2652
|
+
max_range: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2653
|
+
min_range: Optional[pulumi.Input[_builtins.int]] = None):
|
|
2654
2654
|
"""
|
|
2655
2655
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderArgs']]] baseline_providers: The name of the monitoring tool chosen for the metric.
|
|
2656
|
-
:param pulumi.Input[str] threshold: A mathematical expression needed for the comparison. Enum: "<" ">" "<=" ">=" "=" "range"
|
|
2657
|
-
:param pulumi.Input[int] max_range: Number in percent we allow the new version’s data result to be under baseline data result.
|
|
2658
|
-
:param pulumi.Input[int] min_range: Number in percent we allow the new version’s data result to be under baseline data result.*
|
|
2656
|
+
:param pulumi.Input[_builtins.str] threshold: A mathematical expression needed for the comparison. Enum: "<" ">" "<=" ">=" "=" "range"
|
|
2657
|
+
:param pulumi.Input[_builtins.int] max_range: Number in percent we allow the new version’s data result to be under baseline data result.
|
|
2658
|
+
:param pulumi.Input[_builtins.int] min_range: Number in percent we allow the new version’s data result to be under baseline data result.*
|
|
2659
2659
|
"""
|
|
2660
2660
|
pulumi.set(__self__, "baseline_providers", baseline_providers)
|
|
2661
2661
|
pulumi.set(__self__, "threshold", threshold)
|
|
@@ -2664,7 +2664,7 @@ class VerificationTemplateMetricBaselineArgs:
|
|
|
2664
2664
|
if min_range is not None:
|
|
2665
2665
|
pulumi.set(__self__, "min_range", min_range)
|
|
2666
2666
|
|
|
2667
|
-
@property
|
|
2667
|
+
@_builtins.property
|
|
2668
2668
|
@pulumi.getter(name="baselineProviders")
|
|
2669
2669
|
def baseline_providers(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderArgs']]]:
|
|
2670
2670
|
"""
|
|
@@ -2676,40 +2676,40 @@ class VerificationTemplateMetricBaselineArgs:
|
|
|
2676
2676
|
def baseline_providers(self, value: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderArgs']]]):
|
|
2677
2677
|
pulumi.set(self, "baseline_providers", value)
|
|
2678
2678
|
|
|
2679
|
-
@property
|
|
2679
|
+
@_builtins.property
|
|
2680
2680
|
@pulumi.getter
|
|
2681
|
-
def threshold(self) -> pulumi.Input[str]:
|
|
2681
|
+
def threshold(self) -> pulumi.Input[_builtins.str]:
|
|
2682
2682
|
"""
|
|
2683
2683
|
A mathematical expression needed for the comparison. Enum: "<" ">" "<=" ">=" "=" "range"
|
|
2684
2684
|
"""
|
|
2685
2685
|
return pulumi.get(self, "threshold")
|
|
2686
2686
|
|
|
2687
2687
|
@threshold.setter
|
|
2688
|
-
def threshold(self, value: pulumi.Input[str]):
|
|
2688
|
+
def threshold(self, value: pulumi.Input[_builtins.str]):
|
|
2689
2689
|
pulumi.set(self, "threshold", value)
|
|
2690
2690
|
|
|
2691
|
-
@property
|
|
2691
|
+
@_builtins.property
|
|
2692
2692
|
@pulumi.getter(name="maxRange")
|
|
2693
|
-
def max_range(self) -> Optional[pulumi.Input[int]]:
|
|
2693
|
+
def max_range(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2694
2694
|
"""
|
|
2695
2695
|
Number in percent we allow the new version’s data result to be under baseline data result.
|
|
2696
2696
|
"""
|
|
2697
2697
|
return pulumi.get(self, "max_range")
|
|
2698
2698
|
|
|
2699
2699
|
@max_range.setter
|
|
2700
|
-
def max_range(self, value: Optional[pulumi.Input[int]]):
|
|
2700
|
+
def max_range(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2701
2701
|
pulumi.set(self, "max_range", value)
|
|
2702
2702
|
|
|
2703
|
-
@property
|
|
2703
|
+
@_builtins.property
|
|
2704
2704
|
@pulumi.getter(name="minRange")
|
|
2705
|
-
def min_range(self) -> Optional[pulumi.Input[int]]:
|
|
2705
|
+
def min_range(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2706
2706
|
"""
|
|
2707
2707
|
Number in percent we allow the new version’s data result to be under baseline data result.*
|
|
2708
2708
|
"""
|
|
2709
2709
|
return pulumi.get(self, "min_range")
|
|
2710
2710
|
|
|
2711
2711
|
@min_range.setter
|
|
2712
|
-
def min_range(self, value: Optional[pulumi.Input[int]]):
|
|
2712
|
+
def min_range(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2713
2713
|
pulumi.set(self, "min_range", value)
|
|
2714
2714
|
|
|
2715
2715
|
|
|
@@ -2748,7 +2748,7 @@ class VerificationTemplateMetricBaselineBaselineProviderArgs:
|
|
|
2748
2748
|
if prometheus is not None:
|
|
2749
2749
|
pulumi.set(__self__, "prometheus", prometheus)
|
|
2750
2750
|
|
|
2751
|
-
@property
|
|
2751
|
+
@_builtins.property
|
|
2752
2752
|
@pulumi.getter
|
|
2753
2753
|
def datadog(self) -> Optional[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderDatadogArgs']]:
|
|
2754
2754
|
"""
|
|
@@ -2760,7 +2760,7 @@ class VerificationTemplateMetricBaselineBaselineProviderArgs:
|
|
|
2760
2760
|
def datadog(self, value: Optional[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderDatadogArgs']]):
|
|
2761
2761
|
pulumi.set(self, "datadog", value)
|
|
2762
2762
|
|
|
2763
|
-
@property
|
|
2763
|
+
@_builtins.property
|
|
2764
2764
|
@pulumi.getter(name="newRelic")
|
|
2765
2765
|
def new_relic(self) -> Optional[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderNewRelicArgs']]:
|
|
2766
2766
|
"""
|
|
@@ -2772,7 +2772,7 @@ class VerificationTemplateMetricBaselineBaselineProviderArgs:
|
|
|
2772
2772
|
def new_relic(self, value: Optional[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderNewRelicArgs']]):
|
|
2773
2773
|
pulumi.set(self, "new_relic", value)
|
|
2774
2774
|
|
|
2775
|
-
@property
|
|
2775
|
+
@_builtins.property
|
|
2776
2776
|
@pulumi.getter
|
|
2777
2777
|
def prometheus(self) -> Optional[pulumi.Input['VerificationTemplateMetricBaselineBaselineProviderPrometheusArgs']]:
|
|
2778
2778
|
"""
|
|
@@ -2787,11 +2787,11 @@ class VerificationTemplateMetricBaselineBaselineProviderArgs:
|
|
|
2787
2787
|
|
|
2788
2788
|
if not MYPY:
|
|
2789
2789
|
class VerificationTemplateMetricBaselineBaselineProviderDatadogArgsDict(TypedDict):
|
|
2790
|
-
datadog_query: pulumi.Input[str]
|
|
2790
|
+
datadog_query: pulumi.Input[_builtins.str]
|
|
2791
2791
|
"""
|
|
2792
2792
|
A request for information retrieved from Datadog.
|
|
2793
2793
|
"""
|
|
2794
|
-
duration: NotRequired[pulumi.Input[str]]
|
|
2794
|
+
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
2795
2795
|
"""
|
|
2796
2796
|
The window of time we are looking at in DataDog.
|
|
2797
2797
|
"""
|
|
@@ -2801,48 +2801,48 @@ elif False:
|
|
|
2801
2801
|
@pulumi.input_type
|
|
2802
2802
|
class VerificationTemplateMetricBaselineBaselineProviderDatadogArgs:
|
|
2803
2803
|
def __init__(__self__, *,
|
|
2804
|
-
datadog_query: pulumi.Input[str],
|
|
2805
|
-
duration: Optional[pulumi.Input[str]] = None):
|
|
2804
|
+
datadog_query: pulumi.Input[_builtins.str],
|
|
2805
|
+
duration: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2806
2806
|
"""
|
|
2807
|
-
:param pulumi.Input[str] datadog_query: A request for information retrieved from Datadog.
|
|
2808
|
-
:param pulumi.Input[str] duration: The window of time we are looking at in DataDog.
|
|
2807
|
+
:param pulumi.Input[_builtins.str] datadog_query: A request for information retrieved from Datadog.
|
|
2808
|
+
:param pulumi.Input[_builtins.str] duration: The window of time we are looking at in DataDog.
|
|
2809
2809
|
"""
|
|
2810
2810
|
pulumi.set(__self__, "datadog_query", datadog_query)
|
|
2811
2811
|
if duration is not None:
|
|
2812
2812
|
pulumi.set(__self__, "duration", duration)
|
|
2813
2813
|
|
|
2814
|
-
@property
|
|
2814
|
+
@_builtins.property
|
|
2815
2815
|
@pulumi.getter(name="datadogQuery")
|
|
2816
|
-
def datadog_query(self) -> pulumi.Input[str]:
|
|
2816
|
+
def datadog_query(self) -> pulumi.Input[_builtins.str]:
|
|
2817
2817
|
"""
|
|
2818
2818
|
A request for information retrieved from Datadog.
|
|
2819
2819
|
"""
|
|
2820
2820
|
return pulumi.get(self, "datadog_query")
|
|
2821
2821
|
|
|
2822
2822
|
@datadog_query.setter
|
|
2823
|
-
def datadog_query(self, value: pulumi.Input[str]):
|
|
2823
|
+
def datadog_query(self, value: pulumi.Input[_builtins.str]):
|
|
2824
2824
|
pulumi.set(self, "datadog_query", value)
|
|
2825
2825
|
|
|
2826
|
-
@property
|
|
2826
|
+
@_builtins.property
|
|
2827
2827
|
@pulumi.getter
|
|
2828
|
-
def duration(self) -> Optional[pulumi.Input[str]]:
|
|
2828
|
+
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2829
2829
|
"""
|
|
2830
2830
|
The window of time we are looking at in DataDog.
|
|
2831
2831
|
"""
|
|
2832
2832
|
return pulumi.get(self, "duration")
|
|
2833
2833
|
|
|
2834
2834
|
@duration.setter
|
|
2835
|
-
def duration(self, value: Optional[pulumi.Input[str]]):
|
|
2835
|
+
def duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2836
2836
|
pulumi.set(self, "duration", value)
|
|
2837
2837
|
|
|
2838
2838
|
|
|
2839
2839
|
if not MYPY:
|
|
2840
2840
|
class VerificationTemplateMetricBaselineBaselineProviderNewRelicArgsDict(TypedDict):
|
|
2841
|
-
new_relic_query: pulumi.Input[str]
|
|
2841
|
+
new_relic_query: pulumi.Input[_builtins.str]
|
|
2842
2842
|
"""
|
|
2843
2843
|
A raw newrelic NRQL query to perform.
|
|
2844
2844
|
"""
|
|
2845
|
-
profile: NotRequired[pulumi.Input[str]]
|
|
2845
|
+
profile: NotRequired[pulumi.Input[_builtins.str]]
|
|
2846
2846
|
"""
|
|
2847
2847
|
The name of the secret holding NR account configuration.
|
|
2848
2848
|
"""
|
|
@@ -2852,44 +2852,44 @@ elif False:
|
|
|
2852
2852
|
@pulumi.input_type
|
|
2853
2853
|
class VerificationTemplateMetricBaselineBaselineProviderNewRelicArgs:
|
|
2854
2854
|
def __init__(__self__, *,
|
|
2855
|
-
new_relic_query: pulumi.Input[str],
|
|
2856
|
-
profile: Optional[pulumi.Input[str]] = None):
|
|
2855
|
+
new_relic_query: pulumi.Input[_builtins.str],
|
|
2856
|
+
profile: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2857
2857
|
"""
|
|
2858
|
-
:param pulumi.Input[str] new_relic_query: A raw newrelic NRQL query to perform.
|
|
2859
|
-
:param pulumi.Input[str] profile: The name of the secret holding NR account configuration.
|
|
2858
|
+
:param pulumi.Input[_builtins.str] new_relic_query: A raw newrelic NRQL query to perform.
|
|
2859
|
+
:param pulumi.Input[_builtins.str] profile: The name of the secret holding NR account configuration.
|
|
2860
2860
|
"""
|
|
2861
2861
|
pulumi.set(__self__, "new_relic_query", new_relic_query)
|
|
2862
2862
|
if profile is not None:
|
|
2863
2863
|
pulumi.set(__self__, "profile", profile)
|
|
2864
2864
|
|
|
2865
|
-
@property
|
|
2865
|
+
@_builtins.property
|
|
2866
2866
|
@pulumi.getter(name="newRelicQuery")
|
|
2867
|
-
def new_relic_query(self) -> pulumi.Input[str]:
|
|
2867
|
+
def new_relic_query(self) -> pulumi.Input[_builtins.str]:
|
|
2868
2868
|
"""
|
|
2869
2869
|
A raw newrelic NRQL query to perform.
|
|
2870
2870
|
"""
|
|
2871
2871
|
return pulumi.get(self, "new_relic_query")
|
|
2872
2872
|
|
|
2873
2873
|
@new_relic_query.setter
|
|
2874
|
-
def new_relic_query(self, value: pulumi.Input[str]):
|
|
2874
|
+
def new_relic_query(self, value: pulumi.Input[_builtins.str]):
|
|
2875
2875
|
pulumi.set(self, "new_relic_query", value)
|
|
2876
2876
|
|
|
2877
|
-
@property
|
|
2877
|
+
@_builtins.property
|
|
2878
2878
|
@pulumi.getter
|
|
2879
|
-
def profile(self) -> Optional[pulumi.Input[str]]:
|
|
2879
|
+
def profile(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2880
2880
|
"""
|
|
2881
2881
|
The name of the secret holding NR account configuration.
|
|
2882
2882
|
"""
|
|
2883
2883
|
return pulumi.get(self, "profile")
|
|
2884
2884
|
|
|
2885
2885
|
@profile.setter
|
|
2886
|
-
def profile(self, value: Optional[pulumi.Input[str]]):
|
|
2886
|
+
def profile(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2887
2887
|
pulumi.set(self, "profile", value)
|
|
2888
2888
|
|
|
2889
2889
|
|
|
2890
2890
|
if not MYPY:
|
|
2891
2891
|
class VerificationTemplateMetricBaselineBaselineProviderPrometheusArgsDict(TypedDict):
|
|
2892
|
-
prometheus_query: pulumi.Input[str]
|
|
2892
|
+
prometheus_query: pulumi.Input[_builtins.str]
|
|
2893
2893
|
"""
|
|
2894
2894
|
A request for information retrieved from Prometheus.
|
|
2895
2895
|
"""
|
|
@@ -2899,22 +2899,22 @@ elif False:
|
|
|
2899
2899
|
@pulumi.input_type
|
|
2900
2900
|
class VerificationTemplateMetricBaselineBaselineProviderPrometheusArgs:
|
|
2901
2901
|
def __init__(__self__, *,
|
|
2902
|
-
prometheus_query: pulumi.Input[str]):
|
|
2902
|
+
prometheus_query: pulumi.Input[_builtins.str]):
|
|
2903
2903
|
"""
|
|
2904
|
-
:param pulumi.Input[str] prometheus_query: A request for information retrieved from Prometheus.
|
|
2904
|
+
:param pulumi.Input[_builtins.str] prometheus_query: A request for information retrieved from Prometheus.
|
|
2905
2905
|
"""
|
|
2906
2906
|
pulumi.set(__self__, "prometheus_query", prometheus_query)
|
|
2907
2907
|
|
|
2908
|
-
@property
|
|
2908
|
+
@_builtins.property
|
|
2909
2909
|
@pulumi.getter(name="prometheusQuery")
|
|
2910
|
-
def prometheus_query(self) -> pulumi.Input[str]:
|
|
2910
|
+
def prometheus_query(self) -> pulumi.Input[_builtins.str]:
|
|
2911
2911
|
"""
|
|
2912
2912
|
A request for information retrieved from Prometheus.
|
|
2913
2913
|
"""
|
|
2914
2914
|
return pulumi.get(self, "prometheus_query")
|
|
2915
2915
|
|
|
2916
2916
|
@prometheus_query.setter
|
|
2917
|
-
def prometheus_query(self, value: pulumi.Input[str]):
|
|
2917
|
+
def prometheus_query(self, value: pulumi.Input[_builtins.str]):
|
|
2918
2918
|
pulumi.set(self, "prometheus_query", value)
|
|
2919
2919
|
|
|
2920
2920
|
|
|
@@ -2985,7 +2985,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
2985
2985
|
if web is not None:
|
|
2986
2986
|
pulumi.set(__self__, "web", web)
|
|
2987
2987
|
|
|
2988
|
-
@property
|
|
2988
|
+
@_builtins.property
|
|
2989
2989
|
@pulumi.getter(name="cloudWatch")
|
|
2990
2990
|
def cloud_watch(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchArgs']]:
|
|
2991
2991
|
"""
|
|
@@ -2997,7 +2997,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
2997
2997
|
def cloud_watch(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchArgs']]):
|
|
2998
2998
|
pulumi.set(self, "cloud_watch", value)
|
|
2999
2999
|
|
|
3000
|
-
@property
|
|
3000
|
+
@_builtins.property
|
|
3001
3001
|
@pulumi.getter
|
|
3002
3002
|
def datadog(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderDatadogArgs']]:
|
|
3003
3003
|
"""
|
|
@@ -3009,7 +3009,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
3009
3009
|
def datadog(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderDatadogArgs']]):
|
|
3010
3010
|
pulumi.set(self, "datadog", value)
|
|
3011
3011
|
|
|
3012
|
-
@property
|
|
3012
|
+
@_builtins.property
|
|
3013
3013
|
@pulumi.getter
|
|
3014
3014
|
def jenkins(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderJenkinsArgs']]:
|
|
3015
3015
|
"""
|
|
@@ -3021,7 +3021,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
3021
3021
|
def jenkins(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderJenkinsArgs']]):
|
|
3022
3022
|
pulumi.set(self, "jenkins", value)
|
|
3023
3023
|
|
|
3024
|
-
@property
|
|
3024
|
+
@_builtins.property
|
|
3025
3025
|
@pulumi.getter
|
|
3026
3026
|
def job(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderJobArgs']]:
|
|
3027
3027
|
"""
|
|
@@ -3033,7 +3033,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
3033
3033
|
def job(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderJobArgs']]):
|
|
3034
3034
|
pulumi.set(self, "job", value)
|
|
3035
3035
|
|
|
3036
|
-
@property
|
|
3036
|
+
@_builtins.property
|
|
3037
3037
|
@pulumi.getter(name="newRelic")
|
|
3038
3038
|
def new_relic(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderNewRelicArgs']]:
|
|
3039
3039
|
"""
|
|
@@ -3045,7 +3045,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
3045
3045
|
def new_relic(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderNewRelicArgs']]):
|
|
3046
3046
|
pulumi.set(self, "new_relic", value)
|
|
3047
3047
|
|
|
3048
|
-
@property
|
|
3048
|
+
@_builtins.property
|
|
3049
3049
|
@pulumi.getter
|
|
3050
3050
|
def prometheus(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderPrometheusArgs']]:
|
|
3051
3051
|
"""
|
|
@@ -3057,7 +3057,7 @@ class VerificationTemplateMetricProviderArgs:
|
|
|
3057
3057
|
def prometheus(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderPrometheusArgs']]):
|
|
3058
3058
|
pulumi.set(self, "prometheus", value)
|
|
3059
3059
|
|
|
3060
|
-
@property
|
|
3060
|
+
@_builtins.property
|
|
3061
3061
|
@pulumi.getter
|
|
3062
3062
|
def web(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderWebArgs']]:
|
|
3063
3063
|
"""
|
|
@@ -3076,7 +3076,7 @@ if not MYPY:
|
|
|
3076
3076
|
"""
|
|
3077
3077
|
The metric queries to be returned. A single MetricData call can include as many as 500 MetricDataQuery structures. Each of these structures can specify either a metric to retrieve, a Metrics Insights query, or a math expression to perform on retrieved data.
|
|
3078
3078
|
"""
|
|
3079
|
-
duration: NotRequired[pulumi.Input[str]]
|
|
3079
|
+
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
3080
3080
|
"""
|
|
3081
3081
|
The window of time we are looking at in CloudWatch.
|
|
3082
3082
|
"""
|
|
@@ -3087,16 +3087,16 @@ elif False:
|
|
|
3087
3087
|
class VerificationTemplateMetricProviderCloudWatchArgs:
|
|
3088
3088
|
def __init__(__self__, *,
|
|
3089
3089
|
metric_data_queries: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs']]],
|
|
3090
|
-
duration: Optional[pulumi.Input[str]] = None):
|
|
3090
|
+
duration: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3091
3091
|
"""
|
|
3092
3092
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs']]] metric_data_queries: The metric queries to be returned. A single MetricData call can include as many as 500 MetricDataQuery structures. Each of these structures can specify either a metric to retrieve, a Metrics Insights query, or a math expression to perform on retrieved data.
|
|
3093
|
-
:param pulumi.Input[str] duration: The window of time we are looking at in CloudWatch.
|
|
3093
|
+
:param pulumi.Input[_builtins.str] duration: The window of time we are looking at in CloudWatch.
|
|
3094
3094
|
"""
|
|
3095
3095
|
pulumi.set(__self__, "metric_data_queries", metric_data_queries)
|
|
3096
3096
|
if duration is not None:
|
|
3097
3097
|
pulumi.set(__self__, "duration", duration)
|
|
3098
3098
|
|
|
3099
|
-
@property
|
|
3099
|
+
@_builtins.property
|
|
3100
3100
|
@pulumi.getter(name="metricDataQueries")
|
|
3101
3101
|
def metric_data_queries(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs']]]:
|
|
3102
3102
|
"""
|
|
@@ -3108,30 +3108,30 @@ class VerificationTemplateMetricProviderCloudWatchArgs:
|
|
|
3108
3108
|
def metric_data_queries(self, value: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs']]]):
|
|
3109
3109
|
pulumi.set(self, "metric_data_queries", value)
|
|
3110
3110
|
|
|
3111
|
-
@property
|
|
3111
|
+
@_builtins.property
|
|
3112
3112
|
@pulumi.getter
|
|
3113
|
-
def duration(self) -> Optional[pulumi.Input[str]]:
|
|
3113
|
+
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3114
3114
|
"""
|
|
3115
3115
|
The window of time we are looking at in CloudWatch.
|
|
3116
3116
|
"""
|
|
3117
3117
|
return pulumi.get(self, "duration")
|
|
3118
3118
|
|
|
3119
3119
|
@duration.setter
|
|
3120
|
-
def duration(self, value: Optional[pulumi.Input[str]]):
|
|
3120
|
+
def duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3121
3121
|
pulumi.set(self, "duration", value)
|
|
3122
3122
|
|
|
3123
3123
|
|
|
3124
3124
|
if not MYPY:
|
|
3125
3125
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgsDict(TypedDict):
|
|
3126
|
-
id: pulumi.Input[str]
|
|
3126
|
+
id: pulumi.Input[_builtins.str]
|
|
3127
3127
|
"""
|
|
3128
3128
|
The response ID. Must be unique and not null. This object can contain characters, letters, numbers and underscore. The first letter must be a lowercase letter.
|
|
3129
3129
|
"""
|
|
3130
|
-
expression: NotRequired[pulumi.Input[str]]
|
|
3130
|
+
expression: NotRequired[pulumi.Input[_builtins.str]]
|
|
3131
3131
|
"""
|
|
3132
3132
|
This field can contain either a Metrics Insights query, or a metric math expression to be performed on the returned data. Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3133
3133
|
"""
|
|
3134
|
-
label: NotRequired[pulumi.Input[str]]
|
|
3134
|
+
label: NotRequired[pulumi.Input[_builtins.str]]
|
|
3135
3135
|
"""
|
|
3136
3136
|
A human-readable label for this metric or expression. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown
|
|
3137
3137
|
"""
|
|
@@ -3139,11 +3139,11 @@ if not MYPY:
|
|
|
3139
3139
|
"""
|
|
3140
3140
|
The metric to be returned, along with statistics, period, and units. Use this parameter only if this object is retrieving a metric and not performing a math expression on returned data.Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3141
3141
|
"""
|
|
3142
|
-
period: NotRequired[pulumi.Input[int]]
|
|
3142
|
+
period: NotRequired[pulumi.Input[_builtins.int]]
|
|
3143
3143
|
"""
|
|
3144
3144
|
The granularity, in seconds, of the returned data points.
|
|
3145
3145
|
"""
|
|
3146
|
-
return_data: NotRequired[pulumi.Input[bool]]
|
|
3146
|
+
return_data: NotRequired[pulumi.Input[_builtins.bool]]
|
|
3147
3147
|
"""
|
|
3148
3148
|
This option indicates whether to return the timestamps and raw data values of this metric. If you are performing this call just to do math expressions and do not also need the raw data returned, you can specify `false`. If you omit this, the default of `true` is used.
|
|
3149
3149
|
"""
|
|
@@ -3153,19 +3153,19 @@ elif False:
|
|
|
3153
3153
|
@pulumi.input_type
|
|
3154
3154
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs:
|
|
3155
3155
|
def __init__(__self__, *,
|
|
3156
|
-
id: pulumi.Input[str],
|
|
3157
|
-
expression: Optional[pulumi.Input[str]] = None,
|
|
3158
|
-
label: Optional[pulumi.Input[str]] = None,
|
|
3156
|
+
id: pulumi.Input[_builtins.str],
|
|
3157
|
+
expression: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3158
|
+
label: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3159
3159
|
metric_stat: Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs']] = None,
|
|
3160
|
-
period: Optional[pulumi.Input[int]] = None,
|
|
3161
|
-
return_data: Optional[pulumi.Input[bool]] = None):
|
|
3160
|
+
period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3161
|
+
return_data: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
3162
3162
|
"""
|
|
3163
|
-
:param pulumi.Input[str] id: The response ID. Must be unique and not null. This object can contain characters, letters, numbers and underscore. The first letter must be a lowercase letter.
|
|
3164
|
-
:param pulumi.Input[str] expression: This field can contain either a Metrics Insights query, or a metric math expression to be performed on the returned data. Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3165
|
-
:param pulumi.Input[str] label: A human-readable label for this metric or expression. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown
|
|
3163
|
+
:param pulumi.Input[_builtins.str] id: The response ID. Must be unique and not null. This object can contain characters, letters, numbers and underscore. The first letter must be a lowercase letter.
|
|
3164
|
+
:param pulumi.Input[_builtins.str] expression: This field can contain either a Metrics Insights query, or a metric math expression to be performed on the returned data. Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3165
|
+
:param pulumi.Input[_builtins.str] label: A human-readable label for this metric or expression. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown
|
|
3166
3166
|
:param pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs'] metric_stat: The metric to be returned, along with statistics, period, and units. Use this parameter only if this object is retrieving a metric and not performing a math expression on returned data.Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3167
|
-
:param pulumi.Input[int] period: The granularity, in seconds, of the returned data points.
|
|
3168
|
-
:param pulumi.Input[bool] return_data: This option indicates whether to return the timestamps and raw data values of this metric. If you are performing this call just to do math expressions and do not also need the raw data returned, you can specify `false`. If you omit this, the default of `true` is used.
|
|
3167
|
+
:param pulumi.Input[_builtins.int] period: The granularity, in seconds, of the returned data points.
|
|
3168
|
+
:param pulumi.Input[_builtins.bool] return_data: This option indicates whether to return the timestamps and raw data values of this metric. If you are performing this call just to do math expressions and do not also need the raw data returned, you can specify `false`. If you omit this, the default of `true` is used.
|
|
3169
3169
|
"""
|
|
3170
3170
|
pulumi.set(__self__, "id", id)
|
|
3171
3171
|
if expression is not None:
|
|
@@ -3179,43 +3179,43 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs:
|
|
|
3179
3179
|
if return_data is not None:
|
|
3180
3180
|
pulumi.set(__self__, "return_data", return_data)
|
|
3181
3181
|
|
|
3182
|
-
@property
|
|
3182
|
+
@_builtins.property
|
|
3183
3183
|
@pulumi.getter
|
|
3184
|
-
def id(self) -> pulumi.Input[str]:
|
|
3184
|
+
def id(self) -> pulumi.Input[_builtins.str]:
|
|
3185
3185
|
"""
|
|
3186
3186
|
The response ID. Must be unique and not null. This object can contain characters, letters, numbers and underscore. The first letter must be a lowercase letter.
|
|
3187
3187
|
"""
|
|
3188
3188
|
return pulumi.get(self, "id")
|
|
3189
3189
|
|
|
3190
3190
|
@id.setter
|
|
3191
|
-
def id(self, value: pulumi.Input[str]):
|
|
3191
|
+
def id(self, value: pulumi.Input[_builtins.str]):
|
|
3192
3192
|
pulumi.set(self, "id", value)
|
|
3193
3193
|
|
|
3194
|
-
@property
|
|
3194
|
+
@_builtins.property
|
|
3195
3195
|
@pulumi.getter
|
|
3196
|
-
def expression(self) -> Optional[pulumi.Input[str]]:
|
|
3196
|
+
def expression(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3197
3197
|
"""
|
|
3198
3198
|
This field can contain either a Metrics Insights query, or a metric math expression to be performed on the returned data. Within one metricdataquery object, you must specify either expression or metricstat but not both.
|
|
3199
3199
|
"""
|
|
3200
3200
|
return pulumi.get(self, "expression")
|
|
3201
3201
|
|
|
3202
3202
|
@expression.setter
|
|
3203
|
-
def expression(self, value: Optional[pulumi.Input[str]]):
|
|
3203
|
+
def expression(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3204
3204
|
pulumi.set(self, "expression", value)
|
|
3205
3205
|
|
|
3206
|
-
@property
|
|
3206
|
+
@_builtins.property
|
|
3207
3207
|
@pulumi.getter
|
|
3208
|
-
def label(self) -> Optional[pulumi.Input[str]]:
|
|
3208
|
+
def label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3209
3209
|
"""
|
|
3210
3210
|
A human-readable label for this metric or expression. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown
|
|
3211
3211
|
"""
|
|
3212
3212
|
return pulumi.get(self, "label")
|
|
3213
3213
|
|
|
3214
3214
|
@label.setter
|
|
3215
|
-
def label(self, value: Optional[pulumi.Input[str]]):
|
|
3215
|
+
def label(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3216
3216
|
pulumi.set(self, "label", value)
|
|
3217
3217
|
|
|
3218
|
-
@property
|
|
3218
|
+
@_builtins.property
|
|
3219
3219
|
@pulumi.getter(name="metricStat")
|
|
3220
3220
|
def metric_stat(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs']]:
|
|
3221
3221
|
"""
|
|
@@ -3227,28 +3227,28 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryArgs:
|
|
|
3227
3227
|
def metric_stat(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs']]):
|
|
3228
3228
|
pulumi.set(self, "metric_stat", value)
|
|
3229
3229
|
|
|
3230
|
-
@property
|
|
3230
|
+
@_builtins.property
|
|
3231
3231
|
@pulumi.getter
|
|
3232
|
-
def period(self) -> Optional[pulumi.Input[int]]:
|
|
3232
|
+
def period(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
3233
3233
|
"""
|
|
3234
3234
|
The granularity, in seconds, of the returned data points.
|
|
3235
3235
|
"""
|
|
3236
3236
|
return pulumi.get(self, "period")
|
|
3237
3237
|
|
|
3238
3238
|
@period.setter
|
|
3239
|
-
def period(self, value: Optional[pulumi.Input[int]]):
|
|
3239
|
+
def period(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
3240
3240
|
pulumi.set(self, "period", value)
|
|
3241
3241
|
|
|
3242
|
-
@property
|
|
3242
|
+
@_builtins.property
|
|
3243
3243
|
@pulumi.getter(name="returnData")
|
|
3244
|
-
def return_data(self) -> Optional[pulumi.Input[bool]]:
|
|
3244
|
+
def return_data(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
3245
3245
|
"""
|
|
3246
3246
|
This option indicates whether to return the timestamps and raw data values of this metric. If you are performing this call just to do math expressions and do not also need the raw data returned, you can specify `false`. If you omit this, the default of `true` is used.
|
|
3247
3247
|
"""
|
|
3248
3248
|
return pulumi.get(self, "return_data")
|
|
3249
3249
|
|
|
3250
3250
|
@return_data.setter
|
|
3251
|
-
def return_data(self, value: Optional[pulumi.Input[bool]]):
|
|
3251
|
+
def return_data(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
3252
3252
|
pulumi.set(self, "return_data", value)
|
|
3253
3253
|
|
|
3254
3254
|
|
|
@@ -3258,15 +3258,15 @@ if not MYPY:
|
|
|
3258
3258
|
"""
|
|
3259
3259
|
The metric to return, including the metric name, namespace, and dimensions.
|
|
3260
3260
|
"""
|
|
3261
|
-
metric_period: NotRequired[pulumi.Input[int]]
|
|
3261
|
+
metric_period: NotRequired[pulumi.Input[_builtins.int]]
|
|
3262
3262
|
"""
|
|
3263
3263
|
The granularity, in seconds, of the returned data points.
|
|
3264
3264
|
"""
|
|
3265
|
-
stat: NotRequired[pulumi.Input[str]]
|
|
3265
|
+
stat: NotRequired[pulumi.Input[_builtins.str]]
|
|
3266
3266
|
"""
|
|
3267
3267
|
The statistic to return. It can include any CloudWatch statistic or extended statistic.
|
|
3268
3268
|
"""
|
|
3269
|
-
unit: NotRequired[pulumi.Input[str]]
|
|
3269
|
+
unit: NotRequired[pulumi.Input[_builtins.str]]
|
|
3270
3270
|
"""
|
|
3271
3271
|
This defines what unit you want to use when storing the metric. Enum: `"Seconds" "Microseconds" "Milliseconds" "Bytes" "Kilobytes" "Megabytes" "Gigabytes" "Terabytes" "Bits" "Kilobits" "Megabits" "Gigabits" "Terabits" "Percent" "Count" "Bytes/Second" "Kilobytes/Second" "Megabytes/Second" "Gigabytes/Second" "Terabytes/Second" "Bits/Second" "Kilobits/Second" "Megabits/Second" "Gigabits/Second" "Terabits/Second" "Count/Second" "None"`
|
|
3272
3272
|
"""
|
|
@@ -3277,14 +3277,14 @@ elif False:
|
|
|
3277
3277
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs:
|
|
3278
3278
|
def __init__(__self__, *,
|
|
3279
3279
|
metric: Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgs']] = None,
|
|
3280
|
-
metric_period: Optional[pulumi.Input[int]] = None,
|
|
3281
|
-
stat: Optional[pulumi.Input[str]] = None,
|
|
3282
|
-
unit: Optional[pulumi.Input[str]] = None):
|
|
3280
|
+
metric_period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
3281
|
+
stat: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3282
|
+
unit: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3283
3283
|
"""
|
|
3284
3284
|
:param pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgs'] metric: The metric to return, including the metric name, namespace, and dimensions.
|
|
3285
|
-
:param pulumi.Input[int] metric_period: The granularity, in seconds, of the returned data points.
|
|
3286
|
-
:param pulumi.Input[str] stat: The statistic to return. It can include any CloudWatch statistic or extended statistic.
|
|
3287
|
-
:param pulumi.Input[str] unit: This defines what unit you want to use when storing the metric. Enum: `"Seconds" "Microseconds" "Milliseconds" "Bytes" "Kilobytes" "Megabytes" "Gigabytes" "Terabytes" "Bits" "Kilobits" "Megabits" "Gigabits" "Terabits" "Percent" "Count" "Bytes/Second" "Kilobytes/Second" "Megabytes/Second" "Gigabytes/Second" "Terabytes/Second" "Bits/Second" "Kilobits/Second" "Megabits/Second" "Gigabits/Second" "Terabits/Second" "Count/Second" "None"`
|
|
3285
|
+
:param pulumi.Input[_builtins.int] metric_period: The granularity, in seconds, of the returned data points.
|
|
3286
|
+
:param pulumi.Input[_builtins.str] stat: The statistic to return. It can include any CloudWatch statistic or extended statistic.
|
|
3287
|
+
:param pulumi.Input[_builtins.str] unit: This defines what unit you want to use when storing the metric. Enum: `"Seconds" "Microseconds" "Milliseconds" "Bytes" "Kilobytes" "Megabytes" "Gigabytes" "Terabytes" "Bits" "Kilobits" "Megabits" "Gigabits" "Terabits" "Percent" "Count" "Bytes/Second" "Kilobytes/Second" "Megabytes/Second" "Gigabytes/Second" "Terabytes/Second" "Bits/Second" "Kilobits/Second" "Megabits/Second" "Gigabits/Second" "Terabits/Second" "Count/Second" "None"`
|
|
3288
3288
|
"""
|
|
3289
3289
|
if metric is not None:
|
|
3290
3290
|
pulumi.set(__self__, "metric", metric)
|
|
@@ -3295,7 +3295,7 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs:
|
|
|
3295
3295
|
if unit is not None:
|
|
3296
3296
|
pulumi.set(__self__, "unit", unit)
|
|
3297
3297
|
|
|
3298
|
-
@property
|
|
3298
|
+
@_builtins.property
|
|
3299
3299
|
@pulumi.getter
|
|
3300
3300
|
def metric(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgs']]:
|
|
3301
3301
|
"""
|
|
@@ -3307,46 +3307,46 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatArgs:
|
|
|
3307
3307
|
def metric(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgs']]):
|
|
3308
3308
|
pulumi.set(self, "metric", value)
|
|
3309
3309
|
|
|
3310
|
-
@property
|
|
3310
|
+
@_builtins.property
|
|
3311
3311
|
@pulumi.getter(name="metricPeriod")
|
|
3312
|
-
def metric_period(self) -> Optional[pulumi.Input[int]]:
|
|
3312
|
+
def metric_period(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
3313
3313
|
"""
|
|
3314
3314
|
The granularity, in seconds, of the returned data points.
|
|
3315
3315
|
"""
|
|
3316
3316
|
return pulumi.get(self, "metric_period")
|
|
3317
3317
|
|
|
3318
3318
|
@metric_period.setter
|
|
3319
|
-
def metric_period(self, value: Optional[pulumi.Input[int]]):
|
|
3319
|
+
def metric_period(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
3320
3320
|
pulumi.set(self, "metric_period", value)
|
|
3321
3321
|
|
|
3322
|
-
@property
|
|
3322
|
+
@_builtins.property
|
|
3323
3323
|
@pulumi.getter
|
|
3324
|
-
def stat(self) -> Optional[pulumi.Input[str]]:
|
|
3324
|
+
def stat(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3325
3325
|
"""
|
|
3326
3326
|
The statistic to return. It can include any CloudWatch statistic or extended statistic.
|
|
3327
3327
|
"""
|
|
3328
3328
|
return pulumi.get(self, "stat")
|
|
3329
3329
|
|
|
3330
3330
|
@stat.setter
|
|
3331
|
-
def stat(self, value: Optional[pulumi.Input[str]]):
|
|
3331
|
+
def stat(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3332
3332
|
pulumi.set(self, "stat", value)
|
|
3333
3333
|
|
|
3334
|
-
@property
|
|
3334
|
+
@_builtins.property
|
|
3335
3335
|
@pulumi.getter
|
|
3336
|
-
def unit(self) -> Optional[pulumi.Input[str]]:
|
|
3336
|
+
def unit(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3337
3337
|
"""
|
|
3338
3338
|
This defines what unit you want to use when storing the metric. Enum: `"Seconds" "Microseconds" "Milliseconds" "Bytes" "Kilobytes" "Megabytes" "Gigabytes" "Terabytes" "Bits" "Kilobits" "Megabits" "Gigabits" "Terabits" "Percent" "Count" "Bytes/Second" "Kilobytes/Second" "Megabytes/Second" "Gigabytes/Second" "Terabytes/Second" "Bits/Second" "Kilobits/Second" "Megabits/Second" "Gigabits/Second" "Terabits/Second" "Count/Second" "None"`
|
|
3339
3339
|
"""
|
|
3340
3340
|
return pulumi.get(self, "unit")
|
|
3341
3341
|
|
|
3342
3342
|
@unit.setter
|
|
3343
|
-
def unit(self, value: Optional[pulumi.Input[str]]):
|
|
3343
|
+
def unit(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3344
3344
|
pulumi.set(self, "unit", value)
|
|
3345
3345
|
|
|
3346
3346
|
|
|
3347
3347
|
if not MYPY:
|
|
3348
3348
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgsDict(TypedDict):
|
|
3349
|
-
metric_name: pulumi.Input[str]
|
|
3349
|
+
metric_name: pulumi.Input[_builtins.str]
|
|
3350
3350
|
"""
|
|
3351
3351
|
The name of the metric.
|
|
3352
3352
|
"""
|
|
@@ -3354,7 +3354,7 @@ if not MYPY:
|
|
|
3354
3354
|
"""
|
|
3355
3355
|
A dimension is a name/value pair that is part of the identity of a metric.You can assign upto 30 dimensions to a metric
|
|
3356
3356
|
"""
|
|
3357
|
-
namespace: NotRequired[pulumi.Input[str]]
|
|
3357
|
+
namespace: NotRequired[pulumi.Input[_builtins.str]]
|
|
3358
3358
|
"""
|
|
3359
3359
|
The namespace of the metric.
|
|
3360
3360
|
"""
|
|
@@ -3364,13 +3364,13 @@ elif False:
|
|
|
3364
3364
|
@pulumi.input_type
|
|
3365
3365
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricArgs:
|
|
3366
3366
|
def __init__(__self__, *,
|
|
3367
|
-
metric_name: pulumi.Input[str],
|
|
3367
|
+
metric_name: pulumi.Input[_builtins.str],
|
|
3368
3368
|
dimensions: Optional[pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgs']]]] = None,
|
|
3369
|
-
namespace: Optional[pulumi.Input[str]] = None):
|
|
3369
|
+
namespace: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3370
3370
|
"""
|
|
3371
|
-
:param pulumi.Input[str] metric_name: The name of the metric.
|
|
3371
|
+
:param pulumi.Input[_builtins.str] metric_name: The name of the metric.
|
|
3372
3372
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgs']]] dimensions: A dimension is a name/value pair that is part of the identity of a metric.You can assign upto 30 dimensions to a metric
|
|
3373
|
-
:param pulumi.Input[str] namespace: The namespace of the metric.
|
|
3373
|
+
:param pulumi.Input[_builtins.str] namespace: The namespace of the metric.
|
|
3374
3374
|
"""
|
|
3375
3375
|
pulumi.set(__self__, "metric_name", metric_name)
|
|
3376
3376
|
if dimensions is not None:
|
|
@@ -3378,19 +3378,19 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetri
|
|
|
3378
3378
|
if namespace is not None:
|
|
3379
3379
|
pulumi.set(__self__, "namespace", namespace)
|
|
3380
3380
|
|
|
3381
|
-
@property
|
|
3381
|
+
@_builtins.property
|
|
3382
3382
|
@pulumi.getter(name="metricName")
|
|
3383
|
-
def metric_name(self) -> pulumi.Input[str]:
|
|
3383
|
+
def metric_name(self) -> pulumi.Input[_builtins.str]:
|
|
3384
3384
|
"""
|
|
3385
3385
|
The name of the metric.
|
|
3386
3386
|
"""
|
|
3387
3387
|
return pulumi.get(self, "metric_name")
|
|
3388
3388
|
|
|
3389
3389
|
@metric_name.setter
|
|
3390
|
-
def metric_name(self, value: pulumi.Input[str]):
|
|
3390
|
+
def metric_name(self, value: pulumi.Input[_builtins.str]):
|
|
3391
3391
|
pulumi.set(self, "metric_name", value)
|
|
3392
3392
|
|
|
3393
|
-
@property
|
|
3393
|
+
@_builtins.property
|
|
3394
3394
|
@pulumi.getter
|
|
3395
3395
|
def dimensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgs']]]]:
|
|
3396
3396
|
"""
|
|
@@ -3402,26 +3402,26 @@ class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetri
|
|
|
3402
3402
|
def dimensions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgs']]]]):
|
|
3403
3403
|
pulumi.set(self, "dimensions", value)
|
|
3404
3404
|
|
|
3405
|
-
@property
|
|
3405
|
+
@_builtins.property
|
|
3406
3406
|
@pulumi.getter
|
|
3407
|
-
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
3407
|
+
def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3408
3408
|
"""
|
|
3409
3409
|
The namespace of the metric.
|
|
3410
3410
|
"""
|
|
3411
3411
|
return pulumi.get(self, "namespace")
|
|
3412
3412
|
|
|
3413
3413
|
@namespace.setter
|
|
3414
|
-
def namespace(self, value: Optional[pulumi.Input[str]]):
|
|
3414
|
+
def namespace(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3415
3415
|
pulumi.set(self, "namespace", value)
|
|
3416
3416
|
|
|
3417
3417
|
|
|
3418
3418
|
if not MYPY:
|
|
3419
3419
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgsDict(TypedDict):
|
|
3420
|
-
dimension_name: pulumi.Input[str]
|
|
3420
|
+
dimension_name: pulumi.Input[_builtins.str]
|
|
3421
3421
|
"""
|
|
3422
3422
|
The name of the dimensions. These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3423
3423
|
"""
|
|
3424
|
-
dimension_value: pulumi.Input[str]
|
|
3424
|
+
dimension_value: pulumi.Input[_builtins.str]
|
|
3425
3425
|
"""
|
|
3426
3426
|
The value of the dimensions.These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3427
3427
|
"""
|
|
@@ -3431,47 +3431,47 @@ elif False:
|
|
|
3431
3431
|
@pulumi.input_type
|
|
3432
3432
|
class VerificationTemplateMetricProviderCloudWatchMetricDataQueryMetricStatMetricDimensionArgs:
|
|
3433
3433
|
def __init__(__self__, *,
|
|
3434
|
-
dimension_name: pulumi.Input[str],
|
|
3435
|
-
dimension_value: pulumi.Input[str]):
|
|
3434
|
+
dimension_name: pulumi.Input[_builtins.str],
|
|
3435
|
+
dimension_value: pulumi.Input[_builtins.str]):
|
|
3436
3436
|
"""
|
|
3437
|
-
:param pulumi.Input[str] dimension_name: The name of the dimensions. These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3438
|
-
:param pulumi.Input[str] dimension_value: The value of the dimensions.These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3437
|
+
:param pulumi.Input[_builtins.str] dimension_name: The name of the dimensions. These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3438
|
+
:param pulumi.Input[_builtins.str] dimension_value: The value of the dimensions.These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3439
3439
|
"""
|
|
3440
3440
|
pulumi.set(__self__, "dimension_name", dimension_name)
|
|
3441
3441
|
pulumi.set(__self__, "dimension_value", dimension_value)
|
|
3442
3442
|
|
|
3443
|
-
@property
|
|
3443
|
+
@_builtins.property
|
|
3444
3444
|
@pulumi.getter(name="dimensionName")
|
|
3445
|
-
def dimension_name(self) -> pulumi.Input[str]:
|
|
3445
|
+
def dimension_name(self) -> pulumi.Input[_builtins.str]:
|
|
3446
3446
|
"""
|
|
3447
3447
|
The name of the dimensions. These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3448
3448
|
"""
|
|
3449
3449
|
return pulumi.get(self, "dimension_name")
|
|
3450
3450
|
|
|
3451
3451
|
@dimension_name.setter
|
|
3452
|
-
def dimension_name(self, value: pulumi.Input[str]):
|
|
3452
|
+
def dimension_name(self, value: pulumi.Input[_builtins.str]):
|
|
3453
3453
|
pulumi.set(self, "dimension_name", value)
|
|
3454
3454
|
|
|
3455
|
-
@property
|
|
3455
|
+
@_builtins.property
|
|
3456
3456
|
@pulumi.getter(name="dimensionValue")
|
|
3457
|
-
def dimension_value(self) -> pulumi.Input[str]:
|
|
3457
|
+
def dimension_value(self) -> pulumi.Input[_builtins.str]:
|
|
3458
3458
|
"""
|
|
3459
3459
|
The value of the dimensions.These values must contain only ASCII characters and must include at least one non-whitespace characte
|
|
3460
3460
|
"""
|
|
3461
3461
|
return pulumi.get(self, "dimension_value")
|
|
3462
3462
|
|
|
3463
3463
|
@dimension_value.setter
|
|
3464
|
-
def dimension_value(self, value: pulumi.Input[str]):
|
|
3464
|
+
def dimension_value(self, value: pulumi.Input[_builtins.str]):
|
|
3465
3465
|
pulumi.set(self, "dimension_value", value)
|
|
3466
3466
|
|
|
3467
3467
|
|
|
3468
3468
|
if not MYPY:
|
|
3469
3469
|
class VerificationTemplateMetricProviderDatadogArgsDict(TypedDict):
|
|
3470
|
-
datadog_query: NotRequired[pulumi.Input[str]]
|
|
3470
|
+
datadog_query: NotRequired[pulumi.Input[_builtins.str]]
|
|
3471
3471
|
"""
|
|
3472
3472
|
A request for information retrieved from Datadog.
|
|
3473
3473
|
"""
|
|
3474
|
-
duration: NotRequired[pulumi.Input[str]]
|
|
3474
|
+
duration: NotRequired[pulumi.Input[_builtins.str]]
|
|
3475
3475
|
"""
|
|
3476
3476
|
The window of time we are looking at in DataDog.
|
|
3477
3477
|
"""
|
|
@@ -3481,53 +3481,53 @@ elif False:
|
|
|
3481
3481
|
@pulumi.input_type
|
|
3482
3482
|
class VerificationTemplateMetricProviderDatadogArgs:
|
|
3483
3483
|
def __init__(__self__, *,
|
|
3484
|
-
datadog_query: Optional[pulumi.Input[str]] = None,
|
|
3485
|
-
duration: Optional[pulumi.Input[str]] = None):
|
|
3484
|
+
datadog_query: Optional[pulumi.Input[_builtins.str]] = None,
|
|
3485
|
+
duration: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3486
3486
|
"""
|
|
3487
|
-
:param pulumi.Input[str] datadog_query: A request for information retrieved from Datadog.
|
|
3488
|
-
:param pulumi.Input[str] duration: The window of time we are looking at in DataDog.
|
|
3487
|
+
:param pulumi.Input[_builtins.str] datadog_query: A request for information retrieved from Datadog.
|
|
3488
|
+
:param pulumi.Input[_builtins.str] duration: The window of time we are looking at in DataDog.
|
|
3489
3489
|
"""
|
|
3490
3490
|
if datadog_query is not None:
|
|
3491
3491
|
pulumi.set(__self__, "datadog_query", datadog_query)
|
|
3492
3492
|
if duration is not None:
|
|
3493
3493
|
pulumi.set(__self__, "duration", duration)
|
|
3494
3494
|
|
|
3495
|
-
@property
|
|
3495
|
+
@_builtins.property
|
|
3496
3496
|
@pulumi.getter(name="datadogQuery")
|
|
3497
|
-
def datadog_query(self) -> Optional[pulumi.Input[str]]:
|
|
3497
|
+
def datadog_query(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3498
3498
|
"""
|
|
3499
3499
|
A request for information retrieved from Datadog.
|
|
3500
3500
|
"""
|
|
3501
3501
|
return pulumi.get(self, "datadog_query")
|
|
3502
3502
|
|
|
3503
3503
|
@datadog_query.setter
|
|
3504
|
-
def datadog_query(self, value: Optional[pulumi.Input[str]]):
|
|
3504
|
+
def datadog_query(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3505
3505
|
pulumi.set(self, "datadog_query", value)
|
|
3506
3506
|
|
|
3507
|
-
@property
|
|
3507
|
+
@_builtins.property
|
|
3508
3508
|
@pulumi.getter
|
|
3509
|
-
def duration(self) -> Optional[pulumi.Input[str]]:
|
|
3509
|
+
def duration(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3510
3510
|
"""
|
|
3511
3511
|
The window of time we are looking at in DataDog.
|
|
3512
3512
|
"""
|
|
3513
3513
|
return pulumi.get(self, "duration")
|
|
3514
3514
|
|
|
3515
3515
|
@duration.setter
|
|
3516
|
-
def duration(self, value: Optional[pulumi.Input[str]]):
|
|
3516
|
+
def duration(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3517
3517
|
pulumi.set(self, "duration", value)
|
|
3518
3518
|
|
|
3519
3519
|
|
|
3520
3520
|
if not MYPY:
|
|
3521
3521
|
class VerificationTemplateMetricProviderJenkinsArgsDict(TypedDict):
|
|
3522
|
-
jenkins_interval: pulumi.Input[str]
|
|
3522
|
+
jenkins_interval: pulumi.Input[_builtins.str]
|
|
3523
3523
|
"""
|
|
3524
3524
|
The interval time to poll status.
|
|
3525
3525
|
"""
|
|
3526
|
-
pipeline_name: pulumi.Input[str]
|
|
3526
|
+
pipeline_name: pulumi.Input[_builtins.str]
|
|
3527
3527
|
"""
|
|
3528
3528
|
The Jenkins pipeline name.
|
|
3529
3529
|
"""
|
|
3530
|
-
timeout: pulumi.Input[str]
|
|
3530
|
+
timeout: pulumi.Input[_builtins.str]
|
|
3531
3531
|
"""
|
|
3532
3532
|
The total jenkins timeout.
|
|
3533
3533
|
"""
|
|
@@ -3535,7 +3535,7 @@ if not MYPY:
|
|
|
3535
3535
|
"""
|
|
3536
3536
|
List of parameters.
|
|
3537
3537
|
"""
|
|
3538
|
-
tls_verification: NotRequired[pulumi.Input[bool]]
|
|
3538
|
+
tls_verification: NotRequired[pulumi.Input[_builtins.bool]]
|
|
3539
3539
|
"""
|
|
3540
3540
|
Host TLS verification.
|
|
3541
3541
|
"""
|
|
@@ -3545,17 +3545,17 @@ elif False:
|
|
|
3545
3545
|
@pulumi.input_type
|
|
3546
3546
|
class VerificationTemplateMetricProviderJenkinsArgs:
|
|
3547
3547
|
def __init__(__self__, *,
|
|
3548
|
-
jenkins_interval: pulumi.Input[str],
|
|
3549
|
-
pipeline_name: pulumi.Input[str],
|
|
3550
|
-
timeout: pulumi.Input[str],
|
|
3548
|
+
jenkins_interval: pulumi.Input[_builtins.str],
|
|
3549
|
+
pipeline_name: pulumi.Input[_builtins.str],
|
|
3550
|
+
timeout: pulumi.Input[_builtins.str],
|
|
3551
3551
|
jenkins_parameters: Optional[pulumi.Input['VerificationTemplateMetricProviderJenkinsJenkinsParametersArgs']] = None,
|
|
3552
|
-
tls_verification: Optional[pulumi.Input[bool]] = None):
|
|
3552
|
+
tls_verification: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
3553
3553
|
"""
|
|
3554
|
-
:param pulumi.Input[str] jenkins_interval: The interval time to poll status.
|
|
3555
|
-
:param pulumi.Input[str] pipeline_name: The Jenkins pipeline name.
|
|
3556
|
-
:param pulumi.Input[str] timeout: The total jenkins timeout.
|
|
3554
|
+
:param pulumi.Input[_builtins.str] jenkins_interval: The interval time to poll status.
|
|
3555
|
+
:param pulumi.Input[_builtins.str] pipeline_name: The Jenkins pipeline name.
|
|
3556
|
+
:param pulumi.Input[_builtins.str] timeout: The total jenkins timeout.
|
|
3557
3557
|
:param pulumi.Input['VerificationTemplateMetricProviderJenkinsJenkinsParametersArgs'] jenkins_parameters: List of parameters.
|
|
3558
|
-
:param pulumi.Input[bool] tls_verification: Host TLS verification.
|
|
3558
|
+
:param pulumi.Input[_builtins.bool] tls_verification: Host TLS verification.
|
|
3559
3559
|
"""
|
|
3560
3560
|
pulumi.set(__self__, "jenkins_interval", jenkins_interval)
|
|
3561
3561
|
pulumi.set(__self__, "pipeline_name", pipeline_name)
|
|
@@ -3565,43 +3565,43 @@ class VerificationTemplateMetricProviderJenkinsArgs:
|
|
|
3565
3565
|
if tls_verification is not None:
|
|
3566
3566
|
pulumi.set(__self__, "tls_verification", tls_verification)
|
|
3567
3567
|
|
|
3568
|
-
@property
|
|
3568
|
+
@_builtins.property
|
|
3569
3569
|
@pulumi.getter(name="jenkinsInterval")
|
|
3570
|
-
def jenkins_interval(self) -> pulumi.Input[str]:
|
|
3570
|
+
def jenkins_interval(self) -> pulumi.Input[_builtins.str]:
|
|
3571
3571
|
"""
|
|
3572
3572
|
The interval time to poll status.
|
|
3573
3573
|
"""
|
|
3574
3574
|
return pulumi.get(self, "jenkins_interval")
|
|
3575
3575
|
|
|
3576
3576
|
@jenkins_interval.setter
|
|
3577
|
-
def jenkins_interval(self, value: pulumi.Input[str]):
|
|
3577
|
+
def jenkins_interval(self, value: pulumi.Input[_builtins.str]):
|
|
3578
3578
|
pulumi.set(self, "jenkins_interval", value)
|
|
3579
3579
|
|
|
3580
|
-
@property
|
|
3580
|
+
@_builtins.property
|
|
3581
3581
|
@pulumi.getter(name="pipelineName")
|
|
3582
|
-
def pipeline_name(self) -> pulumi.Input[str]:
|
|
3582
|
+
def pipeline_name(self) -> pulumi.Input[_builtins.str]:
|
|
3583
3583
|
"""
|
|
3584
3584
|
The Jenkins pipeline name.
|
|
3585
3585
|
"""
|
|
3586
3586
|
return pulumi.get(self, "pipeline_name")
|
|
3587
3587
|
|
|
3588
3588
|
@pipeline_name.setter
|
|
3589
|
-
def pipeline_name(self, value: pulumi.Input[str]):
|
|
3589
|
+
def pipeline_name(self, value: pulumi.Input[_builtins.str]):
|
|
3590
3590
|
pulumi.set(self, "pipeline_name", value)
|
|
3591
3591
|
|
|
3592
|
-
@property
|
|
3592
|
+
@_builtins.property
|
|
3593
3593
|
@pulumi.getter
|
|
3594
|
-
def timeout(self) -> pulumi.Input[str]:
|
|
3594
|
+
def timeout(self) -> pulumi.Input[_builtins.str]:
|
|
3595
3595
|
"""
|
|
3596
3596
|
The total jenkins timeout.
|
|
3597
3597
|
"""
|
|
3598
3598
|
return pulumi.get(self, "timeout")
|
|
3599
3599
|
|
|
3600
3600
|
@timeout.setter
|
|
3601
|
-
def timeout(self, value: pulumi.Input[str]):
|
|
3601
|
+
def timeout(self, value: pulumi.Input[_builtins.str]):
|
|
3602
3602
|
pulumi.set(self, "timeout", value)
|
|
3603
3603
|
|
|
3604
|
-
@property
|
|
3604
|
+
@_builtins.property
|
|
3605
3605
|
@pulumi.getter(name="jenkinsParameters")
|
|
3606
3606
|
def jenkins_parameters(self) -> Optional[pulumi.Input['VerificationTemplateMetricProviderJenkinsJenkinsParametersArgs']]:
|
|
3607
3607
|
"""
|
|
@@ -3613,26 +3613,26 @@ class VerificationTemplateMetricProviderJenkinsArgs:
|
|
|
3613
3613
|
def jenkins_parameters(self, value: Optional[pulumi.Input['VerificationTemplateMetricProviderJenkinsJenkinsParametersArgs']]):
|
|
3614
3614
|
pulumi.set(self, "jenkins_parameters", value)
|
|
3615
3615
|
|
|
3616
|
-
@property
|
|
3616
|
+
@_builtins.property
|
|
3617
3617
|
@pulumi.getter(name="tlsVerification")
|
|
3618
|
-
def tls_verification(self) -> Optional[pulumi.Input[bool]]:
|
|
3618
|
+
def tls_verification(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
3619
3619
|
"""
|
|
3620
3620
|
Host TLS verification.
|
|
3621
3621
|
"""
|
|
3622
3622
|
return pulumi.get(self, "tls_verification")
|
|
3623
3623
|
|
|
3624
3624
|
@tls_verification.setter
|
|
3625
|
-
def tls_verification(self, value: Optional[pulumi.Input[bool]]):
|
|
3625
|
+
def tls_verification(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
3626
3626
|
pulumi.set(self, "tls_verification", value)
|
|
3627
3627
|
|
|
3628
3628
|
|
|
3629
3629
|
if not MYPY:
|
|
3630
3630
|
class VerificationTemplateMetricProviderJenkinsJenkinsParametersArgsDict(TypedDict):
|
|
3631
|
-
parameter_key: pulumi.Input[str]
|
|
3631
|
+
parameter_key: pulumi.Input[_builtins.str]
|
|
3632
3632
|
"""
|
|
3633
3633
|
Key of an argument.
|
|
3634
3634
|
"""
|
|
3635
|
-
parameter_value: pulumi.Input[str]
|
|
3635
|
+
parameter_value: pulumi.Input[_builtins.str]
|
|
3636
3636
|
"""
|
|
3637
3637
|
Value of an argument.
|
|
3638
3638
|
"""
|
|
@@ -3642,37 +3642,37 @@ elif False:
|
|
|
3642
3642
|
@pulumi.input_type
|
|
3643
3643
|
class VerificationTemplateMetricProviderJenkinsJenkinsParametersArgs:
|
|
3644
3644
|
def __init__(__self__, *,
|
|
3645
|
-
parameter_key: pulumi.Input[str],
|
|
3646
|
-
parameter_value: pulumi.Input[str]):
|
|
3645
|
+
parameter_key: pulumi.Input[_builtins.str],
|
|
3646
|
+
parameter_value: pulumi.Input[_builtins.str]):
|
|
3647
3647
|
"""
|
|
3648
|
-
:param pulumi.Input[str] parameter_key: Key of an argument.
|
|
3649
|
-
:param pulumi.Input[str] parameter_value: Value of an argument.
|
|
3648
|
+
:param pulumi.Input[_builtins.str] parameter_key: Key of an argument.
|
|
3649
|
+
:param pulumi.Input[_builtins.str] parameter_value: Value of an argument.
|
|
3650
3650
|
"""
|
|
3651
3651
|
pulumi.set(__self__, "parameter_key", parameter_key)
|
|
3652
3652
|
pulumi.set(__self__, "parameter_value", parameter_value)
|
|
3653
3653
|
|
|
3654
|
-
@property
|
|
3654
|
+
@_builtins.property
|
|
3655
3655
|
@pulumi.getter(name="parameterKey")
|
|
3656
|
-
def parameter_key(self) -> pulumi.Input[str]:
|
|
3656
|
+
def parameter_key(self) -> pulumi.Input[_builtins.str]:
|
|
3657
3657
|
"""
|
|
3658
3658
|
Key of an argument.
|
|
3659
3659
|
"""
|
|
3660
3660
|
return pulumi.get(self, "parameter_key")
|
|
3661
3661
|
|
|
3662
3662
|
@parameter_key.setter
|
|
3663
|
-
def parameter_key(self, value: pulumi.Input[str]):
|
|
3663
|
+
def parameter_key(self, value: pulumi.Input[_builtins.str]):
|
|
3664
3664
|
pulumi.set(self, "parameter_key", value)
|
|
3665
3665
|
|
|
3666
|
-
@property
|
|
3666
|
+
@_builtins.property
|
|
3667
3667
|
@pulumi.getter(name="parameterValue")
|
|
3668
|
-
def parameter_value(self) -> pulumi.Input[str]:
|
|
3668
|
+
def parameter_value(self) -> pulumi.Input[_builtins.str]:
|
|
3669
3669
|
"""
|
|
3670
3670
|
Value of an argument.
|
|
3671
3671
|
"""
|
|
3672
3672
|
return pulumi.get(self, "parameter_value")
|
|
3673
3673
|
|
|
3674
3674
|
@parameter_value.setter
|
|
3675
|
-
def parameter_value(self, value: pulumi.Input[str]):
|
|
3675
|
+
def parameter_value(self, value: pulumi.Input[_builtins.str]):
|
|
3676
3676
|
pulumi.set(self, "parameter_value", value)
|
|
3677
3677
|
|
|
3678
3678
|
|
|
@@ -3694,7 +3694,7 @@ class VerificationTemplateMetricProviderJobArgs:
|
|
|
3694
3694
|
"""
|
|
3695
3695
|
pulumi.set(__self__, "specs", specs)
|
|
3696
3696
|
|
|
3697
|
-
@property
|
|
3697
|
+
@_builtins.property
|
|
3698
3698
|
@pulumi.getter
|
|
3699
3699
|
def specs(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecArgs']]]:
|
|
3700
3700
|
"""
|
|
@@ -3713,7 +3713,7 @@ if not MYPY:
|
|
|
3713
3713
|
"""
|
|
3714
3714
|
Describes the pod that will be created when executing a job.
|
|
3715
3715
|
"""
|
|
3716
|
-
backoff_limit: NotRequired[pulumi.Input[int]]
|
|
3716
|
+
backoff_limit: NotRequired[pulumi.Input[_builtins.int]]
|
|
3717
3717
|
"""
|
|
3718
3718
|
Specifies the number of retries before marking this job failed.
|
|
3719
3719
|
"""
|
|
@@ -3724,16 +3724,16 @@ elif False:
|
|
|
3724
3724
|
class VerificationTemplateMetricProviderJobSpecArgs:
|
|
3725
3725
|
def __init__(__self__, *,
|
|
3726
3726
|
job_templates: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateArgs']]],
|
|
3727
|
-
backoff_limit: Optional[pulumi.Input[int]] = None):
|
|
3727
|
+
backoff_limit: Optional[pulumi.Input[_builtins.int]] = None):
|
|
3728
3728
|
"""
|
|
3729
3729
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateArgs']]] job_templates: Describes the pod that will be created when executing a job.
|
|
3730
|
-
:param pulumi.Input[int] backoff_limit: Specifies the number of retries before marking this job failed.
|
|
3730
|
+
:param pulumi.Input[_builtins.int] backoff_limit: Specifies the number of retries before marking this job failed.
|
|
3731
3731
|
"""
|
|
3732
3732
|
pulumi.set(__self__, "job_templates", job_templates)
|
|
3733
3733
|
if backoff_limit is not None:
|
|
3734
3734
|
pulumi.set(__self__, "backoff_limit", backoff_limit)
|
|
3735
3735
|
|
|
3736
|
-
@property
|
|
3736
|
+
@_builtins.property
|
|
3737
3737
|
@pulumi.getter(name="jobTemplates")
|
|
3738
3738
|
def job_templates(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateArgs']]]:
|
|
3739
3739
|
"""
|
|
@@ -3745,16 +3745,16 @@ class VerificationTemplateMetricProviderJobSpecArgs:
|
|
|
3745
3745
|
def job_templates(self, value: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateArgs']]]):
|
|
3746
3746
|
pulumi.set(self, "job_templates", value)
|
|
3747
3747
|
|
|
3748
|
-
@property
|
|
3748
|
+
@_builtins.property
|
|
3749
3749
|
@pulumi.getter(name="backoffLimit")
|
|
3750
|
-
def backoff_limit(self) -> Optional[pulumi.Input[int]]:
|
|
3750
|
+
def backoff_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
3751
3751
|
"""
|
|
3752
3752
|
Specifies the number of retries before marking this job failed.
|
|
3753
3753
|
"""
|
|
3754
3754
|
return pulumi.get(self, "backoff_limit")
|
|
3755
3755
|
|
|
3756
3756
|
@backoff_limit.setter
|
|
3757
|
-
def backoff_limit(self, value: Optional[pulumi.Input[int]]):
|
|
3757
|
+
def backoff_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
3758
3758
|
pulumi.set(self, "backoff_limit", value)
|
|
3759
3759
|
|
|
3760
3760
|
|
|
@@ -3776,7 +3776,7 @@ class VerificationTemplateMetricProviderJobSpecJobTemplateArgs:
|
|
|
3776
3776
|
"""
|
|
3777
3777
|
pulumi.set(__self__, "template_specs", template_specs)
|
|
3778
3778
|
|
|
3779
|
-
@property
|
|
3779
|
+
@_builtins.property
|
|
3780
3780
|
@pulumi.getter(name="templateSpecs")
|
|
3781
3781
|
def template_specs(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecArgs']]]:
|
|
3782
3782
|
"""
|
|
@@ -3795,7 +3795,7 @@ if not MYPY:
|
|
|
3795
3795
|
"""
|
|
3796
3796
|
A list of containers belonging to the pod.
|
|
3797
3797
|
"""
|
|
3798
|
-
restart_policy: pulumi.Input[str]
|
|
3798
|
+
restart_policy: pulumi.Input[_builtins.str]
|
|
3799
3799
|
"""
|
|
3800
3800
|
Restart policy for all containers within the pod. Enum: `"Never" "OnFailure"`
|
|
3801
3801
|
"""
|
|
@@ -3806,15 +3806,15 @@ elif False:
|
|
|
3806
3806
|
class VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecArgs:
|
|
3807
3807
|
def __init__(__self__, *,
|
|
3808
3808
|
containers: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgs']]],
|
|
3809
|
-
restart_policy: pulumi.Input[str]):
|
|
3809
|
+
restart_policy: pulumi.Input[_builtins.str]):
|
|
3810
3810
|
"""
|
|
3811
3811
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgs']]] containers: A list of containers belonging to the pod.
|
|
3812
|
-
:param pulumi.Input[str] restart_policy: Restart policy for all containers within the pod. Enum: `"Never" "OnFailure"`
|
|
3812
|
+
:param pulumi.Input[_builtins.str] restart_policy: Restart policy for all containers within the pod. Enum: `"Never" "OnFailure"`
|
|
3813
3813
|
"""
|
|
3814
3814
|
pulumi.set(__self__, "containers", containers)
|
|
3815
3815
|
pulumi.set(__self__, "restart_policy", restart_policy)
|
|
3816
3816
|
|
|
3817
|
-
@property
|
|
3817
|
+
@_builtins.property
|
|
3818
3818
|
@pulumi.getter
|
|
3819
3819
|
def containers(self) -> pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgs']]]:
|
|
3820
3820
|
"""
|
|
@@ -3826,30 +3826,30 @@ class VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecArgs:
|
|
|
3826
3826
|
def containers(self, value: pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgs']]]):
|
|
3827
3827
|
pulumi.set(self, "containers", value)
|
|
3828
3828
|
|
|
3829
|
-
@property
|
|
3829
|
+
@_builtins.property
|
|
3830
3830
|
@pulumi.getter(name="restartPolicy")
|
|
3831
|
-
def restart_policy(self) -> pulumi.Input[str]:
|
|
3831
|
+
def restart_policy(self) -> pulumi.Input[_builtins.str]:
|
|
3832
3832
|
"""
|
|
3833
3833
|
Restart policy for all containers within the pod. Enum: `"Never" "OnFailure"`
|
|
3834
3834
|
"""
|
|
3835
3835
|
return pulumi.get(self, "restart_policy")
|
|
3836
3836
|
|
|
3837
3837
|
@restart_policy.setter
|
|
3838
|
-
def restart_policy(self, value: pulumi.Input[str]):
|
|
3838
|
+
def restart_policy(self, value: pulumi.Input[_builtins.str]):
|
|
3839
3839
|
pulumi.set(self, "restart_policy", value)
|
|
3840
3840
|
|
|
3841
3841
|
|
|
3842
3842
|
if not MYPY:
|
|
3843
3843
|
class VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgsDict(TypedDict):
|
|
3844
|
-
commands: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
3844
|
+
commands: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
3845
3845
|
"""
|
|
3846
3846
|
The entry point of a container.
|
|
3847
3847
|
"""
|
|
3848
|
-
container_name: pulumi.Input[str]
|
|
3848
|
+
container_name: pulumi.Input[_builtins.str]
|
|
3849
3849
|
"""
|
|
3850
3850
|
The name of a container.
|
|
3851
3851
|
"""
|
|
3852
|
-
image: pulumi.Input[str]
|
|
3852
|
+
image: pulumi.Input[_builtins.str]
|
|
3853
3853
|
"""
|
|
3854
3854
|
The image name of a container.
|
|
3855
3855
|
"""
|
|
@@ -3859,62 +3859,62 @@ elif False:
|
|
|
3859
3859
|
@pulumi.input_type
|
|
3860
3860
|
class VerificationTemplateMetricProviderJobSpecJobTemplateTemplateSpecContainerArgs:
|
|
3861
3861
|
def __init__(__self__, *,
|
|
3862
|
-
commands: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
3863
|
-
container_name: pulumi.Input[str],
|
|
3864
|
-
image: pulumi.Input[str]):
|
|
3862
|
+
commands: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
3863
|
+
container_name: pulumi.Input[_builtins.str],
|
|
3864
|
+
image: pulumi.Input[_builtins.str]):
|
|
3865
3865
|
"""
|
|
3866
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] commands: The entry point of a container.
|
|
3867
|
-
:param pulumi.Input[str] container_name: The name of a container.
|
|
3868
|
-
:param pulumi.Input[str] image: The image name of a container.
|
|
3866
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] commands: The entry point of a container.
|
|
3867
|
+
:param pulumi.Input[_builtins.str] container_name: The name of a container.
|
|
3868
|
+
:param pulumi.Input[_builtins.str] image: The image name of a container.
|
|
3869
3869
|
"""
|
|
3870
3870
|
pulumi.set(__self__, "commands", commands)
|
|
3871
3871
|
pulumi.set(__self__, "container_name", container_name)
|
|
3872
3872
|
pulumi.set(__self__, "image", image)
|
|
3873
3873
|
|
|
3874
|
-
@property
|
|
3874
|
+
@_builtins.property
|
|
3875
3875
|
@pulumi.getter
|
|
3876
|
-
def commands(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
3876
|
+
def commands(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
3877
3877
|
"""
|
|
3878
3878
|
The entry point of a container.
|
|
3879
3879
|
"""
|
|
3880
3880
|
return pulumi.get(self, "commands")
|
|
3881
3881
|
|
|
3882
3882
|
@commands.setter
|
|
3883
|
-
def commands(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
3883
|
+
def commands(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
3884
3884
|
pulumi.set(self, "commands", value)
|
|
3885
3885
|
|
|
3886
|
-
@property
|
|
3886
|
+
@_builtins.property
|
|
3887
3887
|
@pulumi.getter(name="containerName")
|
|
3888
|
-
def container_name(self) -> pulumi.Input[str]:
|
|
3888
|
+
def container_name(self) -> pulumi.Input[_builtins.str]:
|
|
3889
3889
|
"""
|
|
3890
3890
|
The name of a container.
|
|
3891
3891
|
"""
|
|
3892
3892
|
return pulumi.get(self, "container_name")
|
|
3893
3893
|
|
|
3894
3894
|
@container_name.setter
|
|
3895
|
-
def container_name(self, value: pulumi.Input[str]):
|
|
3895
|
+
def container_name(self, value: pulumi.Input[_builtins.str]):
|
|
3896
3896
|
pulumi.set(self, "container_name", value)
|
|
3897
3897
|
|
|
3898
|
-
@property
|
|
3898
|
+
@_builtins.property
|
|
3899
3899
|
@pulumi.getter
|
|
3900
|
-
def image(self) -> pulumi.Input[str]:
|
|
3900
|
+
def image(self) -> pulumi.Input[_builtins.str]:
|
|
3901
3901
|
"""
|
|
3902
3902
|
The image name of a container.
|
|
3903
3903
|
"""
|
|
3904
3904
|
return pulumi.get(self, "image")
|
|
3905
3905
|
|
|
3906
3906
|
@image.setter
|
|
3907
|
-
def image(self, value: pulumi.Input[str]):
|
|
3907
|
+
def image(self, value: pulumi.Input[_builtins.str]):
|
|
3908
3908
|
pulumi.set(self, "image", value)
|
|
3909
3909
|
|
|
3910
3910
|
|
|
3911
3911
|
if not MYPY:
|
|
3912
3912
|
class VerificationTemplateMetricProviderNewRelicArgsDict(TypedDict):
|
|
3913
|
-
new_relic_query: pulumi.Input[str]
|
|
3913
|
+
new_relic_query: pulumi.Input[_builtins.str]
|
|
3914
3914
|
"""
|
|
3915
3915
|
A raw newrelic NRQL query to perform.
|
|
3916
3916
|
"""
|
|
3917
|
-
profile: NotRequired[pulumi.Input[str]]
|
|
3917
|
+
profile: NotRequired[pulumi.Input[_builtins.str]]
|
|
3918
3918
|
"""
|
|
3919
3919
|
The name of the secret holding NR account configuration.
|
|
3920
3920
|
"""
|
|
@@ -3924,44 +3924,44 @@ elif False:
|
|
|
3924
3924
|
@pulumi.input_type
|
|
3925
3925
|
class VerificationTemplateMetricProviderNewRelicArgs:
|
|
3926
3926
|
def __init__(__self__, *,
|
|
3927
|
-
new_relic_query: pulumi.Input[str],
|
|
3928
|
-
profile: Optional[pulumi.Input[str]] = None):
|
|
3927
|
+
new_relic_query: pulumi.Input[_builtins.str],
|
|
3928
|
+
profile: Optional[pulumi.Input[_builtins.str]] = None):
|
|
3929
3929
|
"""
|
|
3930
|
-
:param pulumi.Input[str] new_relic_query: A raw newrelic NRQL query to perform.
|
|
3931
|
-
:param pulumi.Input[str] profile: The name of the secret holding NR account configuration.
|
|
3930
|
+
:param pulumi.Input[_builtins.str] new_relic_query: A raw newrelic NRQL query to perform.
|
|
3931
|
+
:param pulumi.Input[_builtins.str] profile: The name of the secret holding NR account configuration.
|
|
3932
3932
|
"""
|
|
3933
3933
|
pulumi.set(__self__, "new_relic_query", new_relic_query)
|
|
3934
3934
|
if profile is not None:
|
|
3935
3935
|
pulumi.set(__self__, "profile", profile)
|
|
3936
3936
|
|
|
3937
|
-
@property
|
|
3937
|
+
@_builtins.property
|
|
3938
3938
|
@pulumi.getter(name="newRelicQuery")
|
|
3939
|
-
def new_relic_query(self) -> pulumi.Input[str]:
|
|
3939
|
+
def new_relic_query(self) -> pulumi.Input[_builtins.str]:
|
|
3940
3940
|
"""
|
|
3941
3941
|
A raw newrelic NRQL query to perform.
|
|
3942
3942
|
"""
|
|
3943
3943
|
return pulumi.get(self, "new_relic_query")
|
|
3944
3944
|
|
|
3945
3945
|
@new_relic_query.setter
|
|
3946
|
-
def new_relic_query(self, value: pulumi.Input[str]):
|
|
3946
|
+
def new_relic_query(self, value: pulumi.Input[_builtins.str]):
|
|
3947
3947
|
pulumi.set(self, "new_relic_query", value)
|
|
3948
3948
|
|
|
3949
|
-
@property
|
|
3949
|
+
@_builtins.property
|
|
3950
3950
|
@pulumi.getter
|
|
3951
|
-
def profile(self) -> Optional[pulumi.Input[str]]:
|
|
3951
|
+
def profile(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3952
3952
|
"""
|
|
3953
3953
|
The name of the secret holding NR account configuration.
|
|
3954
3954
|
"""
|
|
3955
3955
|
return pulumi.get(self, "profile")
|
|
3956
3956
|
|
|
3957
3957
|
@profile.setter
|
|
3958
|
-
def profile(self, value: Optional[pulumi.Input[str]]):
|
|
3958
|
+
def profile(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
3959
3959
|
pulumi.set(self, "profile", value)
|
|
3960
3960
|
|
|
3961
3961
|
|
|
3962
3962
|
if not MYPY:
|
|
3963
3963
|
class VerificationTemplateMetricProviderPrometheusArgsDict(TypedDict):
|
|
3964
|
-
prometheus_query: pulumi.Input[str]
|
|
3964
|
+
prometheus_query: pulumi.Input[_builtins.str]
|
|
3965
3965
|
"""
|
|
3966
3966
|
A request for information retrieved from Prometheus.
|
|
3967
3967
|
"""
|
|
@@ -3971,48 +3971,48 @@ elif False:
|
|
|
3971
3971
|
@pulumi.input_type
|
|
3972
3972
|
class VerificationTemplateMetricProviderPrometheusArgs:
|
|
3973
3973
|
def __init__(__self__, *,
|
|
3974
|
-
prometheus_query: pulumi.Input[str]):
|
|
3974
|
+
prometheus_query: pulumi.Input[_builtins.str]):
|
|
3975
3975
|
"""
|
|
3976
|
-
:param pulumi.Input[str] prometheus_query: A request for information retrieved from Prometheus.
|
|
3976
|
+
:param pulumi.Input[_builtins.str] prometheus_query: A request for information retrieved from Prometheus.
|
|
3977
3977
|
"""
|
|
3978
3978
|
pulumi.set(__self__, "prometheus_query", prometheus_query)
|
|
3979
3979
|
|
|
3980
|
-
@property
|
|
3980
|
+
@_builtins.property
|
|
3981
3981
|
@pulumi.getter(name="prometheusQuery")
|
|
3982
|
-
def prometheus_query(self) -> pulumi.Input[str]:
|
|
3982
|
+
def prometheus_query(self) -> pulumi.Input[_builtins.str]:
|
|
3983
3983
|
"""
|
|
3984
3984
|
A request for information retrieved from Prometheus.
|
|
3985
3985
|
"""
|
|
3986
3986
|
return pulumi.get(self, "prometheus_query")
|
|
3987
3987
|
|
|
3988
3988
|
@prometheus_query.setter
|
|
3989
|
-
def prometheus_query(self, value: pulumi.Input[str]):
|
|
3989
|
+
def prometheus_query(self, value: pulumi.Input[_builtins.str]):
|
|
3990
3990
|
pulumi.set(self, "prometheus_query", value)
|
|
3991
3991
|
|
|
3992
3992
|
|
|
3993
3993
|
if not MYPY:
|
|
3994
3994
|
class VerificationTemplateMetricProviderWebArgsDict(TypedDict):
|
|
3995
|
-
url: pulumi.Input[str]
|
|
3995
|
+
url: pulumi.Input[_builtins.str]
|
|
3996
3996
|
"""
|
|
3997
3997
|
The address of the web metric.
|
|
3998
3998
|
"""
|
|
3999
|
-
body: NotRequired[pulumi.Input[str]]
|
|
3999
|
+
body: NotRequired[pulumi.Input[_builtins.str]]
|
|
4000
4000
|
"""
|
|
4001
4001
|
The body of the web metric.
|
|
4002
4002
|
"""
|
|
4003
|
-
insecure: NotRequired[pulumi.Input[bool]]
|
|
4003
|
+
insecure: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4004
4004
|
"""
|
|
4005
4005
|
Skips host TLS verification.
|
|
4006
4006
|
"""
|
|
4007
|
-
json_path: NotRequired[pulumi.Input[str]]
|
|
4007
|
+
json_path: NotRequired[pulumi.Input[_builtins.str]]
|
|
4008
4008
|
"""
|
|
4009
4009
|
A JSON Path to use as the result variable. Default is "{$}"
|
|
4010
4010
|
"""
|
|
4011
|
-
method: NotRequired[pulumi.Input[str]]
|
|
4011
|
+
method: NotRequired[pulumi.Input[_builtins.str]]
|
|
4012
4012
|
"""
|
|
4013
4013
|
The method of the web metric. Enum: "GET" "POST" "PUT"
|
|
4014
4014
|
"""
|
|
4015
|
-
timeout_seconds: NotRequired[pulumi.Input[int]]
|
|
4015
|
+
timeout_seconds: NotRequired[pulumi.Input[_builtins.int]]
|
|
4016
4016
|
"""
|
|
4017
4017
|
The timeout for the request in seconds. Default is 10.
|
|
4018
4018
|
"""
|
|
@@ -4026,20 +4026,20 @@ elif False:
|
|
|
4026
4026
|
@pulumi.input_type
|
|
4027
4027
|
class VerificationTemplateMetricProviderWebArgs:
|
|
4028
4028
|
def __init__(__self__, *,
|
|
4029
|
-
url: pulumi.Input[str],
|
|
4030
|
-
body: Optional[pulumi.Input[str]] = None,
|
|
4031
|
-
insecure: Optional[pulumi.Input[bool]] = None,
|
|
4032
|
-
json_path: Optional[pulumi.Input[str]] = None,
|
|
4033
|
-
method: Optional[pulumi.Input[str]] = None,
|
|
4034
|
-
timeout_seconds: Optional[pulumi.Input[int]] = None,
|
|
4029
|
+
url: pulumi.Input[_builtins.str],
|
|
4030
|
+
body: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4031
|
+
insecure: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
4032
|
+
json_path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4033
|
+
method: Optional[pulumi.Input[_builtins.str]] = None,
|
|
4034
|
+
timeout_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
4035
4035
|
web_headers: Optional[pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderWebWebHeaderArgs']]]] = None):
|
|
4036
4036
|
"""
|
|
4037
|
-
:param pulumi.Input[str] url: The address of the web metric.
|
|
4038
|
-
:param pulumi.Input[str] body: The body of the web metric.
|
|
4039
|
-
:param pulumi.Input[bool] insecure: Skips host TLS verification.
|
|
4040
|
-
:param pulumi.Input[str] json_path: A JSON Path to use as the result variable. Default is "{$}"
|
|
4041
|
-
:param pulumi.Input[str] method: The method of the web metric. Enum: "GET" "POST" "PUT"
|
|
4042
|
-
:param pulumi.Input[int] timeout_seconds: The timeout for the request in seconds. Default is 10.
|
|
4037
|
+
:param pulumi.Input[_builtins.str] url: The address of the web metric.
|
|
4038
|
+
:param pulumi.Input[_builtins.str] body: The body of the web metric.
|
|
4039
|
+
:param pulumi.Input[_builtins.bool] insecure: Skips host TLS verification.
|
|
4040
|
+
:param pulumi.Input[_builtins.str] json_path: A JSON Path to use as the result variable. Default is "{$}"
|
|
4041
|
+
:param pulumi.Input[_builtins.str] method: The method of the web metric. Enum: "GET" "POST" "PUT"
|
|
4042
|
+
:param pulumi.Input[_builtins.int] timeout_seconds: The timeout for the request in seconds. Default is 10.
|
|
4043
4043
|
:param pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderWebWebHeaderArgs']]] web_headers: Optional HTTP headers to use in the request.
|
|
4044
4044
|
"""
|
|
4045
4045
|
pulumi.set(__self__, "url", url)
|
|
@@ -4056,79 +4056,79 @@ class VerificationTemplateMetricProviderWebArgs:
|
|
|
4056
4056
|
if web_headers is not None:
|
|
4057
4057
|
pulumi.set(__self__, "web_headers", web_headers)
|
|
4058
4058
|
|
|
4059
|
-
@property
|
|
4059
|
+
@_builtins.property
|
|
4060
4060
|
@pulumi.getter
|
|
4061
|
-
def url(self) -> pulumi.Input[str]:
|
|
4061
|
+
def url(self) -> pulumi.Input[_builtins.str]:
|
|
4062
4062
|
"""
|
|
4063
4063
|
The address of the web metric.
|
|
4064
4064
|
"""
|
|
4065
4065
|
return pulumi.get(self, "url")
|
|
4066
4066
|
|
|
4067
4067
|
@url.setter
|
|
4068
|
-
def url(self, value: pulumi.Input[str]):
|
|
4068
|
+
def url(self, value: pulumi.Input[_builtins.str]):
|
|
4069
4069
|
pulumi.set(self, "url", value)
|
|
4070
4070
|
|
|
4071
|
-
@property
|
|
4071
|
+
@_builtins.property
|
|
4072
4072
|
@pulumi.getter
|
|
4073
|
-
def body(self) -> Optional[pulumi.Input[str]]:
|
|
4073
|
+
def body(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4074
4074
|
"""
|
|
4075
4075
|
The body of the web metric.
|
|
4076
4076
|
"""
|
|
4077
4077
|
return pulumi.get(self, "body")
|
|
4078
4078
|
|
|
4079
4079
|
@body.setter
|
|
4080
|
-
def body(self, value: Optional[pulumi.Input[str]]):
|
|
4080
|
+
def body(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4081
4081
|
pulumi.set(self, "body", value)
|
|
4082
4082
|
|
|
4083
|
-
@property
|
|
4083
|
+
@_builtins.property
|
|
4084
4084
|
@pulumi.getter
|
|
4085
|
-
def insecure(self) -> Optional[pulumi.Input[bool]]:
|
|
4085
|
+
def insecure(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4086
4086
|
"""
|
|
4087
4087
|
Skips host TLS verification.
|
|
4088
4088
|
"""
|
|
4089
4089
|
return pulumi.get(self, "insecure")
|
|
4090
4090
|
|
|
4091
4091
|
@insecure.setter
|
|
4092
|
-
def insecure(self, value: Optional[pulumi.Input[bool]]):
|
|
4092
|
+
def insecure(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
4093
4093
|
pulumi.set(self, "insecure", value)
|
|
4094
4094
|
|
|
4095
|
-
@property
|
|
4095
|
+
@_builtins.property
|
|
4096
4096
|
@pulumi.getter(name="jsonPath")
|
|
4097
|
-
def json_path(self) -> Optional[pulumi.Input[str]]:
|
|
4097
|
+
def json_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4098
4098
|
"""
|
|
4099
4099
|
A JSON Path to use as the result variable. Default is "{$}"
|
|
4100
4100
|
"""
|
|
4101
4101
|
return pulumi.get(self, "json_path")
|
|
4102
4102
|
|
|
4103
4103
|
@json_path.setter
|
|
4104
|
-
def json_path(self, value: Optional[pulumi.Input[str]]):
|
|
4104
|
+
def json_path(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4105
4105
|
pulumi.set(self, "json_path", value)
|
|
4106
4106
|
|
|
4107
|
-
@property
|
|
4107
|
+
@_builtins.property
|
|
4108
4108
|
@pulumi.getter
|
|
4109
|
-
def method(self) -> Optional[pulumi.Input[str]]:
|
|
4109
|
+
def method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
4110
4110
|
"""
|
|
4111
4111
|
The method of the web metric. Enum: "GET" "POST" "PUT"
|
|
4112
4112
|
"""
|
|
4113
4113
|
return pulumi.get(self, "method")
|
|
4114
4114
|
|
|
4115
4115
|
@method.setter
|
|
4116
|
-
def method(self, value: Optional[pulumi.Input[str]]):
|
|
4116
|
+
def method(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
4117
4117
|
pulumi.set(self, "method", value)
|
|
4118
4118
|
|
|
4119
|
-
@property
|
|
4119
|
+
@_builtins.property
|
|
4120
4120
|
@pulumi.getter(name="timeoutSeconds")
|
|
4121
|
-
def timeout_seconds(self) -> Optional[pulumi.Input[int]]:
|
|
4121
|
+
def timeout_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
4122
4122
|
"""
|
|
4123
4123
|
The timeout for the request in seconds. Default is 10.
|
|
4124
4124
|
"""
|
|
4125
4125
|
return pulumi.get(self, "timeout_seconds")
|
|
4126
4126
|
|
|
4127
4127
|
@timeout_seconds.setter
|
|
4128
|
-
def timeout_seconds(self, value: Optional[pulumi.Input[int]]):
|
|
4128
|
+
def timeout_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
4129
4129
|
pulumi.set(self, "timeout_seconds", value)
|
|
4130
4130
|
|
|
4131
|
-
@property
|
|
4131
|
+
@_builtins.property
|
|
4132
4132
|
@pulumi.getter(name="webHeaders")
|
|
4133
4133
|
def web_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VerificationTemplateMetricProviderWebWebHeaderArgs']]]]:
|
|
4134
4134
|
"""
|
|
@@ -4143,11 +4143,11 @@ class VerificationTemplateMetricProviderWebArgs:
|
|
|
4143
4143
|
|
|
4144
4144
|
if not MYPY:
|
|
4145
4145
|
class VerificationTemplateMetricProviderWebWebHeaderArgsDict(TypedDict):
|
|
4146
|
-
web_header_key: pulumi.Input[str]
|
|
4146
|
+
web_header_key: pulumi.Input[_builtins.str]
|
|
4147
4147
|
"""
|
|
4148
4148
|
The name of a header
|
|
4149
4149
|
"""
|
|
4150
|
-
web_header_value: pulumi.Input[str]
|
|
4150
|
+
web_header_value: pulumi.Input[_builtins.str]
|
|
4151
4151
|
"""
|
|
4152
4152
|
The value of a header
|
|
4153
4153
|
"""
|
|
@@ -4157,37 +4157,37 @@ elif False:
|
|
|
4157
4157
|
@pulumi.input_type
|
|
4158
4158
|
class VerificationTemplateMetricProviderWebWebHeaderArgs:
|
|
4159
4159
|
def __init__(__self__, *,
|
|
4160
|
-
web_header_key: pulumi.Input[str],
|
|
4161
|
-
web_header_value: pulumi.Input[str]):
|
|
4160
|
+
web_header_key: pulumi.Input[_builtins.str],
|
|
4161
|
+
web_header_value: pulumi.Input[_builtins.str]):
|
|
4162
4162
|
"""
|
|
4163
|
-
:param pulumi.Input[str] web_header_key: The name of a header
|
|
4164
|
-
:param pulumi.Input[str] web_header_value: The value of a header
|
|
4163
|
+
:param pulumi.Input[_builtins.str] web_header_key: The name of a header
|
|
4164
|
+
:param pulumi.Input[_builtins.str] web_header_value: The value of a header
|
|
4165
4165
|
"""
|
|
4166
4166
|
pulumi.set(__self__, "web_header_key", web_header_key)
|
|
4167
4167
|
pulumi.set(__self__, "web_header_value", web_header_value)
|
|
4168
4168
|
|
|
4169
|
-
@property
|
|
4169
|
+
@_builtins.property
|
|
4170
4170
|
@pulumi.getter(name="webHeaderKey")
|
|
4171
|
-
def web_header_key(self) -> pulumi.Input[str]:
|
|
4171
|
+
def web_header_key(self) -> pulumi.Input[_builtins.str]:
|
|
4172
4172
|
"""
|
|
4173
4173
|
The name of a header
|
|
4174
4174
|
"""
|
|
4175
4175
|
return pulumi.get(self, "web_header_key")
|
|
4176
4176
|
|
|
4177
4177
|
@web_header_key.setter
|
|
4178
|
-
def web_header_key(self, value: pulumi.Input[str]):
|
|
4178
|
+
def web_header_key(self, value: pulumi.Input[_builtins.str]):
|
|
4179
4179
|
pulumi.set(self, "web_header_key", value)
|
|
4180
4180
|
|
|
4181
|
-
@property
|
|
4181
|
+
@_builtins.property
|
|
4182
4182
|
@pulumi.getter(name="webHeaderValue")
|
|
4183
|
-
def web_header_value(self) -> pulumi.Input[str]:
|
|
4183
|
+
def web_header_value(self) -> pulumi.Input[_builtins.str]:
|
|
4184
4184
|
"""
|
|
4185
4185
|
The value of a header
|
|
4186
4186
|
"""
|
|
4187
4187
|
return pulumi.get(self, "web_header_value")
|
|
4188
4188
|
|
|
4189
4189
|
@web_header_value.setter
|
|
4190
|
-
def web_header_value(self, value: pulumi.Input[str]):
|
|
4190
|
+
def web_header_value(self, value: pulumi.Input[_builtins.str]):
|
|
4191
4191
|
pulumi.set(self, "web_header_value", value)
|
|
4192
4192
|
|
|
4193
4193
|
|