pulumi-harness 0.8.0a1747202107__py3-none-any.whl → 0.8.0a1747893453__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 +16 -0
- pulumi_harness/cluster/__init__.py +4 -0
- pulumi_harness/cluster/_inputs.py +992 -0
- pulumi_harness/cluster/get_orchestrator_config.py +175 -0
- pulumi_harness/cluster/orchestrator_config.py +295 -0
- pulumi_harness/cluster/outputs.py +644 -0
- pulumi_harness/platform/__init__.py +2 -0
- pulumi_harness/platform/_inputs.py +193 -0
- pulumi_harness/platform/connector_azure_repo.py +727 -0
- pulumi_harness/platform/db_instance.py +57 -2
- pulumi_harness/platform/get_connector_azure_repo.py +231 -0
- pulumi_harness/platform/get_db_instance.py +16 -1
- pulumi_harness/platform/outputs.py +275 -0
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1747202107.dist-info → pulumi_harness-0.8.0a1747893453.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1747202107.dist-info → pulumi_harness-0.8.0a1747893453.dist-info}/RECORD +18 -12
- {pulumi_harness-0.8.0a1747202107.dist-info → pulumi_harness-0.8.0a1747893453.dist-info}/WHEEL +1 -1
- {pulumi_harness-0.8.0a1747202107.dist-info → pulumi_harness-0.8.0a1747893453.dist-info}/top_level.txt +0 -0
|
@@ -51,6 +51,10 @@ __all__ = [
|
|
|
51
51
|
'BitbucketConnectorCredentialsHttp',
|
|
52
52
|
'BitbucketConnectorCredentialsSsh',
|
|
53
53
|
'ConnectorAzureArtifactsCredentials',
|
|
54
|
+
'ConnectorAzureRepoApiAuthentication',
|
|
55
|
+
'ConnectorAzureRepoCredentials',
|
|
56
|
+
'ConnectorAzureRepoCredentialsHttp',
|
|
57
|
+
'ConnectorAzureRepoCredentialsSsh',
|
|
54
58
|
'ConnectorCustomSecretManagerTemplateInput',
|
|
55
59
|
'ConnectorCustomSecretManagerTemplateInputEnvironmentVariable',
|
|
56
60
|
'ConnectorCustomhealthsourceHeader',
|
|
@@ -287,6 +291,10 @@ __all__ = [
|
|
|
287
291
|
'GetBitbucketConnectorCredentialHttpResult',
|
|
288
292
|
'GetBitbucketConnectorCredentialSshResult',
|
|
289
293
|
'GetCcmFiltersFilterPropertyResult',
|
|
294
|
+
'GetConnectorAzureRepoApiAuthenticationResult',
|
|
295
|
+
'GetConnectorAzureRepoCredentialResult',
|
|
296
|
+
'GetConnectorAzureRepoCredentialHttpResult',
|
|
297
|
+
'GetConnectorAzureRepoCredentialSshResult',
|
|
290
298
|
'GetConnectorCustomSecretManagerTemplateInputResult',
|
|
291
299
|
'GetConnectorCustomSecretManagerTemplateInputEnvironmentVariableResult',
|
|
292
300
|
'GetConnectorCustomhealthsourceHeaderResult',
|
|
@@ -2261,6 +2269,168 @@ class ConnectorAzureArtifactsCredentials(dict):
|
|
|
2261
2269
|
return pulumi.get(self, "token_ref")
|
|
2262
2270
|
|
|
2263
2271
|
|
|
2272
|
+
@pulumi.output_type
|
|
2273
|
+
class ConnectorAzureRepoApiAuthentication(dict):
|
|
2274
|
+
@staticmethod
|
|
2275
|
+
def __key_warning(key: str):
|
|
2276
|
+
suggest = None
|
|
2277
|
+
if key == "tokenRef":
|
|
2278
|
+
suggest = "token_ref"
|
|
2279
|
+
|
|
2280
|
+
if suggest:
|
|
2281
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorAzureRepoApiAuthentication. Access the value via the '{suggest}' property getter instead.")
|
|
2282
|
+
|
|
2283
|
+
def __getitem__(self, key: str) -> Any:
|
|
2284
|
+
ConnectorAzureRepoApiAuthentication.__key_warning(key)
|
|
2285
|
+
return super().__getitem__(key)
|
|
2286
|
+
|
|
2287
|
+
def get(self, key: str, default = None) -> Any:
|
|
2288
|
+
ConnectorAzureRepoApiAuthentication.__key_warning(key)
|
|
2289
|
+
return super().get(key, default)
|
|
2290
|
+
|
|
2291
|
+
def __init__(__self__, *,
|
|
2292
|
+
token_ref: builtins.str):
|
|
2293
|
+
"""
|
|
2294
|
+
:param builtins.str token_ref: Personal access token for interacting with the azure api. 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}.
|
|
2295
|
+
"""
|
|
2296
|
+
pulumi.set(__self__, "token_ref", token_ref)
|
|
2297
|
+
|
|
2298
|
+
@property
|
|
2299
|
+
@pulumi.getter(name="tokenRef")
|
|
2300
|
+
def token_ref(self) -> builtins.str:
|
|
2301
|
+
"""
|
|
2302
|
+
Personal access token for interacting with the azure api. 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}.
|
|
2303
|
+
"""
|
|
2304
|
+
return pulumi.get(self, "token_ref")
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
@pulumi.output_type
|
|
2308
|
+
class ConnectorAzureRepoCredentials(dict):
|
|
2309
|
+
def __init__(__self__, *,
|
|
2310
|
+
http: Optional['outputs.ConnectorAzureRepoCredentialsHttp'] = None,
|
|
2311
|
+
ssh: Optional['outputs.ConnectorAzureRepoCredentialsSsh'] = None):
|
|
2312
|
+
"""
|
|
2313
|
+
:param 'ConnectorAzureRepoCredentialsHttpArgs' http: Authenticate using Username and token over http(s) for the connection.
|
|
2314
|
+
:param 'ConnectorAzureRepoCredentialsSshArgs' ssh: Authenticate using SSH for the connection.
|
|
2315
|
+
"""
|
|
2316
|
+
if http is not None:
|
|
2317
|
+
pulumi.set(__self__, "http", http)
|
|
2318
|
+
if ssh is not None:
|
|
2319
|
+
pulumi.set(__self__, "ssh", ssh)
|
|
2320
|
+
|
|
2321
|
+
@property
|
|
2322
|
+
@pulumi.getter
|
|
2323
|
+
def http(self) -> Optional['outputs.ConnectorAzureRepoCredentialsHttp']:
|
|
2324
|
+
"""
|
|
2325
|
+
Authenticate using Username and token over http(s) for the connection.
|
|
2326
|
+
"""
|
|
2327
|
+
return pulumi.get(self, "http")
|
|
2328
|
+
|
|
2329
|
+
@property
|
|
2330
|
+
@pulumi.getter
|
|
2331
|
+
def ssh(self) -> Optional['outputs.ConnectorAzureRepoCredentialsSsh']:
|
|
2332
|
+
"""
|
|
2333
|
+
Authenticate using SSH for the connection.
|
|
2334
|
+
"""
|
|
2335
|
+
return pulumi.get(self, "ssh")
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
@pulumi.output_type
|
|
2339
|
+
class ConnectorAzureRepoCredentialsHttp(dict):
|
|
2340
|
+
@staticmethod
|
|
2341
|
+
def __key_warning(key: str):
|
|
2342
|
+
suggest = None
|
|
2343
|
+
if key == "tokenRef":
|
|
2344
|
+
suggest = "token_ref"
|
|
2345
|
+
elif key == "usernameRef":
|
|
2346
|
+
suggest = "username_ref"
|
|
2347
|
+
|
|
2348
|
+
if suggest:
|
|
2349
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorAzureRepoCredentialsHttp. Access the value via the '{suggest}' property getter instead.")
|
|
2350
|
+
|
|
2351
|
+
def __getitem__(self, key: str) -> Any:
|
|
2352
|
+
ConnectorAzureRepoCredentialsHttp.__key_warning(key)
|
|
2353
|
+
return super().__getitem__(key)
|
|
2354
|
+
|
|
2355
|
+
def get(self, key: str, default = None) -> Any:
|
|
2356
|
+
ConnectorAzureRepoCredentialsHttp.__key_warning(key)
|
|
2357
|
+
return super().get(key, default)
|
|
2358
|
+
|
|
2359
|
+
def __init__(__self__, *,
|
|
2360
|
+
token_ref: builtins.str,
|
|
2361
|
+
username: Optional[builtins.str] = None,
|
|
2362
|
+
username_ref: Optional[builtins.str] = None):
|
|
2363
|
+
"""
|
|
2364
|
+
:param builtins.str token_ref: Reference to a secret containing the personal access to use for authentication. 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}.
|
|
2365
|
+
:param builtins.str username: Username to use for authentication.
|
|
2366
|
+
:param builtins.str username_ref: Reference to a secret containing the username to use for authentication. 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}.
|
|
2367
|
+
"""
|
|
2368
|
+
pulumi.set(__self__, "token_ref", token_ref)
|
|
2369
|
+
if username is not None:
|
|
2370
|
+
pulumi.set(__self__, "username", username)
|
|
2371
|
+
if username_ref is not None:
|
|
2372
|
+
pulumi.set(__self__, "username_ref", username_ref)
|
|
2373
|
+
|
|
2374
|
+
@property
|
|
2375
|
+
@pulumi.getter(name="tokenRef")
|
|
2376
|
+
def token_ref(self) -> builtins.str:
|
|
2377
|
+
"""
|
|
2378
|
+
Reference to a secret containing the personal access to use for authentication. 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}.
|
|
2379
|
+
"""
|
|
2380
|
+
return pulumi.get(self, "token_ref")
|
|
2381
|
+
|
|
2382
|
+
@property
|
|
2383
|
+
@pulumi.getter
|
|
2384
|
+
def username(self) -> Optional[builtins.str]:
|
|
2385
|
+
"""
|
|
2386
|
+
Username to use for authentication.
|
|
2387
|
+
"""
|
|
2388
|
+
return pulumi.get(self, "username")
|
|
2389
|
+
|
|
2390
|
+
@property
|
|
2391
|
+
@pulumi.getter(name="usernameRef")
|
|
2392
|
+
def username_ref(self) -> Optional[builtins.str]:
|
|
2393
|
+
"""
|
|
2394
|
+
Reference to a secret containing the username to use for authentication. 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}.
|
|
2395
|
+
"""
|
|
2396
|
+
return pulumi.get(self, "username_ref")
|
|
2397
|
+
|
|
2398
|
+
|
|
2399
|
+
@pulumi.output_type
|
|
2400
|
+
class ConnectorAzureRepoCredentialsSsh(dict):
|
|
2401
|
+
@staticmethod
|
|
2402
|
+
def __key_warning(key: str):
|
|
2403
|
+
suggest = None
|
|
2404
|
+
if key == "sshKeyRef":
|
|
2405
|
+
suggest = "ssh_key_ref"
|
|
2406
|
+
|
|
2407
|
+
if suggest:
|
|
2408
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectorAzureRepoCredentialsSsh. Access the value via the '{suggest}' property getter instead.")
|
|
2409
|
+
|
|
2410
|
+
def __getitem__(self, key: str) -> Any:
|
|
2411
|
+
ConnectorAzureRepoCredentialsSsh.__key_warning(key)
|
|
2412
|
+
return super().__getitem__(key)
|
|
2413
|
+
|
|
2414
|
+
def get(self, key: str, default = None) -> Any:
|
|
2415
|
+
ConnectorAzureRepoCredentialsSsh.__key_warning(key)
|
|
2416
|
+
return super().get(key, default)
|
|
2417
|
+
|
|
2418
|
+
def __init__(__self__, *,
|
|
2419
|
+
ssh_key_ref: builtins.str):
|
|
2420
|
+
"""
|
|
2421
|
+
:param builtins.str ssh_key_ref: Reference to the Harness secret containing the ssh 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}.
|
|
2422
|
+
"""
|
|
2423
|
+
pulumi.set(__self__, "ssh_key_ref", ssh_key_ref)
|
|
2424
|
+
|
|
2425
|
+
@property
|
|
2426
|
+
@pulumi.getter(name="sshKeyRef")
|
|
2427
|
+
def ssh_key_ref(self) -> builtins.str:
|
|
2428
|
+
"""
|
|
2429
|
+
Reference to the Harness secret containing the ssh 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}.
|
|
2430
|
+
"""
|
|
2431
|
+
return pulumi.get(self, "ssh_key_ref")
|
|
2432
|
+
|
|
2433
|
+
|
|
2264
2434
|
@pulumi.output_type
|
|
2265
2435
|
class ConnectorCustomSecretManagerTemplateInput(dict):
|
|
2266
2436
|
@staticmethod
|
|
@@ -17621,6 +17791,111 @@ class GetCcmFiltersFilterPropertyResult(dict):
|
|
|
17621
17791
|
return pulumi.get(self, "tags")
|
|
17622
17792
|
|
|
17623
17793
|
|
|
17794
|
+
@pulumi.output_type
|
|
17795
|
+
class GetConnectorAzureRepoApiAuthenticationResult(dict):
|
|
17796
|
+
def __init__(__self__, *,
|
|
17797
|
+
token_ref: builtins.str):
|
|
17798
|
+
"""
|
|
17799
|
+
:param builtins.str token_ref: Personal access token for interacting with the azure repo api. 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}.
|
|
17800
|
+
"""
|
|
17801
|
+
pulumi.set(__self__, "token_ref", token_ref)
|
|
17802
|
+
|
|
17803
|
+
@property
|
|
17804
|
+
@pulumi.getter(name="tokenRef")
|
|
17805
|
+
def token_ref(self) -> builtins.str:
|
|
17806
|
+
"""
|
|
17807
|
+
Personal access token for interacting with the azure repo api. 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}.
|
|
17808
|
+
"""
|
|
17809
|
+
return pulumi.get(self, "token_ref")
|
|
17810
|
+
|
|
17811
|
+
|
|
17812
|
+
@pulumi.output_type
|
|
17813
|
+
class GetConnectorAzureRepoCredentialResult(dict):
|
|
17814
|
+
def __init__(__self__, *,
|
|
17815
|
+
https: Sequence['outputs.GetConnectorAzureRepoCredentialHttpResult'],
|
|
17816
|
+
sshes: Sequence['outputs.GetConnectorAzureRepoCredentialSshResult']):
|
|
17817
|
+
"""
|
|
17818
|
+
:param Sequence['GetConnectorAzureRepoCredentialHttpArgs'] https: Authenticate using Username and password over http(s) for the connection.
|
|
17819
|
+
:param Sequence['GetConnectorAzureRepoCredentialSshArgs'] sshes: Authenticate using SSH for the connection.
|
|
17820
|
+
"""
|
|
17821
|
+
pulumi.set(__self__, "https", https)
|
|
17822
|
+
pulumi.set(__self__, "sshes", sshes)
|
|
17823
|
+
|
|
17824
|
+
@property
|
|
17825
|
+
@pulumi.getter
|
|
17826
|
+
def https(self) -> Sequence['outputs.GetConnectorAzureRepoCredentialHttpResult']:
|
|
17827
|
+
"""
|
|
17828
|
+
Authenticate using Username and password over http(s) for the connection.
|
|
17829
|
+
"""
|
|
17830
|
+
return pulumi.get(self, "https")
|
|
17831
|
+
|
|
17832
|
+
@property
|
|
17833
|
+
@pulumi.getter
|
|
17834
|
+
def sshes(self) -> Sequence['outputs.GetConnectorAzureRepoCredentialSshResult']:
|
|
17835
|
+
"""
|
|
17836
|
+
Authenticate using SSH for the connection.
|
|
17837
|
+
"""
|
|
17838
|
+
return pulumi.get(self, "sshes")
|
|
17839
|
+
|
|
17840
|
+
|
|
17841
|
+
@pulumi.output_type
|
|
17842
|
+
class GetConnectorAzureRepoCredentialHttpResult(dict):
|
|
17843
|
+
def __init__(__self__, *,
|
|
17844
|
+
token_ref: builtins.str,
|
|
17845
|
+
username: builtins.str,
|
|
17846
|
+
username_ref: builtins.str):
|
|
17847
|
+
"""
|
|
17848
|
+
:param builtins.str token_ref: Reference to a secret containing the personal access to use for authentication. 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}.
|
|
17849
|
+
:param builtins.str username: Username to use for authentication.
|
|
17850
|
+
:param builtins.str username_ref: Reference to a secret containing the username to use for authentication. 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}.
|
|
17851
|
+
"""
|
|
17852
|
+
pulumi.set(__self__, "token_ref", token_ref)
|
|
17853
|
+
pulumi.set(__self__, "username", username)
|
|
17854
|
+
pulumi.set(__self__, "username_ref", username_ref)
|
|
17855
|
+
|
|
17856
|
+
@property
|
|
17857
|
+
@pulumi.getter(name="tokenRef")
|
|
17858
|
+
def token_ref(self) -> builtins.str:
|
|
17859
|
+
"""
|
|
17860
|
+
Reference to a secret containing the personal access to use for authentication. 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}.
|
|
17861
|
+
"""
|
|
17862
|
+
return pulumi.get(self, "token_ref")
|
|
17863
|
+
|
|
17864
|
+
@property
|
|
17865
|
+
@pulumi.getter
|
|
17866
|
+
def username(self) -> builtins.str:
|
|
17867
|
+
"""
|
|
17868
|
+
Username to use for authentication.
|
|
17869
|
+
"""
|
|
17870
|
+
return pulumi.get(self, "username")
|
|
17871
|
+
|
|
17872
|
+
@property
|
|
17873
|
+
@pulumi.getter(name="usernameRef")
|
|
17874
|
+
def username_ref(self) -> builtins.str:
|
|
17875
|
+
"""
|
|
17876
|
+
Reference to a secret containing the username to use for authentication. 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}.
|
|
17877
|
+
"""
|
|
17878
|
+
return pulumi.get(self, "username_ref")
|
|
17879
|
+
|
|
17880
|
+
|
|
17881
|
+
@pulumi.output_type
|
|
17882
|
+
class GetConnectorAzureRepoCredentialSshResult(dict):
|
|
17883
|
+
def __init__(__self__, *,
|
|
17884
|
+
ssh_key_ref: builtins.str):
|
|
17885
|
+
"""
|
|
17886
|
+
:param builtins.str ssh_key_ref: Reference to the Harness secret containing the ssh 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}.
|
|
17887
|
+
"""
|
|
17888
|
+
pulumi.set(__self__, "ssh_key_ref", ssh_key_ref)
|
|
17889
|
+
|
|
17890
|
+
@property
|
|
17891
|
+
@pulumi.getter(name="sshKeyRef")
|
|
17892
|
+
def ssh_key_ref(self) -> builtins.str:
|
|
17893
|
+
"""
|
|
17894
|
+
Reference to the Harness secret containing the ssh 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}.
|
|
17895
|
+
"""
|
|
17896
|
+
return pulumi.get(self, "ssh_key_ref")
|
|
17897
|
+
|
|
17898
|
+
|
|
17624
17899
|
@pulumi.output_type
|
|
17625
17900
|
class GetConnectorCustomSecretManagerTemplateInputResult(dict):
|
|
17626
17901
|
def __init__(__self__, *,
|
{pulumi_harness-0.8.0a1747202107.dist-info → pulumi_harness-0.8.0a1747893453.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_harness/__init__.py,sha256=
|
|
1
|
+
pulumi_harness/__init__.py,sha256=yqB9Hz5y1FC4E4xtCZdbXgv8gPypFPtRi4dX1-48Rkc,30988
|
|
2
2
|
pulumi_harness/_inputs.py,sha256=zAr8gdNyEGE14sqJHEVJpuvqutByhm0VL01yWbzilNE,171190
|
|
3
3
|
pulumi_harness/_utilities.py,sha256=wVYBDa9gh5ia5lvDWHH5DiXvNmU3gwvwPntHu5K34CI,10835
|
|
4
4
|
pulumi_harness/add_user_to_group.py,sha256=U8dj_ZVsopxVQpdvmF2ZTxuZ1Pco4o4P94N7KnIsUgw,9000
|
|
@@ -29,7 +29,7 @@ pulumi_harness/outputs.py,sha256=XLhsNz-qeIZeZ1cNDkPTtqzyIuV2fagTjrpqxftGDNk,131
|
|
|
29
29
|
pulumi_harness/platform_api_key.py,sha256=Vh5loVcjEPGkGH4SVPEDTN14c73z_cdNmGwy3tDSCG0,27836
|
|
30
30
|
pulumi_harness/platform_ccm_filters.py,sha256=srHCHMsaB2H3h5kZoaV6bmBUCan2mi3n2O74bHAVmdg,21178
|
|
31
31
|
pulumi_harness/provider.py,sha256=OneHXaN2sdoshLLof2FSVXGYGKThVzARwOm0eK8O4bg,12491
|
|
32
|
-
pulumi_harness/pulumi-plugin.json,sha256=
|
|
32
|
+
pulumi_harness/pulumi-plugin.json,sha256=dzG1OTlO03GzKtxTajCcrBqVvjaWnujuYSVttVi7TbY,129
|
|
33
33
|
pulumi_harness/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
pulumi_harness/ssh_credential.py,sha256=X_Xfd0e2QsKIaJAO10JkPnTqtO92iYhHdPtGsTToCwU,18317
|
|
35
35
|
pulumi_harness/user.py,sha256=QYJFBfVAodUs_h0988TtUx64guR2z66sGyZQKf69hqk,19067
|
|
@@ -68,9 +68,13 @@ pulumi_harness/cloudprovider/kubernetes.py,sha256=3k-o4AGggw0ZyvEZwxtLJpQ-FAewot
|
|
|
68
68
|
pulumi_harness/cloudprovider/outputs.py,sha256=3uHUg4jFdUKekghCYFEk4WgaPJfF0JkZ9zcqYPVzqL0,27353
|
|
69
69
|
pulumi_harness/cloudprovider/spot.py,sha256=v4eLhDL0TvH5WbtPC7WP-a62L_QHRXjDL2dUXFqUhXs,11726
|
|
70
70
|
pulumi_harness/cloudprovider/tanzu.py,sha256=ja0kPj1NzFgm2WKaV3BKXwJeHo_MbpiPFBQQRhI0EKA,19022
|
|
71
|
-
pulumi_harness/cluster/__init__.py,sha256=
|
|
71
|
+
pulumi_harness/cluster/__init__.py,sha256=HosTQhwuJbtkDno3mMcc3Np3E_v2AzU7dwtNGTRxWw8,464
|
|
72
|
+
pulumi_harness/cluster/_inputs.py,sha256=wSkpdsIRA8kbCMCHzfr0DmAxPrpTedzAMPpUbCKzc78,35897
|
|
72
73
|
pulumi_harness/cluster/get_orchestrator.py,sha256=Nv0IH21au921PoCEgCp_-EF4xi8mTBVBFuHvZkJjVtE,5572
|
|
74
|
+
pulumi_harness/cluster/get_orchestrator_config.py,sha256=MbNSu8Yyv-WD7jzH-fP7ledTQXObJ4H1jh4u2fNLp4Q,8375
|
|
73
75
|
pulumi_harness/cluster/orchestrator.py,sha256=R3ooIsfEQOkIEXSarX5hRD-o1Gblt2CAlGJoKswJ8qw,11432
|
|
76
|
+
pulumi_harness/cluster/orchestrator_config.py,sha256=-PRc9kPDpcV10qAL7VE6q4xjk1Lp3tlDF_n5W8rj7ws,14782
|
|
77
|
+
pulumi_harness/cluster/outputs.py,sha256=tD9-A976bNH0nOOA265ptI5efWBhjvJx8UkwRGWWJuw,22923
|
|
74
78
|
pulumi_harness/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
75
79
|
pulumi_harness/config/__init__.pyi,sha256=FYTF7aRkJalSyAoEBCTIbq6184WIfl2QJ5EJ7p_bBnM,1403
|
|
76
80
|
pulumi_harness/config/vars.py,sha256=Wc0X5TkwhvVVVCq2hOSauU7OdywYDugidYVDGTSmKhs,2106
|
|
@@ -81,8 +85,8 @@ pulumi_harness/governance/get_rule_set.py,sha256=GC8tUOFlMZq-x3aufAU-KKB-JGqIc78
|
|
|
81
85
|
pulumi_harness/governance/rule.py,sha256=3ljqWyLSO_oyYZq723rpewyVVuIqER43bgpe1zUVIZE,13052
|
|
82
86
|
pulumi_harness/governance/rule_enforcement.py,sha256=9dZUZzGpsXjeb5hjsWhvHIo_F2iNcfmmCWocarSBbJI,32177
|
|
83
87
|
pulumi_harness/governance/rule_set.py,sha256=Kh3k-rqGW8YmA1tboX4Tvg-zFr1-Vug6XmzhcoSIDcY,13139
|
|
84
|
-
pulumi_harness/platform/__init__.py,sha256=
|
|
85
|
-
pulumi_harness/platform/_inputs.py,sha256=
|
|
88
|
+
pulumi_harness/platform/__init__.py,sha256=0Pkpg6F6CYA0WzYhn0qeG_iT4fdGtQ5bTMHJM1NKobM,7825
|
|
89
|
+
pulumi_harness/platform/_inputs.py,sha256=2s0FlYW2cXirw8gT-AKOaazkR2k6xeSBNjHYceCuT48,1067372
|
|
86
90
|
pulumi_harness/platform/app_dynamics_connector.py,sha256=xVvMtWfmZvSx3xSgrB6afACGoh_fkt-z-m7Vq2BROT0,31415
|
|
87
91
|
pulumi_harness/platform/artifactory_connector.py,sha256=0399F7q6LDq0simjmL2YkTSL1gNkEzo-cdtzLjQz0BQ,30483
|
|
88
92
|
pulumi_harness/platform/aws_cc_connector.py,sha256=e8tNUntvWOVqeMaAbXr4g0fn80lR5N4hEGiN2optDhI,31921
|
|
@@ -94,6 +98,7 @@ pulumi_harness/platform/azure_cloud_provider_connector.py,sha256=B_EuaUyKGFlPxNE
|
|
|
94
98
|
pulumi_harness/platform/azure_key_vault_connector.py,sha256=OB6ET_EIbqkaxMu3v8d69PfJf8GBDP5e0kr6UjR---w,36111
|
|
95
99
|
pulumi_harness/platform/bitbucket_connector.py,sha256=JMScPAL_XW1yw6Cr3p22kKcxE5AIsYifmnjnqPqsmaU,33303
|
|
96
100
|
pulumi_harness/platform/connector_azure_artifacts.py,sha256=0dLXKmsBzeKHxFfVJBb0jHVd8Oqi4W0RsKm5LyQ7D8I,22995
|
|
101
|
+
pulumi_harness/platform/connector_azure_repo.py,sha256=Oy3l8qQzdnumnPXAdewONWpzY-KqI6I3aNr4nfnSbM0,34452
|
|
97
102
|
pulumi_harness/platform/connector_custom_secret_manager.py,sha256=94g0BuJYjzrZuhJ7wKuX5n810XcjOZQvKiYxtFLEssg,41401
|
|
98
103
|
pulumi_harness/platform/connector_customhealthsource.py,sha256=mcCZdpqui1UE45SIiS8yRy7LHUXl16lMiyX7rmFXWUg,34683
|
|
99
104
|
pulumi_harness/platform/connector_gcp_kms.py,sha256=Fe9Es5Vq8GrdG12-i0HtLnsFqMdMHQ20JPFT1ScKPkw,40507
|
|
@@ -101,7 +106,7 @@ pulumi_harness/platform/connector_jdbc.py,sha256=h-Xkgpev7GPJRYi2Prhk03MkvQY3NRy
|
|
|
101
106
|
pulumi_harness/platform/connector_pdc.py,sha256=QbikFpjCPkEG2GgdjdxVfivLKbJ7sXIqlEZSX2T6FyA,21831
|
|
102
107
|
pulumi_harness/platform/connector_rancher.py,sha256=48QE4xxjT7qAd1ck7nEZUx0eJ0lN2c58fn-L86ltjpY,26290
|
|
103
108
|
pulumi_harness/platform/datadog_connector.py,sha256=twelaEnTQuf_3kQLHxFytlcfQT6nNqGAK7rFJvR9zoY,29640
|
|
104
|
-
pulumi_harness/platform/db_instance.py,sha256=
|
|
109
|
+
pulumi_harness/platform/db_instance.py,sha256=cM90SoRYwSro3lSFI3i4yEqb6xTQ9yefxm5p6O1os8k,27870
|
|
105
110
|
pulumi_harness/platform/db_schema.py,sha256=WDA8lvwQI8ffPW-kNaYLFCcWmRN3xlM4lDgFNwrtTYo,25063
|
|
106
111
|
pulumi_harness/platform/delegatetoken.py,sha256=n__V_vXLOCIxYlvc13onx1lOAXhKUCp9uF8O9wFyF98,21330
|
|
107
112
|
pulumi_harness/platform/docker_connector.py,sha256=SHsJiMiIQ3fI6WQ3eBLkOgPb2xOog5MivdrBPGQEP5Y,28771
|
|
@@ -133,6 +138,7 @@ pulumi_harness/platform/get_azure_cloud_provider_connector.py,sha256=KkWO3bGjECl
|
|
|
133
138
|
pulumi_harness/platform/get_azure_key_vault_connector.py,sha256=cZkaDUxFT1Nw2M5ew5A7R-i6vc9IcVnu6jBQps8jQtw,12590
|
|
134
139
|
pulumi_harness/platform/get_bitbucket_connector.py,sha256=S29xqZ-G_a-myayFyePOgCBVe4yB5luMG3yuEKSmTiU,11709
|
|
135
140
|
pulumi_harness/platform/get_ccm_filters.py,sha256=ISLDslbpZFwGvPlAcIctix3j4KClRRUquv5ONDibKlk,8369
|
|
141
|
+
pulumi_harness/platform/get_connector_azure_repo.py,sha256=jSAveTNKUNQ0TQ8ssCZ7Il90wZxA4xJy5_uPM-5V7Js,10405
|
|
136
142
|
pulumi_harness/platform/get_connector_custom_secret_manager.py,sha256=BX8bTWFc90m1YELwXLXT_5dxe82A85S6ZiJBd0uOqR8,14352
|
|
137
143
|
pulumi_harness/platform/get_connector_customhealthsource.py,sha256=CoLKp3jfNIBHnc3_eMEnn4NNTF1lCfECIMSva1VZ3bc,11522
|
|
138
144
|
pulumi_harness/platform/get_connector_gcp_kms.py,sha256=J5jDB76kfslIcp8EC4WchJ13DXH1QJPDLXAkeOmjvYY,11885
|
|
@@ -142,7 +148,7 @@ pulumi_harness/platform/get_connector_rancher.py,sha256=ODsmxDIoZXb_6kLsTTTF5Ovv
|
|
|
142
148
|
pulumi_harness/platform/get_current_account.py,sha256=-fNclGKWf5h_5gvsqyxCHn3MMDyqAFZQaP1h639RNXc,4228
|
|
143
149
|
pulumi_harness/platform/get_current_user.py,sha256=0lEnmj1IOY_OJy6QsytQrN71_dkOXrisaY6Go9x_8fo,9732
|
|
144
150
|
pulumi_harness/platform/get_datadog_connector.py,sha256=duZ9X6qrZRsHbkwpcsWiJjmPCzw3J4X6pcnB_NPqZIs,10911
|
|
145
|
-
pulumi_harness/platform/get_db_instance.py,sha256=
|
|
151
|
+
pulumi_harness/platform/get_db_instance.py,sha256=BoN6XX-kBZ3Ju8Amf4ztN1HpuOXZsuP2flxxSiegPxw,11072
|
|
146
152
|
pulumi_harness/platform/get_db_schema.py,sha256=dvtXKGFmNTqEaMERKo9rCNIE8p8IvsB4ywpYRjGA_EY,11040
|
|
147
153
|
pulumi_harness/platform/get_delegatetoken.py,sha256=Nh1h2Lj3-S0qE9dciLDXINIPxLlXG8PactMH6WVguFg,9024
|
|
148
154
|
pulumi_harness/platform/get_docker_connector.py,sha256=_iqWTaNJBI2Kx5L6WBwB05FDZk8AXd-AvFvYfr2re7M,9864
|
|
@@ -266,7 +272,7 @@ pulumi_harness/platform/nexus_connector.py,sha256=9u_9QV3WZms97syebrX8tnlFPYdZme
|
|
|
266
272
|
pulumi_harness/platform/notification_rule.py,sha256=_JQg_8n22a9StlU6L1OuYEdGFddbh0VVIbup90rYYfk,20949
|
|
267
273
|
pulumi_harness/platform/oci_helm_connector.py,sha256=Efnbwf7b9mJiAUW-Ot11e6LckEAT6oiCjoUQSfJvWoA,25779
|
|
268
274
|
pulumi_harness/platform/organization.py,sha256=0c-LQOg0CLq_sY5HCaXlpHOu5ANfECee6uaq9afMOGc,12653
|
|
269
|
-
pulumi_harness/platform/outputs.py,sha256=
|
|
275
|
+
pulumi_harness/platform/outputs.py,sha256=AgqGmilZY_5AgRcxsEifGUUJndVVW93UPeWyW4ntvF4,1079010
|
|
270
276
|
pulumi_harness/platform/overrides.py,sha256=P0ntjvie58C-Jl5LPBHeRFpWb4tJgJI0XqDTbMOpFko,28831
|
|
271
277
|
pulumi_harness/platform/pagerduty_connector.py,sha256=rriS0ctrc3k5VJnri6jMVwH-u9YEd8cXZrq-XxSpgaY,23862
|
|
272
278
|
pulumi_harness/platform/pipeline.py,sha256=R6vri0OGc_iuIZYScqfVaFKu97M_4Fpk8fnRpDAYbwM,48793
|
|
@@ -316,7 +322,7 @@ pulumi_harness/service/outputs.py,sha256=2Y2y2cwOVX26R2Jd-GJRL8NvGy-dpWO8CRI9acb
|
|
|
316
322
|
pulumi_harness/service/ssh.py,sha256=SV7RHCmLVdurVRk8-4I6efsJ-EmaacD5A_Ltu_tAc3Q,15490
|
|
317
323
|
pulumi_harness/service/tanzu.py,sha256=f-TcLI07lMCyM4J4LglV8IBWlFfouU3SdGi2or4rmuc,13409
|
|
318
324
|
pulumi_harness/service/winrm.py,sha256=ynOKy061dHS_rEGIJ1UFnTCiRFeec2sjuPbGRnHYaMo,15626
|
|
319
|
-
pulumi_harness-0.8.
|
|
320
|
-
pulumi_harness-0.8.
|
|
321
|
-
pulumi_harness-0.8.
|
|
322
|
-
pulumi_harness-0.8.
|
|
325
|
+
pulumi_harness-0.8.0a1747893453.dist-info/METADATA,sha256=E-I9M8bBrN4k65hpUVIiK_N1qr2bdScTysWl0fFq7UI,1568
|
|
326
|
+
pulumi_harness-0.8.0a1747893453.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
327
|
+
pulumi_harness-0.8.0a1747893453.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
|
|
328
|
+
pulumi_harness-0.8.0a1747893453.dist-info/RECORD,,
|
|
File without changes
|