@pulumi/aws 7.10.0-alpha.1761243490 → 7.10.0

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.
Files changed (70) hide show
  1. package/appstream/directoryConfig.d.ts +16 -0
  2. package/appstream/directoryConfig.js +6 -0
  3. package/appstream/directoryConfig.js.map +1 -1
  4. package/bedrock/agentAgent.d.ts +4 -3
  5. package/bedrock/agentAgent.js +1 -0
  6. package/bedrock/agentAgent.js.map +1 -1
  7. package/bedrock/agentcoreApiKeyCredentialProvider.d.ts +26 -0
  8. package/bedrock/agentcoreApiKeyCredentialProvider.js +14 -1
  9. package/bedrock/agentcoreApiKeyCredentialProvider.js.map +1 -1
  10. package/bedrock/agentcoreMemory.d.ts +202 -0
  11. package/bedrock/agentcoreMemory.js +115 -0
  12. package/bedrock/agentcoreMemory.js.map +1 -0
  13. package/bedrock/agentcoreMemoryStrategy.d.ts +275 -0
  14. package/bedrock/agentcoreMemoryStrategy.js +215 -0
  15. package/bedrock/agentcoreMemoryStrategy.js.map +1 -0
  16. package/bedrock/agentcoreOauth2CredentialProvider.d.ts +169 -0
  17. package/bedrock/agentcoreOauth2CredentialProvider.js +123 -0
  18. package/bedrock/agentcoreOauth2CredentialProvider.js.map +1 -0
  19. package/bedrock/agentcoreTokenVaultCmk.d.ts +99 -0
  20. package/bedrock/agentcoreTokenVaultCmk.js +78 -0
  21. package/bedrock/agentcoreTokenVaultCmk.js.map +1 -0
  22. package/bedrock/agentcoreWorkloadIdentity.d.ts +127 -0
  23. package/bedrock/agentcoreWorkloadIdentity.js +96 -0
  24. package/bedrock/agentcoreWorkloadIdentity.js.map +1 -0
  25. package/bedrock/index.d.ts +15 -0
  26. package/bedrock/index.js +26 -1
  27. package/bedrock/index.js.map +1 -1
  28. package/cloudtrail/trail.d.ts +3 -3
  29. package/docdb/cluster.d.ts +18 -0
  30. package/docdb/cluster.js +3 -1
  31. package/docdb/cluster.js.map +1 -1
  32. package/ecs/taskDefinition.d.ts +3 -3
  33. package/kms/keyPolicy.d.ts +3 -3
  34. package/odb/network.d.ts +12 -0
  35. package/odb/network.js +2 -0
  36. package/odb/network.js.map +1 -1
  37. package/organizations/account.d.ts +28 -4
  38. package/organizations/account.js +2 -0
  39. package/organizations/account.js.map +1 -1
  40. package/organizations/getOrganization.d.ts +7 -7
  41. package/organizations/getOrganization.js +6 -6
  42. package/organizations/organization.d.ts +13 -13
  43. package/package.json +2 -2
  44. package/rds/cluster.d.ts +15 -0
  45. package/rds/cluster.js +3 -1
  46. package/rds/cluster.js.map +1 -1
  47. package/rds/instance.d.ts +15 -0
  48. package/rds/instance.js +3 -1
  49. package/rds/instance.js.map +1 -1
  50. package/redshift/cluster.d.ts +27 -0
  51. package/redshift/cluster.js +3 -1
  52. package/redshift/cluster.js.map +1 -1
  53. package/redshiftserverless/namespace.d.ts +18 -0
  54. package/redshiftserverless/namespace.js +3 -1
  55. package/redshiftserverless/namespace.js.map +1 -1
  56. package/secretsmanager/secretVersion.d.ts +15 -0
  57. package/secretsmanager/secretVersion.js +3 -1
  58. package/secretsmanager/secretVersion.js.map +1 -1
  59. package/ssm/parameter.d.ts +15 -0
  60. package/ssm/parameter.js +3 -1
  61. package/ssm/parameter.js.map +1 -1
  62. package/transfer/hostKey.d.ts +26 -0
  63. package/transfer/hostKey.js +14 -1
  64. package/transfer/hostKey.js.map +1 -1
  65. package/types/input.d.ts +446 -15
  66. package/types/input.js.map +1 -1
  67. package/types/output.d.ts +519 -32
  68. package/types/output.js.map +1 -1
  69. package/workspaces/getWorkspace.d.ts +19 -0
  70. package/workspaces/getWorkspace.js.map +1 -1
