pulumi-harness 0.9.0a1760076204__py3-none-any.whl → 0.10.0a1764049859__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.
Files changed (55) hide show
  1. pulumi_harness/__init__.py +24 -0
  2. pulumi_harness/autostopping/__init__.py +2 -0
  3. pulumi_harness/autostopping/_inputs.py +1698 -622
  4. pulumi_harness/autostopping/get_aws_alb.py +4 -0
  5. pulumi_harness/autostopping/get_aws_proxy.py +4 -0
  6. pulumi_harness/autostopping/get_azure_gateway.py +4 -0
  7. pulumi_harness/autostopping/get_azure_proxy.py +4 -0
  8. pulumi_harness/autostopping/get_gcp_proxy.py +4 -0
  9. pulumi_harness/autostopping/get_rule_ecs.py +4 -0
  10. pulumi_harness/autostopping/get_rule_rds.py +4 -0
  11. pulumi_harness/autostopping/get_rule_scale_group.py +254 -0
  12. pulumi_harness/autostopping/get_rule_vm.py +4 -0
  13. pulumi_harness/autostopping/outputs.py +727 -0
  14. pulumi_harness/autostopping/rule_ecs.py +58 -0
  15. pulumi_harness/autostopping/rule_scale_group.py +592 -0
  16. pulumi_harness/cluster/get_orchestrator.py +4 -0
  17. pulumi_harness/cluster/get_orchestrator_config.py +21 -1
  18. pulumi_harness/cluster/orchestrator.py +2 -28
  19. pulumi_harness/cluster/orchestrator_config.py +49 -0
  20. pulumi_harness/platform/__init__.py +5 -0
  21. pulumi_harness/platform/_inputs.py +5804 -371
  22. pulumi_harness/platform/connector_rancher.py +36 -0
  23. pulumi_harness/platform/db_instance.py +49 -49
  24. pulumi_harness/platform/db_schema.py +243 -0
  25. pulumi_harness/platform/environment.py +166 -0
  26. pulumi_harness/platform/environment_group.py +10 -10
  27. pulumi_harness/platform/gcp_secret_manager_connector.py +94 -0
  28. pulumi_harness/platform/get_db_instance.py +21 -21
  29. pulumi_harness/platform/get_db_schema.py +21 -1
  30. pulumi_harness/platform/get_default_notification_template_set.py +31 -1
  31. pulumi_harness/platform/get_gitops_agent_operator_yaml.py +4 -0
  32. pulumi_harness/platform/get_gitops_app_project_mapping.py +4 -0
  33. pulumi_harness/platform/get_gitops_applications.py +4 -0
  34. pulumi_harness/platform/get_gitops_repo_cert.py +4 -0
  35. pulumi_harness/platform/get_infra_module.py +192 -6
  36. pulumi_harness/platform/get_infra_module_testing.py +521 -0
  37. pulumi_harness/platform/get_infra_modules.py +103 -0
  38. pulumi_harness/platform/get_manual_freeze.py +4 -0
  39. pulumi_harness/platform/get_pipeline_central_notification_rule.py +2 -26
  40. pulumi_harness/platform/get_secret_winrm.py +263 -0
  41. pulumi_harness/platform/git_ops_applications.py +0 -4
  42. pulumi_harness/platform/gitops_applicationset.py +308 -6
  43. pulumi_harness/platform/infra_module_testing.py +1134 -0
  44. pulumi_harness/platform/infrastructure.py +82 -0
  45. pulumi_harness/platform/outputs.py +4467 -251
  46. pulumi_harness/platform/pipeline.py +2 -2
  47. pulumi_harness/platform/pipeline_central_notification_rule.py +187 -0
  48. pulumi_harness/platform/secret_winrm.py +1082 -0
  49. pulumi_harness/platform/service.py +150 -0
  50. pulumi_harness/platform/triggers.py +6 -4
  51. pulumi_harness/pulumi-plugin.json +1 -1
  52. {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/METADATA +1 -1
  53. {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/RECORD +55 -48
  54. {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/WHEEL +0 -0
  55. {pulumi_harness-0.9.0a1760076204.dist-info → pulumi_harness-0.10.0a1764049859.dist-info}/top_level.txt +0 -0
@@ -189,6 +189,8 @@ def get_aws_alb(alb_arn: Optional[_builtins.str] = None,
189
189
  """
190
190
  Data source for AWS Autostopping proxy
191
191
 
192
+ ## Example Usage
193
+
192
194
 
193
195
  :param _builtins.str alb_arn: Arn of AWS ALB to be imported. Required only for importing existing ALB
194
196
  :param _builtins.str cloud_connector_id: Id of the cloud connector
@@ -240,6 +242,8 @@ def get_aws_alb_output(alb_arn: Optional[pulumi.Input[Optional[_builtins.str]]]
240
242
  """
241
243
  Data source for AWS Autostopping proxy
242
244
 
245
+ ## Example Usage
246
+
243
247
 
244
248
  :param _builtins.str alb_arn: Arn of AWS ALB to be imported. Required only for importing existing ALB
245
249
  :param _builtins.str cloud_connector_id: Id of the cloud connector
@@ -227,6 +227,8 @@ def get_aws_proxy(allocate_static_ip: Optional[_builtins.bool] = None,
227
227
  """
228
228
  Data source for AWS Autostopping proxy
229
229
 
230
+ ## Example Usage
231
+
230
232
 
231
233
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
232
234
  :param _builtins.str api_key: Harness NG API key
@@ -289,6 +291,8 @@ def get_aws_proxy_output(allocate_static_ip: Optional[pulumi.Input[Optional[_bui
289
291
  """
290
292
  Data source for AWS Autostopping proxy
291
293
 
294
+ ## Example Usage
295
+
292
296
 
293
297
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
294
298
  :param _builtins.str api_key: Harness NG API key
@@ -231,6 +231,8 @@ def get_azure_gateway(app_gateway_id: Optional[_builtins.str] = None,
231
231
  """
232
232
  Data source for AWS Autostopping proxy
233
233
 
234
+ ## Example Usage
235
+
234
236
 
235
237
  :param _builtins.str app_gateway_id: ID of Azure AppGateway for importing
236
238
  :param _builtins.str azure_func_region: Region in which azure cloud function will be provisioned
@@ -295,6 +297,8 @@ def get_azure_gateway_output(app_gateway_id: Optional[pulumi.Input[Optional[_bui
295
297
  """
296
298
  Data source for AWS Autostopping proxy
297
299
 
300
+ ## Example Usage
301
+
298
302
 
299
303
  :param _builtins.str app_gateway_id: ID of Azure AppGateway for importing
300
304
  :param _builtins.str azure_func_region: Region in which azure cloud function will be provisioned
@@ -253,6 +253,8 @@ def get_azure_proxy(allocate_static_ip: Optional[_builtins.bool] = None,
253
253
  """
254
254
  Data source for Azure Autostopping proxy
255
255
 
256
+ ## Example Usage
257
+
256
258
 
257
259
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
258
260
  :param _builtins.str api_key: Harness NG API key
@@ -323,6 +325,8 @@ def get_azure_proxy_output(allocate_static_ip: Optional[pulumi.Input[Optional[_b
323
325
  """
324
326
  Data source for Azure Autostopping proxy
325
327
 
328
+ ## Example Usage
329
+
326
330
 
327
331
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
328
332
  :param _builtins.str api_key: Harness NG API key
@@ -230,6 +230,8 @@ def get_gcp_proxy(allocate_static_ip: Optional[_builtins.bool] = None,
230
230
  """
231
231
  Data source for GCP Autostopping proxy
232
232
 
233
+ ## Example Usage
234
+
233
235
 
234
236
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
235
237
  :param _builtins.str api_key: Harness NG API key
@@ -293,6 +295,8 @@ def get_gcp_proxy_output(allocate_static_ip: Optional[pulumi.Input[Optional[_bui
293
295
  """
294
296
  Data source for GCP Autostopping proxy
295
297
 
298
+ ## Example Usage
299
+
296
300
 
297
301
  :param _builtins.bool allocate_static_ip: Boolean value to indicate if proxy vm needs to have static IP
298
302
  :param _builtins.str api_key: Harness NG API key
@@ -155,6 +155,8 @@ def get_rule_ecs(cloud_connector_id: Optional[_builtins.str] = None,
155
155
  """
156
156
  Data source for retrieving a Harness Variable.
157
157
 
158
+ ## Example Usage
159
+
158
160
 
159
161
  :param _builtins.str cloud_connector_id: Id of the cloud connector
160
162
  :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances
@@ -195,6 +197,8 @@ def get_rule_ecs_output(cloud_connector_id: Optional[pulumi.Input[_builtins.str]
195
197
  """
196
198
  Data source for retrieving a Harness Variable.
197
199
 
200
+ ## Example Usage
201
+
198
202
 
199
203
  :param _builtins.str cloud_connector_id: Id of the cloud connector
200
204
  :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances
@@ -142,6 +142,8 @@ def get_rule_rds(cloud_connector_id: Optional[_builtins.str] = None,
142
142
  """
143
143
  Data source for retrieving a Harness Variable.
144
144
 
145
+ ## Example Usage
146
+
145
147
 
146
148
  :param _builtins.str cloud_connector_id: Id of the cloud connector
147
149
  :param Sequence[Union['GetRuleRdsDependArgs', 'GetRuleRdsDependArgsDict']] depends: Dependent rules
@@ -178,6 +180,8 @@ def get_rule_rds_output(cloud_connector_id: Optional[pulumi.Input[_builtins.str]
178
180
  """
179
181
  Data source for retrieving a Harness Variable.
180
182
 
183
+ ## Example Usage
184
+
181
185
 
182
186
  :param _builtins.str cloud_connector_id: Id of the cloud connector
183
187
  :param Sequence[Union['GetRuleRdsDependArgs', 'GetRuleRdsDependArgsDict']] depends: Dependent rules
@@ -0,0 +1,254 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = [
20
+ 'GetRuleScaleGroupResult',
21
+ 'AwaitableGetRuleScaleGroupResult',
22
+ 'get_rule_scale_group',
23
+ 'get_rule_scale_group_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetRuleScaleGroupResult:
28
+ """
29
+ A collection of values returned by getRuleScaleGroup.
30
+ """
31
+ def __init__(__self__, cloud_connector_id=None, custom_domains=None, depends=None, dry_run=None, https=None, id=None, identifier=None, idle_time_mins=None, name=None, scale_group=None):
32
+ if cloud_connector_id and not isinstance(cloud_connector_id, str):
33
+ raise TypeError("Expected argument 'cloud_connector_id' to be a str")
34
+ pulumi.set(__self__, "cloud_connector_id", cloud_connector_id)
35
+ if custom_domains and not isinstance(custom_domains, list):
36
+ raise TypeError("Expected argument 'custom_domains' to be a list")
37
+ pulumi.set(__self__, "custom_domains", custom_domains)
38
+ if depends and not isinstance(depends, list):
39
+ raise TypeError("Expected argument 'depends' to be a list")
40
+ pulumi.set(__self__, "depends", depends)
41
+ if dry_run and not isinstance(dry_run, bool):
42
+ raise TypeError("Expected argument 'dry_run' to be a bool")
43
+ pulumi.set(__self__, "dry_run", dry_run)
44
+ if https and not isinstance(https, list):
45
+ raise TypeError("Expected argument 'https' to be a list")
46
+ pulumi.set(__self__, "https", https)
47
+ if id and not isinstance(id, str):
48
+ raise TypeError("Expected argument 'id' to be a str")
49
+ pulumi.set(__self__, "id", id)
50
+ if identifier and not isinstance(identifier, float):
51
+ raise TypeError("Expected argument 'identifier' to be a float")
52
+ pulumi.set(__self__, "identifier", identifier)
53
+ if idle_time_mins and not isinstance(idle_time_mins, int):
54
+ raise TypeError("Expected argument 'idle_time_mins' to be a int")
55
+ pulumi.set(__self__, "idle_time_mins", idle_time_mins)
56
+ if name and not isinstance(name, str):
57
+ raise TypeError("Expected argument 'name' to be a str")
58
+ pulumi.set(__self__, "name", name)
59
+ if scale_group and not isinstance(scale_group, dict):
60
+ raise TypeError("Expected argument 'scale_group' to be a dict")
61
+ pulumi.set(__self__, "scale_group", scale_group)
62
+
63
+ @_builtins.property
64
+ @pulumi.getter(name="cloudConnectorId")
65
+ def cloud_connector_id(self) -> _builtins.str:
66
+ """
67
+ Id of the cloud connector
68
+ """
69
+ return pulumi.get(self, "cloud_connector_id")
70
+
71
+ @_builtins.property
72
+ @pulumi.getter(name="customDomains")
73
+ def custom_domains(self) -> Optional[Sequence[_builtins.str]]:
74
+ """
75
+ Custom URLs used to access the instances
76
+ """
77
+ return pulumi.get(self, "custom_domains")
78
+
79
+ @_builtins.property
80
+ @pulumi.getter
81
+ def depends(self) -> Optional[Sequence['outputs.GetRuleScaleGroupDependResult']]:
82
+ """
83
+ Dependent rules
84
+ """
85
+ return pulumi.get(self, "depends")
86
+
87
+ @_builtins.property
88
+ @pulumi.getter(name="dryRun")
89
+ def dry_run(self) -> Optional[_builtins.bool]:
90
+ """
91
+ Boolean that indicates whether the AutoStopping rule should be created in DryRun mode
92
+ """
93
+ return pulumi.get(self, "dry_run")
94
+
95
+ @_builtins.property
96
+ @pulumi.getter
97
+ def https(self) -> Optional[Sequence['outputs.GetRuleScaleGroupHttpResult']]:
98
+ """
99
+ Http routing configuration
100
+ """
101
+ return pulumi.get(self, "https")
102
+
103
+ @_builtins.property
104
+ @pulumi.getter
105
+ def id(self) -> _builtins.str:
106
+ """
107
+ The provider-assigned unique ID for this managed resource.
108
+ """
109
+ return pulumi.get(self, "id")
110
+
111
+ @_builtins.property
112
+ @pulumi.getter
113
+ def identifier(self) -> _builtins.float:
114
+ """
115
+ Unique identifier of the resource
116
+ """
117
+ return pulumi.get(self, "identifier")
118
+
119
+ @_builtins.property
120
+ @pulumi.getter(name="idleTimeMins")
121
+ def idle_time_mins(self) -> Optional[_builtins.int]:
122
+ """
123
+ Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
124
+ """
125
+ return pulumi.get(self, "idle_time_mins")
126
+
127
+ @_builtins.property
128
+ @pulumi.getter
129
+ def name(self) -> _builtins.str:
130
+ """
131
+ Name of the rule
132
+ """
133
+ return pulumi.get(self, "name")
134
+
135
+ @_builtins.property
136
+ @pulumi.getter(name="scaleGroup")
137
+ def scale_group(self) -> 'outputs.GetRuleScaleGroupScaleGroupResult':
138
+ """
139
+ Scaling Group configuration
140
+ """
141
+ return pulumi.get(self, "scale_group")
142
+
143
+
144
+ class AwaitableGetRuleScaleGroupResult(GetRuleScaleGroupResult):
145
+ # pylint: disable=using-constant-test
146
+ def __await__(self):
147
+ if False:
148
+ yield self
149
+ return GetRuleScaleGroupResult(
150
+ cloud_connector_id=self.cloud_connector_id,
151
+ custom_domains=self.custom_domains,
152
+ depends=self.depends,
153
+ dry_run=self.dry_run,
154
+ https=self.https,
155
+ id=self.id,
156
+ identifier=self.identifier,
157
+ idle_time_mins=self.idle_time_mins,
158
+ name=self.name,
159
+ scale_group=self.scale_group)
160
+
161
+
162
+ def get_rule_scale_group(cloud_connector_id: Optional[_builtins.str] = None,
163
+ custom_domains: Optional[Sequence[_builtins.str]] = None,
164
+ depends: Optional[Sequence[Union['GetRuleScaleGroupDependArgs', 'GetRuleScaleGroupDependArgsDict']]] = None,
165
+ dry_run: Optional[_builtins.bool] = None,
166
+ https: Optional[Sequence[Union['GetRuleScaleGroupHttpArgs', 'GetRuleScaleGroupHttpArgsDict']]] = None,
167
+ idle_time_mins: Optional[_builtins.int] = None,
168
+ name: Optional[_builtins.str] = None,
169
+ scale_group: Optional[Union['GetRuleScaleGroupScaleGroupArgs', 'GetRuleScaleGroupScaleGroupArgsDict']] = None,
170
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRuleScaleGroupResult:
171
+ """
172
+ Data source for retrieving a Harness Variable.
173
+
174
+ ## Example Usage
175
+
176
+
177
+ :param _builtins.str cloud_connector_id: Id of the cloud connector
178
+ :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances
179
+ :param Sequence[Union['GetRuleScaleGroupDependArgs', 'GetRuleScaleGroupDependArgsDict']] depends: Dependent rules
180
+ :param _builtins.bool dry_run: Boolean that indicates whether the AutoStopping rule should be created in DryRun mode
181
+ :param Sequence[Union['GetRuleScaleGroupHttpArgs', 'GetRuleScaleGroupHttpArgsDict']] https: Http routing configuration
182
+ :param _builtins.int idle_time_mins: Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
183
+ :param _builtins.str name: Name of the rule
184
+ :param Union['GetRuleScaleGroupScaleGroupArgs', 'GetRuleScaleGroupScaleGroupArgsDict'] scale_group: Scaling Group configuration
185
+ """
186
+ __args__ = dict()
187
+ __args__['cloudConnectorId'] = cloud_connector_id
188
+ __args__['customDomains'] = custom_domains
189
+ __args__['depends'] = depends
190
+ __args__['dryRun'] = dry_run
191
+ __args__['https'] = https
192
+ __args__['idleTimeMins'] = idle_time_mins
193
+ __args__['name'] = name
194
+ __args__['scaleGroup'] = scale_group
195
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
196
+ __ret__ = pulumi.runtime.invoke('harness:autostopping/getRuleScaleGroup:getRuleScaleGroup', __args__, opts=opts, typ=GetRuleScaleGroupResult).value
197
+
198
+ return AwaitableGetRuleScaleGroupResult(
199
+ cloud_connector_id=pulumi.get(__ret__, 'cloud_connector_id'),
200
+ custom_domains=pulumi.get(__ret__, 'custom_domains'),
201
+ depends=pulumi.get(__ret__, 'depends'),
202
+ dry_run=pulumi.get(__ret__, 'dry_run'),
203
+ https=pulumi.get(__ret__, 'https'),
204
+ id=pulumi.get(__ret__, 'id'),
205
+ identifier=pulumi.get(__ret__, 'identifier'),
206
+ idle_time_mins=pulumi.get(__ret__, 'idle_time_mins'),
207
+ name=pulumi.get(__ret__, 'name'),
208
+ scale_group=pulumi.get(__ret__, 'scale_group'))
209
+ def get_rule_scale_group_output(cloud_connector_id: Optional[pulumi.Input[_builtins.str]] = None,
210
+ custom_domains: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
211
+ depends: Optional[pulumi.Input[Optional[Sequence[Union['GetRuleScaleGroupDependArgs', 'GetRuleScaleGroupDependArgsDict']]]]] = None,
212
+ dry_run: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
213
+ https: Optional[pulumi.Input[Optional[Sequence[Union['GetRuleScaleGroupHttpArgs', 'GetRuleScaleGroupHttpArgsDict']]]]] = None,
214
+ idle_time_mins: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
215
+ name: Optional[pulumi.Input[_builtins.str]] = None,
216
+ scale_group: Optional[pulumi.Input[Union['GetRuleScaleGroupScaleGroupArgs', 'GetRuleScaleGroupScaleGroupArgsDict']]] = None,
217
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRuleScaleGroupResult]:
218
+ """
219
+ Data source for retrieving a Harness Variable.
220
+
221
+ ## Example Usage
222
+
223
+
224
+ :param _builtins.str cloud_connector_id: Id of the cloud connector
225
+ :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances
226
+ :param Sequence[Union['GetRuleScaleGroupDependArgs', 'GetRuleScaleGroupDependArgsDict']] depends: Dependent rules
227
+ :param _builtins.bool dry_run: Boolean that indicates whether the AutoStopping rule should be created in DryRun mode
228
+ :param Sequence[Union['GetRuleScaleGroupHttpArgs', 'GetRuleScaleGroupHttpArgsDict']] https: Http routing configuration
229
+ :param _builtins.int idle_time_mins: Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
230
+ :param _builtins.str name: Name of the rule
231
+ :param Union['GetRuleScaleGroupScaleGroupArgs', 'GetRuleScaleGroupScaleGroupArgsDict'] scale_group: Scaling Group configuration
232
+ """
233
+ __args__ = dict()
234
+ __args__['cloudConnectorId'] = cloud_connector_id
235
+ __args__['customDomains'] = custom_domains
236
+ __args__['depends'] = depends
237
+ __args__['dryRun'] = dry_run
238
+ __args__['https'] = https
239
+ __args__['idleTimeMins'] = idle_time_mins
240
+ __args__['name'] = name
241
+ __args__['scaleGroup'] = scale_group
242
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
243
+ __ret__ = pulumi.runtime.invoke_output('harness:autostopping/getRuleScaleGroup:getRuleScaleGroup', __args__, opts=opts, typ=GetRuleScaleGroupResult)
244
+ return __ret__.apply(lambda __response__: GetRuleScaleGroupResult(
245
+ cloud_connector_id=pulumi.get(__response__, 'cloud_connector_id'),
246
+ custom_domains=pulumi.get(__response__, 'custom_domains'),
247
+ depends=pulumi.get(__response__, 'depends'),
248
+ dry_run=pulumi.get(__response__, 'dry_run'),
249
+ https=pulumi.get(__response__, 'https'),
250
+ id=pulumi.get(__response__, 'id'),
251
+ identifier=pulumi.get(__response__, 'identifier'),
252
+ idle_time_mins=pulumi.get(__response__, 'idle_time_mins'),
253
+ name=pulumi.get(__response__, 'name'),
254
+ scale_group=pulumi.get(__response__, 'scale_group')))
@@ -181,6 +181,8 @@ def get_rule_vm(cloud_connector_id: Optional[_builtins.str] = None,
181
181
  """
182
182
  Data source for retrieving a Harness Variable.
183
183
 
184
+ ## Example Usage
185
+
184
186
 
185
187
  :param _builtins.str cloud_connector_id: Id of the cloud connector
186
188
  :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances
@@ -229,6 +231,8 @@ def get_rule_vm_output(cloud_connector_id: Optional[pulumi.Input[_builtins.str]]
229
231
  """
230
232
  Data source for retrieving a Harness Variable.
231
233
 
234
+ ## Example Usage
235
+
232
236
 
233
237
  :param _builtins.str cloud_connector_id: Id of the cloud connector
234
238
  :param Sequence[_builtins.str] custom_domains: Custom URLs used to access the instances