pulumi-harness 0.8.0a1744436953__py3-none-any.whl → 0.8.0a1744782628__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 +314 -6
- pulumi_harness/platform/db_schema.py +116 -69
- pulumi_harness/platform/get_db_schema.py +44 -7
- pulumi_harness/platform/get_gitops_agent_deploy_yaml.py +21 -1
- pulumi_harness/platform/get_gitops_filters.py +182 -0
- pulumi_harness/platform/get_workspace.py +9 -6
- pulumi_harness/platform/github_connector.py +7 -7
- pulumi_harness/platform/gitops_filters.py +566 -0
- pulumi_harness/platform/outputs.py +132 -4
- pulumi_harness/platform/workspace.py +30 -18
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/RECORD +17 -15
- {pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/top_level.txt +0 -0
|
@@ -62,6 +62,7 @@ __all__ = [
|
|
|
62
62
|
'ConnectorJdbcCredentialsUsernamePassword',
|
|
63
63
|
'ConnectorPdcHost',
|
|
64
64
|
'ConnectorRancherBearerToken',
|
|
65
|
+
'DbSchemaChangelogScript',
|
|
65
66
|
'DbSchemaSchemaSource',
|
|
66
67
|
'DockerConnectorCredentials',
|
|
67
68
|
'ElasticsearchConnectorApiToken',
|
|
@@ -297,6 +298,7 @@ __all__ = [
|
|
|
297
298
|
'GetConnectorJdbcCredentialUsernamePasswordResult',
|
|
298
299
|
'GetConnectorPdcHostResult',
|
|
299
300
|
'GetConnectorRancherBearerTokenResult',
|
|
301
|
+
'GetDbSchemaChangelogScriptResult',
|
|
300
302
|
'GetDbSchemaSchemaSourceResult',
|
|
301
303
|
'GetDockerConnectorCredentialResult',
|
|
302
304
|
'GetElasticsearchConnectorApiTokenResult',
|
|
@@ -328,6 +330,7 @@ __all__ = [
|
|
|
328
330
|
'GetGitlabConnectorCredentialResult',
|
|
329
331
|
'GetGitlabConnectorCredentialHttpResult',
|
|
330
332
|
'GetGitlabConnectorCredentialSshResult',
|
|
333
|
+
'GetGitopsAgentDeployYamlArgocdSettingsResult',
|
|
331
334
|
'GetGitopsAgentDeployYamlProxyResult',
|
|
332
335
|
'GetGitopsAgentMetadataResult',
|
|
333
336
|
'GetGitopsAgentOperatorYamlProxyResult',
|
|
@@ -2877,6 +2880,61 @@ class ConnectorRancherBearerToken(dict):
|
|
|
2877
2880
|
return pulumi.get(self, "bearer_token_ref")
|
|
2878
2881
|
|
|
2879
2882
|
|
|
2883
|
+
@pulumi.output_type
|
|
2884
|
+
class DbSchemaChangelogScript(dict):
|
|
2885
|
+
def __init__(__self__, *,
|
|
2886
|
+
command: Optional[builtins.str] = None,
|
|
2887
|
+
image: Optional[builtins.str] = None,
|
|
2888
|
+
location: Optional[builtins.str] = None,
|
|
2889
|
+
shell: Optional[builtins.str] = None):
|
|
2890
|
+
"""
|
|
2891
|
+
:param builtins.str command: Script to clone changeSets
|
|
2892
|
+
:param builtins.str image: The fully-qualified name (FQN) of the image
|
|
2893
|
+
:param builtins.str location: Path to changeLog file
|
|
2894
|
+
:param builtins.str shell: Type of the shell. For example Sh or Bash
|
|
2895
|
+
"""
|
|
2896
|
+
if command is not None:
|
|
2897
|
+
pulumi.set(__self__, "command", command)
|
|
2898
|
+
if image is not None:
|
|
2899
|
+
pulumi.set(__self__, "image", image)
|
|
2900
|
+
if location is not None:
|
|
2901
|
+
pulumi.set(__self__, "location", location)
|
|
2902
|
+
if shell is not None:
|
|
2903
|
+
pulumi.set(__self__, "shell", shell)
|
|
2904
|
+
|
|
2905
|
+
@property
|
|
2906
|
+
@pulumi.getter
|
|
2907
|
+
def command(self) -> Optional[builtins.str]:
|
|
2908
|
+
"""
|
|
2909
|
+
Script to clone changeSets
|
|
2910
|
+
"""
|
|
2911
|
+
return pulumi.get(self, "command")
|
|
2912
|
+
|
|
2913
|
+
@property
|
|
2914
|
+
@pulumi.getter
|
|
2915
|
+
def image(self) -> Optional[builtins.str]:
|
|
2916
|
+
"""
|
|
2917
|
+
The fully-qualified name (FQN) of the image
|
|
2918
|
+
"""
|
|
2919
|
+
return pulumi.get(self, "image")
|
|
2920
|
+
|
|
2921
|
+
@property
|
|
2922
|
+
@pulumi.getter
|
|
2923
|
+
def location(self) -> Optional[builtins.str]:
|
|
2924
|
+
"""
|
|
2925
|
+
Path to changeLog file
|
|
2926
|
+
"""
|
|
2927
|
+
return pulumi.get(self, "location")
|
|
2928
|
+
|
|
2929
|
+
@property
|
|
2930
|
+
@pulumi.getter
|
|
2931
|
+
def shell(self) -> Optional[builtins.str]:
|
|
2932
|
+
"""
|
|
2933
|
+
Type of the shell. For example Sh or Bash
|
|
2934
|
+
"""
|
|
2935
|
+
return pulumi.get(self, "shell")
|
|
2936
|
+
|
|
2937
|
+
|
|
2880
2938
|
@pulumi.output_type
|
|
2881
2939
|
class DbSchemaSchemaSource(dict):
|
|
2882
2940
|
@staticmethod
|
|
@@ -16276,7 +16334,7 @@ class WorkspaceTerraformVariableFile(dict):
|
|
|
16276
16334
|
:param builtins.str repository_branch: Repository branch is the name of the branch to fetch the variables from. This cannot be set if repository commit or sha is set
|
|
16277
16335
|
:param builtins.str repository_commit: Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
|
|
16278
16336
|
:param builtins.str repository_path: Repository path is the path in which the variables reside.
|
|
16279
|
-
:param builtins.str repository_sha: Repository commit is
|
|
16337
|
+
:param builtins.str repository_sha: Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
16280
16338
|
"""
|
|
16281
16339
|
pulumi.set(__self__, "repository", repository)
|
|
16282
16340
|
pulumi.set(__self__, "repository_connector", repository_connector)
|
|
@@ -16333,7 +16391,7 @@ class WorkspaceTerraformVariableFile(dict):
|
|
|
16333
16391
|
@pulumi.getter(name="repositorySha")
|
|
16334
16392
|
def repository_sha(self) -> Optional[builtins.str]:
|
|
16335
16393
|
"""
|
|
16336
|
-
Repository commit is
|
|
16394
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
16337
16395
|
"""
|
|
16338
16396
|
return pulumi.get(self, "repository_sha")
|
|
16339
16397
|
|
|
@@ -17944,6 +18002,57 @@ class GetConnectorRancherBearerTokenResult(dict):
|
|
|
17944
18002
|
return pulumi.get(self, "rancher_url")
|
|
17945
18003
|
|
|
17946
18004
|
|
|
18005
|
+
@pulumi.output_type
|
|
18006
|
+
class GetDbSchemaChangelogScriptResult(dict):
|
|
18007
|
+
def __init__(__self__, *,
|
|
18008
|
+
command: builtins.str,
|
|
18009
|
+
image: builtins.str,
|
|
18010
|
+
location: builtins.str,
|
|
18011
|
+
shell: builtins.str):
|
|
18012
|
+
"""
|
|
18013
|
+
:param builtins.str command: Script to clone changeSets
|
|
18014
|
+
:param builtins.str image: The fully-qualified name (FQN) of the image
|
|
18015
|
+
:param builtins.str location: Path to changeLog file
|
|
18016
|
+
:param builtins.str shell: Type of the shell. For example Sh or Bash
|
|
18017
|
+
"""
|
|
18018
|
+
pulumi.set(__self__, "command", command)
|
|
18019
|
+
pulumi.set(__self__, "image", image)
|
|
18020
|
+
pulumi.set(__self__, "location", location)
|
|
18021
|
+
pulumi.set(__self__, "shell", shell)
|
|
18022
|
+
|
|
18023
|
+
@property
|
|
18024
|
+
@pulumi.getter
|
|
18025
|
+
def command(self) -> builtins.str:
|
|
18026
|
+
"""
|
|
18027
|
+
Script to clone changeSets
|
|
18028
|
+
"""
|
|
18029
|
+
return pulumi.get(self, "command")
|
|
18030
|
+
|
|
18031
|
+
@property
|
|
18032
|
+
@pulumi.getter
|
|
18033
|
+
def image(self) -> builtins.str:
|
|
18034
|
+
"""
|
|
18035
|
+
The fully-qualified name (FQN) of the image
|
|
18036
|
+
"""
|
|
18037
|
+
return pulumi.get(self, "image")
|
|
18038
|
+
|
|
18039
|
+
@property
|
|
18040
|
+
@pulumi.getter
|
|
18041
|
+
def location(self) -> builtins.str:
|
|
18042
|
+
"""
|
|
18043
|
+
Path to changeLog file
|
|
18044
|
+
"""
|
|
18045
|
+
return pulumi.get(self, "location")
|
|
18046
|
+
|
|
18047
|
+
@property
|
|
18048
|
+
@pulumi.getter
|
|
18049
|
+
def shell(self) -> builtins.str:
|
|
18050
|
+
"""
|
|
18051
|
+
Type of the shell. For example Sh or Bash
|
|
18052
|
+
"""
|
|
18053
|
+
return pulumi.get(self, "shell")
|
|
18054
|
+
|
|
18055
|
+
|
|
17947
18056
|
@pulumi.output_type
|
|
17948
18057
|
class GetDbSchemaSchemaSourceResult(dict):
|
|
17949
18058
|
def __init__(__self__, *,
|
|
@@ -19023,6 +19132,25 @@ class GetGitlabConnectorCredentialSshResult(dict):
|
|
|
19023
19132
|
return pulumi.get(self, "ssh_key_ref")
|
|
19024
19133
|
|
|
19025
19134
|
|
|
19135
|
+
@pulumi.output_type
|
|
19136
|
+
class GetGitopsAgentDeployYamlArgocdSettingsResult(dict):
|
|
19137
|
+
def __init__(__self__, *,
|
|
19138
|
+
enable_helm_path_traversal: Optional[builtins.bool] = None):
|
|
19139
|
+
"""
|
|
19140
|
+
:param builtins.bool enable_helm_path_traversal: Controls the Environment variable HELM*SECRETS*VALUES*ALLOW*PATH_TRAVERSAL to allow or deny dot-dot-slash values file paths. Disabled by default for security reasons. This config is pushed as an env variable to the repo-server.
|
|
19141
|
+
"""
|
|
19142
|
+
if enable_helm_path_traversal is not None:
|
|
19143
|
+
pulumi.set(__self__, "enable_helm_path_traversal", enable_helm_path_traversal)
|
|
19144
|
+
|
|
19145
|
+
@property
|
|
19146
|
+
@pulumi.getter(name="enableHelmPathTraversal")
|
|
19147
|
+
def enable_helm_path_traversal(self) -> Optional[builtins.bool]:
|
|
19148
|
+
"""
|
|
19149
|
+
Controls the Environment variable HELM*SECRETS*VALUES*ALLOW*PATH_TRAVERSAL to allow or deny dot-dot-slash values file paths. Disabled by default for security reasons. This config is pushed as an env variable to the repo-server.
|
|
19150
|
+
"""
|
|
19151
|
+
return pulumi.get(self, "enable_helm_path_traversal")
|
|
19152
|
+
|
|
19153
|
+
|
|
19026
19154
|
@pulumi.output_type
|
|
19027
19155
|
class GetGitopsAgentDeployYamlProxyResult(dict):
|
|
19028
19156
|
def __init__(__self__, *,
|
|
@@ -24990,7 +25118,7 @@ class GetWorkspaceTerraformVariableFileResult(dict):
|
|
|
24990
25118
|
:param builtins.str repository_commit: Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
|
|
24991
25119
|
:param builtins.str repository_connector: Repository connector is the reference to the connector used to fetch the variables.
|
|
24992
25120
|
:param builtins.str repository_path: Repository path is the path in which the variables reside.
|
|
24993
|
-
:param builtins.str repository_sha: Repository commit is
|
|
25121
|
+
:param builtins.str repository_sha: Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
24994
25122
|
"""
|
|
24995
25123
|
pulumi.set(__self__, "repository", repository)
|
|
24996
25124
|
pulumi.set(__self__, "repository_branch", repository_branch)
|
|
@@ -25043,7 +25171,7 @@ class GetWorkspaceTerraformVariableFileResult(dict):
|
|
|
25043
25171
|
@pulumi.getter(name="repositorySha")
|
|
25044
25172
|
def repository_sha(self) -> builtins.str:
|
|
25045
25173
|
"""
|
|
25046
|
-
Repository commit is
|
|
25174
|
+
Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
|
|
25047
25175
|
"""
|
|
25048
25176
|
return pulumi.get(self, "repository_sha")
|
|
25049
25177
|
|
|
@@ -59,9 +59,9 @@ class WorkspaceArgs:
|
|
|
59
59
|
:param pulumi.Input[builtins.str] name: Name of the resource.
|
|
60
60
|
:param pulumi.Input[builtins.str] repository_branch: Repository branch is the name of the branch to fetch the code from. This cannot be set if repository commit or sha is set.
|
|
61
61
|
:param pulumi.Input[builtins.str] repository_commit: Repository commit is tag to fetch the code from. This cannot be set if repository branch or sha is set.
|
|
62
|
-
:param pulumi.Input[builtins.str] repository_sha: Repository commit is
|
|
62
|
+
:param pulumi.Input[builtins.str] repository_sha: Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
63
63
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tags to associate with the resource.
|
|
64
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable
|
|
64
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable sets to use.
|
|
65
65
|
"""
|
|
66
66
|
pulumi.set(__self__, "cost_estimation_enabled", cost_estimation_enabled)
|
|
67
67
|
pulumi.set(__self__, "identifier", identifier)
|
|
@@ -286,7 +286,7 @@ class WorkspaceArgs:
|
|
|
286
286
|
@pulumi.getter(name="repositorySha")
|
|
287
287
|
def repository_sha(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
288
288
|
"""
|
|
289
|
-
Repository commit is
|
|
289
|
+
Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
290
290
|
"""
|
|
291
291
|
return pulumi.get(self, "repository_sha")
|
|
292
292
|
|
|
@@ -328,7 +328,7 @@ class WorkspaceArgs:
|
|
|
328
328
|
@pulumi.getter(name="variableSets")
|
|
329
329
|
def variable_sets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
|
330
330
|
"""
|
|
331
|
-
Variable
|
|
331
|
+
Variable sets to use.
|
|
332
332
|
"""
|
|
333
333
|
return pulumi.get(self, "variable_sets")
|
|
334
334
|
|
|
@@ -377,9 +377,9 @@ class _WorkspaceState:
|
|
|
377
377
|
:param pulumi.Input[builtins.str] repository_commit: Repository commit is tag to fetch the code from. This cannot be set if repository branch or sha is set.
|
|
378
378
|
:param pulumi.Input[builtins.str] repository_connector: Repository connector is the reference to the connector used to fetch the code.
|
|
379
379
|
:param pulumi.Input[builtins.str] repository_path: Repository path is the path in which the code resides.
|
|
380
|
-
:param pulumi.Input[builtins.str] repository_sha: Repository commit is
|
|
380
|
+
:param pulumi.Input[builtins.str] repository_sha: Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
381
381
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tags to associate with the resource.
|
|
382
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable
|
|
382
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable sets to use.
|
|
383
383
|
"""
|
|
384
384
|
if cost_estimation_enabled is not None:
|
|
385
385
|
pulumi.set(__self__, "cost_estimation_enabled", cost_estimation_enabled)
|
|
@@ -614,7 +614,7 @@ class _WorkspaceState:
|
|
|
614
614
|
@pulumi.getter(name="repositorySha")
|
|
615
615
|
def repository_sha(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
616
616
|
"""
|
|
617
|
-
Repository commit is
|
|
617
|
+
Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
618
618
|
"""
|
|
619
619
|
return pulumi.get(self, "repository_sha")
|
|
620
620
|
|
|
@@ -656,7 +656,7 @@ class _WorkspaceState:
|
|
|
656
656
|
@pulumi.getter(name="variableSets")
|
|
657
657
|
def variable_sets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
|
658
658
|
"""
|
|
659
|
-
Variable
|
|
659
|
+
Variable sets to use.
|
|
660
660
|
"""
|
|
661
661
|
return pulumi.get(self, "variable_sets")
|
|
662
662
|
|
|
@@ -758,13 +758,19 @@ class Workspace(pulumi.CustomResource):
|
|
|
758
758
|
"repository_connector": test["id"],
|
|
759
759
|
},
|
|
760
760
|
],
|
|
761
|
-
variable_sets=[test_harness_platform_infra_variable_set["id"]]
|
|
761
|
+
variable_sets=[test_harness_platform_infra_variable_set["id"]],
|
|
762
|
+
default_pipelines={
|
|
763
|
+
"destroy": "destroy_pipeline_id",
|
|
764
|
+
"drift": "drift_pipeline_id",
|
|
765
|
+
"plan": "plan_pipeline_id",
|
|
766
|
+
"apply": "apply_pipeline_id",
|
|
767
|
+
})
|
|
762
768
|
```
|
|
763
769
|
|
|
764
770
|
## Import
|
|
765
771
|
|
|
766
772
|
```sh
|
|
767
|
-
$ pulumi import harness:platform/workspace:Workspace example <org_id>/<project_id>/<
|
|
773
|
+
$ pulumi import harness:platform/workspace:Workspace example <org_id>/<project_id>/<workspace_id>
|
|
768
774
|
```
|
|
769
775
|
|
|
770
776
|
:param str resource_name: The name of the resource.
|
|
@@ -783,9 +789,9 @@ class Workspace(pulumi.CustomResource):
|
|
|
783
789
|
:param pulumi.Input[builtins.str] repository_commit: Repository commit is tag to fetch the code from. This cannot be set if repository branch or sha is set.
|
|
784
790
|
:param pulumi.Input[builtins.str] repository_connector: Repository connector is the reference to the connector used to fetch the code.
|
|
785
791
|
:param pulumi.Input[builtins.str] repository_path: Repository path is the path in which the code resides.
|
|
786
|
-
:param pulumi.Input[builtins.str] repository_sha: Repository commit is
|
|
792
|
+
:param pulumi.Input[builtins.str] repository_sha: Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
787
793
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tags to associate with the resource.
|
|
788
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable
|
|
794
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable sets to use.
|
|
789
795
|
"""
|
|
790
796
|
...
|
|
791
797
|
@overload
|
|
@@ -859,13 +865,19 @@ class Workspace(pulumi.CustomResource):
|
|
|
859
865
|
"repository_connector": test["id"],
|
|
860
866
|
},
|
|
861
867
|
],
|
|
862
|
-
variable_sets=[test_harness_platform_infra_variable_set["id"]]
|
|
868
|
+
variable_sets=[test_harness_platform_infra_variable_set["id"]],
|
|
869
|
+
default_pipelines={
|
|
870
|
+
"destroy": "destroy_pipeline_id",
|
|
871
|
+
"drift": "drift_pipeline_id",
|
|
872
|
+
"plan": "plan_pipeline_id",
|
|
873
|
+
"apply": "apply_pipeline_id",
|
|
874
|
+
})
|
|
863
875
|
```
|
|
864
876
|
|
|
865
877
|
## Import
|
|
866
878
|
|
|
867
879
|
```sh
|
|
868
|
-
$ pulumi import harness:platform/workspace:Workspace example <org_id>/<project_id>/<
|
|
880
|
+
$ pulumi import harness:platform/workspace:Workspace example <org_id>/<project_id>/<workspace_id>
|
|
869
881
|
```
|
|
870
882
|
|
|
871
883
|
:param str resource_name: The name of the resource.
|
|
@@ -1006,9 +1018,9 @@ class Workspace(pulumi.CustomResource):
|
|
|
1006
1018
|
:param pulumi.Input[builtins.str] repository_commit: Repository commit is tag to fetch the code from. This cannot be set if repository branch or sha is set.
|
|
1007
1019
|
:param pulumi.Input[builtins.str] repository_connector: Repository connector is the reference to the connector used to fetch the code.
|
|
1008
1020
|
:param pulumi.Input[builtins.str] repository_path: Repository path is the path in which the code resides.
|
|
1009
|
-
:param pulumi.Input[builtins.str] repository_sha: Repository commit is
|
|
1021
|
+
:param pulumi.Input[builtins.str] repository_sha: Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
1010
1022
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: Tags to associate with the resource.
|
|
1011
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable
|
|
1023
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] variable_sets: Variable sets to use.
|
|
1012
1024
|
"""
|
|
1013
1025
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1014
1026
|
|
|
@@ -1163,7 +1175,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
1163
1175
|
@pulumi.getter(name="repositorySha")
|
|
1164
1176
|
def repository_sha(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1165
1177
|
"""
|
|
1166
|
-
Repository commit is
|
|
1178
|
+
Repository commit is commit SHA to fetch the code from. This cannot be set if repository branch or commit is set.
|
|
1167
1179
|
"""
|
|
1168
1180
|
return pulumi.get(self, "repository_sha")
|
|
1169
1181
|
|
|
@@ -1189,7 +1201,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
1189
1201
|
@pulumi.getter(name="variableSets")
|
|
1190
1202
|
def variable_sets(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
|
1191
1203
|
"""
|
|
1192
|
-
Variable
|
|
1204
|
+
Variable sets to use.
|
|
1193
1205
|
"""
|
|
1194
1206
|
return pulumi.get(self, "variable_sets")
|
|
1195
1207
|
|
{pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pulumi_harness/__init__.py,sha256=
|
|
1
|
+
pulumi_harness/__init__.py,sha256=xWaSj05a0S61qGASRx2k_AXyAN76vbvY1KKoKWTnHBU,30583
|
|
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=YddYzIReN60MMhnjYOhSVcg1DnqL3uhpXOR3MsNEob8,8934
|
|
@@ -29,7 +29,7 @@ pulumi_harness/outputs.py,sha256=XLhsNz-qeIZeZ1cNDkPTtqzyIuV2fagTjrpqxftGDNk,131
|
|
|
29
29
|
pulumi_harness/platform_api_key.py,sha256=WOMXekrcKnJVmoPiK_HUNAzNZkXK_ogYsOSL33sHpOs,27770
|
|
30
30
|
pulumi_harness/platform_ccm_filters.py,sha256=Ho_6Zb23wM9qU2atrAkXzInDZ_eHF4cFZU9MxvnCTAo,21104
|
|
31
31
|
pulumi_harness/provider.py,sha256=0hzTJCZxkcKMTPFPdg-rw8YkyM5htloTeYBCF5MBZdI,11574
|
|
32
|
-
pulumi_harness/pulumi-plugin.json,sha256=
|
|
32
|
+
pulumi_harness/pulumi-plugin.json,sha256=byml6ocGUTd0Akdq_W0FnrS3T_25VRmMcatDbe2aw8U,129
|
|
33
33
|
pulumi_harness/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
pulumi_harness/ssh_credential.py,sha256=IaZnpXzFM0CWSxlnotILBUNqSS_SuMe_usKBYP3TK3E,18253
|
|
35
35
|
pulumi_harness/user.py,sha256=yu1gGdA1TshpeaPdlJBs8njMFyt0fzONsNOVfmExqsw,19021
|
|
@@ -81,8 +81,8 @@ pulumi_harness/governance/get_rule_set.py,sha256=GC8tUOFlMZq-x3aufAU-KKB-JGqIc78
|
|
|
81
81
|
pulumi_harness/governance/rule.py,sha256=mSRKx3fNK7lN55B26QjSxfTJn342WB21SXulm56mMLw,13001
|
|
82
82
|
pulumi_harness/governance/rule_enforcement.py,sha256=QBB5xGx9HWas9RPs2P8rxhYGsU8_WSgOdcO8Svv4Tk0,32104
|
|
83
83
|
pulumi_harness/governance/rule_set.py,sha256=rpGO1wRD1ueBP5zH9k8DirsFwVCXLAkxtURYzJx7KoA,13082
|
|
84
|
-
pulumi_harness/platform/__init__.py,sha256=
|
|
85
|
-
pulumi_harness/platform/_inputs.py,sha256=
|
|
84
|
+
pulumi_harness/platform/__init__.py,sha256=qCpIUePRU6pYJnXfAwyt_KGysnD9-F4Dw0TPoTiA994,7749
|
|
85
|
+
pulumi_harness/platform/_inputs.py,sha256=vPnQwLHCXJtteXtYdeENoXHu1jU5c8js7wGATyM_cx4,1054381
|
|
86
86
|
pulumi_harness/platform/app_dynamics_connector.py,sha256=QBGJWxZcR2AzLSARQr7tAQcyjcX4gtrl3eeOg02ISfc,31334
|
|
87
87
|
pulumi_harness/platform/artifactory_connector.py,sha256=Odp-Nu1O2oJQ59ADgvuSjUXb8jzWLF19lAO-LxK3QCI,30402
|
|
88
88
|
pulumi_harness/platform/aws_cc_connector.py,sha256=qKbsqApvnxtOV8U_9F8ZXxgBSH-gREbpdkTehX4ev0w,31852
|
|
@@ -102,7 +102,7 @@ pulumi_harness/platform/connector_pdc.py,sha256=bsdbbL8wvINh7cQyLZKuTCoVuYwIEdIo
|
|
|
102
102
|
pulumi_harness/platform/connector_rancher.py,sha256=5-osH1IozoUzu2dpEp97XjZhnD560lY75qdANMnaE94,26217
|
|
103
103
|
pulumi_harness/platform/datadog_connector.py,sha256=CaZL24enQnikjkbOAU_FEIVSeJ7gQcvaF3uGywgPE2k,29567
|
|
104
104
|
pulumi_harness/platform/db_instance.py,sha256=aTn0f3GDUn39URhifxptBFE067_0DkmXdERW7o7YX58,24346
|
|
105
|
-
pulumi_harness/platform/db_schema.py,sha256=
|
|
105
|
+
pulumi_harness/platform/db_schema.py,sha256=lqo23Z-Aeblur3gw7Id9CqGVb8X00wKuI4O8fDMIcp4,25006
|
|
106
106
|
pulumi_harness/platform/delegatetoken.py,sha256=vgPSC7ZaEdWuI0fnv6p_UtzbxUmeGo_xeAWfwFS2K7Y,21263
|
|
107
107
|
pulumi_harness/platform/docker_connector.py,sha256=w0fGNvkpVNPgiz8lndx28cT3EUYGMYP6GUUSLAh4SVQ,28700
|
|
108
108
|
pulumi_harness/platform/dynatrace_connector.py,sha256=7vDbIVt1OZPJjy8lh-94k5HGk2QRA_8ApmqAMG-N3lU,25722
|
|
@@ -143,7 +143,7 @@ pulumi_harness/platform/get_current_account.py,sha256=-fNclGKWf5h_5gvsqyxCHn3MMD
|
|
|
143
143
|
pulumi_harness/platform/get_current_user.py,sha256=0lEnmj1IOY_OJy6QsytQrN71_dkOXrisaY6Go9x_8fo,9732
|
|
144
144
|
pulumi_harness/platform/get_datadog_connector.py,sha256=duZ9X6qrZRsHbkwpcsWiJjmPCzw3J4X6pcnB_NPqZIs,10911
|
|
145
145
|
pulumi_harness/platform/get_db_instance.py,sha256=ieg2Fvh4Qx6nGOvzrlJ7er_TM-ORop-c9vFtbhM4dzo,9847
|
|
146
|
-
pulumi_harness/platform/get_db_schema.py,sha256=
|
|
146
|
+
pulumi_harness/platform/get_db_schema.py,sha256=dvtXKGFmNTqEaMERKo9rCNIE8p8IvsB4ywpYRjGA_EY,11040
|
|
147
147
|
pulumi_harness/platform/get_delegatetoken.py,sha256=Nh1h2Lj3-S0qE9dciLDXINIPxLlXG8PactMH6WVguFg,9024
|
|
148
148
|
pulumi_harness/platform/get_docker_connector.py,sha256=_iqWTaNJBI2Kx5L6WBwB05FDZk8AXd-AvFvYfr2re7M,9864
|
|
149
149
|
pulumi_harness/platform/get_dynatrace_connector.py,sha256=c-P2m6ZM8q7zXArCoaohANcOZtC28LCKwnBobQyUNp8,9571
|
|
@@ -163,12 +163,13 @@ pulumi_harness/platform/get_git_connector.py,sha256=soiQ5Vt2IuZzktOOxQwjC8-QN7D_
|
|
|
163
163
|
pulumi_harness/platform/get_github_connector.py,sha256=6ktBiacsyUi5CyiBXM2gPtl6RRDh2KljSOYLpFyb8K8,12227
|
|
164
164
|
pulumi_harness/platform/get_gitlab_connector.py,sha256=NWa6-_wJ5zxMVQO2VHOkKyE4w-UiEZNedCZnthOFNN0,12287
|
|
165
165
|
pulumi_harness/platform/get_gitops_agent.py,sha256=OylZw_cgAxHC6-ASlkImzot0f4Nk9OJ3Azd8ceRJNkk,13716
|
|
166
|
-
pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=
|
|
166
|
+
pulumi_harness/platform/get_gitops_agent_deploy_yaml.py,sha256=aucLV9tyPb2Z0J5GOK2S8KTRIsTlJHOPL77HGBKnZkk,15336
|
|
167
167
|
pulumi_harness/platform/get_gitops_agent_operator_yaml.py,sha256=482uMTCJqy5ikwHc_hlg73ZVwI4XgBjO_EdX_a_UDSo,11645
|
|
168
168
|
pulumi_harness/platform/get_gitops_app_project.py,sha256=-uCBSkfM7oQ3goeNU4jtj2u2jKqcCagMbOv3_MoIhdk,8075
|
|
169
169
|
pulumi_harness/platform/get_gitops_app_project_mapping.py,sha256=Ehebv6LC_m7KZYhJTNFiC9BqTsE633SDLq7jbNAki1A,8781
|
|
170
170
|
pulumi_harness/platform/get_gitops_applications.py,sha256=X2AoQ6empBxsafrhosmwL1Wo1QoA_valhF-3ExWpn4o,15332
|
|
171
171
|
pulumi_harness/platform/get_gitops_cluster.py,sha256=xI0VKH2jO7uSeVTfHoM-IVI_zRzcV6SBVgckHoRq5HM,8453
|
|
172
|
+
pulumi_harness/platform/get_gitops_filters.py,sha256=DMJhNwT5VDHuW5_REuwZgFw3rXC4EYnE8vDQUn-PH-4,7780
|
|
172
173
|
pulumi_harness/platform/get_gitops_gnupg.py,sha256=XGcHq2pNgEEUOa7aVAx7BJrtfSNHDzrjnOwA9OgUQQY,8959
|
|
173
174
|
pulumi_harness/platform/get_gitops_repo_cert.py,sha256=oMyaeP_5ZuJuEGD7xlyjz2GgLlPnTSVAwwrJKKUvebE,6763
|
|
174
175
|
pulumi_harness/platform/get_gitops_repo_cred.py,sha256=V6pMHKjCpI54f3ni2oDCDgM1fZMVQ3A-seAtAPATcxc,9195
|
|
@@ -231,7 +232,7 @@ pulumi_harness/platform/get_user.py,sha256=gGRtk2BGPnrRRHXkFWpA9ni8BNeGgaW9Tt_mr
|
|
|
231
232
|
pulumi_harness/platform/get_usergroup.py,sha256=J67ZYe_hJXbVDPwg0Dn_qFfhtjZuJGww4dQpLjkISeE,14129
|
|
232
233
|
pulumi_harness/platform/get_variables.py,sha256=ieO_sQwYt2lkoxF6MAZHSRHM4JoY2qVk3iiBZwlidyI,7470
|
|
233
234
|
pulumi_harness/platform/get_vault_connector.py,sha256=-z5DKcwSXesNnk4oNnfg5MZIcO1ZGxd_2qK-YcKU2JU,27591
|
|
234
|
-
pulumi_harness/platform/get_workspace.py,sha256=
|
|
235
|
+
pulumi_harness/platform/get_workspace.py,sha256=hbCrLnLSbh_YxiNH1ehSAWKoQI6jadkGKlGiDAhtJFY,20897
|
|
235
236
|
pulumi_harness/platform/get_workspace_output_value.py,sha256=lBujE2pjmrLwktyGdXksKbNYFCpl-jjusc1xcLEkw4Y,6677
|
|
236
237
|
pulumi_harness/platform/git_connector.py,sha256=98cYfMy600_5Kq_UB6Gz6DIMt8C5aUo1ROf13zKddUg,31040
|
|
237
238
|
pulumi_harness/platform/git_ops_agent.py,sha256=i_GVv8Kd3f8XPpkDW072ScVzG7y46ZtLJPWsJkevMAI,30784
|
|
@@ -241,10 +242,11 @@ pulumi_harness/platform/git_ops_gnupg.py,sha256=eKvzAnTDE6he-GDp7N-yDUwf2-PPjaJ1
|
|
|
241
242
|
pulumi_harness/platform/git_ops_repo_cert.py,sha256=Fzrpm_WFTrZkHIuuaUu3rk9iCQ0sw-7eZNol2zQhZ0Q,19212
|
|
242
243
|
pulumi_harness/platform/git_ops_repo_cred.py,sha256=PeIsrJ1nq5mLKpk4ZsrrbDySv0g-s4Axysec9KaVp98,22383
|
|
243
244
|
pulumi_harness/platform/git_ops_repository.py,sha256=ESzKdhw5A-HAjQnqyD_nqvzzFFRS9WBfBeNQshBqAbk,39228
|
|
244
|
-
pulumi_harness/platform/github_connector.py,sha256=
|
|
245
|
+
pulumi_harness/platform/github_connector.py,sha256=xvmgyQdPlD-C1iGzjUHn1wQSjo30jN88M1E-DVy3BIw,37389
|
|
245
246
|
pulumi_harness/platform/gitlab_connector.py,sha256=ARbTgwdI0nC51dC10HYbOfMXJaboZlr2IV2UCt-am7E,35173
|
|
246
247
|
pulumi_harness/platform/gitops_app_project.py,sha256=RoYFDCFBrVv7sa7hcwrgVbjiy3R7tJqAXX5jwbeWJQI,21907
|
|
247
248
|
pulumi_harness/platform/gitops_app_project_mapping.py,sha256=DW4Poj4Ogf1MPkg3v0Exg2zMiS961V0JK7zSXuYbrn4,18772
|
|
249
|
+
pulumi_harness/platform/gitops_filters.py,sha256=5-7WzojYB7E6eubdLMkQfWUCNk1glihHsjsfh6yRniQ,24659
|
|
248
250
|
pulumi_harness/platform/gitx_webhook.py,sha256=trJcFXC9H-5zQRlW103HQZZ18auGCI4Uxn5vrjNlgv4,24913
|
|
249
251
|
pulumi_harness/platform/har_registry.py,sha256=RQLeJS4G06SAE3phWIjQ6c2VCnMs8wpbIcj52iA-Pm0,26454
|
|
250
252
|
pulumi_harness/platform/helm_connector.py,sha256=oKQQGx0GGBANms_kesvWeyhrTgRMMdujWvkQgFIjO40,25555
|
|
@@ -264,7 +266,7 @@ pulumi_harness/platform/nexus_connector.py,sha256=70jNVDGLHks-tJe2xu_c8BHGO_lH_h
|
|
|
264
266
|
pulumi_harness/platform/notification_rule.py,sha256=8C7DfrZK2szsKFPQvuXDl5gmGl0xWE1-9nDlyeywmJE,20876
|
|
265
267
|
pulumi_harness/platform/oci_helm_connector.py,sha256=165Lc7MuaAQtDO3y4xwpm3RnfTd-EQNomYPwgw93Itw,25706
|
|
266
268
|
pulumi_harness/platform/organization.py,sha256=kZawOtW3-D4lL8GATAxMneOn64Jq3lOgutoeGAd9xdY,12588
|
|
267
|
-
pulumi_harness/platform/outputs.py,sha256=
|
|
269
|
+
pulumi_harness/platform/outputs.py,sha256=ZOFeJXXKz3FM7yXxSCPh6LdNDc2pqXNRAaKrj41jEiM,1061211
|
|
268
270
|
pulumi_harness/platform/overrides.py,sha256=F9rgS_qPEr-0G2xvmhzIkEvTYO0QJArXg447KbnbKhM,28772
|
|
269
271
|
pulumi_harness/platform/pagerduty_connector.py,sha256=fPvgals_AB05A_cfAmTIk3-__EY6phlw5-FcvZoRf0g,23785
|
|
270
272
|
pulumi_harness/platform/pipeline.py,sha256=QZIZe9hlZcyWRVplTgmu49AdICNITAftB3YQKKGow8k,48736
|
|
@@ -301,7 +303,7 @@ pulumi_harness/platform/user.py,sha256=GvBU-02ixfKObX9wzqK4fILHbsESzYZegW8NlFfO-
|
|
|
301
303
|
pulumi_harness/platform/usergroup.py,sha256=lwHRZIPcxPppxYkoj7a7TtHuhD2FQQQkIQ3h2-_wXZI,47188
|
|
302
304
|
pulumi_harness/platform/variables.py,sha256=If0WTAOyuyBgxq2yAPSpVrJtybmb2IjMuavVDlXjhB0,18708
|
|
303
305
|
pulumi_harness/platform/vault_connector.py,sha256=efMMROxv3AD9lVSJnB_qKKC5exiq53AJmwTque6uBjQ,97483
|
|
304
|
-
pulumi_harness/platform/workspace.py,sha256=
|
|
306
|
+
pulumi_harness/platform/workspace.py,sha256=W01KxJ6MWsm3EJ20hOHWbAfjKYcuTEXGsAnu5pCCqow,58550
|
|
305
307
|
pulumi_harness/service/__init__.py,sha256=ltm5JhscngFqpS9IRM_MTe_jME4GDB_COubO-hSEmg0,524
|
|
306
308
|
pulumi_harness/service/_inputs.py,sha256=FfXVxYdV--q8DikZzjB6BD8hET7i0M4AVkeI6i66Y4c,19115
|
|
307
309
|
pulumi_harness/service/ami.py,sha256=v8kMJNEHW-tUQ5sB68xMfahJIRgLgtnnuEH37U19FJQ,13223
|
|
@@ -314,7 +316,7 @@ pulumi_harness/service/outputs.py,sha256=2Y2y2cwOVX26R2Jd-GJRL8NvGy-dpWO8CRI9acb
|
|
|
314
316
|
pulumi_harness/service/ssh.py,sha256=A2Iat4FwoSuFr063Sp_eY59sCTjTxqOWIlTZ_NRvQFE,15444
|
|
315
317
|
pulumi_harness/service/tanzu.py,sha256=oO53r8EwEmDFpM05kpQkSLDAJNzH3SgDVrB1uEAnC2o,13359
|
|
316
318
|
pulumi_harness/service/winrm.py,sha256=9DUAh4dbGc_TRc-QunxBp-QHpEdRcwKrYkbWpfkbgTo,15576
|
|
317
|
-
pulumi_harness-0.8.
|
|
318
|
-
pulumi_harness-0.8.
|
|
319
|
-
pulumi_harness-0.8.
|
|
320
|
-
pulumi_harness-0.8.
|
|
319
|
+
pulumi_harness-0.8.0a1744782628.dist-info/METADATA,sha256=sxHuokOKM4Ho3hO6hlsWtCbwyCWSTv5ENB6ixaMv1xo,1565
|
|
320
|
+
pulumi_harness-0.8.0a1744782628.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
321
|
+
pulumi_harness-0.8.0a1744782628.dist-info/top_level.txt,sha256=INN42KbPR49RnRJzIyLMbti8o6QRYA_eKubKhjPHqNk,15
|
|
322
|
+
pulumi_harness-0.8.0a1744782628.dist-info/RECORD,,
|
{pulumi_harness-0.8.0a1744436953.dist-info → pulumi_harness-0.8.0a1744782628.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|