@@ -4,6 +4,17 @@ import * as pulumi from "@pulumi/pulumi";
4
4
  *
5
5
  * ## Example Usage
6
6
  *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as aws from "@pulumi/aws";
10
+ *
11
+ * const example = new aws.transfer.HostKey("example", {
12
+ * serverId: exampleAwsTransferServer.id,
13
+ * description: "example additional host key",
14
+ * hostKeyBodyWo: "# Private key PEM.\n",
15
+ * });
16
+ * ```
17
+ *
7
18
  * ## Import
8
19
  *
9
20
  * Using `pulumi import`, import host keys using the `server_id` and `host_key_id` separated by `,`. For example:
@@ -40,6 +51,11 @@ export declare class HostKey extends pulumi.CustomResource {
40
51
  * Private key portion of an SSH key pair.
41
52
  */
42
53
  readonly hostKeyBody: pulumi.Output<string | undefined>;
54
+ /**
55
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
56
+ * Write-only private key portion of an SSH key pair, guaranteed not to be written to plan or state artifacts. One of `hostKeyBody` or `hostKeyBodyWo` must be configured.
57
+ */
58
+ readonly hostKeyBodyWo: pulumi.Output<string | undefined>;
43
59
  /**
44
60
  * Public key fingerprint.
45
61
  */
@@ -93,6 +109,11 @@ export interface HostKeyState {
93
109
  * Private key portion of an SSH key pair.
94
110
  */
95
111
  hostKeyBody?: pulumi.Input<string>;
112
+ /**
113
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
114
+ * Write-only private key portion of an SSH key pair, guaranteed not to be written to plan or state artifacts. One of `hostKeyBody` or `hostKeyBodyWo` must be configured.
115
+ */
116
+ hostKeyBodyWo?: pulumi.Input<string>;
96
117
  /**
97
118
  * Public key fingerprint.
98
119
  */
@@ -134,6 +155,11 @@ export interface HostKeyArgs {
134
155
  * Private key portion of an SSH key pair.
135
156
  */
136
157
  hostKeyBody?: pulumi.Input<string>;
158
+ /**
159
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
160
+ * Write-only private key portion of an SSH key pair, guaranteed not to be written to plan or state artifacts. One of `hostKeyBody` or `hostKeyBodyWo` must be configured.
161
+ */
162
+ hostKeyBodyWo?: pulumi.Input<string>;
137
163
  /**
138
164
  * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
139
165
  */
@@ -10,6 +10,17 @@ const utilities = require("../utilities");
10
10
  *
11
11
  * ## Example Usage
12
12
  *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as aws from "@pulumi/aws";
16
+ *
17
+ * const example = new aws.transfer.HostKey("example", {
18
+ * serverId: exampleAwsTransferServer.id,
19
+ * description: "example additional host key",
20
+ * hostKeyBodyWo: "# Private key PEM.\n",
21
+ * });
22
+ * ```
23
+ *
13
24
  * ## Import
14
25
  *
15
26
  * Using `pulumi import`, import host keys using the `server_id` and `host_key_id` separated by `,`. For example:
