pulumi-harness 0.8.0a1744264283__py3-none-any.whl → 0.8.0a1744696354__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.

@@ -757,6 +757,14 @@ _utilities.register(
757
757
  "harness:platform/gitopsAppProjectMapping:GitopsAppProjectMapping": "GitopsAppProjectMapping"
758
758
  }
759
759
  },
760
+ {
761
+ "pkg": "harness",
762
+ "mod": "platform/gitopsFilters",
763
+ "fqn": "pulumi_harness.platform",
764
+ "classes": {
765
+ "harness:platform/gitopsFilters:GitopsFilters": "GitopsFilters"
766
+ }
767
+ },
760
768
  {
761
769
  "pkg": "harness",
762
770
  "mod": "platform/gitxWebhook",
@@ -92,6 +92,7 @@ from .get_gitops_app_project import *
92
92
  from .get_gitops_app_project_mapping import *
93
93
  from .get_gitops_applications import *
94
94
  from .get_gitops_cluster import *
95
+ from .get_gitops_filters import *
95
96
  from .get_gitops_gnupg import *
96
97
  from .get_gitops_repo_cert import *
97
98
  from .get_gitops_repo_cred import *
@@ -168,6 +169,7 @@ from .github_connector import *
168
169
  from .gitlab_connector import *
169
170
  from .gitops_app_project import *
170
171
  from .gitops_app_project_mapping import *
172
+ from .gitops_filters import *
171
173
  from .gitx_webhook import *
172
174
  from .har_registry import *
173
175
  from .helm_connector import *
@@ -106,6 +106,8 @@ __all__ = [
106
106
  'ConnectorPdcHostArgsDict',
107
107
  'ConnectorRancherBearerTokenArgs',
108
108
  'ConnectorRancherBearerTokenArgsDict',
109
+ 'DbSchemaChangelogScriptArgs',
110
+ 'DbSchemaChangelogScriptArgsDict',
109
111
  'DbSchemaSchemaSourceArgs',
110
112
  'DbSchemaSchemaSourceArgsDict',
111
113
  'DockerConnectorCredentialsArgs',
@@ -488,10 +490,16 @@ __all__ = [
488
490
  'WorkspaceTerraformVariableFileArgsDict',
489
491
  'GetConnectorRancherBearerTokenArgs',
490
492
  'GetConnectorRancherBearerTokenArgsDict',
493
+ 'GetDbSchemaChangelogScriptArgs',
494
+ 'GetDbSchemaChangelogScriptArgsDict',
495
+ 'GetDbSchemaSchemaSourceArgs',
496
+ 'GetDbSchemaSchemaSourceArgsDict',
491
497
  'GetEnvironmentClustersMappingClusterArgs',
492
498
  'GetEnvironmentClustersMappingClusterArgsDict',
493
499
  'GetEnvironmentGitDetailsArgs',
494
500
  'GetEnvironmentGitDetailsArgsDict',
501
+ 'GetGitopsAgentDeployYamlArgocdSettingsArgs',
502
+ 'GetGitopsAgentDeployYamlArgocdSettingsArgsDict',
495
503
  'GetGitopsAgentDeployYamlProxyArgs',
496
504
  'GetGitopsAgentDeployYamlProxyArgsDict',
497
505
  'GetGitopsAgentOperatorYamlProxyArgs',
@@ -3347,6 +3355,98 @@ class ConnectorRancherBearerTokenArgs:
3347
3355
  pulumi.set(self, "bearer_token_ref", value)
3348
3356
 
3349
3357
 
3358
+ if not MYPY:
3359
+ class DbSchemaChangelogScriptArgsDict(TypedDict):
3360
+ command: NotRequired[pulumi.Input[builtins.str]]
3361
+ """
3362
+ Script to clone changeSets
3363
+ """
3364
+ image: NotRequired[pulumi.Input[builtins.str]]
3365
+ """
3366
+ The fully-qualified name (FQN) of the image
3367
+ """
3368
+ location: NotRequired[pulumi.Input[builtins.str]]
3369
+ """
3370
+ Path to changeLog file
3371
+ """
3372
+ shell: NotRequired[pulumi.Input[builtins.str]]
3373
+ """
3374
+ Type of the shell. For example Sh or Bash
3375
+ """
3376
+ elif False:
3377
+ DbSchemaChangelogScriptArgsDict: TypeAlias = Mapping[str, Any]
3378
+
3379
+ @pulumi.input_type
3380
+ class DbSchemaChangelogScriptArgs:
3381
+ def __init__(__self__, *,
3382
+ command: Optional[pulumi.Input[builtins.str]] = None,
3383
+ image: Optional[pulumi.Input[builtins.str]] = None,
3384
+ location: Optional[pulumi.Input[builtins.str]] = None,
3385
+ shell: Optional[pulumi.Input[builtins.str]] = None):
3386
+ """
3387
+ :param pulumi.Input[builtins.str] command: Script to clone changeSets
3388
+ :param pulumi.Input[builtins.str] image: The fully-qualified name (FQN) of the image
3389
+ :param pulumi.Input[builtins.str] location: Path to changeLog file
3390
+ :param pulumi.Input[builtins.str] shell: Type of the shell. For example Sh or Bash
3391
+ """
3392
+ if command is not None:
3393
+ pulumi.set(__self__, "command", command)
3394
+ if image is not None:
3395
+ pulumi.set(__self__, "image", image)
3396
+ if location is not None:
3397
+ pulumi.set(__self__, "location", location)
3398
+ if shell is not None:
3399
+ pulumi.set(__self__, "shell", shell)
3400
+
3401
+ @property
3402
+ @pulumi.getter
3403
+ def command(self) -> Optional[pulumi.Input[builtins.str]]:
3404
+ """
3405
+ Script to clone changeSets
3406
+ """
3407
+ return pulumi.get(self, "command")
3408
+
3409
+ @command.setter
3410
+ def command(self, value: Optional[pulumi.Input[builtins.str]]):
3411
+ pulumi.set(self, "command", value)
3412
+
3413
+ @property
3414
+ @pulumi.getter
3415
+ def image(self) -> Optional[pulumi.Input[builtins.str]]:
3416
+ """
3417
+ The fully-qualified name (FQN) of the image
3418
+ """
3419
+ return pulumi.get(self, "image")
3420
+
3421
+ @image.setter
3422
+ def image(self, value: Optional[pulumi.Input[builtins.str]]):
3423
+ pulumi.set(self, "image", value)
3424
+
3425
+ @property
3426
+ @pulumi.getter
3427
+ def location(self) -> Optional[pulumi.Input[builtins.str]]:
3428
+ """
3429
+ Path to changeLog file
3430
+ """
3431
+ return pulumi.get(self, "location")
3432
+
3433
+ @location.setter
3434
+ def location(self, value: Optional[pulumi.Input[builtins.str]]):
3435
+ pulumi.set(self, "location", value)
3436
+
3437
+ @property
3438
+ @pulumi.getter
3439
+ def shell(self) -> Optional[pulumi.Input[builtins.str]]:
3440
+ """
3441
+ Type of the shell. For example Sh or Bash
3442
+ """
3443
+ return pulumi.get(self, "shell")
3444
+
3445
+ @shell.setter
3446
+ def shell(self, value: Optional[pulumi.Input[builtins.str]]):
3447
+ pulumi.set(self, "shell", value)
3448
+
3449
+
3350
3450
  if not MYPY:
3351
3451
  class DbSchemaSchemaSourceArgsDict(TypedDict):
3352
3452
  connector: pulumi.Input[builtins.str]
@@ -20853,7 +20953,7 @@ if not MYPY:
20853
20953
  """
20854
20954
  repository_sha: NotRequired[pulumi.Input[builtins.str]]
20855
20955
  """
20856
- Repository commit is sha to fetch the variables from. This cannot be set if repository branch or commit is set.
20956
+ Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
20857
20957
  """
20858
20958
  elif False:
20859
20959
  WorkspaceTerraformVariableFileArgsDict: TypeAlias = Mapping[str, Any]
@@ -20873,7 +20973,7 @@ class WorkspaceTerraformVariableFileArgs:
20873
20973
  :param pulumi.Input[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
20874
20974
  :param pulumi.Input[builtins.str] repository_commit: Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
20875
20975
  :param pulumi.Input[builtins.str] repository_path: Repository path is the path in which the variables reside.
20876
- :param pulumi.Input[builtins.str] repository_sha: Repository commit is sha to fetch the variables from. This cannot be set if repository branch or commit is set.
20976
+ :param pulumi.Input[builtins.str] repository_sha: Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
20877
20977
  """
20878
20978
  pulumi.set(__self__, "repository", repository)
20879
20979
  pulumi.set(__self__, "repository_connector", repository_connector)
@@ -20950,7 +21050,7 @@ class WorkspaceTerraformVariableFileArgs:
20950
21050
  @pulumi.getter(name="repositorySha")
20951
21051
  def repository_sha(self) -> Optional[pulumi.Input[builtins.str]]:
20952
21052
  """
20953
- Repository commit is sha to fetch the variables from. This cannot be set if repository branch or commit is set.
21053
+ Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
20954
21054
  """
20955
21055
  return pulumi.get(self, "repository_sha")
20956
21056
 
@@ -21009,6 +21109,182 @@ class GetConnectorRancherBearerTokenArgs:
21009
21109
  pulumi.set(self, "rancher_url", value)
21010
21110
 
21011
21111
 
21112
+ if not MYPY:
21113
+ class GetDbSchemaChangelogScriptArgsDict(TypedDict):
21114
+ command: builtins.str
21115
+ """
21116
+ Script to clone changeSets
21117
+ """
21118
+ image: builtins.str
21119
+ """
21120
+ The fully-qualified name (FQN) of the image
21121
+ """
21122
+ location: builtins.str
21123
+ """
21124
+ Path to changeLog file
21125
+ """
21126
+ shell: builtins.str
21127
+ """
21128
+ Type of the shell. For example Sh or Bash
21129
+ """
21130
+ elif False:
21131
+ GetDbSchemaChangelogScriptArgsDict: TypeAlias = Mapping[str, Any]
21132
+
21133
+ @pulumi.input_type
21134
+ class GetDbSchemaChangelogScriptArgs:
21135
+ def __init__(__self__, *,
21136
+ command: builtins.str,
21137
+ image: builtins.str,
21138
+ location: builtins.str,
21139
+ shell: builtins.str):
21140
+ """
21141
+ :param builtins.str command: Script to clone changeSets
21142
+ :param builtins.str image: The fully-qualified name (FQN) of the image
21143
+ :param builtins.str location: Path to changeLog file
21144
+ :param builtins.str shell: Type of the shell. For example Sh or Bash
21145
+ """
21146
+ pulumi.set(__self__, "command", command)
21147
+ pulumi.set(__self__, "image", image)
21148
+ pulumi.set(__self__, "location", location)
21149
+ pulumi.set(__self__, "shell", shell)
21150
+
21151
+ @property
21152
+ @pulumi.getter
21153
+ def command(self) -> builtins.str:
21154
+ """
21155
+ Script to clone changeSets
21156
+ """
21157
+ return pulumi.get(self, "command")
21158
+
21159
+ @command.setter
21160
+ def command(self, value: builtins.str):
21161
+ pulumi.set(self, "command", value)
21162
+
21163
+ @property
21164
+ @pulumi.getter
21165
+ def image(self) -> builtins.str:
21166
+ """
21167
+ The fully-qualified name (FQN) of the image
21168
+ """
21169
+ return pulumi.get(self, "image")
21170
+
21171
+ @image.setter
21172
+ def image(self, value: builtins.str):
21173
+ pulumi.set(self, "image", value)
21174
+
21175
+ @property
21176
+ @pulumi.getter
21177
+ def location(self) -> builtins.str:
21178
+ """
21179
+ Path to changeLog file
21180
+ """
21181
+ return pulumi.get(self, "location")
21182
+
21183
+ @location.setter
21184
+ def location(self, value: builtins.str):
21185
+ pulumi.set(self, "location", value)
21186
+
21187
+ @property
21188
+ @pulumi.getter
21189
+ def shell(self) -> builtins.str:
21190
+ """
21191
+ Type of the shell. For example Sh or Bash
21192
+ """
21193
+ return pulumi.get(self, "shell")
21194
+
21195
+ @shell.setter
21196
+ def shell(self, value: builtins.str):
21197
+ pulumi.set(self, "shell", value)
21198
+
21199
+
21200
+ if not MYPY:
21201
+ class GetDbSchemaSchemaSourceArgsDict(TypedDict):
21202
+ archive_path: builtins.str
21203
+ """
21204
+ If connector type is artifactory, path to the archive file which contains the changeLog
21205
+ """
21206
+ connector: builtins.str
21207
+ """
21208
+ Connector to repository at which to find details about the database schema
21209
+ """
21210
+ location: builtins.str
21211
+ """
21212
+ The path within the specified repository at which to find details about the database schema
21213
+ """
21214
+ repo: builtins.str
21215
+ """
21216
+ If connector url is of account, which repository to connect to using the connector
21217
+ """
21218
+ elif False:
21219
+ GetDbSchemaSchemaSourceArgsDict: TypeAlias = Mapping[str, Any]
21220
+
21221
+ @pulumi.input_type
21222
+ class GetDbSchemaSchemaSourceArgs:
21223
+ def __init__(__self__, *,
21224
+ archive_path: builtins.str,
21225
+ connector: builtins.str,
21226
+ location: builtins.str,
21227
+ repo: builtins.str):
21228
+ """
21229
+ :param builtins.str archive_path: If connector type is artifactory, path to the archive file which contains the changeLog
21230
+ :param builtins.str connector: Connector to repository at which to find details about the database schema
21231
+ :param builtins.str location: The path within the specified repository at which to find details about the database schema
21232
+ :param builtins.str repo: If connector url is of account, which repository to connect to using the connector
21233
+ """
21234
+ pulumi.set(__self__, "archive_path", archive_path)
21235
+ pulumi.set(__self__, "connector", connector)
21236
+ pulumi.set(__self__, "location", location)
21237
+ pulumi.set(__self__, "repo", repo)
21238
+
21239
+ @property
21240
+ @pulumi.getter(name="archivePath")
21241
+ def archive_path(self) -> builtins.str:
21242
+ """
21243
+ If connector type is artifactory, path to the archive file which contains the changeLog
21244
+ """
21245
+ return pulumi.get(self, "archive_path")
21246
+
21247
+ @archive_path.setter
21248
+ def archive_path(self, value: builtins.str):
21249
+ pulumi.set(self, "archive_path", value)
21250
+
21251
+ @property
21252
+ @pulumi.getter
21253
+ def connector(self) -> builtins.str:
21254
+ """
21255
+ Connector to repository at which to find details about the database schema
21256
+ """
21257
+ return pulumi.get(self, "connector")
21258
+
21259
+ @connector.setter
21260
+ def connector(self, value: builtins.str):
21261
+ pulumi.set(self, "connector", value)
21262
+
21263
+ @property
21264
+ @pulumi.getter
21265
+ def location(self) -> builtins.str:
21266
+ """
21267
+ The path within the specified repository at which to find details about the database schema
21268
+ """
21269
+ return pulumi.get(self, "location")
21270
+
21271
+ @location.setter
21272
+ def location(self, value: builtins.str):
21273
+ pulumi.set(self, "location", value)
21274
+
21275
+ @property
21276
+ @pulumi.getter
21277
+ def repo(self) -> builtins.str:
21278
+ """
21279
+ If connector url is of account, which repository to connect to using the connector
21280
+ """
21281
+ return pulumi.get(self, "repo")
21282
+
21283
+ @repo.setter
21284
+ def repo(self, value: builtins.str):
21285
+ pulumi.set(self, "repo", value)
21286
+
21287
+
21012
21288
  if not MYPY:
21013
21289
  class GetEnvironmentClustersMappingClusterArgsDict(TypedDict):
21014
21290
  agent_identifier: NotRequired[builtins.str]
@@ -21170,6 +21446,38 @@ class GetEnvironmentGitDetailsArgs:
21170
21446
  pulumi.set(self, "repo_name", value)
21171
21447
 
21172
21448
 
21449
+ if not MYPY:
21450
+ class GetGitopsAgentDeployYamlArgocdSettingsArgsDict(TypedDict):
21451
+ enable_helm_path_traversal: NotRequired[builtins.bool]
21452
+ """
21453
+ 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.
21454
+ """
21455
+ elif False:
21456
+ GetGitopsAgentDeployYamlArgocdSettingsArgsDict: TypeAlias = Mapping[str, Any]
21457
+
21458
+ @pulumi.input_type
21459
+ class GetGitopsAgentDeployYamlArgocdSettingsArgs:
21460
+ def __init__(__self__, *,
21461
+ enable_helm_path_traversal: Optional[builtins.bool] = None):
21462
+ """
21463
+ :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.
21464
+ """
21465
+ if enable_helm_path_traversal is not None:
21466
+ pulumi.set(__self__, "enable_helm_path_traversal", enable_helm_path_traversal)
21467
+
21468
+ @property
21469
+ @pulumi.getter(name="enableHelmPathTraversal")
21470
+ def enable_helm_path_traversal(self) -> Optional[builtins.bool]:
21471
+ """
21472
+ 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.
21473
+ """
21474
+ return pulumi.get(self, "enable_helm_path_traversal")
21475
+
21476
+ @enable_helm_path_traversal.setter
21477
+ def enable_helm_path_traversal(self, value: Optional[builtins.bool]):
21478
+ pulumi.set(self, "enable_helm_path_traversal", value)
21479
+
21480
+
21173
21481
  if not MYPY:
21174
21482
  class GetGitopsAgentDeployYamlProxyArgsDict(TypedDict):
21175
21483
  http: NotRequired[builtins.str]
@@ -24068,7 +24376,7 @@ if not MYPY:
24068
24376
  """
24069
24377
  repository_sha: builtins.str
24070
24378
  """
24071
- Repository commit is sha to fetch the variables from. This cannot be set if repository branch or commit is set.
24379
+ Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
24072
24380
  """
24073
24381
  elif False:
24074
24382
  GetWorkspaceTerraformVariableFileArgsDict: TypeAlias = Mapping[str, Any]
@@ -24088,7 +24396,7 @@ class GetWorkspaceTerraformVariableFileArgs:
24088
24396
  :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.
24089
24397
  :param builtins.str repository_connector: Repository connector is the reference to the connector used to fetch the variables.
24090
24398
  :param builtins.str repository_path: Repository path is the path in which the variables reside.
24091
- :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.
24399
+ :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.
24092
24400
  """
24093
24401
  pulumi.set(__self__, "repository", repository)
24094
24402
  pulumi.set(__self__, "repository_branch", repository_branch)
@@ -24161,7 +24469,7 @@ class GetWorkspaceTerraformVariableFileArgs:
24161
24469
  @pulumi.getter(name="repositorySha")
24162
24470
  def repository_sha(self) -> builtins.str:
24163
24471
  """
24164
- Repository commit is sha to fetch the variables from. This cannot be set if repository branch or commit is set.
24472
+ Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
24165
24473
  """
24166
24474
  return pulumi.get(self, "repository_sha")
24167
24475