pulumi-harness 0.6.0a1742795409__py3-none-any.whl → 0.6.0a1742873458__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-harness might be problematic. Click here for more details.

@@ -13170,6 +13170,10 @@ if not MYPY:
13170
13170
  """
13171
13171
  File path of the Entity in the repository.
13172
13172
  """
13173
+ is_harness_code_repo: NotRequired[pulumi.Input[bool]]
13174
+ """
13175
+ If the repo is harness code.
13176
+ """
13173
13177
  last_commit_id: NotRequired[pulumi.Input[str]]
13174
13178
  """
13175
13179
  Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
@@ -13205,6 +13209,7 @@ class InputSetGitDetailsArgs:
13205
13209
  commit_message: Optional[pulumi.Input[str]] = None,
13206
13210
  connector_ref: Optional[pulumi.Input[str]] = None,
13207
13211
  file_path: Optional[pulumi.Input[str]] = None,
13212
+ is_harness_code_repo: Optional[pulumi.Input[bool]] = None,
13208
13213
  last_commit_id: Optional[pulumi.Input[str]] = None,
13209
13214
  last_object_id: Optional[pulumi.Input[str]] = None,
13210
13215
  parent_entity_connector_ref: Optional[pulumi.Input[str]] = None,
@@ -13217,6 +13222,7 @@ class InputSetGitDetailsArgs:
13217
13222
  :param pulumi.Input[str] commit_message: Commit message used for the merge commit.
13218
13223
  :param pulumi.Input[str] connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
13219
13224
  :param pulumi.Input[str] file_path: File path of the Entity in the repository.
13225
+ :param pulumi.Input[bool] is_harness_code_repo: If the repo is harness code.
13220
13226
  :param pulumi.Input[str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
13221
13227
  :param pulumi.Input[str] last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
13222
13228
  :param pulumi.Input[str] parent_entity_connector_ref: Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
@@ -13234,6 +13240,8 @@ class InputSetGitDetailsArgs:
13234
13240
  pulumi.set(__self__, "connector_ref", connector_ref)
13235
13241
  if file_path is not None:
13236
13242
  pulumi.set(__self__, "file_path", file_path)
13243
+ if is_harness_code_repo is not None:
13244
+ pulumi.set(__self__, "is_harness_code_repo", is_harness_code_repo)
13237
13245
  if last_commit_id is not None:
13238
13246
  pulumi.set(__self__, "last_commit_id", last_commit_id)
13239
13247
  if last_object_id is not None:
@@ -13307,6 +13315,18 @@ class InputSetGitDetailsArgs:
13307
13315
  def file_path(self, value: Optional[pulumi.Input[str]]):
13308
13316
  pulumi.set(self, "file_path", value)
13309
13317
 
13318
+ @property
13319
+ @pulumi.getter(name="isHarnessCodeRepo")
13320
+ def is_harness_code_repo(self) -> Optional[pulumi.Input[bool]]:
13321
+ """
13322
+ If the repo is harness code.
13323
+ """
13324
+ return pulumi.get(self, "is_harness_code_repo")
13325
+
13326
+ @is_harness_code_repo.setter
13327
+ def is_harness_code_repo(self, value: Optional[pulumi.Input[bool]]):
13328
+ pulumi.set(self, "is_harness_code_repo", value)
13329
+
13310
13330
  @property
13311
13331
  @pulumi.getter(name="lastCommitId")
13312
13332
  def last_commit_id(self) -> Optional[pulumi.Input[str]]:
@@ -16503,6 +16523,10 @@ if not MYPY:
16503
16523
  """
16504
16524
  File path of the Entity in the repository.
16505
16525
  """
16526
+ is_harness_code_repo: NotRequired[pulumi.Input[bool]]
16527
+ """
16528
+ If the repo is harness code.
16529
+ """
16506
16530
  last_commit_id: NotRequired[pulumi.Input[str]]
16507
16531
  """
16508
16532
  Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
@@ -16530,6 +16554,7 @@ class PipelineGitDetailsArgs:
16530
16554
  commit_message: Optional[pulumi.Input[str]] = None,
16531
16555
  connector_ref: Optional[pulumi.Input[str]] = None,
16532
16556
  file_path: Optional[pulumi.Input[str]] = None,
16557
+ is_harness_code_repo: Optional[pulumi.Input[bool]] = None,
16533
16558
  last_commit_id: Optional[pulumi.Input[str]] = None,
16534
16559
  last_object_id: Optional[pulumi.Input[str]] = None,