@@ -49,6 +60,7 @@ class HostKey extends pulumi.CustomResource {
49
60
  resourceInputs["arn"] = state?.arn;
50
61
  resourceInputs["description"] = state?.description;
51
62
  resourceInputs["hostKeyBody"] = state?.hostKeyBody;
63
+ resourceInputs["hostKeyBodyWo"] = state?.hostKeyBodyWo;
52
64
  resourceInputs["hostKeyFingerprint"] = state?.hostKeyFingerprint;
53
65
  resourceInputs["hostKeyId"] = state?.hostKeyId;
54
66
  resourceInputs["region"] = state?.region;
@@ -63,6 +75,7 @@ class HostKey extends pulumi.CustomResource {
63
75
  }
64
76
  resourceInputs["description"] = args?.description;
65
77
  resourceInputs["hostKeyBody"] = args?.hostKeyBody ? pulumi.secret(args.hostKeyBody) : undefined;
78
+ resourceInputs["hostKeyBodyWo"] = args?.hostKeyBodyWo ? pulumi.secret(args.hostKeyBodyWo) : undefined;
66
79
  resourceInputs["region"] = args?.region;
67
80
  resourceInputs["serverId"] = args?.serverId;
68
81
  resourceInputs["tags"] = args?.tags;
@@ -72,7 +85,7 @@ class HostKey extends pulumi.CustomResource {
72
85
  resourceInputs["tagsAll"] = undefined /*out*/;
73
86
  }
74
87
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
75
- const secretOpts = { additionalSecretOutputs: ["hostKeyBody"] };
88
+ const secretOpts = { additionalSecretOutputs: ["hostKeyBody", "hostKeyBodyWo"] };
76
89
  opts = pulumi.mergeOptions(opts, secretOpts);
77
90
  super(HostKey.__pulumiType, name, resourceInputs, opts);
78
91
  }
