pulumi-harness 0.5.0a1736849468__py3-none-any.whl → 0.5.0a1737483916__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.

@@ -153,6 +153,9 @@ __all__ = [
153
153
  'GitopsAppProjectProjectSpecRoleJwtToken',
154
154
  'GitopsAppProjectProjectSpecSignatureKey',
155
155
  'GitopsAppProjectProjectSpecSyncWindow',
156
+ 'HarRegistryConfig',
157
+ 'HarRegistryConfigAuth',
158
+ 'HarRegistryConfigAuthUserPassword',
156
159
  'HelmConnectorCredentials',
157
160
  'InfrastructureGitDetails',
158
161
  'InputSetGitDetails',
@@ -345,6 +348,9 @@ __all__ = [
345
348
  'GetGitopsGnupgRequestPublickeyResult',
346
349
  'GetGitopsRepoCredCredResult',
347
350
  'GetGitopsRepositoryRepoResult',
351
+ 'GetHarRegistryConfigResult',
352
+ 'GetHarRegistryConfigAuthResult',
353
+ 'GetHarRegistryConfigAuthUserPasswordResult',
348
354
  'GetHelmConnectorCredentialResult',
349
355
  'GetInfrastructureGitDetailsResult',
350
356
  'GetInputSetGitDetailsResult',
@@ -8840,6 +8846,186 @@ class GitopsAppProjectProjectSpecSyncWindow(dict):
8840
8846
  return pulumi.get(self, "time_zone")
8841
8847
 
8842
8848
 
8849
+ @pulumi.output_type
8850
+ class HarRegistryConfig(dict):
8851
+ def __init__(__self__, *,
8852
+ type: str,
8853
+ auths: Optional[Sequence['outputs.HarRegistryConfigAuth']] = None,
8854
+ source: Optional[str] = None,
8855
+ url: Optional[str] = None):
8856
+ """
8857
+ :param str type: Type of registry (VIRTUAL only supported)
8858
+ :param Sequence['HarRegistryConfigAuthArgs'] auths: Authentication configuration for UPSTREAM type
8859
+ :param str source: Source of the upstream
8860
+ :param str url: URL of the upstream
8861
+ """
8862
+ pulumi.set(__self__, "type", type)
8863
+ if auths is not None:
8864
+ pulumi.set(__self__, "auths", auths)
8865
+ if source is not None:
8866
+ pulumi.set(__self__, "source", source)
8867
+ if url is not None:
8868
+ pulumi.set(__self__, "url", url)
8869
+
8870
+ @property
8871
+ @pulumi.getter
8872
+ def type(self) -> str:
8873
+ """
8874
+ Type of registry (VIRTUAL only supported)
8875
+ """
8876
+ return pulumi.get(self, "type")
8877
+
8878
+ @property
8879
+ @pulumi.getter
8880
+ def auths(self) -> Optional[Sequence['outputs.HarRegistryConfigAuth']]:
8881
+ """
8882
+ Authentication configuration for UPSTREAM type
8883
+ """
8884
+ return pulumi.get(self, "auths")
8885
+
8886
+ @property
8887
+ @pulumi.getter
8888
+ def source(self) -> Optional[str]:
8889
+ """
8890
+ Source of the upstream
8891
+ """
8892
+ return pulumi.get(self, "source")
8893
+
8894
+ @property
8895
+ @pulumi.getter
8896
+ def url(self) -> Optional[str]:
8897
+ """
8898
+ URL of the upstream
8899
+ """
8900
+ return pulumi.get(self, "url")
8901
+
8902
+
8903
+ @pulumi.output_type
8904
+ class HarRegistryConfigAuth(dict):
8905
+ @staticmethod
8906
+ def __key_warning(key: str):
8907
+ suggest = None
8908
+ if key == "authType":
8909
+ suggest = "auth_type"
8910
+ elif key == "userPassword":
8911
+ suggest = "user_password"
8912
+
8913
+ if suggest:
8914
+ pulumi.log.warn(f"Key '{key}' not found in HarRegistryConfigAuth. Access the value via the '{suggest}' property getter instead.")
8915
+
8916
+ def __getitem__(self, key: str) -> Any:
8917
+ HarRegistryConfigAuth.__key_warning(key)
8918
+ return super().__getitem__(key)
8919
+
8920
+ def get(self, key: str, default = None) -> Any:
8921
+ HarRegistryConfigAuth.__key_warning(key)
8922
+ return super().get(key, default)
8923
+
8924
+ def __init__(__self__, *,
8925
+ auth_type: str,
8926
+ user_password: Optional['outputs.HarRegistryConfigAuthUserPassword'] = None):
8927
+ """
8928
+ :param str auth_type: Type of authentication (UserPassword, Anonymous)
8929
+ :param 'HarRegistryConfigAuthUserPasswordArgs' user_password: User password authentication details
8930
+ """
8931
+ pulumi.set(__self__, "auth_type", auth_type)
8932
+ if user_password is not None:
8933
+ pulumi.set(__self__, "user_password", user_password)
8934
+
8935
+ @property
8936
+ @pulumi.getter(name="authType")
8937
+ def auth_type(self) -> str:
8938
+ """
8939
+ Type of authentication (UserPassword, Anonymous)
8940
+ """
8941
+ return pulumi.get(self, "auth_type")
8942
+
8943
+ @property
8944
+ @pulumi.getter(name="userPassword")
8945
+ def user_password(self) -> Optional['outputs.HarRegistryConfigAuthUserPassword']:
8946
+ """
8947
+ User password authentication details
8948
+ """
8949
+ return pulumi.get(self, "user_password")
8950
+
8951
+
8952
+ @pulumi.output_type
8953
+ class HarRegistryConfigAuthUserPassword(dict):
8954
+ @staticmethod
8955
+ def __key_warning(key: str):
8956
+ suggest = None
8957
+ if key == "userName":
8958
+ suggest = "user_name"
8959
+ elif key == "secretIdentifier":
8960
+ suggest = "secret_identifier"
8961
+ elif key == "secretSpaceId":
8962
+ suggest = "secret_space_id"
8963
+ elif key == "secretSpacePath":
8964
+ suggest = "secret_space_path"
8965
+
8966
+ if suggest:
8967
+ pulumi.log.warn(f"Key '{key}' not found in HarRegistryConfigAuthUserPassword. Access the value via the '{suggest}' property getter instead.")
8968
+
8969
+ def __getitem__(self, key: str) -> Any:
8970
+ HarRegistryConfigAuthUserPassword.__key_warning(key)
8971
+ return super().__getitem__(key)
8972
+
8973
+ def get(self, key: str, default = None) -> Any:
8974
+ HarRegistryConfigAuthUserPassword.__key_warning(key)
8975
+ return super().get(key, default)
8976
+
8977
+ def __init__(__self__, *,
8978
+ user_name: str,
8979
+ secret_identifier: Optional[str] = None,
8980
+ secret_space_id: Optional[int] = None,
8981
+ secret_space_path: Optional[str] = None):
8982
+ """
8983
+ :param str user_name: User name
8984
+ :param str secret_identifier: Secret identifier
8985
+ :param int secret_space_id: Secret space ID
8986
+ :param str secret_space_path: Secret space path
8987
+ """
8988
+ pulumi.set(__self__, "user_name", user_name)
8989
+ if secret_identifier is not None:
8990
+ pulumi.set(__self__, "secret_identifier", secret_identifier)
8991
+ if secret_space_id is not None:
8992
+ pulumi.set(__self__, "secret_space_id", secret_space_id)
8993
+ if secret_space_path is not None:
8994
+ pulumi.set(__self__, "secret_space_path", secret_space_path)
8995
+
8996
+ @property
8997
+ @pulumi.getter(name="userName")
8998
+ def user_name(self) -> str:
8999
+ """
9000
+ User name
9001
+ """
9002
+ return pulumi.get(self, "user_name")
9003
+
9004
+ @property
9005
+ @pulumi.getter(name="secretIdentifier")
9006
+ def secret_identifier(self) -> Optional[str]:
9007
+ """
9008
+ Secret identifier
9009
+ """
9010
+ return pulumi.get(self, "secret_identifier")
9011
+
9012
+ @property
9013
+ @pulumi.getter(name="secretSpaceId")
9014
+ def secret_space_id(self) -> Optional[int]:
9015
+ """
9016
+ Secret space ID
9017
+ """
9018
+ return pulumi.get(self, "secret_space_id")
9019
+
9020
+ @property
9021
+ @pulumi.getter(name="secretSpacePath")
9022
+ def secret_space_path(self) -> Optional[str]:
9023
+ """
9024
+ Secret space path
9025
+ """
9026
+ return pulumi.get(self, "secret_space_path")
9027
+
9028
+
8843
9029
  @pulumi.output_type
8844
9030
  class HelmConnectorCredentials(dict):
8845
9031
  @staticmethod
@@ -15615,7 +15801,7 @@ class GetAwsConnectorInheritFromDelegateResult(dict):
15615
15801
  region: Optional[str] = None):
15616
15802
  """
15617
15803
  :param Sequence[str] delegate_selectors: The delegates to inherit the credentials from.
15618
- :param str region: AWS Region to perform Connection test of Connector.
15804
+ :param str region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15619
15805
  """
15620
15806
  pulumi.set(__self__, "delegate_selectors", delegate_selectors)
15621
15807
  if region is not None:
@@ -15633,7 +15819,7 @@ class GetAwsConnectorInheritFromDelegateResult(dict):
15633
15819
  @pulumi.getter
15634
15820
  def region(self) -> Optional[str]:
15635
15821
  """
15636
- AWS Region to perform Connection test of Connector.
15822
+ Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15637
15823
  """
15638
15824
  return pulumi.get(self, "region")
15639
15825
 
@@ -15645,7 +15831,7 @@ class GetAwsConnectorIrsaResult(dict):
15645
15831
  region: Optional[str] = None):