16535
16560
  repo_name: Optional[pulumi.Input[str]] = None,
@@ -16540,6 +16565,7 @@ class PipelineGitDetailsArgs:
16540
16565
  :param pulumi.Input[str] commit_message: Commit message used for the merge commit.
16541
16566
  :param pulumi.Input[str] connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
16542
16567
  :param pulumi.Input[str] file_path: File path of the Entity in the repository.
16568
+ :param pulumi.Input[bool] is_harness_code_repo: If the repo is harness code.
16543
16569
  :param pulumi.Input[str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
16544
16570
  :param pulumi.Input[str] last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
16545
16571
  :param pulumi.Input[str] repo_name: Name of the repository.
@@ -16555,6 +16581,8 @@ class PipelineGitDetailsArgs:
16555
16581
  pulumi.set(__self__, "connector_ref", connector_ref)
16556
16582
  if file_path is not None:
16557
16583
  pulumi.set(__self__, "file_path", file_path)
16584
+ if is_harness_code_repo is not None:
16585
+ pulumi.set(__self__, "is_harness_code_repo", is_harness_code_repo)
16558
16586
  if last_commit_id is not None:
16559
16587
  pulumi.set(__self__, "last_commit_id", last_commit_id)
16560
16588
  if last_object_id is not None:
@@ -16624,6 +16652,18 @@ class PipelineGitDetailsArgs:
16624
16652
  def file_path(self, value: Optional[pulumi.Input[str]]):
16625
16653
  pulumi.set(self, "file_path", value)
16626
16654
 
16655
+ @property
16656
+ @pulumi.getter(name="isHarnessCodeRepo")
16657
+ def is_harness_code_repo(self) -> Optional[pulumi.Input[bool]]:
16658
+ """
16659
+ If the repo is harness code.
16660
+ """
16661
+ return pulumi.get(self, "is_harness_code_repo")
16662
+
16663
+ @is_harness_code_repo.setter
16664
+ def is_harness_code_repo(self, value: Optional[pulumi.Input[bool]]):
16665
+ pulumi.set(self, "is_harness_code_repo", value)
16666
+
16627
16667
  @property
16628
16668
  @pulumi.getter(name="lastCommitId")
16629
16669
  def last_commit_id(self) -> Optional[pulumi.Input[str]]:
@@ -18419,7 +18459,7 @@ if not MYPY:
18419
18459
  """
18420
18460
  is_harness_code_repo: NotRequired[pulumi.Input[bool]]
18421
18461
  """
18422
- If the repo is in harness code
18462
+ If the repo is harness code
18423
18463
  """
18424
18464
  is_new_branch: NotRequired[pulumi.Input[bool]]
18425
18465
  """
@@ -18474,7 +18514,7 @@ class ServiceGitDetailsArgs:
18474
18514
  :param pulumi.Input[str] commit_message: Commit message used for the merge commit.
18475
18515
  :param pulumi.Input[str] connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
18476
18516
  :param pulumi.Input[str] file_path: File path of the Entity in the repository.
18477
- :param pulumi.Input[bool] is_harness_code_repo: If the repo is in harness code
18517
+ :param pulumi.Input[bool] is_harness_code_repo: If the repo is harness code
18478
18518
  :param pulumi.Input[bool] is_new_branch: If the branch being created is new
18479
18519
  :param pulumi.Input[str] last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
18480
18520
  :param pulumi.Input[str] last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
@@ -18574,7 +18614,7 @@ class ServiceGitDetailsArgs:
18574
18614
  @pulumi.getter(name="isHarnessCodeRepo")
18575
18615
  def is_harness_code_repo(self) -> Optional[pulumi.Input[bool]]:
18576
18616
  """
18577
- If the repo is in harness code
18617
+ If the repo is harness code
18578
18618
  """
18579
18619
  return pulumi.get(self, "is_harness_code_repo")
18580
18620
 
@@ -10140,6 +10140,8 @@ class InputSetGitDetails(dict):
10140
10140
  suggest = "connector_ref"
10141
10141
  elif key == "filePath":
10142
10142
  suggest = "file_path"
10143
+ elif key == "isHarnessCodeRepo":
10144
+ suggest = "is_harness_code_repo"
10143
10145
  elif key == "lastCommitId":
10144
10146
  suggest = "last_commit_id"
10145
10147
  elif key == "lastObjectId":
@@ -10170,6 +10172,7 @@ class InputSetGitDetails(dict):
10170
10172
  commit_message: Optional[str] = None,
10171
10173
  connector_ref: Optional[str] = None,
10172
10174
  file_path: Optional[str] = None,
10175
+ is_harness_code_repo: Optional[bool] = None,
10173
10176
  last_commit_id: Optional[str] = None,
10174
10177
  last_object_id: Optional[str] = None,
10175
10178
  parent_entity_connector_ref: Optional[str] = None,
@@ -10182,6 +10185,7 @@ class InputSetGitDetails(dict):
10182
10185
  :param str commit_message: Commit message used for the merge commit.
10183
10186
  :param str connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
10184
10187
  :param str file_path: File path of the Entity in the repository.
10188
+ :param bool is_harness_code_repo: If the repo is harness code.
10185
10189
  :param str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
10186
10190
  :param str last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
10187
10191
  :param str parent_entity_connector_ref: Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
@@ -10199,6 +10203,8 @@ class InputSetGitDetails(dict):
10199
10203
  pulumi.set(__self__, "connector_ref", connector_ref)
10200
10204
  if file_path is not None:
10201
10205
  pulumi.set(__self__, "file_path", file_path)
10206
+ if is_harness_code_repo is not None:
10207
+ pulumi.set(__self__, "is_harness_code_repo", is_harness_code_repo)
10202
10208
  if last_commit_id is not None:
10203
10209
  pulumi.set(__self__, "last_commit_id", last_commit_id)
10204
10210
  if last_object_id is not None:
@@ -10252,6 +10258,14 @@ class InputSetGitDetails(dict):
10252
10258
  """
10253
10259
  return pulumi.get(self, "file_path")
10254
10260
 
10261
+ @property
10262
+ @pulumi.getter(name="isHarnessCodeRepo")
10263
+ def is_harness_code_repo(self) -> Optional[bool]:
10264
+ """
10265
+ If the repo is harness code.
10266
+ """
10267
+ return pulumi.get(self, "is_harness_code_repo")
10268
+
10255
10269
  @property
10256
10270
  @pulumi.getter(name="lastCommitId")
10257
10271
  def last_commit_id(self) -> Optional[str]:
@@ -12749,6 +12763,8 @@ class PipelineGitDetails(dict):
12749
12763
  suggest = "connector_ref"
12750
12764
  elif key == "filePath":
12751
12765
  suggest = "file_path"
12766
+ elif key == "isHarnessCodeRepo":
12767
+ suggest = "is_harness_code_repo"
12752
12768
  elif key == "lastCommitId":
12753
12769
  suggest = "last_commit_id"
12754
12770
  elif key == "lastObjectId":
@@ -12775,6 +12791,7 @@ class PipelineGitDetails(dict):
12775
12791
  commit_message: Optional[str] = None,
12776
12792
  connector_ref: Optional[str] = None,
12777
12793
  file_path: Optional[str] = None,
12794
+ is_harness_code_repo: Optional[bool] = None,
12778
12795
  last_commit_id: Optional[str] = None,
12779
12796
  last_object_id: Optional[str] = None,
12780
12797
  repo_name: Optional[str] = None,
@@ -12785,6 +12802,7 @@ class PipelineGitDetails(dict):
12785
12802
  :param str commit_message: Commit message used for the merge commit.
12786
12803
  :param str connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
12787
12804
  :param str file_path: File path of the Entity in the repository.
12805
+ :param bool is_harness_code_repo: If the repo is harness code.
12788
12806
  :param str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
12789
12807
  :param str last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
12790
12808
  :param str repo_name: Name of the repository.
@@ -12800,6 +12818,8 @@ class PipelineGitDetails(dict):
12800
12818
  pulumi.set(__self__, "connector_ref", connector_ref)
12801
12819
  if file_path is not None:
12802
12820
  pulumi.set(__self__, "file_path", file_path)
12821
+ if is_harness_code_repo is not None:
12822
+ pulumi.set(__self__, "is_harness_code_repo", is_harness_code_repo)
12803
12823
  if last_commit_id is not None:
12804
12824
  pulumi.set(__self__, "last_commit_id", last_commit_id)
12805
12825
  if last_object_id is not None:
@@ -12849,6 +12869,14 @@ class PipelineGitDetails(dict):
12849
12869
  """
12850
12870
  return pulumi.get(self, "file_path")
12851
12871
 
12872
+ @property
12873
+ @pulumi.getter(name="isHarnessCodeRepo")
12874
+ def is_harness_code_repo(self) -> Optional[bool]:
12875
+ """
12876
+ If the repo is harness code.
12877
+ """
12878
+ return pulumi.get(self, "is_harness_code_repo")
12879
+
12852
12880
  @property
12853
12881
  @pulumi.getter(name="lastCommitId")
12854
12882
  def last_commit_id(self) -> Optional[str]:
@@ -14332,7 +14360,7 @@ class ServiceGitDetails(dict):
14332
14360
  :param str commit_message: Commit message used for the merge commit.
14333
14361
  :param str connector_ref: Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
14334
14362
  :param str file_path: File path of the Entity in the repository.
14335
- :param bool is_harness_code_repo: If the repo is in harness code
14363
+ :param bool is_harness_code_repo: If the repo is harness code
14336
14364
  :param bool is_new_branch: If the branch being created is new
14337
14365
  :param str last_commit_id: Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
14338
14366
  :param str last_object_id: Last object identifier (for Github). To be provided only when updating Pipeline.
@@ -14412,7 +14440,7 @@ class ServiceGitDetails(dict):
14412
14440
  @pulumi.getter(name="isHarnessCodeRepo")
14413
14441
  def is_harness_code_repo(self) -> Optional[bool]:
14414
14442
  """
14415
- If the repo is in harness code
14443
+ If the repo is harness code
14416
14444
  """
14417
14445
  return pulumi.get(self, "is_harness_code_repo")
14418
14446
 
@@ -39,7 +39,7 @@ class TemplateArgs:
39
39
  """
40
40
  The set of arguments for constructing a Template resource.
41
41
  :param pulumi.Input[str] identifier: Unique identifier of the resource
42
- :param pulumi.Input[str] version: Version Label for Template.
42
+ :param pulumi.Input[str] version: Version Label for Template. This should match the `versionLabel` specified in the template YAML.
43
43
  :param pulumi.Input[str] comments: Specify comment with respect to changes.
44
44
  :param pulumi.Input[str] description: Description of the entity. Description field is deprecated
45
45
  :param pulumi.Input[bool] force_delete: When set to true, enables force deletion of the template. It will delete the Harness entity even if your pipelines or other entities reference it.
@@ -102,7 +102,7 @@ class TemplateArgs:
102
102
  @pulumi.getter
103
103
  def version(self) -> pulumi.Input[str]:
104
104
  """
105
- Version Label for Template.
105
+ Version Label for Template. This should match the `versionLabel` specified in the template YAML.
106
106
  """
107
107
  return pulumi.get(self, "version")
108
108
 
@@ -302,7 +302,7 @@ class _TemplateState:
302
302
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags to associate with the resource.
303
303
  :param pulumi.Input['TemplateTemplateImportRequestArgs'] template_import_request: Contains parameters for importing template.
304
304
  :param pulumi.Input[str] template_yaml: Yaml for creating new Template. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
305
- :param pulumi.Input[str] version: Version Label for Template.
305
+ :param pulumi.Input[str] version: Version Label for Template. This should match the `versionLabel` specified in the template YAML.
306
306
  """
307
307
  if comments is not None:
308
308
  pulumi.set(__self__, "comments", comments)
@@ -511,7 +511,7 @@ class _TemplateState:
511
511
  @pulumi.getter
512
512
  def version(self) -> Optional[pulumi.Input[str]]:
513
513
  """
514
- Version Label for Template.
514
+ Version Label for Template. This should match the `versionLabel` specified in the template YAML.
515
515
  """
516
516
  return pulumi.get(self, "version")
517
517
 
@@ -580,7 +580,7 @@ class Template(pulumi.CustomResource):
580
580
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags to associate with the resource.
581
581
  :param pulumi.Input[Union['TemplateTemplateImportRequestArgs', 'TemplateTemplateImportRequestArgsDict']] template_import_request: Contains parameters for importing template.
582
582
  :param pulumi.Input[str] template_yaml: Yaml for creating new Template. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
583
- :param pulumi.Input[str] version: Version Label for Template.
583
+ :param pulumi.Input[str] version: Version Label for Template. This should match the `versionLabel` specified in the template YAML.
584
584
  """
585
585
  ...
586
586
  @overload
@@ -715,7 +715,7 @@ class Template(pulumi.CustomResource):
715
715
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags to associate with the resource.
716
716
  :param pulumi.Input[Union['TemplateTemplateImportRequestArgs', 'TemplateTemplateImportRequestArgsDict']] template_import_request: Contains parameters for importing template.
717
717
  :param pulumi.Input[str] template_yaml: Yaml for creating new Template. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
718
- :param pulumi.Input[str] version: Version Label for Template.
718
+ :param pulumi.Input[str] version: Version Label for Template. This should match the `versionLabel` specified in the template YAML.
719
719
  """
720
720
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
721
721
 
@@ -855,7 +855,7 @@ class Template(pulumi.CustomResource):
855
855
  @pulumi.getter
856
856
  def version(self) -> pulumi.Output[str]:
857
857
  """
858
- Version Label for Template.
858
+ Version Label for Template. This should match the `versionLabel` specified in the template YAML.
859
859
  """
860
860
  return pulumi.get(self, "version")
861
861
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "harness",
4
- "version": "0.6.0-alpha.1742795409",
4
+ "version": "0.6.0-alpha.1742873458",
5
5
  "server": "github://api.github.com/pulumi"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_harness
3
- Version: 0.6.0a1742795409
3
+ Version: 0.6.0a1742873458
4
4
  Summary: A Pulumi package for creating and managing Harness resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -29,7 +29,7 @@ pulumi_harness/outputs.py,sha256=zSnE-7EcRiG_xoQGZ-pg0VqPmTBS4k2hu931VCIF4I4,127
29
29
  pulumi_harness/platform_api_key.py,sha256=IOSy96d-AtptYkZcbUVf-PAlQBP33E2jTFm7d_o3SIQ,26494
30
30
  pulumi_harness/platform_ccm_filters.py,sha256=kxy__hXvfzz73396Ib4sqvY8pfyGj_h1zlUKjdYspy8,20332
31
31
  pulumi_harness/provider.py,sha256=CSgvveG2lRJQ6JDin3Wzs5iRapg2gr6U7yDeVHocWmA,11270
32
- pulumi_harness/pulumi-plugin.json,sha256=zqv1gX0lKj-oS2sNuja3Dds7J61V82HeGBIsMsDAfyE,129
32
+ pulumi_harness/pulumi-plugin.json,sha256=_Pao34_mqCk2mTmFM34imjCL9dOUHv_jKSe7Oh9rqIM,129
33
33
  pulumi_harness/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  pulumi_harness/ssh_credential.py,sha256=Cf9eBWAmjZP5KKjN80drj7h3DWMOOaDs30hn4rFEpT0,18111
35
35
  pulumi_harness/user.py,sha256=iM-jru8z8DodmCbaMtzNnO1xg9s9Q27CIKevpszXkVE,18312
@@ -82,7 +82,7 @@ pulumi_harness/governance/rule.py,sha256=zq8ralJggu3qdDgiRzp4j6hKIB2JWyMa-qN0Fh7
82
82
  pulumi_harness/governance/rule_enforcement.py,sha256=rZ4Am51MBx8HTgIJ9UaUGIp-ZbMFrA51Th1ybXQSBBI,30639
83
83
  pulumi_harness/governance/rule_set.py,sha256=p3nfVUo_AVQjfEaYb34ylpZgZHZWb81TylpEeJo1Ekg,12499
84
84
  pulumi_harness/platform/__init__.py,sha256=BaWlN0NwrwQRjY0czKCpHVC73fB_Ymzae_2LeT_lAjs,7669
85
- pulumi_harness/platform/_inputs.py,sha256=utG4mHXdrSc285J5IGJf-hoWkSJhbecxe5DRM3j7aNk,1000729
85
+ pulumi_harness/platform/_inputs.py,sha256=ymyztq-j1291l6oNjik8GNWFIfhaFdqS8YW1kZLsXMI,1002352
86
86
  pulumi_harness/platform/app_dynamics_connector.py,sha256=ph5yRFplcp3ybUaW22Z1uPTOt_pRn-ZhmXlsgZSwWlY,30184
87
87
  pulumi_harness/platform/artifactory_connector.py,sha256=-67K4gI27Kl4d4eCxZoYIlxHzH66ULIA8s_7bMmbj7U,29378
88
88
  pulumi_harness/platform/aws_cc_connector.py,sha256=ZpfDbD4FQt_7ztFhH7bmGf64RV017KGiSWqhMRwpidM,30576
@@ -264,7 +264,7 @@ pulumi_harness/platform/nexus_connector.py,sha256=A4qgeDn-IC6QbHpY9I1fQF9yeX8P3i
264
264
  pulumi_harness/platform/notification_rule.py,sha256=aw2y6UP90OehyenmrxznKjaEl3DfHwPd26P8AY7jdlk,20482
265
265
  pulumi_harness/platform/oci_helm_connector.py,sha256=6xTx-8S34ngfgh92VcGgJalmfkJNmoQD2E6NA06vYwA,24556
266
266
  pulumi_harness/platform/organization.py,sha256=dgpcVkEdb2_BkQ9B2bfpDb-p8Y1eW6Xnr_E4mkLseRo,12068
267
- pulumi_harness/platform/outputs.py,sha256=qXsxSpPeWBX8kiAk7Ws3QMjTi3iJScyPi0H5z1M6pMY,1019234
267
+ pulumi_harness/platform/outputs.py,sha256=IeAKcCbUntOBLY1o6NE1bXRRTg-fJiHuOseHHhKd2O8,1020376
268
268
  pulumi_harness/platform/overrides.py,sha256=MFR60TQhKRDVVnfrxsp8Dz46Dsxyun_xMQvmI38U92c,27370
269
269
  pulumi_harness/platform/pagerduty_connector.py,sha256=p2h0nBESh5dPZV7lfR9rV39n_vwcsuWWYDLb1rJipp8,22761
270
270
  pulumi_harness/platform/pipeline.py,sha256=HW3yS504Rm70suBU8CYy9RP_nc425jZlEYcdvoJguZU,47460
@@ -292,7 +292,7 @@ pulumi_harness/platform/splunk_connector.py,sha256=yF0bqgE5O5jKXut8CjlLNTT_Tjqj6
292
292
  pulumi_harness/platform/spot_connector.py,sha256=s7I25qv1FxF7Lj4Tf3IGNKNo2pSXqBI1WSaCNFYoeKQ,18036
293
293
  pulumi_harness/platform/sumologic_connector.py,sha256=fIncQ_DlNAQFykG3LvowHIzG1zGIvGaVrryLiTTITxE,28279
294
294
  pulumi_harness/platform/tas_connector.py,sha256=DhYdRFoWghqRZsltCpi_qjQPxNHknpCnpVNIjgdQDGE,22956
295
- pulumi_harness/platform/template.py,sha256=yE52Nebc_APPFau6Ur5DF9R736qsqpl2EsRpJ_XlqY8,39781
295
+ pulumi_harness/platform/template.py,sha256=DiV11WNCY2QfQrXrfjDc735uglfdlPk-vbXFrb8sFWw,40264
296
296
  pulumi_harness/platform/template_filters.py,sha256=1rK3oFD3kr0MLafzsYg9ta9cCThmT_rbL9EechEIKfQ,20917
297
297
  pulumi_harness/platform/terraform_cloud_connector.py,sha256=aHLQUxKDEpOrK1HiiUswpZ2bjyHcKHRix5URXrRtW64,24123
298
298
  pulumi_harness/platform/token.py,sha256=0BRBoxPTM3kinFQMLkvbDf4pxcbuOn45bcIj_92o42s,37999
@@ -314,7 +314,7 @@ pulumi_harness/service/outputs.py,sha256=jEI8NBaeHDnW-22YI9Yk-Sp5lvPelLoOnTBBgMZ
314
314
  pulumi_harness/service/ssh.py,sha256=FULtd3EFn_0pHthZzPwpUY26LFy1k178WBTBKPC_HEc,14924
315
315
  pulumi_harness/service/tanzu.py,sha256=AI3KuSH1y5_XPr6nxFjOIVpop_Mo4NvJbUc15ifDvT4,12965
316
316
  pulumi_harness/service/winrm.py,sha256=a1PCzjC8jAaYzhqPKghSS_iefY04xZszjpH9Vu78Blw,15056
317
- pulumi_harness-0.6.0a1742795409.dist-info/METADATA,sha256=MnBJTKgLBNfM3ul4I8XPYGjJaPQ2C7_ux39uMBCsn2Y,1565
318
- pulumi_harness-0.6.0a1742795409.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
319
- pulumi_harness-0.6.0a1742795409.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
320
- pulumi_harness-0.6.0a1742795409.dist-info/RECORD,,
317
+ pulumi_harness-0.6.0a1742873458.dist-info/METADATA,sha256=Oo_UCkxTNPRZ5ikZOIJrMccExmJlssYy7lU6Jb8NZ5s,1565
318
+ pulumi_harness-0.6.0a1742873458.dist-info/WHEEL,sha256=DK49LOLCYiurdXXOXwGJm6U4DkHkg4lcxjhqwRa0CP4,91
319
+ pulumi_harness-0.6.0a1742873458.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
320
+ pulumi_harness-0.6.0a1742873458.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.3)
2
+ Generator: setuptools (78.0.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5