pulumi-harness 0.6.0a1739378270__py3-none-any.whl → 0.6.0a1739425612__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.

@@ -31,9 +31,11 @@ __all__ = [
31
31
  'AwsKmsConnectorCredentials',
32
32
  'AwsKmsConnectorCredentialsAssumeRole',
33
33
  'AwsKmsConnectorCredentialsManual',
34
+ 'AwsKmsConnectorCredentialsOidcAuthentication',
34
35
  'AwsSecretManagerConnectorCredentials',
35
36
  'AwsSecretManagerConnectorCredentialsAssumeRole',
36
37
  'AwsSecretManagerConnectorCredentialsManual',
38
+ 'AwsSecretManagerConnectorCredentialsOidcAuthentication',
37
39
  'AzureCloudCostConnectorBillingExportSpec',
38
40
  'AzureCloudProviderConnectorCredentials',
39
41
  'AzureCloudProviderConnectorCredentialsAzureInheritFromDelegateDetails',
@@ -52,6 +54,8 @@ __all__ = [
52
54
  'ConnectorCustomSecretManagerTemplateInputEnvironmentVariable',
53
55
  'ConnectorCustomhealthsourceHeader',
54
56
  'ConnectorCustomhealthsourceParam',
57
+ 'ConnectorGcpKmsManual',
58
+ 'ConnectorGcpKmsOidcAuthentication',
55
59
  'ConnectorJdbcCredentials',
56
60
  'ConnectorPdcHost',
57
61
  'ConnectorRancherBearerToken',
@@ -76,6 +80,7 @@ __all__ = [
76
80
  'GcpConnectorInheritFromDelegate',
77
81
  'GcpConnectorManual',
78
82
  'GcpConnectorOidcAuthentication',
83
+ 'GcpSecretManagerConnectorOidcAuthentication',
79
84
  'GitConnectorCredentials',
80
85
  'GitConnectorCredentialsHttp',
81
86
  'GitConnectorCredentialsSsh',
@@ -256,9 +261,11 @@ __all__ = [
256
261
  'GetAwsKmsConnectorCredentialResult',
257
262
  'GetAwsKmsConnectorCredentialAssumeRoleResult',
258
263
  'GetAwsKmsConnectorCredentialManualResult',
264
+ 'GetAwsKmsConnectorCredentialOidcAuthenticationResult',
259
265
  'GetAwsSecretManagerConnectorCredentialResult',
260
266
  'GetAwsSecretManagerConnectorCredentialAssumeRoleResult',
261
267
  'GetAwsSecretManagerConnectorCredentialManualResult',
268
+ 'GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult',
262
269
  'GetAzureCloudCostConnectorBillingExportSpecResult',
263
270
  'GetAzureCloudProviderConnectorCredentialResult',
264
271
  'GetAzureCloudProviderConnectorCredentialAzureInheritFromDelegateDetailResult',
@@ -277,6 +284,8 @@ __all__ = [
277
284
  'GetConnectorCustomSecretManagerTemplateInputEnvironmentVariableResult',
278
285
  'GetConnectorCustomhealthsourceHeaderResult',
279
286
  'GetConnectorCustomhealthsourceParamResult',
287
+ 'GetConnectorGcpKmsManualResult',
288
+ 'GetConnectorGcpKmsOidcAuthenticationResult',
280
289
  'GetConnectorJdbcCredentialResult',
281
290
  'GetConnectorPdcHostResult',
282
291
  'GetConnectorRancherBearerTokenResult',
@@ -296,6 +305,7 @@ __all__ = [
296
305
  'GetGcpConnectorInheritFromDelegateResult',
297
306
  'GetGcpConnectorManualResult',
298
307
  'GetGcpConnectorOidcAuthenticationResult',
308
+ 'GetGcpSecretManagerConnectorOidcAuthenticationResult',
299
309
  'GetGitConnectorCredentialResult',
300
310
  'GetGitConnectorCredentialHttpResult',
301
311
  'GetGitConnectorCredentialSshResult',
@@ -1120,6 +1130,8 @@ class AwsKmsConnectorCredentials(dict):
1120
1130
  suggest = "assume_role"
1121
1131
  elif key == "inheritFromDelegate":
1122
1132
  suggest = "inherit_from_delegate"
1133
+ elif key == "oidcAuthentication":
1134
+ suggest = "oidc_authentication"
1123
1135
 
1124
1136
  if suggest:
1125
1137
  pulumi.log.warn(f"Key '{key}' not found in AwsKmsConnectorCredentials. Access the value via the '{suggest}' property getter instead.")
@@ -1135,11 +1147,13 @@ class AwsKmsConnectorCredentials(dict):
1135
1147
  def __init__(__self__, *,
1136
1148
  assume_role: Optional['outputs.AwsKmsConnectorCredentialsAssumeRole'] = None,
1137
1149
  inherit_from_delegate: Optional[bool] = None,
1138
- manual: Optional['outputs.AwsKmsConnectorCredentialsManual'] = None):
1150
+ manual: Optional['outputs.AwsKmsConnectorCredentialsManual'] = None,
1151
+ oidc_authentication: Optional['outputs.AwsKmsConnectorCredentialsOidcAuthentication'] = None):
1139
1152
  """
1140
1153
  :param 'AwsKmsConnectorCredentialsAssumeRoleArgs' assume_role: Connect using STS assume role.
1141
1154
  :param bool inherit_from_delegate: Inherit the credentials from from the delegate.
1142
1155
  :param 'AwsKmsConnectorCredentialsManualArgs' manual: Specify the AWS key and secret used for authenticating.
1156
+ :param 'AwsKmsConnectorCredentialsOidcAuthenticationArgs' oidc_authentication: Connect using OIDC authentication.
1143
1157
  """
1144
1158
  if assume_role is not None:
1145
1159
  pulumi.set(__self__, "assume_role", assume_role)
@@ -1147,6 +1161,8 @@ class AwsKmsConnectorCredentials(dict):
1147
1161
  pulumi.set(__self__, "inherit_from_delegate", inherit_from_delegate)
1148
1162
  if manual is not None:
1149
1163
  pulumi.set(__self__, "manual", manual)
1164
+ if oidc_authentication is not None:
1165
+ pulumi.set(__self__, "oidc_authentication", oidc_authentication)
1150
1166
 
1151
1167
  @property
1152
1168
  @pulumi.getter(name="assumeRole")
@@ -1172,6 +1188,14 @@ class AwsKmsConnectorCredentials(dict):
1172
1188
  """
1173
1189
  return pulumi.get(self, "manual")
1174
1190
 
1191
+ @property
1192
+ @pulumi.getter(name="oidcAuthentication")
1193
+ def oidc_authentication(self) -> Optional['outputs.AwsKmsConnectorCredentialsOidcAuthentication']:
1194
+ """
1195
+ Connect using OIDC authentication.
1196
+ """
1197
+ return pulumi.get(self, "oidc_authentication")
1198
+
1175
1199
 
1176
1200
  @pulumi.output_type
1177
1201
  class AwsKmsConnectorCredentialsAssumeRole(dict):
@@ -1281,6 +1305,41 @@ class AwsKmsConnectorCredentialsManual(dict):
1281
1305
  return pulumi.get(self, "secret_key_ref")
1282
1306
 
1283
1307
 
1308
+ @pulumi.output_type
1309
+ class AwsKmsConnectorCredentialsOidcAuthentication(dict):
1310
+ @staticmethod
1311
+ def __key_warning(key: str):
1312
+ suggest = None
1313
+ if key == "iamRoleArn":
1314
+ suggest = "iam_role_arn"
1315
+
1316
+ if suggest:
1317
+ pulumi.log.warn(f"Key '{key}' not found in AwsKmsConnectorCredentialsOidcAuthentication. Access the value via the '{suggest}' property getter instead.")
1318
+
1319
+ def __getitem__(self, key: str) -> Any:
1320
+ AwsKmsConnectorCredentialsOidcAuthentication.__key_warning(key)
1321
+ return super().__getitem__(key)
1322
+
1323
+ def get(self, key: str, default = None) -> Any:
1324
+ AwsKmsConnectorCredentialsOidcAuthentication.__key_warning(key)
1325
+ return super().get(key, default)
1326
+
1327
+ def __init__(__self__, *,
1328
+ iam_role_arn: str):
1329
+ """
1330
+ :param str iam_role_arn: The ARN of the IAM role to assume.
1331
+ """
1332
+ pulumi.set(__self__, "iam_role_arn", iam_role_arn)
1333
+
1334
+ @property
1335
+ @pulumi.getter(name="iamRoleArn")
1336
+ def iam_role_arn(self) -> str:
1337
+ """
1338
+ The ARN of the IAM role to assume.
1339
+ """
1340
+ return pulumi.get(self, "iam_role_arn")
1341
+
1342
+
1284
1343
  @pulumi.output_type
1285
1344
  class AwsSecretManagerConnectorCredentials(dict):
1286
1345
  @staticmethod
@@ -1290,6 +1349,8 @@ class AwsSecretManagerConnectorCredentials(dict):
1290
1349
  suggest = "assume_role"
1291
1350
  elif key == "inheritFromDelegate":
1292
1351
  suggest = "inherit_from_delegate"
1352
+ elif key == "oidcAuthentication":
1353
+ suggest = "oidc_authentication"
1293
1354
 
1294
1355
  if suggest:
1295
1356
  pulumi.log.warn(f"Key '{key}' not found in AwsSecretManagerConnectorCredentials. Access the value via the '{suggest}' property getter instead.")
@@ -1305,11 +1366,13 @@ class AwsSecretManagerConnectorCredentials(dict):
1305
1366
  def __init__(__self__, *,
1306
1367
  assume_role: Optional['outputs.AwsSecretManagerConnectorCredentialsAssumeRole'] = None,
1307
1368
  inherit_from_delegate: Optional[bool] = None,
1308
- manual: Optional['outputs.AwsSecretManagerConnectorCredentialsManual'] = None):
1369
+ manual: Optional['outputs.AwsSecretManagerConnectorCredentialsManual'] = None,
1370
+ oidc_authentication: Optional['outputs.AwsSecretManagerConnectorCredentialsOidcAuthentication'] = None):
1309
1371
  """
1310
1372
  :param 'AwsSecretManagerConnectorCredentialsAssumeRoleArgs' assume_role: Connect using STS assume role.
1311
1373
  :param bool inherit_from_delegate: Inherit the credentials from from the delegate.
1312
1374
  :param 'AwsSecretManagerConnectorCredentialsManualArgs' manual: Specify the AWS key and secret used for authenticating.
1375
+ :param 'AwsSecretManagerConnectorCredentialsOidcAuthenticationArgs' oidc_authentication: Authentication using harness oidc.
1313
1376
  """
1314
1377
  if assume_role is not None:
1315
1378
  pulumi.set(__self__, "assume_role", assume_role)
@@ -1317,6 +1380,8 @@ class AwsSecretManagerConnectorCredentials(dict):
1317
1380
  pulumi.set(__self__, "inherit_from_delegate", inherit_from_delegate)
1318
1381
  if manual is not None:
1319
1382
  pulumi.set(__self__, "manual", manual)
1383
+ if oidc_authentication is not None:
1384
+ pulumi.set(__self__, "oidc_authentication", oidc_authentication)
1320
1385
 
1321
1386
  @property
1322
1387
  @pulumi.getter(name="assumeRole")
@@ -1342,6 +1407,14 @@ class AwsSecretManagerConnectorCredentials(dict):
1342
1407
  """
1343
1408
  return pulumi.get(self, "manual")
1344
1409
 
1410
+ @property
1411
+ @pulumi.getter(name="oidcAuthentication")
1412
+ def oidc_authentication(self) -> Optional['outputs.AwsSecretManagerConnectorCredentialsOidcAuthentication']:
1413
+ """
1414
+ Authentication using harness oidc.
1415
+ """
1416
+ return pulumi.get(self, "oidc_authentication")
1417
+
1345
1418
 
1346
1419
  @pulumi.output_type
1347
1420
  class AwsSecretManagerConnectorCredentialsAssumeRole(dict):
@@ -1432,7 +1505,7 @@ class AwsSecretManagerConnectorCredentialsManual(dict):
1432
1505
  access_key_ref: Optional[str] = None):
1433
1506
  """
1434
1507
  :param str secret_key_ref: The reference to the Harness secret containing the AWS secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
1435
- :param str access_key_plain_text: The plain text AWS access key.
1508
+ :param str access_key_plain_text: The plain text AWS access key. This is required if the access*key*ref is not provided.
1436
1509
  :param str access_key_ref: The reference to the Harness secret containing the AWS access 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}.
1437
1510
  """
1438
1511
  pulumi.set(__self__, "secret_key_ref", secret_key_ref)
@@ -1453,7 +1526,7 @@ class AwsSecretManagerConnectorCredentialsManual(dict):
1453
1526
  @pulumi.getter(name="accessKeyPlainText")
1454
1527
  def access_key_plain_text(self) -> Optional[str]:
1455
1528
  """
1456
- The plain text AWS access key.
1529
+ The plain text AWS access key. This is required if the access*key*ref is not provided.
1457
1530
  """
1458
1531
  return pulumi.get(self, "access_key_plain_text")
1459
1532
 
@@ -1466,6 +1539,41 @@ class AwsSecretManagerConnectorCredentialsManual(dict):
1466
1539
  return pulumi.get(self, "access_key_ref")
1467
1540
 
1468
1541
 
1542
+ @pulumi.output_type
1543
+ class AwsSecretManagerConnectorCredentialsOidcAuthentication(dict):
1544
+ @staticmethod
1545
+ def __key_warning(key: str):
1546
+ suggest = None
1547
+ if key == "iamRoleArn":
1548
+ suggest = "iam_role_arn"
1549
+
1550
+ if suggest:
1551
+ pulumi.log.warn(f"Key '{key}' not found in AwsSecretManagerConnectorCredentialsOidcAuthentication. Access the value via the '{suggest}' property getter instead.")
1552
+
1553
+ def __getitem__(self, key: str) -> Any:
1554
+ AwsSecretManagerConnectorCredentialsOidcAuthentication.__key_warning(key)
1555
+ return super().__getitem__(key)
1556
+
1557
+ def get(self, key: str, default = None) -> Any:
1558
+ AwsSecretManagerConnectorCredentialsOidcAuthentication.__key_warning(key)
1559
+ return super().get(key, default)
1560
+
1561
+ def __init__(__self__, *,
1562
+ iam_role_arn: str):
1563
+ """
1564
+ :param str iam_role_arn: The IAM role ARN.
1565
+ """
1566
+ pulumi.set(__self__, "iam_role_arn", iam_role_arn)
1567
+
1568
+ @property
1569
+ @pulumi.getter(name="iamRoleArn")
1570
+ def iam_role_arn(self) -> str:
1571
+ """
1572
+ The IAM role ARN.
1573
+ """
1574
+ return pulumi.get(self, "iam_role_arn")
1575
+
1576
+
1469
1577
  @pulumi.output_type
1470
1578
  class AzureCloudCostConnectorBillingExportSpec(dict):
1471
1579
  @staticmethod
@@ -2356,6 +2464,141 @@ class ConnectorCustomhealthsourceParam(dict):
2356
2464
  return pulumi.get(self, "value_encrypted")
2357
2465
 
2358
2466
 
2467
+ @pulumi.output_type
2468
+ class ConnectorGcpKmsManual(dict):
2469
+ @staticmethod
2470
+ def __key_warning(key: str):
2471
+ suggest = None
2472
+ if key == "delegateSelectors":
2473
+ suggest = "delegate_selectors"
2474
+
2475
+ if suggest:
2476
+ pulumi.log.warn(f"Key '{key}' not found in ConnectorGcpKmsManual. Access the value via the '{suggest}' property getter instead.")
2477
+
2478
+ def __getitem__(self, key: str) -> Any:
2479
+ ConnectorGcpKmsManual.__key_warning(key)
2480
+ return super().__getitem__(key)
2481
+
2482
+ def get(self, key: str, default = None) -> Any:
2483
+ ConnectorGcpKmsManual.__key_warning(key)
2484
+ return super().get(key, default)
2485
+
2486
+ def __init__(__self__, *,
2487
+ credentials: str,
2488
+ delegate_selectors: Optional[Sequence[str]] = None):
2489
+ """
2490
+ :param str credentials: Reference to the Harness secret containing the secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
2491
+ :param Sequence[str] delegate_selectors: The delegates to connect with.
2492
+ """
2493
+ pulumi.set(__self__, "credentials", credentials)
2494
+ if delegate_selectors is not None:
2495
+ pulumi.set(__self__, "delegate_selectors", delegate_selectors)
2496
+
2497
+ @property
2498
+ @pulumi.getter
2499
+ def credentials(self) -> str:
2500
+ """
2501
+ Reference to the Harness secret containing the secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
2502
+ """
2503
+ return pulumi.get(self, "credentials")
2504
+
2505
+ @property
2506
+ @pulumi.getter(name="delegateSelectors")
2507
+ def delegate_selectors(self) -> Optional[Sequence[str]]:
2508
+ """
2509
+ The delegates to connect with.
2510
+ """
2511
+ return pulumi.get(self, "delegate_selectors")
2512
+
2513
+
2514
+ @pulumi.output_type
2515
+ class ConnectorGcpKmsOidcAuthentication(dict):
2516
+ @staticmethod
2517
+ def __key_warning(key: str):
2518
+ suggest = None
2519
+ if key == "gcpProjectId":
2520
+ suggest = "gcp_project_id"
2521
+ elif key == "providerId":
2522
+ suggest = "provider_id"
2523
+ elif key == "serviceAccountEmail":
2524
+ suggest = "service_account_email"
2525
+ elif key == "workloadPoolId":
2526
+ suggest = "workload_pool_id"
2527
+ elif key == "delegateSelectors":
2528
+ suggest = "delegate_selectors"
2529
+
2530
+ if suggest:
2531
+ pulumi.log.warn(f"Key '{key}' not found in ConnectorGcpKmsOidcAuthentication. Access the value via the '{suggest}' property getter instead.")
2532
+
2533
+ def __getitem__(self, key: str) -> Any:
2534
+ ConnectorGcpKmsOidcAuthentication.__key_warning(key)
2535
+ return super().__getitem__(key)
2536
+
2537
+ def get(self, key: str, default = None) -> Any:
2538
+ ConnectorGcpKmsOidcAuthentication.__key_warning(key)
2539
+ return super().get(key, default)
2540
+
2541
+ def __init__(__self__, *,
2542
+ gcp_project_id: str,
2543
+ provider_id: str,
2544
+ service_account_email: str,
2545
+ workload_pool_id: str,
2546
+ delegate_selectors: Optional[Sequence[str]] = None):
2547
+ """
2548
+ :param str gcp_project_id: The project number of the GCP project that is used to create the workload identity.
2549
+ :param str provider_id: The OIDC provider ID value configured in GCP.
2550
+ :param str service_account_email: The service account linked to workload identity pool while setting GCP workload identity provider.
2551
+ :param str workload_pool_id: The workload pool ID value created in GCP.
2552
+ :param Sequence[str] delegate_selectors: The delegates to inherit the credentials from.
2553
+ """
2554
+ pulumi.set(__self__, "gcp_project_id", gcp_project_id)
2555
+ pulumi.set(__self__, "provider_id", provider_id)
2556
+ pulumi.set(__self__, "service_account_email", service_account_email)
2557
+ pulumi.set(__self__, "workload_pool_id", workload_pool_id)
2558
+ if delegate_selectors is not None:
2559
+ pulumi.set(__self__, "delegate_selectors", delegate_selectors)
2560
+
2561
+ @property
2562
+ @pulumi.getter(name="gcpProjectId")
2563
+ def gcp_project_id(self) -> str:
2564
+ """
2565
+ The project number of the GCP project that is used to create the workload identity.
2566
+ """
2567
+ return pulumi.get(self, "gcp_project_id")
2568
+
2569
+ @property
2570
+ @pulumi.getter(name="providerId")
2571
+ def provider_id(self) -> str:
2572
+ """
2573
+ The OIDC provider ID value configured in GCP.
2574
+ """
2575
+ return pulumi.get(self, "provider_id")
2576
+
2577
+ @property
2578
+ @pulumi.getter(name="serviceAccountEmail")
2579
+ def service_account_email(self) -> str:
2580
+ """
2581
+ The service account linked to workload identity pool while setting GCP workload identity provider.
2582
+ """
2583
+ return pulumi.get(self, "service_account_email")
2584
+
2585
+ @property
2586
+ @pulumi.getter(name="workloadPoolId")
2587
+ def workload_pool_id(self) -> str:
2588
+ """
2589
+ The workload pool ID value created in GCP.
2590
+ """
2591
+ return pulumi.get(self, "workload_pool_id")
2592
+
2593
+ @property
2594
+ @pulumi.getter(name="delegateSelectors")
2595
+ def delegate_selectors(self) -> Optional[Sequence[str]]:
2596
+ """
2597
+ The delegates to inherit the credentials from.
2598
+ """
2599
+ return pulumi.get(self, "delegate_selectors")
2600
+
2601
+
2359
2602
  @pulumi.output_type
2360
2603
  class ConnectorJdbcCredentials(dict):
2361
2604
  @staticmethod
@@ -3685,6 +3928,80 @@ class GcpConnectorOidcAuthentication(dict):
3685
3928
  return pulumi.get(self, "delegate_selectors")
3686
3929
 
3687
3930
 
3931
+ @pulumi.output_type
3932
+ class GcpSecretManagerConnectorOidcAuthentication(dict):
3933
+ @staticmethod
3934
+ def __key_warning(key: str):
3935
+ suggest = None
3936
+ if key == "gcpProjectId":
3937
+ suggest = "gcp_project_id"
3938
+ elif key == "providerId":
3939
+ suggest = "provider_id"
3940
+ elif key == "serviceAccountEmail":
3941
+ suggest = "service_account_email"
3942
+ elif key == "workloadPoolId":
3943
+ suggest = "workload_pool_id"
3944
+
3945
+ if suggest:
3946
+ pulumi.log.warn(f"Key '{key}' not found in GcpSecretManagerConnectorOidcAuthentication. Access the value via the '{suggest}' property getter instead.")
3947
+
3948
+ def __getitem__(self, key: str) -> Any:
3949
+ GcpSecretManagerConnectorOidcAuthentication.__key_warning(key)
3950
+ return super().__getitem__(key)
3951
+
3952
+ def get(self, key: str, default = None) -> Any:
3953
+ GcpSecretManagerConnectorOidcAuthentication.__key_warning(key)
3954
+ return super().get(key, default)
3955
+
3956
+ def __init__(__self__, *,
3957
+ gcp_project_id: str,
3958
+ provider_id: str,
3959
+ service_account_email: str,
3960
+ workload_pool_id: str):
3961
+ """
3962
+ :param str gcp_project_id: The project number of the GCP project that is used to create the workload identity.
3963
+ :param str provider_id: The OIDC provider ID value configured in GCP.
3964
+ :param str service_account_email: The service account linked to workload identity pool while setting GCP workload identity provider.
3965
+ :param str workload_pool_id: The workload pool ID value created in GCP.
3966
+ """
3967
+ pulumi.set(__self__, "gcp_project_id", gcp_project_id)
3968
+ pulumi.set(__self__, "provider_id", provider_id)
3969
+ pulumi.set(__self__, "service_account_email", service_account_email)
3970
+ pulumi.set(__self__, "workload_pool_id", workload_pool_id)
3971
+
3972
+ @property
3973
+ @pulumi.getter(name="gcpProjectId")
3974
+ def gcp_project_id(self) -> str:
3975
+ """
3976
+ The project number of the GCP project that is used to create the workload identity.
3977
+ """
3978
+ return pulumi.get(self, "gcp_project_id")
3979
+
3980
+ @property
3981
+ @pulumi.getter(name="providerId")
3982
+ def provider_id(self) -> str:
3983
+ """
3984
+ The OIDC provider ID value configured in GCP.
3985
+ """
3986
+ return pulumi.get(self, "provider_id")
3987
+
3988
+ @property
3989
+ @pulumi.getter(name="serviceAccountEmail")
3990
+ def service_account_email(self) -> str:
3991
+ """
3992
+ The service account linked to workload identity pool while setting GCP workload identity provider.
3993
+ """
3994
+ return pulumi.get(self, "service_account_email")
3995
+
3996
+ @property
3997
+ @pulumi.getter(name="workloadPoolId")
3998
+ def workload_pool_id(self) -> str:
3999
+ """
4000
+ The workload pool ID value created in GCP.
4001
+ """
4002
+ return pulumi.get(self, "workload_pool_id")
4003
+
4004
+
3688
4005
  @pulumi.output_type
3689
4006
  class GitConnectorCredentials(dict):
3690
4007
  def __init__(__self__, *,
@@ -16043,15 +16360,18 @@ class GetAwsKmsConnectorCredentialResult(dict):
16043
16360
  def __init__(__self__, *,
16044
16361
  assume_roles: Sequence['outputs.GetAwsKmsConnectorCredentialAssumeRoleResult'],
16045
16362
  inherit_from_delegate: bool,
16046
- manuals: Sequence['outputs.GetAwsKmsConnectorCredentialManualResult']):
16363
+ manuals: Sequence['outputs.GetAwsKmsConnectorCredentialManualResult'],
16364
+ oidc_authentications: Sequence['outputs.GetAwsKmsConnectorCredentialOidcAuthenticationResult']):
16047
16365
  """
16048
16366
  :param Sequence['GetAwsKmsConnectorCredentialAssumeRoleArgs'] assume_roles: Connect using STS assume role.
16049
16367
  :param bool inherit_from_delegate: Inherit the credentials from from the delegate.
16050
16368
  :param Sequence['GetAwsKmsConnectorCredentialManualArgs'] manuals: Specify the AWS key and secret used for authenticating.
16369
+ :param Sequence['GetAwsKmsConnectorCredentialOidcAuthenticationArgs'] oidc_authentications: Authentication using OIDC.
16051
16370
  """
16052
16371
  pulumi.set(__self__, "assume_roles", assume_roles)
16053
16372
  pulumi.set(__self__, "inherit_from_delegate", inherit_from_delegate)
16054
16373
  pulumi.set(__self__, "manuals", manuals)
16374
+ pulumi.set(__self__, "oidc_authentications", oidc_authentications)
16055
16375
 
16056
16376
  @property
16057
16377
  @pulumi.getter(name="assumeRoles")
@@ -16077,6 +16397,14 @@ class GetAwsKmsConnectorCredentialResult(dict):
16077
16397
  """
16078
16398
  return pulumi.get(self, "manuals")
16079
16399
 
16400
+ @property
16401
+ @pulumi.getter(name="oidcAuthentications")
16402
+ def oidc_authentications(self) -> Sequence['outputs.GetAwsKmsConnectorCredentialOidcAuthenticationResult']:
16403
+ """
16404
+ Authentication using OIDC.
16405
+ """
16406
+ return pulumi.get(self, "oidc_authentications")
16407
+
16080
16408
 
16081
16409
  @pulumi.output_type
16082
16410
  class GetAwsKmsConnectorCredentialAssumeRoleResult(dict):
@@ -16147,20 +16475,41 @@ class GetAwsKmsConnectorCredentialManualResult(dict):
16147
16475
  return pulumi.get(self, "secret_key_ref")
16148
16476
 
16149
16477
 
16478
+ @pulumi.output_type
16479
+ class GetAwsKmsConnectorCredentialOidcAuthenticationResult(dict):
16480
+ def __init__(__self__, *,
16481
+ iam_role_arn: str):
16482
+ """
16483
+ :param str iam_role_arn: The IAM role ARN to assume.
16484
+ """
16485
+ pulumi.set(__self__, "iam_role_arn", iam_role_arn)
16486
+
16487
+ @property
16488
+ @pulumi.getter(name="iamRoleArn")
16489
+ def iam_role_arn(self) -> str:
16490
+ """
16491
+ The IAM role ARN to assume.
16492
+ """
16493
+ return pulumi.get(self, "iam_role_arn")
16494
+
16495
+
16150
16496
  @pulumi.output_type
16151
16497
  class GetAwsSecretManagerConnectorCredentialResult(dict):
16152
16498
  def __init__(__self__, *,
16153
16499
  assume_roles: Sequence['outputs.GetAwsSecretManagerConnectorCredentialAssumeRoleResult'],
16154
16500
  inherit_from_delegate: bool,
16155
- manuals: Sequence['outputs.GetAwsSecretManagerConnectorCredentialManualResult']):
16501
+ manuals: Sequence['outputs.GetAwsSecretManagerConnectorCredentialManualResult'],
16502
+ oidc_authentications: Sequence['outputs.GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult']):
16156
16503
  """
16157
16504
  :param Sequence['GetAwsSecretManagerConnectorCredentialAssumeRoleArgs'] assume_roles: Connect using STS assume role.
16158
16505
  :param bool inherit_from_delegate: Inherit the credentials from from the delegate.
16159
16506
  :param Sequence['GetAwsSecretManagerConnectorCredentialManualArgs'] manuals: Specify the AWS key and secret used for authenticating.
16507
+ :param Sequence['GetAwsSecretManagerConnectorCredentialOidcAuthenticationArgs'] oidc_authentications: Authentication using OIDC.
16160
16508
  """
16161
16509
  pulumi.set(__self__, "assume_roles", assume_roles)
16162
16510
  pulumi.set(__self__, "inherit_from_delegate", inherit_from_delegate)
16163
16511
  pulumi.set(__self__, "manuals", manuals)
16512
+ pulumi.set(__self__, "oidc_authentications", oidc_authentications)
16164
16513
 
16165
16514
  @property
16166
16515
  @pulumi.getter(name="assumeRoles")
@@ -16186,6 +16535,14 @@ class GetAwsSecretManagerConnectorCredentialResult(dict):
16186
16535
  """
16187
16536
  return pulumi.get(self, "manuals")
16188
16537
 
16538
+ @property
16539
+ @pulumi.getter(name="oidcAuthentications")
16540
+ def oidc_authentications(self) -> Sequence['outputs.GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult']:
16541
+ """
16542
+ Authentication using OIDC.
16543
+ """
16544
+ return pulumi.get(self, "oidc_authentications")
16545
+
16189
16546
 
16190
16547
  @pulumi.output_type
16191
16548
  class GetAwsSecretManagerConnectorCredentialAssumeRoleResult(dict):
@@ -16256,6 +16613,24 @@ class GetAwsSecretManagerConnectorCredentialManualResult(dict):
16256
16613
  return pulumi.get(self, "secret_key_ref")
16257
16614
 
16258
16615
 
16616
+ @pulumi.output_type
16617
+ class GetAwsSecretManagerConnectorCredentialOidcAuthenticationResult(dict):
16618
+ def __init__(__self__, *,
16619
+ iam_role_arn: str):
16620
+ """
16621
+ :param str iam_role_arn: The IAM role ARN to assume.
16622
+ """
16623
+ pulumi.set(__self__, "iam_role_arn", iam_role_arn)
16624
+
16625
+ @property
16626
+ @pulumi.getter(name="iamRoleArn")
16627
+ def iam_role_arn(self) -> str:
16628
+ """
16629
+ The IAM role ARN to assume.
16630
+ """
16631
+ return pulumi.get(self, "iam_role_arn")
16632
+
16633
+
16259
16634
  @pulumi.output_type
16260
16635
  class GetAzureCloudCostConnectorBillingExportSpecResult(dict):
16261
16636
  def __init__(__self__, *,
@@ -16852,6 +17227,97 @@ class GetConnectorCustomhealthsourceParamResult(dict):
16852
17227
  return pulumi.get(self, "value_encrypted")
16853
17228
 
16854
17229
 
17230
+ @pulumi.output_type
17231
+ class GetConnectorGcpKmsManualResult(dict):
17232
+ def __init__(__self__, *,
17233
+ credentials: str,
17234
+ delegate_selectors: Sequence[str]):
17235
+ """
17236
+ :param str credentials: Reference to the Harness secret containing the secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
17237
+ :param Sequence[str] delegate_selectors: The delegates to connect with.
17238
+ """
17239
+ pulumi.set(__self__, "credentials", credentials)
17240
+ pulumi.set(__self__, "delegate_selectors", delegate_selectors)
17241
+
17242
+ @property
17243
+ @pulumi.getter
17244
+ def credentials(self) -> str:
17245
+ """
17246
+ Reference to the Harness secret containing the secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
17247
+ """
17248
+ return pulumi.get(self, "credentials")
17249
+
17250
+ @property
17251
+ @pulumi.getter(name="delegateSelectors")
17252
+ def delegate_selectors(self) -> Sequence[str]:
17253
+ """
17254
+ The delegates to connect with.
17255
+ """
17256
+ return pulumi.get(self, "delegate_selectors")
17257
+
17258
+
17259
+ @pulumi.output_type
17260
+ class GetConnectorGcpKmsOidcAuthenticationResult(dict):
17261
+ def __init__(__self__, *,
17262
+ delegate_selectors: Sequence[str],
17263
+ gcp_project_id: str,
17264
+ provider_id: str,
17265
+ service_account_email: str,
17266
+ workload_pool_id: str):
17267
+ """
17268
+ :param Sequence[str] delegate_selectors: The delegates to inherit the credentials from.
17269
+ :param str gcp_project_id: The project number of the GCP project that is used to create the workload identity..
17270
+ :param str provider_id: The OIDC provider ID value configured in GCP.
17271
+ :param str service_account_email: The service account linked to workload identity pool while setting GCP workload identity provider.
17272
+ :param str workload_pool_id: The workload pool ID value created in GCP.
17273
+ """
17274
+ pulumi.set(__self__, "delegate_selectors", delegate_selectors)
17275
+ pulumi.set(__self__, "gcp_project_id", gcp_project_id)
17276
+ pulumi.set(__self__, "provider_id", provider_id)
17277
+ pulumi.set(__self__, "service_account_email", service_account_email)
17278
+ pulumi.set(__self__, "workload_pool_id", workload_pool_id)
17279
+
17280
+ @property
17281
+ @pulumi.getter(name="delegateSelectors")
17282
+ def delegate_selectors(self) -> Sequence[str]:
17283
+ """
17284
+ The delegates to inherit the credentials from.
17285
+ """
17286
+ return pulumi.get(self, "delegate_selectors")
17287
+
17288
+ @property
17289
+ @pulumi.getter(name="gcpProjectId")
17290
+ def gcp_project_id(self) -> str:
17291
+ """
17292
+ The project number of the GCP project that is used to create the workload identity..
17293
+ """
17294
+ return pulumi.get(self, "gcp_project_id")
17295
+
17296
+ @property
17297
+ @pulumi.getter(name="providerId")
17298
+ def provider_id(self) -> str:
17299
+ """
17300
+ The OIDC provider ID value configured in GCP.
17301
+ """
17302
+ return pulumi.get(self, "provider_id")
17303
+
17304
+ @property
17305
+ @pulumi.getter(name="serviceAccountEmail")
17306
+ def service_account_email(self) -> str:
17307
+ """
17308
+ The service account linked to workload identity pool while setting GCP workload identity provider.
17309
+ """
17310
+ return pulumi.get(self, "service_account_email")
17311
+
17312
+ @property
17313
+ @pulumi.getter(name="workloadPoolId")
17314
+ def workload_pool_id(self) -> str:
17315
+ """
17316
+ The workload pool ID value created in GCP.
17317
+ """
17318
+ return pulumi.get(self, "workload_pool_id")
17319
+
17320
+
16855
17321
  @pulumi.output_type
16856
17322
  class GetConnectorJdbcCredentialResult(dict):
16857
17323
  def __init__(__self__, *,
@@ -17508,6 +17974,57 @@ class GetGcpConnectorOidcAuthenticationResult(dict):
17508
17974
  return pulumi.get(self, "workload_pool_id")
17509
17975
 
17510
17976
 
17977
+ @pulumi.output_type
17978
+ class GetGcpSecretManagerConnectorOidcAuthenticationResult(dict):
17979
+ def __init__(__self__, *,
17980
+ gcp_project_id: str,
17981
+ provider_id: str,
17982
+ service_account_email: str,
17983
+ workload_pool_id: str):
17984
+ """
17985
+ :param str gcp_project_id: The project number of the GCP project that is used to create the workload identity..
17986
+ :param str provider_id: The OIDC provider ID value configured in GCP.
17987
+ :param str service_account_email: The service account linked to workload identity pool while setting GCP workload identity provider.
17988
+ :param str workload_pool_id: The workload pool ID value created in GCP.
17989
+ """
17990
+ pulumi.set(__self__, "gcp_project_id", gcp_project_id)
17991
+ pulumi.set(__self__, "provider_id", provider_id)
17992
+ pulumi.set(__self__, "service_account_email", service_account_email)
17993
+ pulumi.set(__self__, "workload_pool_id", workload_pool_id)
17994
+
17995
+ @property
17996
+ @pulumi.getter(name="gcpProjectId")
17997
+ def gcp_project_id(self) -> str:
17998
+ """
17999
+ The project number of the GCP project that is used to create the workload identity..
18000
+ """
18001
+ return pulumi.get(self, "gcp_project_id")
18002
+
18003
+ @property
18004
+ @pulumi.getter(name="providerId")
18005
+ def provider_id(self) -> str:
18006
+ """
18007
+ The OIDC provider ID value configured in GCP.
18008
+ """
18009
+ return pulumi.get(self, "provider_id")
18010
+
18011
+ @property
18012
+ @pulumi.getter(name="serviceAccountEmail")
18013
+ def service_account_email(self) -> str:
18014
+ """
18015
+ The service account linked to workload identity pool while setting GCP workload identity provider.
18016
+ """
18017
+ return pulumi.get(self, "service_account_email")
18018
+
18019
+ @property
18020
+ @pulumi.getter(name="workloadPoolId")
18021
+ def workload_pool_id(self) -> str:
18022
+ """
18023
+ The workload pool ID value created in GCP.
18024
+ """
18025
+ return pulumi.get(self, "workload_pool_id")
18026
+
18027
+
17511
18028
  @pulumi.output_type
17512
18029
  class GetGitConnectorCredentialResult(dict):
17513
18030
  def __init__(__self__, *,