15646
15832
  """
15647
15833
  :param Sequence[str] delegate_selectors: The delegates to inherit the credentials from.
15648
- :param str region: AWS Region to perform Connection test of Connector.
15834
+ :param str region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15649
15835
  """
15650
15836
  pulumi.set(__self__, "delegate_selectors", delegate_selectors)
15651
15837
  if region is not None:
@@ -15663,7 +15849,7 @@ class GetAwsConnectorIrsaResult(dict):
15663
15849
  @pulumi.getter
15664
15850
  def region(self) -> Optional[str]:
15665
15851
  """
15666
- AWS Region to perform Connection test of Connector.
15852
+ Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15667
15853
  """
15668
15854
  return pulumi.get(self, "region")
15669
15855
 
@@ -15684,8 +15870,8 @@ class GetAwsConnectorManualResult(dict):
15684
15870
  :param Sequence[str] delegate_selectors: Connect only use delegates with these tags.
15685
15871
  :param str secret_key_ref: Reference to the Harness secret containing the aws secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15686
15872
  :param str access_key_plain_text: The plain text AWS access key.
15687
- :param str region: AWS Region to perform Connection test of Connector.
15688
- :param str session_token_ref: Reference to the Harness secret containing the aws session token.
15873
+ :param str region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15874
+ :param str session_token_ref: Reference to the Harness secret containing the aws session token. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15689
15875
  """
15690
15876
  pulumi.set(__self__, "access_key", access_key)
15691
15877
  pulumi.set(__self__, "access_key_ref", access_key_ref)
@@ -15742,7 +15928,7 @@ class GetAwsConnectorManualResult(dict):
15742
15928
  @pulumi.getter
15743
15929
  def region(self) -> Optional[str]:
15744
15930
  """
