pulumi-harness 0.5.0a1737092563__py3-none-any.whl → 0.6.0a1737524719__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.
- pulumi_harness/__init__.py +8 -0
- pulumi_harness/platform/__init__.py +2 -0
- pulumi_harness/platform/_inputs.py +478 -0
- pulumi_harness/platform/get_gitops_agent_deploy_yaml.py +41 -1
- pulumi_harness/platform/get_har_registry.py +248 -0
- pulumi_harness/platform/har_registry.py +571 -0
- pulumi_harness/platform/outputs.py +324 -0
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/METADATA +1 -1
- {pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/RECORD +12 -10
- {pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
@@ -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__, *,
|
{pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_harness/__init__.py,sha256=
|
|
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
|
|
@@ -29,7 +29,7 @@ pulumi_harness/outputs.py,sha256=zSnE-7EcRiG_xoQGZ-pg0VqPmTBS4k2hu931VCIF4I4,127
|
|
|
29
29
|
pulumi_harness/platform_api_key.py,sha256=XQJGZWCu8z9kovotS0jB2RPqLtJUmKkcXXNE73CyNWs,24200
|
|
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=
|
|
32
|
+
pulumi_harness/pulumi-plugin.json,sha256=rpWpDW2sBu9wY-PyU6i-db8NCcZGShsIrCmtAIXH1r0,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
|
|
@@ -81,8 +81,8 @@ pulumi_harness/governance/get_rule_set.py,sha256=noizppuLkLaVq1jecQ5DFals9UMOiwJ
|
|
|
81
81
|
pulumi_harness/governance/rule.py,sha256=zq8ralJggu3qdDgiRzp4j6hKIB2JWyMa-qN0Fh7Mssk,12418
|
|
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
|
-
pulumi_harness/platform/__init__.py,sha256=
|
|
85
|
-
pulumi_harness/platform/_inputs.py,sha256=
|
|
84
|
+
pulumi_harness/platform/__init__.py,sha256=cC8HM9K5XkxFNpvRpMQPUq6LbC685OvitDW-R10uocQ,7481
|
|
85
|
+
pulumi_harness/platform/_inputs.py,sha256=jy-N1eY1lQzhOMCUEuCLzUcB1A3836KvNu8gOLWjtq0,945517
|
|
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
|
|
@@ -161,7 +161,7 @@ pulumi_harness/platform/get_git_connector.py,sha256=WvtU2finHalQjSxAXtIGHdHkEpCd
|
|
|
161
161
|
pulumi_harness/platform/get_github_connector.py,sha256=ONkrxTd2kPcQMTqj1vVb0wdoYfGkfJb4Q1lzDgrgwiA,11959
|
|
162
162
|
pulumi_harness/platform/get_gitlab_connector.py,sha256=VVqONQDCg-o1YoZ1UG2rOrBVjLEELSTGe3TSVb1zS1c,11333
|
|
163
163
|
pulumi_harness/platform/get_gitops_agent.py,sha256=PhMMwXljRx2eq0gd-eQ5TJFTcQcMb0UZOPS0YxlbXZA,13394
|
|
164
|
-
pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=
|
|
164
|
+
pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=l7lEZTo9dgtDtyqIAQVIBSC9JlBfiwp6fkSiMtn3Q5Y,12864
|
|
165
165
|
pulumi_harness/platform/get_gitops_app_project.py,sha256=1LYKNsZe8XUskNsIK5H5H-Jam82Vc8c_B5ZlqCgUPvk,7825
|
|
166
166
|
pulumi_harness/platform/get_gitops_app_project_mapping.py,sha256=w6tztD72h5zICyESjJrVXZetGBEUQ0qnGbA8jiFYwhY,8522
|
|
167
167
|
pulumi_harness/platform/get_gitops_applications.py,sha256=ak6zpXzuwJUKGL79Ul-ngJqSZMIHTxeA8OZNzFq0W8Q,15189
|
|
@@ -171,6 +171,7 @@ pulumi_harness/platform/get_gitops_repo_cert.py,sha256=mhvL05086b2TTqgPipzO0s-BX
|
|
|
171
171
|
pulumi_harness/platform/get_gitops_repo_cred.py,sha256=JbhB3XNF9v_VLUzRWirkcc7gSpY01UVwO7O5aKUH-PM,8945
|
|
172
172
|
pulumi_harness/platform/get_gitops_repository.py,sha256=SucBxmwQRDZQ8_uEsq3DzF-lLLLR569GidCniD4uimw,8932
|
|
173
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
|
|
174
175
|
pulumi_harness/platform/get_helm_connector.py,sha256=g-l0MmiRBMcZplDxUn90JKXiSEio_SXcBXVWftJVMh8,8962
|
|
175
176
|
pulumi_harness/platform/get_iacm_default_pipeline.py,sha256=ZdZ-6H2SvZvBzeRXwqqXjAYRA48ORlrzHHs30lbcuo4,7074
|
|
176
177
|
pulumi_harness/platform/get_infra_module.py,sha256=OSTIpy9w73ssi30je6-knUFShzmPG73P6G-x0p7JxV8,13931
|
|
@@ -241,6 +242,7 @@ pulumi_harness/platform/gitlab_connector.py,sha256=wzCqwOmvxH3NydopJ20sinYmTAfoE
|
|
|
241
242
|
pulumi_harness/platform/gitops_app_project.py,sha256=YhdmkZwxmHj4jpMzY0EXkXN0KMIU0MJSZ3-dEbmdna4,21135
|
|
242
243
|
pulumi_harness/platform/gitops_app_project_mapping.py,sha256=SCfcy-LFt-w5dmFS93pAnvJSO_m-N4Y9DCxSKmtewDk,18063
|
|
243
244
|
pulumi_harness/platform/gitx_webhook.py,sha256=JPuPlAdlmAojn5k8J3U4J4GNOS_TyxqAv-DS7AYaA-o,23637
|
|
245
|
+
pulumi_harness/platform/har_registry.py,sha256=s4vLhlj17B3IqLI3edh2mXh_9J0rgrqIXaZgCWMTNf4,23119
|
|
244
246
|
pulumi_harness/platform/helm_connector.py,sha256=JARN4Sx_SXfaERF8I-qOirqMtalMHHG0MLUnJVdsPO8,24405
|
|
245
247
|
pulumi_harness/platform/iacm_default_pipeline.py,sha256=owzGAHl_Kn90-_wu1-eFGRTFkz-3zXMaejj3gXx4zKM,14187
|
|
246
248
|
pulumi_harness/platform/infra_module.py,sha256=xLVodlJDPfH7_53NBWdDcAw6NgvCfnLLJAcqEUubiY0,30585
|
|
@@ -257,7 +259,7 @@ pulumi_harness/platform/nexus_connector.py,sha256=A4qgeDn-IC6QbHpY9I1fQF9yeX8P3i
|
|
|
257
259
|
pulumi_harness/platform/notification_rule.py,sha256=aw2y6UP90OehyenmrxznKjaEl3DfHwPd26P8AY7jdlk,20482
|
|
258
260
|
pulumi_harness/platform/oci_helm_connector.py,sha256=6xTx-8S34ngfgh92VcGgJalmfkJNmoQD2E6NA06vYwA,24556
|
|
259
261
|
pulumi_harness/platform/organization.py,sha256=dgpcVkEdb2_BkQ9B2bfpDb-p8Y1eW6Xnr_E4mkLseRo,12068
|
|
260
|
-
pulumi_harness/platform/outputs.py,sha256=
|
|
262
|
+
pulumi_harness/platform/outputs.py,sha256=st9SwnyxlixFW0fmUMhTyUQgPbKV0_DNRGJiYdmYrVI,963687
|
|
261
263
|
pulumi_harness/platform/overrides.py,sha256=MFR60TQhKRDVVnfrxsp8Dz46Dsxyun_xMQvmI38U92c,27370
|
|
262
264
|
pulumi_harness/platform/pagerduty_connector.py,sha256=p2h0nBESh5dPZV7lfR9rV39n_vwcsuWWYDLb1rJipp8,22761
|
|
263
265
|
pulumi_harness/platform/pipeline.py,sha256=HW3yS504Rm70suBU8CYy9RP_nc425jZlEYcdvoJguZU,47460
|
|
@@ -307,7 +309,7 @@ pulumi_harness/service/outputs.py,sha256=jEI8NBaeHDnW-22YI9Yk-Sp5lvPelLoOnTBBgMZ
|
|
|
307
309
|
pulumi_harness/service/ssh.py,sha256=FULtd3EFn_0pHthZzPwpUY26LFy1k178WBTBKPC_HEc,14924
|
|
308
310
|
pulumi_harness/service/tanzu.py,sha256=AI3KuSH1y5_XPr6nxFjOIVpop_Mo4NvJbUc15ifDvT4,12965
|
|
309
311
|
pulumi_harness/service/winrm.py,sha256=a1PCzjC8jAaYzhqPKghSS_iefY04xZszjpH9Vu78Blw,15056
|
|
310
|
-
pulumi_harness-0.
|
|
311
|
-
pulumi_harness-0.
|
|
312
|
-
pulumi_harness-0.
|
|
313
|
-
pulumi_harness-0.
|
|
312
|
+
pulumi_harness-0.6.0a1737524719.dist-info/METADATA,sha256=JuL0ne-oCNUPnVZb0eAhvR-C6g43kzEgI2UqmTUXMTs,1565
|
|
313
|
+
pulumi_harness-0.6.0a1737524719.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
314
|
+
pulumi_harness-0.6.0a1737524719.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
|
|
315
|
+
pulumi_harness-0.6.0a1737524719.dist-info/RECORD,,
|
{pulumi_harness-0.5.0a1737092563.dist-info → pulumi_harness-0.6.0a1737524719.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|