@@ -1 +1 @@
1
- {"version":3,"file":"hostKey.js","sourceRoot":"","sources":["../../transfer/hostKey.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"hostKey.js","sourceRoot":"","sources":["../../transfer/hostKey.ts"],"names":[],"mappings":"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"}
package/types/input.d.ts CHANGED
@@ -930,6 +930,10 @@ export interface ProviderEndpoint {
930
930
  * Use this to override the default service endpoint URL
931
931
  */
932
932
  networkfirewall?: pulumi.Input<string>;
933
+ /**
934
+ * Use this to override the default service endpoint URL
935
+ */
936
+ networkflowmonitor?: pulumi.Input<string>;
933
937
  /**
934
938
  * Use this to override the default service endpoint URL
935
939
  */
@@ -950,6 +954,10 @@ export interface ProviderEndpoint {
950
954
  * Use this to override the default service endpoint URL
951
955
  */
952
956
  oam?: pulumi.Input<string>;
957
+ /**
958
+ * Use this to override the default service endpoint URL
959
+ */
960
+ observabilityadmin?: pulumi.Input<string>;
953
961
  /**
954
962
  * Use this to override the default service endpoint URL
955
963
  */
@@ -7360,6 +7368,16 @@ export declare namespace apprunner {
7360
7368
  }
7361
7369
  }
7362
7370
  export declare namespace appstream {
7371
+ interface DirectoryConfigCertificateBasedAuthProperties {
7372
+ /**
7373
+ * The ARN of the AWS Certificate Manager Private CA resource.
7374
+ */
7375
+ certificateAuthorityArn?: pulumi.Input<string>;
7376
+ /**
7377
+ * The status of the certificate-based authentication properties. Valid values - ["DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"].
7378
+ */
7379
+ status?: pulumi.Input<string>;
7380
+ }
7363
7381
  interface DirectoryConfigServiceAccountCredentials {
7364
7382
  /**
7365
7383
  * User name of the account. This account must have the following privileges: create computer objects, join computers to the domain, and change/reset the password on descendant computer objects for the organizational units specified.
@@ -12695,6 +12713,391 @@ export declare namespace bedrock {
12695
12713
  */
12696
12714
  workloadIdentityArn: pulumi.Input<string>;
12697
12715
  }
12716
+ interface AgentcoreMemoryStrategyConfiguration {
12717
+ /**
12718
+ * Consolidation configuration for processing and organizing memory content. See `consolidation` below. Once added, this block cannot be removed without recreating the resource.
12719
+ */
12720
+ consolidation?: pulumi.Input<inputs.bedrock.AgentcoreMemoryStrategyConfigurationConsolidation>;
12721
+ /**
12722
+ * Extraction configuration for identifying and extracting relevant information. See `extraction` below. Cannot be used with `type` set to `SUMMARY_OVERRIDE`. Once added, this block cannot be removed without recreating the resource.
12723
+ */
12724
+ extraction?: pulumi.Input<inputs.bedrock.AgentcoreMemoryStrategyConfigurationExtraction>;
12725
+ /**
12726
+ * Type of custom override. Valid values: `SEMANTIC_OVERRIDE`, `SUMMARY_OVERRIDE`, `USER_PREFERENCE_OVERRIDE`. Changing this forces a new resource.
12727
+ */
12728
+ type: pulumi.Input<string>;
12729
+ }
12730
+ interface AgentcoreMemoryStrategyConfigurationConsolidation {
12731
+ /**
12732
+ * Additional text to append to the model prompt for consolidation processing.
12733
+ */
12734
+ appendToPrompt: pulumi.Input<string>;
12735
+ /**
12736
+ * ID of the foundation model to use for consolidation processing.
12737
+ */
12738
+ modelId: pulumi.Input<string>;
12739
+ }
12740
+ interface AgentcoreMemoryStrategyConfigurationExtraction {
12741
+ /**
12742
+ * Additional text to append to the model prompt for extraction processing.
12743
+ */
12744
+ appendToPrompt: pulumi.Input<string>;
12745
+ /**
12746
+ * ID of the foundation model to use for extraction processing.
12747
+ */
12748
+ modelId: pulumi.Input<string>;
12749
+ }
12750
+ interface AgentcoreMemoryStrategyTimeouts {
12751
+ /**
12752
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
12753
+ */
12754
+ create?: pulumi.Input<string>;
12755
+ /**
12756
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
12757
+ */
12758
+ delete?: pulumi.Input<string>;
12759
+ /**
12760
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
12761
+ */
12762
+ update?: pulumi.Input<string>;
12763
+ }
12764
+ interface AgentcoreMemoryTimeouts {
12765
+ /**
12766
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
12767
+ */
12768
+ create?: pulumi.Input<string>;
12769
+ /**
12770
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
12771
+ */
12772
+ delete?: pulumi.Input<string>;
12773
+ }
12774
+ interface AgentcoreOauth2CredentialProviderClientSecretArn {
12775
+ /**
12776
+ * ARN of the secret in AWS Secrets Manager.
12777
+ */
12778
+ secretArn: pulumi.Input<string>;
12779
+ }
12780
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfig {
12781
+ /**
12782
+ * Custom OAuth2 provider configuration. See `custom` below.
12783
+ */
12784
+ customOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfig>;
12785
+ /**
12786
+ * GitHub OAuth provider configuration. See `github` below.
12787
+ */
12788
+ githubOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfig>;
12789
+ /**
12790
+ * Google OAuth provider configuration. See `google` below.
12791
+ */
12792
+ googleOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfig>;
12793
+ /**
12794
+ * Microsoft OAuth provider configuration. See `microsoft` below.
12795
+ */
12796
+ microsoftOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfig>;
12797
+ /**
12798
+ * Salesforce OAuth provider configuration. See `salesforce` below.
12799
+ */
12800
+ salesforceOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfig>;
12801
+ /**
12802
+ * Slack OAuth provider configuration. See `slack` below.
12803
+ */
12804
+ slackOauth2ProviderConfig?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfig>;
12805
+ }
12806
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfig {
12807
+ /**
12808
+ * Used together with write-only credentials to trigger an update. Increment this value when an update to `clientIdWo` or `clientSecretWo` is required.
12809
+ *
12810
+ * **OAuth Discovery Configuration:**
12811
+ */
12812
+ clientCredentialsWoVersion?: pulumi.Input<number>;
12813
+ /**
12814
+ * OAuth2 client ID. Cannot be used with `clientIdWo`. Must be used together with `clientSecret`.
12815
+ */
12816
+ clientId?: pulumi.Input<string>;
12817
+ /**
12818
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12819
+ * Write-only OAuth2 client ID. Cannot be used with `clientId`. Must be used together with `clientSecretWo` and `clientCredentialsWoVersion`.
12820
+ */
12821
+ clientIdWo?: pulumi.Input<string>;
12822
+ /**
12823
+ * OAuth2 client secret. Cannot be used with `clientSecretWo`. Must be used together with `clientId`.
12824
+ *
12825
+ * **Write-Only Credentials (choose one pair):**
12826
+ */
12827
+ clientSecret?: pulumi.Input<string>;
12828
+ /**
12829
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12830
+ * Write-only OAuth2 client secret. Cannot be used with `clientSecret`. Must be used together with `clientIdWo` and `clientCredentialsWoVersion`.
12831
+ */
12832
+ clientSecretWo?: pulumi.Input<string>;
12833
+ /**
12834
+ * OAuth discovery configuration. See `oauthDiscovery` below.
12835
+ */
12836
+ oauthDiscovery?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfigOauthDiscovery>;
12837
+ }
12838
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfigOauthDiscovery {
12839
+ /**
12840
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
12841
+ */
12842
+ authorizationServerMetadata?: pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>;
12843
+ /**
12844
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
12845
+ */
12846
+ discoveryUrl?: pulumi.Input<string>;
12847
+ }
12848
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigCustomOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
12849
+ /**
12850
+ * OAuth2 authorization endpoint URL.
12851
+ */
12852
+ authorizationEndpoint: pulumi.Input<string>;
12853
+ /**
12854
+ * OAuth2 authorization server issuer identifier.
12855
+ */
12856
+ issuer: pulumi.Input<string>;
12857
+ /**
12858
+ * Set of OAuth2 response types supported by the authorization server.
12859
+ */
12860
+ responseTypes?: pulumi.Input<pulumi.Input<string>[]>;
12861
+ /**
12862
+ * OAuth2 token endpoint URL.
12863
+ */
12864
+ tokenEndpoint: pulumi.Input<string>;
12865
+ }
12866
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfig {
12867
+ clientCredentialsWoVersion?: pulumi.Input<number>;
12868
+ clientId?: pulumi.Input<string>;
12869
+ /**
12870
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12871
+ */
12872
+ clientIdWo?: pulumi.Input<string>;
12873
+ clientSecret?: pulumi.Input<string>;
12874
+ /**
12875
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12876
+ */
12877
+ clientSecretWo?: pulumi.Input<string>;
12878
+ /**
12879
+ * OAuth discovery configuration. See `oauthDiscovery` below.
12880
+ */
12881
+ oauthDiscoveries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfigOauthDiscovery>[]>;
12882
+ }
12883
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfigOauthDiscovery {
12884
+ /**
12885
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
12886
+ */
12887
+ authorizationServerMetadatas: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>[]>;
12888
+ /**
12889
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
12890
+ */
12891
+ discoveryUrl: pulumi.Input<string>;
12892
+ }
12893
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGithubOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
12894
+ /**
12895
+ * OAuth2 authorization endpoint URL.
12896
+ */
12897
+ authorizationEndpoint: pulumi.Input<string>;
12898
+ /**
12899
+ * OAuth2 authorization server issuer identifier.
12900
+ */
12901
+ issuer: pulumi.Input<string>;
12902
+ /**
12903
+ * Set of OAuth2 response types supported by the authorization server.
12904
+ */
12905
+ responseTypes: pulumi.Input<pulumi.Input<string>[]>;
12906
+ /**
12907
+ * OAuth2 token endpoint URL.
12908
+ */
12909
+ tokenEndpoint: pulumi.Input<string>;
12910
+ }
12911
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfig {
12912
+ clientCredentialsWoVersion?: pulumi.Input<number>;
12913
+ clientId?: pulumi.Input<string>;
12914
+ /**
12915
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12916
+ */
12917
+ clientIdWo?: pulumi.Input<string>;
12918
+ clientSecret?: pulumi.Input<string>;
12919
+ /**
12920
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12921
+ */
12922
+ clientSecretWo?: pulumi.Input<string>;
12923
+ /**
12924
+ * OAuth discovery configuration. See `oauthDiscovery` below.
12925
+ */
12926
+ oauthDiscoveries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfigOauthDiscovery>[]>;
12927
+ }
12928
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfigOauthDiscovery {
12929
+ /**
12930
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
12931
+ */
12932
+ authorizationServerMetadatas: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>[]>;
12933
+ /**
12934
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
12935
+ */
12936
+ discoveryUrl: pulumi.Input<string>;
12937
+ }
12938
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigGoogleOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
12939
+ /**
12940
+ * OAuth2 authorization endpoint URL.
12941
+ */
12942
+ authorizationEndpoint: pulumi.Input<string>;
12943
+ /**
12944
+ * OAuth2 authorization server issuer identifier.
12945
+ */
12946
+ issuer: pulumi.Input<string>;
12947
+ /**
12948
+ * Set of OAuth2 response types supported by the authorization server.
12949
+ */
12950
+ responseTypes: pulumi.Input<pulumi.Input<string>[]>;
12951
+ /**
12952
+ * OAuth2 token endpoint URL.
12953
+ */
12954
+ tokenEndpoint: pulumi.Input<string>;
12955
+ }
12956
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfig {
12957
+ clientCredentialsWoVersion?: pulumi.Input<number>;
12958
+ clientId?: pulumi.Input<string>;
12959
+ /**
12960
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12961
+ */
12962
+ clientIdWo?: pulumi.Input<string>;
12963
+ clientSecret?: pulumi.Input<string>;
12964
+ /**
12965
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
12966
+ */
12967
+ clientSecretWo?: pulumi.Input<string>;
12968
+ /**
12969
+ * OAuth discovery configuration. See `oauthDiscovery` below.
12970
+ */
12971
+ oauthDiscoveries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfigOauthDiscovery>[]>;
12972
+ }
12973
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfigOauthDiscovery {
12974
+ /**
12975
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
12976
+ */
12977
+ authorizationServerMetadatas: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>[]>;
12978
+ /**
12979
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
12980
+ */
12981
+ discoveryUrl: pulumi.Input<string>;
12982
+ }
12983
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigMicrosoftOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
12984
+ /**
12985
+ * OAuth2 authorization endpoint URL.
12986
+ */
12987
+ authorizationEndpoint: pulumi.Input<string>;
12988
+ /**
12989
+ * OAuth2 authorization server issuer identifier.
12990
+ */
12991
+ issuer: pulumi.Input<string>;
12992
+ /**
12993
+ * Set of OAuth2 response types supported by the authorization server.
12994
+ */
12995
+ responseTypes: pulumi.Input<pulumi.Input<string>[]>;
12996
+ /**
12997
+ * OAuth2 token endpoint URL.
12998
+ */
12999
+ tokenEndpoint: pulumi.Input<string>;
13000
+ }
13001
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfig {
13002
+ clientCredentialsWoVersion?: pulumi.Input<number>;
13003
+ clientId?: pulumi.Input<string>;
13004
+ /**
13005
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
13006
+ */
13007
+ clientIdWo?: pulumi.Input<string>;
13008
+ clientSecret?: pulumi.Input<string>;
13009
+ /**
13010
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
13011
+ */
13012
+ clientSecretWo?: pulumi.Input<string>;
13013
+ /**
13014
+ * OAuth discovery configuration. See `oauthDiscovery` below.
13015
+ */
13016
+ oauthDiscoveries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfigOauthDiscovery>[]>;
13017
+ }
13018
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfigOauthDiscovery {
13019
+ /**
13020
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
13021
+ */
13022
+ authorizationServerMetadatas: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>[]>;
13023
+ /**
13024
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
13025
+ */
13026
+ discoveryUrl: pulumi.Input<string>;
13027
+ }
13028
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSalesforceOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
13029
+ /**
13030
+ * OAuth2 authorization endpoint URL.
13031
+ */
13032
+ authorizationEndpoint: pulumi.Input<string>;
13033
+ /**
13034
+ * OAuth2 authorization server issuer identifier.
13035
+ */
13036
+ issuer: pulumi.Input<string>;
13037
+ /**
13038
+ * Set of OAuth2 response types supported by the authorization server.
13039
+ */
13040
+ responseTypes: pulumi.Input<pulumi.Input<string>[]>;
13041
+ /**
13042
+ * OAuth2 token endpoint URL.
13043
+ */
13044
+ tokenEndpoint: pulumi.Input<string>;
13045
+ }
13046
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfig {
13047
+ clientCredentialsWoVersion?: pulumi.Input<number>;
13048
+ clientId?: pulumi.Input<string>;
13049
+ /**
13050
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
13051
+ */
13052
+ clientIdWo?: pulumi.Input<string>;
13053
+ clientSecret?: pulumi.Input<string>;
13054
+ /**
13055
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
13056
+ */
13057
+ clientSecretWo?: pulumi.Input<string>;
13058
+ /**
13059
+ * OAuth discovery configuration. See `oauthDiscovery` below.
13060
+ */
13061
+ oauthDiscoveries?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfigOauthDiscovery>[]>;
13062
+ }
13063
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfigOauthDiscovery {
13064
+ /**
13065
+ * Manual OAuth2 authorization server metadata configuration. Cannot be used together with `discoveryUrl`. See `authorizationServerMetadata` below.
13066
+ */
13067
+ authorizationServerMetadatas: pulumi.Input<pulumi.Input<inputs.bedrock.AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata>[]>;
13068
+ /**
13069
+ * OpenID Connect discovery URL (e.g., `https://provider.com/.well-known/openid-configuration`). Cannot be used together with `authorizationServerMetadata`.
13070
+ */
13071
+ discoveryUrl: pulumi.Input<string>;
13072
+ }
13073
+ interface AgentcoreOauth2CredentialProviderOauth2ProviderConfigSlackOauth2ProviderConfigOauthDiscoveryAuthorizationServerMetadata {
13074
+ /**
13075
+ * OAuth2 authorization endpoint URL.
13076
+ */
13077
+ authorizationEndpoint: pulumi.Input<string>;
13078
+ /**
13079
+ * OAuth2 authorization server issuer identifier.
13080
+ */
13081
+ issuer: pulumi.Input<string>;
13082
+ /**
13083
+ * Set of OAuth2 response types supported by the authorization server.
13084
+ */
13085
+ responseTypes: pulumi.Input<pulumi.Input<string>[]>;
13086
+ /**
13087
+ * OAuth2 token endpoint URL.
13088
+ */
13089
+ tokenEndpoint: pulumi.Input<string>;
13090
+ }
13091
+ interface AgentcoreTokenVaultCmkKmsConfiguration {
13092
+ /**
13093
+ * Type of KMS key. Valid values: `CustomerManagedKey`, `ServiceManagedKey`.
13094
+ */
13095
+ keyType: pulumi.Input<string>;
13096
+ /**
13097
+ * ARN of the KMS key.
13098
+ */
13099
+ kmsKeyArn?: pulumi.Input<string>;
13100
+ }
12698
13101
  interface CustomModelOutputDataConfig {
12699
13102
  /**
12700
13103
  * The S3 URI where the output data is stored.
@@ -33004,7 +33407,7 @@ export declare namespace fis {
33004
33407
  }
33005
33408
  interface ExperimentTemplateActionTarget {
33006
33409
  /**
33007
- * Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/actions.html#action-targets) for more details.
33410
+ * Target type. Valid values are `AutoScalingGroups` (EC2 Auto Scaling groups), `Buckets` (S3 Buckets), `Cluster` (EKS Cluster), `Clusters` (ECS Clusters), `DBInstances` (RDS DB Instances), `Instances` (EC2 Instances), `ManagedResources` (EKS clusters, Application and Network Load Balancers, and EC2 Auto Scaling groups that are enabled for ARC zonal shift), `Nodegroups` (EKS Node groups), `Pods` (EKS Pods), `ReplicationGroups`(ElastiCache Redis Replication Groups), `Roles` (IAM Roles), `SpotInstances` (EC2 Spot Instances), `Subnets` (VPC Subnets), `Tables` (DynamoDB encrypted global tables), `Tasks` (ECS Tasks), `TransitGateways` (Transit gateways), `Volumes` (EBS Volumes). See the [documentation](https://docs.aws.amazon.com/fis/latest/userguide/action-sequence.html#action-targets) for more details.
33008
33411
  */
33009
33412
  key: pulumi.Input<string>;
33010
33413
  /**
@@ -62843,59 +63246,87 @@ export declare namespace opensearchingest {
62843
63246
  export declare namespace organizations {
62844
63247
  interface OrganizationAccount {
62845
63248
  /**
62846
- * ARN of the root
63249
+ * ARN of the root.
62847
63250
  */
62848
63251
  arn?: pulumi.Input<string>;
62849
63252
  /**
62850
- * Email of the account
63253
+ * Email of the account.
62851
63254
  */
62852
63255
  email?: pulumi.Input<string>;
62853
63256
  /**
62854
- * Identifier of the root
63257
+ * Identifier of the root.
62855
63258
  */
62856
63259
  id?: pulumi.Input<string>;
62857
63260
  /**
62858
- * The name of the policy type
63261
+ * Method by which the account joined the organization.
63262
+ */
63263
+ joinedMethod?: pulumi.Input<string>;
63264
+ /**
63265
+ * Date the account became a part of the organization.
63266
+ */
63267
+ joinedTimestamp?: pulumi.Input<string>;
63268
+ /**
63269
+ * Name of the policy type.
62859
63270
  */
62860
63271
  name?: pulumi.Input<string>;
62861
63272
  /**
62862
- * The status of the policy type as it relates to the associated root
63273
+ * State of the account.
63274
+ */
63275
+ state?: pulumi.Input<string>;
63276
+ /**
63277
+ * Status of the policy type as it relates to the associated root.
63278
+ *
63279
+ * @deprecated status is deprecated. Use state instead.
62863
63280
  */
62864
63281
  status?: pulumi.Input<string>;
62865
63282
  }