15745
- AWS Region to perform Connection test of Connector.
15931
+ Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15746
15932
  """
15747
15933
  return pulumi.get(self, "region")
15748
15934
 
@@ -15750,7 +15936,7 @@ class GetAwsConnectorManualResult(dict):
15750
15936
  @pulumi.getter(name="sessionTokenRef")
15751
15937
  def session_token_ref(self) -> Optional[str]:
15752
15938
  """
15753
- Reference to the Harness secret containing the aws session token.
15939
+ Reference to the Harness secret containing the aws session token. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15754
15940
  """
15755
15941
  return pulumi.get(self, "session_token_ref")
15756
15942
 
@@ -15764,7 +15950,7 @@ class GetAwsConnectorOidcAuthenticationResult(dict):
15764
15950
  """
15765
15951
  :param Sequence[str] delegate_selectors: The delegates to inherit the credentials from.
15766
15952
  :param str iam_role_arn: The IAM Role to assume the credentials from.
15767
- :param str region: AWS Region to perform Connection test of Connector.
15953
+ :param str region: Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15768
15954
  """
15769
15955
  pulumi.set(__self__, "delegate_selectors", delegate_selectors)
15770
15956
  pulumi.set(__self__, "iam_role_arn", iam_role_arn)
@@ -15791,7 +15977,7 @@ class GetAwsConnectorOidcAuthenticationResult(dict):
15791
15977
  @pulumi.getter
15792
15978
  def region(self) -> Optional[str]:
15793
15979
  """