62866
63283
  interface OrganizationNonMasterAccount {
62867
63284
  /**
62868
- * ARN of the root
63285
+ * ARN of the root.
62869
63286
  */
62870
63287
  arn?: pulumi.Input<string>;
62871
63288
  /**
62872
- * Email of the account
63289
+ * Email of the account.
62873
63290
  */
62874
63291
  email?: pulumi.Input<string>;
62875
63292
  /**
62876
- * Identifier of the root
63293
+ * Identifier of the root.
62877
63294
  */
62878
63295
  id?: pulumi.Input<string>;
62879
63296
  /**
62880
- * The name of the policy type
63297
+ * Method by which the account joined the organization.
63298
+ */
63299
+ joinedMethod?: pulumi.Input<string>;
63300
+ /**
63301
+ * Date the account became a part of the organization.
63302
+ */
63303
+ joinedTimestamp?: pulumi.Input<string>;
63304
+ /**
63305
+ * Name of the policy type.
62881
63306
  */
62882
63307
  name?: pulumi.Input<string>;
62883
63308
  /**
62884
- * The status of the policy type as it relates to the associated root
63309
+ * State of the account.
63310
+ */
63311
+ state?: pulumi.Input<string>;
63312
+ /**
63313
+ * Status of the policy type as it relates to the associated root.
63314
+ *
63315
+ * @deprecated status is deprecated. Use state instead.
62885
63316
  */
62886
63317
  status?: pulumi.Input<string>;
62887
63318
  }
62888
63319
  interface OrganizationRoot {
62889
63320
  /**
62890
- * ARN of the root
63321
+ * ARN of the root.
62891
63322
  */
62892
63323
  arn?: pulumi.Input<string>;
62893
63324
  /**
62894
- * Identifier of the root
63325
+ * Identifier of the root.
62895
63326
  */
62896
63327
  id?: pulumi.Input<string>;
62897
63328
  /**
62898
- * The name of the policy type
63329
+ * Name of the policy type.
62899
63330
  */
62900
63331
  name?: pulumi.Input<string>;
62901
63332
  /**
@@ -62905,7 +63336,7 @@ export declare namespace organizations {
62905
63336
  }
62906
63337
  interface OrganizationRootPolicyType {
62907
63338
  /**
62908
- * The status of the policy type as it relates to the associated root
63339
+ * Status of the policy type as it relates to the associated root.
62909
63340
  */
62910
63341
  status?: pulumi.Input<string>;
62911
63342
  type?: pulumi.Input<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA+wpEjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAytqEjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;QAC/E,OAAO;YACH,GAAG,GAAG;YACN,WAAW,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,WAAW;SAChD,CAAC;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}