15794
- AWS Region to perform Connection test of Connector.
15980
+ Test Region to perform Connection test of AWS Connector To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
15795
15981
  """
15796
15982
  return pulumi.get(self, "region")
15797
15983
 
@@ -20126,6 +20312,144 @@ class GetGitopsRepositoryRepoResult(dict):
20126
20312
  return pulumi.get(self, "username")
20127
20313
 
20128
20314
 
20315
+ @pulumi.output_type
20316
+ class GetHarRegistryConfigResult(dict):
20317
+ def __init__(__self__, *,
20318
+ type: str,
20319
+ auths: Optional[Sequence['outputs.GetHarRegistryConfigAuthResult']] = None,
20320
+ source: Optional[str] = None,
20321
+ url: Optional[str] = None):
20322
+ """
20323
+ :param str type: Type of registry (VIRTUAL, UPSTREAM)
20324
+ :param Sequence['GetHarRegistryConfigAuthArgs'] auths: Authentication configuration for UPSTREAM type
20325
+ :param str source: Source of the upstream
20326
+ :param str url: URL of the upstream
20327
+ """
20328
+ pulumi.set(__self__, "type", type)
20329
+ if auths is not None:
20330
+ pulumi.set(__self__, "auths", auths)
20331
+ if source is not None:
20332
+ pulumi.set(__self__, "source", source)
20333
+ if url is not None:
20334
+ pulumi.set(__self__, "url", url)
20335
+
20336
+ @property
20337
+ @pulumi.getter
20338
+ def type(self) -> str:
20339
+ """
20340
+ Type of registry (VIRTUAL, UPSTREAM)
20341
+ """
20342
+ return pulumi.get(self, "type")
20343
+
20344
+ @property
20345
+ @pulumi.getter
20346
+ def auths(self) -> Optional[Sequence['outputs.GetHarRegistryConfigAuthResult']]:
20347
+ """
20348
+ Authentication configuration for UPSTREAM type
20349
+ """
20350
+ return pulumi.get(self, "auths")
20351
+
20352
+ @property
20353
+ @pulumi.getter
20354
+ def source(self) -> Optional[str]:
20355
+ """
20356
+ Source of the upstream
20357
+ """
20358
+ return pulumi.get(self, "source")
20359
+
20360
+ @property
20361
+ @pulumi.getter
20362
+ def url(self) -> Optional[str]:
20363
+ """
20364
+ URL of the upstream
20365
+ """
20366
+ return pulumi.get(self, "url")
20367
+
20368
+
20369
+ @pulumi.output_type
20370
+ class GetHarRegistryConfigAuthResult(dict):
20371
+ def __init__(__self__, *,
20372
+ auth_type: str,
20373
+ user_password: Optional['outputs.GetHarRegistryConfigAuthUserPasswordResult'] = None):
20374
+ """
20375
+ :param str auth_type: Type of authentication (UserPassword, Anonymous)
20376
+ :param 'GetHarRegistryConfigAuthUserPasswordArgs' user_password: User password authentication details
20377
+ """
20378
+ pulumi.set(__self__, "auth_type", auth_type)
20379
+ if user_password is not None:
20380
+ pulumi.set(__self__, "user_password", user_password)
20381
+
20382
+ @property
20383
+ @pulumi.getter(name="authType")
20384
+ def auth_type(self) -> str:
20385
+ """
20386
+ Type of authentication (UserPassword, Anonymous)
20387
+ """
20388
+ return pulumi.get(self, "auth_type")
20389
+
20390
+ @property
20391
+ @pulumi.getter(name="userPassword")
20392
+ def user_password(self) -> Optional['outputs.GetHarRegistryConfigAuthUserPasswordResult']:
20393
+ """
20394
+ User password authentication details
20395
+ """
20396
+ return pulumi.get(self, "user_password")
20397
+
20398
+
20399
+ @pulumi.output_type
20400
+ class GetHarRegistryConfigAuthUserPasswordResult(dict):
20401
+ def __init__(__self__, *,
20402
+ user_name: str,
20403
+ secret_identifier: Optional[str] = None,
20404
+ secret_space_id: Optional[int] = None,
20405
+ secret_space_path: Optional[str] = None):
20406
+ """
20407
+ :param str user_name: User name
20408
+ :param str secret_identifier: Secret identifier
20409
+ :param int secret_space_id: Secret space ID
20410
+ :param str secret_space_path: Secret space path
20411
+ """
20412
+ pulumi.set(__self__, "user_name", user_name)
20413
+ if secret_identifier is not None:
20414
+ pulumi.set(__self__, "secret_identifier", secret_identifier)
20415
+ if secret_space_id is not None:
20416
+ pulumi.set(__self__, "secret_space_id", secret_space_id)
20417
+ if secret_space_path is not None:
20418
+ pulumi.set(__self__, "secret_space_path", secret_space_path)
20419
+
20420
+ @property
20421
+ @pulumi.getter(name="userName")
20422
+ def user_name(self) -> str:
20423
+ """
20424
+ User name
20425
+ """
20426
+ return pulumi.get(self, "user_name")
20427
+
20428
+ @property
20429
+ @pulumi.getter(name="secretIdentifier")
20430
+ def secret_identifier(self) -> Optional[str]:
20431
+ """
20432
+ Secret identifier
20433
+ """
20434
+ return pulumi.get(self, "secret_identifier")
20435
+
20436
+ @property
20437
+ @pulumi.getter(name="secretSpaceId")
20438
+ def secret_space_id(self) -> Optional[int]:
20439
+ """
20440
+ Secret space ID
20441
+ """
20442
+ return pulumi.get(self, "secret_space_id")
20443
+
20444
+ @property
20445
+ @pulumi.getter(name="secretSpacePath")
20446
+ def secret_space_path(self) -> Optional[str]:
20447
+ """
20448
+ Secret space path
20449
+ """
20450
+ return pulumi.get(self, "secret_space_path")
20451
+
20452
+
20129
20453
  @pulumi.output_type
20130
20454
  class GetHelmConnectorCredentialResult(dict):
20131
20455
  def __init__(__self__, *,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "harness",
4
- "version": "0.5.0-alpha.1736849468",
4
+ "version": "0.5.0-alpha.1737483916",
5
5
  "server": "github://api.github.com/pulumi"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pulumi_harness
3
- Version: 0.5.0a1736849468
3
+ Version: 0.5.0a1737483916
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
@@ -1,13 +1,15 @@
1
- pulumi_harness/__init__.py,sha256=fy46rpBRvXjTdgPs-j_zKudPgQAyFXamgePEyAsvGEM,29550
1
+ pulumi_harness/__init__.py,sha256=x1j-0eI9sWNXWNH66d225EGf-VEcESabjhHDqrEqofw,29995
2
2
  pulumi_harness/_inputs.py,sha256=DTDMsv0kS6BLARKEXj6p3hrXWw7BXh7L3mcP6ieUyoU,164064
3
3
  pulumi_harness/_utilities.py,sha256=-Td9PZAMy4oLgNXee-XjXTxV8b_JdKQv4Ir88r0CmnQ,10532
4
4
  pulumi_harness/add_user_to_group.py,sha256=hEPgIlXikqWtLZBSVLoHX3_ZLmFCv4I6cAdh7pIkMG0,8666
5
5
  pulumi_harness/application.py,sha256=sm3a4d8HUa8wjfvRmIE6gatQKycCHrwdfqfjqEAHSek,15590
6
6
  pulumi_harness/application_git_sync.py,sha256=OQ8e1AZ4AAlt0X-ub5Sz1xSxFE_Iss0QmUfHQFGRPIg,16194
7
+ pulumi_harness/chaos_infrastructure.py,sha256=89PQbV1svWkuGx31Zm5Za_6ZBkxDcKF9ClD7yZ9Ukbg,22232
7
8
  pulumi_harness/delegate_approval.py,sha256=WQmgSSS1NwcflbDHOC6LxZEYPGwmuYQXwc7VKJomq_Q,9569
8
9
  pulumi_harness/encrypted_text.py,sha256=7wHcxzWRiy4d1PjfdZBAagCB66jeXzpVwT9xLpPsoO0,23617
9
10
  pulumi_harness/environment.py,sha256=l5yb_3bZXlHejS8VpOHQUkniUvzjxzU4pZdNxTQsumU,17096
10
11
  pulumi_harness/get_application.py,sha256=loApVq1dIbG-BdwxoB9DI3cX4jPhWUDnu7xuWIglBeM,8042
12
+ pulumi_harness/get_chaos_infrastructure.py,sha256=k_hlt9StaCcr7mx3QyGoDPuHGUssmYZ3Gx1RoajK1b4,7074
11
13
  pulumi_harness/get_current_account.py,sha256=Q3Ko_r3iReN4YUL7vCcKZggIg0SBbBjxdnREJRVk0gk,3910
12
14
  pulumi_harness/get_delegate.py,sha256=9WctqKkgUyD7VvGa2eInL0sh1vCVq3Nkmws-x_jHQHc,10694
13
15
  pulumi_harness/get_encrypted_text.py,sha256=7aN6dacd73NPz0nqfi4UV4ACg1p-tgLaLSg5qAUjVds,5778
@@ -27,7 +29,7 @@ pulumi_harness/outputs.py,sha256=zSnE-7EcRiG_xoQGZ-pg0VqPmTBS4k2hu931VCIF4I4,127
27
29
  pulumi_harness/platform_api_key.py,sha256=XQJGZWCu8z9kovotS0jB2RPqLtJUmKkcXXNE73CyNWs,24200
28
30
  pulumi_harness/platform_ccm_filters.py,sha256=kxy__hXvfzz73396Ib4sqvY8pfyGj_h1zlUKjdYspy8,20332
29
31
  pulumi_harness/provider.py,sha256=CSgvveG2lRJQ6JDin3Wzs5iRapg2gr6U7yDeVHocWmA,11270
30
- pulumi_harness/pulumi-plugin.json,sha256=NCs_6resj3m1hAq1rBqKfxgt-kTrsQv5Cnr8NPXjJG0,129
32
+ pulumi_harness/pulumi-plugin.json,sha256=u5ySy7Ah8-fWIZOAOGU0EManq7LrcVdz0DyskwexZ6g,129
31
33
  pulumi_harness/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
34
  pulumi_harness/ssh_credential.py,sha256=Cf9eBWAmjZP5KKjN80drj7h3DWMOOaDs30hn4rFEpT0,18111
33
35
  pulumi_harness/user.py,sha256=iM-jru8z8DodmCbaMtzNnO1xg9s9Q27CIKevpszXkVE,18312
@@ -79,12 +81,12 @@ pulumi_harness/governance/get_rule_set.py,sha256=noizppuLkLaVq1jecQ5DFals9UMOiwJ
79
81
  pulumi_harness/governance/rule.py,sha256=zq8ralJggu3qdDgiRzp4j6hKIB2JWyMa-qN0Fh7Mssk,12418
80
82
  pulumi_harness/governance/rule_enforcement.py,sha256=rZ4Am51MBx8HTgIJ9UaUGIp-ZbMFrA51Th1ybXQSBBI,30639
81
83
  pulumi_harness/governance/rule_set.py,sha256=p3nfVUo_AVQjfEaYb34ylpZgZHZWb81TylpEeJo1Ekg,12499
82
- pulumi_harness/platform/__init__.py,sha256=MxzGv_6hG8F5C9KgSkftQr4ZeaK8na8xPuS6IfROGeI,7421
83
- pulumi_harness/platform/_inputs.py,sha256=PR-sNSZKjmvm7r7Qw2Wh8yxTqJg1eBp7ipbyhEUqBDE,930229
84
+ pulumi_harness/platform/__init__.py,sha256=cC8HM9K5XkxFNpvRpMQPUq6LbC685OvitDW-R10uocQ,7481
85
+ pulumi_harness/platform/_inputs.py,sha256=jy-N1eY1lQzhOMCUEuCLzUcB1A3836KvNu8gOLWjtq0,945517
84
86
  pulumi_harness/platform/app_dynamics_connector.py,sha256=ph5yRFplcp3ybUaW22Z1uPTOt_pRn-ZhmXlsgZSwWlY,30184
85
87
  pulumi_harness/platform/artifactory_connector.py,sha256=-67K4gI27Kl4d4eCxZoYIlxHzH66ULIA8s_7bMmbj7U,29378
86
88
  pulumi_harness/platform/aws_cc_connector.py,sha256=ZpfDbD4FQt_7ztFhH7bmGf64RV017KGiSWqhMRwpidM,30576
87
- pulumi_harness/platform/aws_connector.py,sha256=i6ONVQnCtXf6rZe5Zh-CFYkaf-UhVFdOVUFQxmmJq_M,42973
89
+ pulumi_harness/platform/aws_connector.py,sha256=5yuSHoSr8AFcdo6ZWELHTn7liuMkhUU-hYcevmU33wc,45196
88
90
  pulumi_harness/platform/aws_kms_connector.py,sha256=uOEUr_iefUyC1yyAuS68_iRYEeRPMHpnAfL790tgwIE,26122
89
91
  pulumi_harness/platform/aws_secret_manager_connector.py,sha256=sb-4qGm2yuGVZraddA1AY76Rmbe3DghJmV9PNRdxGuk,29317
90
92
  pulumi_harness/platform/azure_cloud_cost_connector.py,sha256=thmVxuvxMUW25TMirbao2bVqnUWHVr1a-8y4XhCgwXE,27707
@@ -122,7 +124,7 @@ pulumi_harness/platform/get_api_key.py,sha256=ntbeSATAwwddz0dhZIEXgyQEpnJ4Mg6QU4
122
124
  pulumi_harness/platform/get_app_dynamics_connector.py,sha256=Eb_8EsHJ8XpQ0wWunpqu7mPq9Gyh9kSAN6WKqRoByp8,10574
123
125
  pulumi_harness/platform/get_artifactory_connector.py,sha256=aY4vmuvq4dZ2TXoyCqv1-B1QRsiJmzKK-EkJmEjF5xU,9217
124
126
  pulumi_harness/platform/get_aws_cc_connector.py,sha256=dBGGjLGb6CRbGwVMZuD4MK-g7GNJeg_uCbJVopWO-9k,10731
125
- pulumi_harness/platform/get_aws_connector.py,sha256=efpFvTxFYvrARJKXuWXL4p3-Xjk-GQTBH3icrIxhwvU,13662
127
+ pulumi_harness/platform/get_aws_connector.py,sha256=bWMHYNYKitngQXzWGoN-xge3d81Yw_k4cDIE5jaxmPY,14348
126
128
  pulumi_harness/platform/get_aws_kms_connector.py,sha256=xMBne27Izo52a5gtcL6VTYjDq_MkOZCVA_NhB-ZHCY4,9736
127
129
  pulumi_harness/platform/get_aws_secret_manager_connector.py,sha256=hT42Pfd-oqTE9kiyrfe0NLIAT-RumWKNXg1jVcvEztw,10644
128
130
  pulumi_harness/platform/get_azure_cloud_cost_connector.py,sha256=yOl0jRu2KsDPr3FPq2Gs6_LY8EeX_5H08XseGvgCIPg,10228
@@ -159,7 +161,7 @@ pulumi_harness/platform/get_git_connector.py,sha256=WvtU2finHalQjSxAXtIGHdHkEpCd
159
161
  pulumi_harness/platform/get_github_connector.py,sha256=ONkrxTd2kPcQMTqj1vVb0wdoYfGkfJb4Q1lzDgrgwiA,11959
160
162
  pulumi_harness/platform/get_gitlab_connector.py,sha256=VVqONQDCg-o1YoZ1UG2rOrBVjLEELSTGe3TSVb1zS1c,11333
161
163
  pulumi_harness/platform/get_gitops_agent.py,sha256=PhMMwXljRx2eq0gd-eQ5TJFTcQcMb0UZOPS0YxlbXZA,13394
162
- pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=yh8G6ncOKiJw_iPZcJ1CZPY4Klt48G3Rel5KQm6T3Ko,10757
164
+ pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=l7lEZTo9dgtDtyqIAQVIBSC9JlBfiwp6fkSiMtn3Q5Y,12864
163
165
  pulumi_harness/platform/get_gitops_app_project.py,sha256=1LYKNsZe8XUskNsIK5H5H-Jam82Vc8c_B5ZlqCgUPvk,7825
164
166
  pulumi_harness/platform/get_gitops_app_project_mapping.py,sha256=w6tztD72h5zICyESjJrVXZetGBEUQ0qnGbA8jiFYwhY,8522
165
167
  pulumi_harness/platform/get_gitops_applications.py,sha256=ak6zpXzuwJUKGL79Ul-ngJqSZMIHTxeA8OZNzFq0W8Q,15189
@@ -169,6 +171,7 @@ pulumi_harness/platform/get_gitops_repo_cert.py,sha256=mhvL05086b2TTqgPipzO0s-BX
169
171
  pulumi_harness/platform/get_gitops_repo_cred.py,sha256=JbhB3XNF9v_VLUzRWirkcc7gSpY01UVwO7O5aKUH-PM,8945
170
172
  pulumi_harness/platform/get_gitops_repository.py,sha256=SucBxmwQRDZQ8_uEsq3DzF-lLLLR569GidCniD4uimw,8932
171
173
  pulumi_harness/platform/get_gitx_webhook.py,sha256=R7gKhZPBq_rLGZh_PdfQc0W8CVemvmhDjc63RJO_9mA,7894
174
+ pulumi_harness/platform/get_har_registry.py,sha256=wr13ej131drxTCTWTuyFEEzcFBFuaZsJk5r8bQUSQE0,10306
172
175
  pulumi_harness/platform/get_helm_connector.py,sha256=g-l0MmiRBMcZplDxUn90JKXiSEio_SXcBXVWftJVMh8,8962
173
176
  pulumi_harness/platform/get_iacm_default_pipeline.py,sha256=ZdZ-6H2SvZvBzeRXwqqXjAYRA48ORlrzHHs30lbcuo4,7074
174
177
  pulumi_harness/platform/get_infra_module.py,sha256=OSTIpy9w73ssi30je6-knUFShzmPG73P6G-x0p7JxV8,13931
@@ -207,7 +210,7 @@ pulumi_harness/platform/get_secret_sshkey.py,sha256=p5GAbVHbMMcps2VagBNFCdeQGUtY
207
210
  pulumi_harness/platform/get_secret_text.py,sha256=XQ9UegD2hh_zDstnp70OYJHS7vY-lnUMT9hZ8k-BvB8,10586
208
211
  pulumi_harness/platform/get_service.py,sha256=f48PdtnJZU0lkJV_ZXCp3kCbPKY2BrFtXYBiTID7RVw,8477
209
212
  pulumi_harness/platform/get_service_account.py,sha256=Mst93j2ESY54d8U380nFqUflFrM3gmZKyz4jl6j3US8,8172
210
- pulumi_harness/platform/get_service_list.py,sha256=CRuTbpQL-ryAeHAn66MMIdhHBfBAx2h5JA6wecrIZIM,5485
213
+ pulumi_harness/platform/get_service_list.py,sha256=_yEiWTAzo5vFJvKyvhRhyBr4-wpaaxfVACHt8PGefVw,6649
211
214
  pulumi_harness/platform/get_service_now_connector.py,sha256=J-1_1iCfJ5dXqf9ctlvvWTYJO3wWVSZ7JZkCceGwyhE,11449
212
215
  pulumi_harness/platform/get_service_overrides_v2.py,sha256=BhizAqIX4wTrceU6a-rZY7ja3ycVHNupTA91UpZwN3I,8825
213
216
  pulumi_harness/platform/get_slo.py,sha256=DIvVUZc1cAGHm3QNtCiHDfhC7PReE03XUPD6ZH7I20Y,4878
@@ -239,6 +242,7 @@ pulumi_harness/platform/gitlab_connector.py,sha256=wzCqwOmvxH3NydopJ20sinYmTAfoE
239
242
  pulumi_harness/platform/gitops_app_project.py,sha256=YhdmkZwxmHj4jpMzY0EXkXN0KMIU0MJSZ3-dEbmdna4,21135
240
243
  pulumi_harness/platform/gitops_app_project_mapping.py,sha256=SCfcy-LFt-w5dmFS93pAnvJSO_m-N4Y9DCxSKmtewDk,18063
241
244
  pulumi_harness/platform/gitx_webhook.py,sha256=JPuPlAdlmAojn5k8J3U4J4GNOS_TyxqAv-DS7AYaA-o,23637
245
+ pulumi_harness/platform/har_registry.py,sha256=s4vLhlj17B3IqLI3edh2mXh_9J0rgrqIXaZgCWMTNf4,23119
242
246
  pulumi_harness/platform/helm_connector.py,sha256=JARN4Sx_SXfaERF8I-qOirqMtalMHHG0MLUnJVdsPO8,24405
243
247
  pulumi_harness/platform/iacm_default_pipeline.py,sha256=owzGAHl_Kn90-_wu1-eFGRTFkz-3zXMaejj3gXx4zKM,14187
244
248
  pulumi_harness/platform/infra_module.py,sha256=xLVodlJDPfH7_53NBWdDcAw6NgvCfnLLJAcqEUubiY0,30585
@@ -255,7 +259,7 @@ pulumi_harness/platform/nexus_connector.py,sha256=A4qgeDn-IC6QbHpY9I1fQF9yeX8P3i
255
259
  pulumi_harness/platform/notification_rule.py,sha256=aw2y6UP90OehyenmrxznKjaEl3DfHwPd26P8AY7jdlk,20482
256
260
  pulumi_harness/platform/oci_helm_connector.py,sha256=6xTx-8S34ngfgh92VcGgJalmfkJNmoQD2E6NA06vYwA,24556
257
261
  pulumi_harness/platform/organization.py,sha256=dgpcVkEdb2_BkQ9B2bfpDb-p8Y1eW6Xnr_E4mkLseRo,12068
258
- pulumi_harness/platform/outputs.py,sha256=4CWEueCzhsF9WP9fZ93ZegFW--ZljsO3pNlxWEcmXPI,951137
262
+ pulumi_harness/platform/outputs.py,sha256=st9SwnyxlixFW0fmUMhTyUQgPbKV0_DNRGJiYdmYrVI,963687
259
263
  pulumi_harness/platform/overrides.py,sha256=MFR60TQhKRDVVnfrxsp8Dz46Dsxyun_xMQvmI38U92c,27370
260
264
  pulumi_harness/platform/pagerduty_connector.py,sha256=p2h0nBESh5dPZV7lfR9rV39n_vwcsuWWYDLb1rJipp8,22761
261
265
  pulumi_harness/platform/pipeline.py,sha256=HW3yS504Rm70suBU8CYy9RP_nc425jZlEYcdvoJguZU,47460
@@ -305,7 +309,7 @@ pulumi_harness/service/outputs.py,sha256=jEI8NBaeHDnW-22YI9Yk-Sp5lvPelLoOnTBBgMZ
305
309
  pulumi_harness/service/ssh.py,sha256=FULtd3EFn_0pHthZzPwpUY26LFy1k178WBTBKPC_HEc,14924
306
310
  pulumi_harness/service/tanzu.py,sha256=AI3KuSH1y5_XPr6nxFjOIVpop_Mo4NvJbUc15ifDvT4,12965
307
311
  pulumi_harness/service/winrm.py,sha256=a1PCzjC8jAaYzhqPKghSS_iefY04xZszjpH9Vu78Blw,15056
308
- pulumi_harness-0.5.0a1736849468.dist-info/METADATA,sha256=HGzVT55lcHUQogW2gzdqMHJgrOUs1iE8jlSVMLdDDI0,1565
309
- pulumi_harness-0.5.0a1736849468.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
310
- pulumi_harness-0.5.0a1736849468.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
311
- pulumi_harness-0.5.0a1736849468.dist-info/RECORD,,
312
+ pulumi_harness-0.5.0a1737483916.dist-info/METADATA,sha256=lKZ33vc6ivmY1ImzvssUPFaECZIbGO82GmZLgaZt0AE,1565
313
+ pulumi_harness-0.5.0a1737483916.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
314
+ pulumi_harness-0.5.0a1737483916.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
315
+ pulumi_harness-0.5.0a1737483916.dist-info/RECORD,,