@pulumi/aws-native 1.73.0 → 1.73.1
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.
- package/amplifyuibuilder/component.d.ts +6 -2
- package/amplifyuibuilder/component.d.ts.map +1 -1
- package/amplifyuibuilder/getComponent.d.ts +3 -1
- package/amplifyuibuilder/getComponent.d.ts.map +1 -1
- package/appintegrations/dataIntegration.d.ts +6 -2
- package/appintegrations/dataIntegration.d.ts.map +1 -1
- package/appintegrations/getDataIntegration.d.ts +3 -1
- package/appintegrations/getDataIntegration.d.ts.map +1 -1
- package/devopsagent/service.js +1 -1
- package/devopsagent/service.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/s3/storageLens.d.ts +168 -0
- package/s3/storageLens.d.ts.map +1 -1
- package/s3/storageLens.js +168 -0
- package/s3/storageLens.js.map +1 -1
- package/sagemaker/cluster.js +1 -1
- package/sagemaker/cluster.js.map +1 -1
- package/securityhub/connectorV2.js +1 -1
- package/securityhub/connectorV2.js.map +1 -1
- package/ssmquicksetup/getLifecycleAutomation.d.ts +1 -1
- package/ssmquicksetup/getLifecycleAutomation.d.ts.map +1 -1
- package/ssmquicksetup/lifecycleAutomation.d.ts +2 -2
- package/ssmquicksetup/lifecycleAutomation.d.ts.map +1 -1
- package/types/enums/bedrockagentcore/index.d.ts +8 -0
- package/types/enums/bedrockagentcore/index.d.ts.map +1 -1
- package/types/enums/bedrockagentcore/index.js +5 -1
- package/types/enums/bedrockagentcore/index.js.map +1 -1
- package/types/enums/devopsagent/index.d.ts +119 -0
- package/types/enums/devopsagent/index.d.ts.map +1 -1
- package/types/enums/devopsagent/index.js +71 -1
- package/types/enums/devopsagent/index.js.map +1 -1
- package/types/enums/rtbfabric/index.d.ts +5 -0
- package/types/enums/rtbfabric/index.d.ts.map +1 -1
- package/types/enums/rtbfabric/index.js +5 -1
- package/types/enums/rtbfabric/index.js.map +1 -1
- package/types/enums/s3/index.d.ts +10 -0
- package/types/enums/s3/index.d.ts.map +1 -1
- package/types/enums/s3/index.js +5 -1
- package/types/enums/s3/index.js.map +1 -1
- package/types/enums/sagemaker/index.d.ts +9 -0
- package/types/enums/sagemaker/index.d.ts.map +1 -1
- package/types/enums/sagemaker/index.js +8 -3
- package/types/enums/sagemaker/index.js.map +1 -1
- package/types/enums/securityhub/index.d.ts +8 -0
- package/types/enums/securityhub/index.d.ts.map +1 -1
- package/types/enums/securityhub/index.js +5 -1
- package/types/enums/securityhub/index.js.map +1 -1
- package/types/input.d.ts +1135 -4
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +1310 -4
- package/types/output.d.ts.map +1 -1
- package/types/output.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -1437,7 +1437,9 @@ export declare namespace amplifyuibuilder {
|
|
|
1437
1437
|
* The properties of the component variant that can be overriden when customizing an instance of the component. You can't specify `tags` as a valid property for `overrides` .
|
|
1438
1438
|
*/
|
|
1439
1439
|
overrides?: pulumi.Input<{
|
|
1440
|
-
[key: string]:
|
|
1440
|
+
[key: string]: pulumi.Input<{
|
|
1441
|
+
[key: string]: pulumi.Input<string>;
|
|
1442
|
+
}>;
|
|
1441
1443
|
} | undefined>;
|
|
1442
1444
|
/**
|
|
1443
1445
|
* The combination of variants that comprise this variant.
|
|
@@ -11287,7 +11289,9 @@ export declare namespace bcmdataexports {
|
|
|
11287
11289
|
* The table configuration.
|
|
11288
11290
|
*/
|
|
11289
11291
|
tableConfigurations?: pulumi.Input<{
|
|
11290
|
-
[key: string]:
|
|
11292
|
+
[key: string]: pulumi.Input<{
|
|
11293
|
+
[key: string]: pulumi.Input<string>;
|
|
11294
|
+
}>;
|
|
11291
11295
|
} | undefined>;
|
|
11292
11296
|
}
|
|
11293
11297
|
interface ExportDestinationConfigurationsArgs {
|
|
@@ -16563,6 +16567,37 @@ export declare namespace bedrockagentcore {
|
|
|
16563
16567
|
*/
|
|
16564
16568
|
maxLifetime?: pulumi.Input<number | undefined>;
|
|
16565
16569
|
}
|
|
16570
|
+
/**
|
|
16571
|
+
* Managed VPC resource configuration
|
|
16572
|
+
*/
|
|
16573
|
+
interface RuntimeManagedVpcResourceArgs {
|
|
16574
|
+
/**
|
|
16575
|
+
* The IP address type for the endpoint
|
|
16576
|
+
*/
|
|
16577
|
+
endpointIpAddressType: pulumi.Input<enums.bedrockagentcore.RuntimeManagedVpcResourceEndpointIpAddressType>;
|
|
16578
|
+
/**
|
|
16579
|
+
* An intermediate domain to use as the resource configuration endpoint instead of the actual target domain
|
|
16580
|
+
*/
|
|
16581
|
+
routingDomain?: pulumi.Input<string | undefined>;
|
|
16582
|
+
/**
|
|
16583
|
+
* The security group IDs
|
|
16584
|
+
*/
|
|
16585
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
16586
|
+
/**
|
|
16587
|
+
* The subnet IDs
|
|
16588
|
+
*/
|
|
16589
|
+
subnetIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
16590
|
+
/**
|
|
16591
|
+
* Tags to apply to the managed VPC Lattice resource gateway
|
|
16592
|
+
*/
|
|
16593
|
+
tags?: pulumi.Input<{
|
|
16594
|
+
[key: string]: pulumi.Input<string>;
|
|
16595
|
+
} | undefined>;
|
|
16596
|
+
/**
|
|
16597
|
+
* The VPC identifier
|
|
16598
|
+
*/
|
|
16599
|
+
vpcIdentifier: pulumi.Input<string>;
|
|
16600
|
+
}
|
|
16566
16601
|
interface RuntimeNetworkConfigurationArgs {
|
|
16567
16602
|
/**
|
|
16568
16603
|
* The network mode.
|
|
@@ -16574,6 +16609,8 @@ export declare namespace bedrockagentcore {
|
|
|
16574
16609
|
* Private endpoint configuration. Exactly one of SelfManagedLatticeResource or ManagedVpcResource must be specified.
|
|
16575
16610
|
*/
|
|
16576
16611
|
interface RuntimePrivateEndpointArgs {
|
|
16612
|
+
managedVpcResource?: pulumi.Input<inputs.bedrockagentcore.RuntimeManagedVpcResourceArgs | undefined>;
|
|
16613
|
+
selfManagedLatticeResource?: pulumi.Input<inputs.bedrockagentcore.RuntimeSelfManagedLatticeResourceArgs | undefined>;
|
|
16577
16614
|
}
|
|
16578
16615
|
/**
|
|
16579
16616
|
* Override mapping of a domain to a private endpoint
|
|
@@ -16615,6 +16652,15 @@ export declare namespace bedrockagentcore {
|
|
|
16615
16652
|
*/
|
|
16616
16653
|
versionId?: pulumi.Input<string | undefined>;
|
|
16617
16654
|
}
|
|
16655
|
+
/**
|
|
16656
|
+
* Self-managed VPC Lattice resource configuration
|
|
16657
|
+
*/
|
|
16658
|
+
interface RuntimeSelfManagedLatticeResourceArgs {
|
|
16659
|
+
/**
|
|
16660
|
+
* The identifier of the VPC Lattice resource configuration
|
|
16661
|
+
*/
|
|
16662
|
+
resourceConfigurationIdentifier: pulumi.Input<string>;
|
|
16663
|
+
}
|
|
16618
16664
|
/**
|
|
16619
16665
|
* Configuration for session storage
|
|
16620
16666
|
*/
|
|
@@ -28404,7 +28450,7 @@ export declare namespace datazone {
|
|
|
28404
28450
|
* The tracking assets of the Amazon SageMaker run.
|
|
28405
28451
|
*/
|
|
28406
28452
|
trackingAssets: pulumi.Input<{
|
|
28407
|
-
[key: string]:
|
|
28453
|
+
[key: string]: pulumi.Input<pulumi.Input<string>[]>;
|
|
28408
28454
|
}>;
|
|
28409
28455
|
}
|
|
28410
28456
|
/**
|
|
@@ -28497,10 +28543,30 @@ export declare namespace datazone {
|
|
|
28497
28543
|
interface FormTypeModelArgs {
|
|
28498
28544
|
smithy?: pulumi.Input<string | undefined>;
|
|
28499
28545
|
}
|
|
28546
|
+
/**
|
|
28547
|
+
* The properties of the domain unit owners group.
|
|
28548
|
+
*/
|
|
28549
|
+
interface OwnerGroupPropertiesArgs {
|
|
28550
|
+
/**
|
|
28551
|
+
* The ID of the domain unit owners group.
|
|
28552
|
+
*/
|
|
28553
|
+
groupIdentifier?: pulumi.Input<string | undefined>;
|
|
28554
|
+
}
|
|
28500
28555
|
/**
|
|
28501
28556
|
* The properties of a domain unit's owner.
|
|
28502
28557
|
*/
|
|
28503
28558
|
interface OwnerPropertiesArgs {
|
|
28559
|
+
group?: pulumi.Input<inputs.datazone.OwnerGroupPropertiesArgs | undefined>;
|
|
28560
|
+
user?: pulumi.Input<inputs.datazone.OwnerUserPropertiesArgs | undefined>;
|
|
28561
|
+
}
|
|
28562
|
+
/**
|
|
28563
|
+
* The properties of the owner user.
|
|
28564
|
+
*/
|
|
28565
|
+
interface OwnerUserPropertiesArgs {
|
|
28566
|
+
/**
|
|
28567
|
+
* The ID of the owner user.
|
|
28568
|
+
*/
|
|
28569
|
+
userIdentifier?: pulumi.Input<string | undefined>;
|
|
28504
28570
|
}
|
|
28505
28571
|
interface PolicyGrantAddToProjectMemberPoolPolicyGrantDetailArgs {
|
|
28506
28572
|
includeChildDomainUnits?: pulumi.Input<boolean | undefined>;
|
|
@@ -28934,7 +29000,34 @@ export declare namespace deadline {
|
|
|
28934
29000
|
*/
|
|
28935
29001
|
user: pulumi.Input<string>;
|
|
28936
29002
|
}
|
|
29003
|
+
interface QueuePriorityBalancedSchedulingConfigurationArgs {
|
|
29004
|
+
renderingTaskBuffer?: pulumi.Input<number | undefined>;
|
|
29005
|
+
}
|
|
29006
|
+
interface QueuePriorityFifoSchedulingConfigurationArgs {
|
|
29007
|
+
}
|
|
28937
29008
|
interface QueueSchedulingConfigurationArgs {
|
|
29009
|
+
priorityBalanced?: pulumi.Input<inputs.deadline.QueuePriorityBalancedSchedulingConfigurationArgs | undefined>;
|
|
29010
|
+
priorityFifo?: pulumi.Input<inputs.deadline.QueuePriorityFifoSchedulingConfigurationArgs | undefined>;
|
|
29011
|
+
weightedBalanced?: pulumi.Input<inputs.deadline.QueueWeightedBalancedSchedulingConfigurationArgs | undefined>;
|
|
29012
|
+
}
|
|
29013
|
+
interface QueueSchedulingMaxPriorityOverrideAlwaysScheduleFirstArgs {
|
|
29014
|
+
}
|
|
29015
|
+
interface QueueSchedulingMaxPriorityOverridePropertiesArgs {
|
|
29016
|
+
alwaysScheduleFirst: pulumi.Input<inputs.deadline.QueueSchedulingMaxPriorityOverrideAlwaysScheduleFirstArgs>;
|
|
29017
|
+
}
|
|
29018
|
+
interface QueueSchedulingMinPriorityOverrideAlwaysScheduleLastArgs {
|
|
29019
|
+
}
|
|
29020
|
+
interface QueueSchedulingMinPriorityOverridePropertiesArgs {
|
|
29021
|
+
alwaysScheduleLast: pulumi.Input<inputs.deadline.QueueSchedulingMinPriorityOverrideAlwaysScheduleLastArgs>;
|
|
29022
|
+
}
|
|
29023
|
+
interface QueueWeightedBalancedSchedulingConfigurationArgs {
|
|
29024
|
+
errorWeight?: pulumi.Input<number | undefined>;
|
|
29025
|
+
maxPriorityOverride?: pulumi.Input<inputs.deadline.QueueSchedulingMaxPriorityOverridePropertiesArgs | undefined>;
|
|
29026
|
+
minPriorityOverride?: pulumi.Input<inputs.deadline.QueueSchedulingMinPriorityOverridePropertiesArgs | undefined>;
|
|
29027
|
+
priorityWeight?: pulumi.Input<number | undefined>;
|
|
29028
|
+
renderingTaskBuffer?: pulumi.Input<number | undefined>;
|
|
29029
|
+
renderingTaskWeight?: pulumi.Input<number | undefined>;
|
|
29030
|
+
submissionTimeWeight?: pulumi.Input<number | undefined>;
|
|
28938
29031
|
}
|
|
28939
29032
|
interface QueueWindowsUserArgs {
|
|
28940
29033
|
/**
|
|
@@ -29039,20 +29132,739 @@ export declare namespace devopsagent {
|
|
|
29039
29132
|
iam?: pulumi.Input<inputs.devopsagent.AgentSpaceIamAuthConfigurationArgs | undefined>;
|
|
29040
29133
|
idc?: pulumi.Input<inputs.devopsagent.AgentSpaceIdcAuthConfigurationArgs | undefined>;
|
|
29041
29134
|
}
|
|
29135
|
+
/**
|
|
29136
|
+
* AWS association for 'monitor' account
|
|
29137
|
+
*/
|
|
29138
|
+
interface AssociationAwsConfigurationArgs {
|
|
29139
|
+
/**
|
|
29140
|
+
* AWS Account Id corresponding to provided resources
|
|
29141
|
+
*/
|
|
29142
|
+
accountId: pulumi.Input<string>;
|
|
29143
|
+
/**
|
|
29144
|
+
* Account Type 'monitor' for DevOpsAgent monitoring
|
|
29145
|
+
*/
|
|
29146
|
+
accountType: pulumi.Input<enums.devopsagent.AssociationAwsConfigurationAccountType>;
|
|
29147
|
+
/**
|
|
29148
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
29149
|
+
*/
|
|
29150
|
+
assumableRoleArn: pulumi.Input<string>;
|
|
29151
|
+
resources?: pulumi.Input<pulumi.Input<inputs.devopsagent.AssociationAwsResourceArgs>[] | undefined>;
|
|
29152
|
+
tags?: pulumi.Input<pulumi.Input<inputs.devopsagent.AssociationKeyValuePairArgs>[] | undefined>;
|
|
29153
|
+
}
|
|
29154
|
+
/**
|
|
29155
|
+
* AWS resource definition
|
|
29156
|
+
*/
|
|
29157
|
+
interface AssociationAwsResourceArgs {
|
|
29158
|
+
/**
|
|
29159
|
+
* The Amazon Resource Name (ARN) of the resource
|
|
29160
|
+
*/
|
|
29161
|
+
resourceArn: pulumi.Input<string>;
|
|
29162
|
+
/**
|
|
29163
|
+
* Additional metadata for the resource
|
|
29164
|
+
*/
|
|
29165
|
+
resourceMetadata?: any | undefined;
|
|
29166
|
+
/**
|
|
29167
|
+
* Resource type
|
|
29168
|
+
*/
|
|
29169
|
+
resourceType?: pulumi.Input<enums.devopsagent.AssociationAwsResourceResourceType | undefined>;
|
|
29170
|
+
}
|
|
29171
|
+
/**
|
|
29172
|
+
* Azure subscription integration configuration
|
|
29173
|
+
*/
|
|
29174
|
+
interface AssociationAzureConfigurationArgs {
|
|
29175
|
+
/**
|
|
29176
|
+
* Azure subscription ID corresponding to provided resources
|
|
29177
|
+
*/
|
|
29178
|
+
subscriptionId: pulumi.Input<string>;
|
|
29179
|
+
}
|
|
29180
|
+
/**
|
|
29181
|
+
* Dynatrace monitoring configuration
|
|
29182
|
+
*/
|
|
29183
|
+
interface AssociationDynatraceConfigurationArgs {
|
|
29184
|
+
/**
|
|
29185
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29186
|
+
*/
|
|
29187
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29188
|
+
/**
|
|
29189
|
+
* Dynatrace environment id
|
|
29190
|
+
*/
|
|
29191
|
+
envId: pulumi.Input<string>;
|
|
29192
|
+
/**
|
|
29193
|
+
* List of Dynatrace resources to monitor
|
|
29194
|
+
*/
|
|
29195
|
+
resources?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29196
|
+
}
|
|
29197
|
+
/**
|
|
29198
|
+
* EventChannelconfiguration
|
|
29199
|
+
*/
|
|
29200
|
+
interface AssociationEventChannelConfigurationArgs {
|
|
29201
|
+
/**
|
|
29202
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29203
|
+
*/
|
|
29204
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29205
|
+
}
|
|
29206
|
+
/**
|
|
29207
|
+
* GitHub repository integration configuration
|
|
29208
|
+
*/
|
|
29209
|
+
interface AssociationGitHubConfigurationArgs {
|
|
29210
|
+
/**
|
|
29211
|
+
* Repository owner
|
|
29212
|
+
*/
|
|
29213
|
+
owner: pulumi.Input<string>;
|
|
29214
|
+
/**
|
|
29215
|
+
* Type of repository owner
|
|
29216
|
+
*/
|
|
29217
|
+
ownerType: pulumi.Input<enums.devopsagent.AssociationGitHubConfigurationOwnerType>;
|
|
29218
|
+
/**
|
|
29219
|
+
* Associated Github repo ID
|
|
29220
|
+
*/
|
|
29221
|
+
repoId: pulumi.Input<string>;
|
|
29222
|
+
/**
|
|
29223
|
+
* Associated Github repo name
|
|
29224
|
+
*/
|
|
29225
|
+
repoName: pulumi.Input<string>;
|
|
29226
|
+
}
|
|
29227
|
+
/**
|
|
29228
|
+
* GitLab project integration configuration
|
|
29229
|
+
*/
|
|
29230
|
+
interface AssociationGitLabConfigurationArgs {
|
|
29231
|
+
/**
|
|
29232
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29233
|
+
*/
|
|
29234
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29235
|
+
/**
|
|
29236
|
+
* GitLab instance identifier
|
|
29237
|
+
*/
|
|
29238
|
+
instanceIdentifier?: pulumi.Input<string | undefined>;
|
|
29239
|
+
/**
|
|
29240
|
+
* GitLab numeric project ID
|
|
29241
|
+
*/
|
|
29242
|
+
projectId: pulumi.Input<string>;
|
|
29243
|
+
/**
|
|
29244
|
+
* Full GitLab project path (e.g., namespace/project-name)
|
|
29245
|
+
*/
|
|
29246
|
+
projectPath: pulumi.Input<string>;
|
|
29247
|
+
}
|
|
29248
|
+
/**
|
|
29249
|
+
* A key-value pair for tags
|
|
29250
|
+
*/
|
|
29251
|
+
interface AssociationKeyValuePairArgs {
|
|
29252
|
+
key: pulumi.Input<string>;
|
|
29253
|
+
value: pulumi.Input<string>;
|
|
29254
|
+
}
|
|
29255
|
+
/**
|
|
29256
|
+
* MCP server configuration
|
|
29257
|
+
*/
|
|
29258
|
+
interface AssociationMcpServerConfigurationArgs {
|
|
29259
|
+
/**
|
|
29260
|
+
* The description of the MCP server
|
|
29261
|
+
*/
|
|
29262
|
+
description?: pulumi.Input<string | undefined>;
|
|
29263
|
+
/**
|
|
29264
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29265
|
+
*/
|
|
29266
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29267
|
+
/**
|
|
29268
|
+
* MCP server endpoint URL
|
|
29269
|
+
*/
|
|
29270
|
+
endpoint?: pulumi.Input<string | undefined>;
|
|
29271
|
+
/**
|
|
29272
|
+
* The name of the MCP server
|
|
29273
|
+
*/
|
|
29274
|
+
name?: pulumi.Input<string | undefined>;
|
|
29275
|
+
/**
|
|
29276
|
+
* List of MCP tools that can be used with the association
|
|
29277
|
+
*/
|
|
29278
|
+
tools: pulumi.Input<pulumi.Input<string>[]>;
|
|
29279
|
+
}
|
|
29280
|
+
/**
|
|
29281
|
+
* Datadog MCP server configuration
|
|
29282
|
+
*/
|
|
29283
|
+
interface AssociationMcpServerDatadogConfigurationArgs {
|
|
29284
|
+
/**
|
|
29285
|
+
* The description of the MCP server
|
|
29286
|
+
*/
|
|
29287
|
+
description?: pulumi.Input<string | undefined>;
|
|
29288
|
+
/**
|
|
29289
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29290
|
+
*/
|
|
29291
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29292
|
+
/**
|
|
29293
|
+
* MCP server endpoint URL
|
|
29294
|
+
*/
|
|
29295
|
+
endpoint?: pulumi.Input<string | undefined>;
|
|
29296
|
+
/**
|
|
29297
|
+
* The name of the MCP server
|
|
29298
|
+
*/
|
|
29299
|
+
name?: pulumi.Input<string | undefined>;
|
|
29300
|
+
}
|
|
29301
|
+
/**
|
|
29302
|
+
* Grafana MCP server configuration
|
|
29303
|
+
*/
|
|
29304
|
+
interface AssociationMcpServerGrafanaConfigurationArgs {
|
|
29305
|
+
/**
|
|
29306
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29307
|
+
*/
|
|
29308
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29309
|
+
/**
|
|
29310
|
+
* MCP server endpoint URL
|
|
29311
|
+
*/
|
|
29312
|
+
endpoint: pulumi.Input<string>;
|
|
29313
|
+
/**
|
|
29314
|
+
* List of tool categories to enable for the Grafana MCP server
|
|
29315
|
+
*/
|
|
29316
|
+
tools?: pulumi.Input<pulumi.Input<enums.devopsagent.AssociationMcpServerGrafanaConfigurationToolsItem>[] | undefined>;
|
|
29317
|
+
}
|
|
29318
|
+
/**
|
|
29319
|
+
* NewRelic MCP server configuration
|
|
29320
|
+
*/
|
|
29321
|
+
interface AssociationMcpServerNewRelicConfigurationArgs {
|
|
29322
|
+
/**
|
|
29323
|
+
* New Relic Account ID
|
|
29324
|
+
*/
|
|
29325
|
+
accountId: pulumi.Input<string>;
|
|
29326
|
+
/**
|
|
29327
|
+
* MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/)
|
|
29328
|
+
*/
|
|
29329
|
+
endpoint: pulumi.Input<string>;
|
|
29330
|
+
}
|
|
29331
|
+
/**
|
|
29332
|
+
* SigV4-authenticated MCP server configuration
|
|
29333
|
+
*/
|
|
29334
|
+
interface AssociationMcpServerSigV4ConfigurationArgs {
|
|
29335
|
+
/**
|
|
29336
|
+
* List of MCP tools available for the association
|
|
29337
|
+
*/
|
|
29338
|
+
tools: pulumi.Input<pulumi.Input<string>[]>;
|
|
29339
|
+
}
|
|
29340
|
+
/**
|
|
29341
|
+
* Splunk MCP server configuration
|
|
29342
|
+
*/
|
|
29343
|
+
interface AssociationMcpServerSplunkConfigurationArgs {
|
|
29344
|
+
/**
|
|
29345
|
+
* The description of the MCP server
|
|
29346
|
+
*/
|
|
29347
|
+
description?: pulumi.Input<string | undefined>;
|
|
29348
|
+
/**
|
|
29349
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29350
|
+
*/
|
|
29351
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29352
|
+
/**
|
|
29353
|
+
* MCP server endpoint URL
|
|
29354
|
+
*/
|
|
29355
|
+
endpoint?: pulumi.Input<string | undefined>;
|
|
29356
|
+
/**
|
|
29357
|
+
* The name of the MCP server
|
|
29358
|
+
*/
|
|
29359
|
+
name?: pulumi.Input<string | undefined>;
|
|
29360
|
+
}
|
|
29361
|
+
/**
|
|
29362
|
+
* PagerDuty integration configuration
|
|
29363
|
+
*/
|
|
29364
|
+
interface AssociationPagerDutyConfigurationArgs {
|
|
29365
|
+
/**
|
|
29366
|
+
* Email to be used in PagerDuty API header
|
|
29367
|
+
*/
|
|
29368
|
+
customerEmail: pulumi.Input<string>;
|
|
29369
|
+
/**
|
|
29370
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29371
|
+
*/
|
|
29372
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29373
|
+
/**
|
|
29374
|
+
* List of PagerDuty service IDs available for the association
|
|
29375
|
+
*/
|
|
29376
|
+
services: pulumi.Input<pulumi.Input<string>[]>;
|
|
29377
|
+
}
|
|
29042
29378
|
/**
|
|
29043
29379
|
* The configuration that directs how AgentSpace interacts with the given service
|
|
29044
29380
|
*/
|
|
29045
29381
|
interface AssociationServiceConfigurationArgs {
|
|
29382
|
+
aws?: pulumi.Input<inputs.devopsagent.AssociationAwsConfigurationArgs | undefined>;
|
|
29383
|
+
azure?: pulumi.Input<inputs.devopsagent.AssociationAzureConfigurationArgs | undefined>;
|
|
29384
|
+
dynatrace?: pulumi.Input<inputs.devopsagent.AssociationDynatraceConfigurationArgs | undefined>;
|
|
29385
|
+
eventChannel?: pulumi.Input<inputs.devopsagent.AssociationEventChannelConfigurationArgs | undefined>;
|
|
29386
|
+
gitHub?: pulumi.Input<inputs.devopsagent.AssociationGitHubConfigurationArgs | undefined>;
|
|
29387
|
+
gitLab?: pulumi.Input<inputs.devopsagent.AssociationGitLabConfigurationArgs | undefined>;
|
|
29388
|
+
mcpServer?: pulumi.Input<inputs.devopsagent.AssociationMcpServerConfigurationArgs | undefined>;
|
|
29389
|
+
mcpServerDatadog?: pulumi.Input<inputs.devopsagent.AssociationMcpServerDatadogConfigurationArgs | undefined>;
|
|
29390
|
+
mcpServerGrafana?: pulumi.Input<inputs.devopsagent.AssociationMcpServerGrafanaConfigurationArgs | undefined>;
|
|
29391
|
+
mcpServerNewRelic?: pulumi.Input<inputs.devopsagent.AssociationMcpServerNewRelicConfigurationArgs | undefined>;
|
|
29392
|
+
mcpServerSigV4?: pulumi.Input<inputs.devopsagent.AssociationMcpServerSigV4ConfigurationArgs | undefined>;
|
|
29393
|
+
mcpServerSplunk?: pulumi.Input<inputs.devopsagent.AssociationMcpServerSplunkConfigurationArgs | undefined>;
|
|
29394
|
+
pagerDuty?: pulumi.Input<inputs.devopsagent.AssociationPagerDutyConfigurationArgs | undefined>;
|
|
29395
|
+
serviceNow?: pulumi.Input<inputs.devopsagent.AssociationServiceNowConfigurationArgs | undefined>;
|
|
29396
|
+
slack?: pulumi.Input<inputs.devopsagent.AssociationSlackConfigurationArgs | undefined>;
|
|
29397
|
+
sourceAws?: pulumi.Input<inputs.devopsagent.AssociationSourceAwsConfigurationArgs | undefined>;
|
|
29398
|
+
}
|
|
29399
|
+
/**
|
|
29400
|
+
* ServiceNow integration configuration
|
|
29401
|
+
*/
|
|
29402
|
+
interface AssociationServiceNowConfigurationArgs {
|
|
29403
|
+
/**
|
|
29404
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
29405
|
+
*/
|
|
29406
|
+
enableWebhookUpdates?: pulumi.Input<boolean | undefined>;
|
|
29407
|
+
/**
|
|
29408
|
+
* ServiceNow instance ID
|
|
29409
|
+
*/
|
|
29410
|
+
instanceId?: pulumi.Input<string | undefined>;
|
|
29411
|
+
}
|
|
29412
|
+
/**
|
|
29413
|
+
* Slack channel configuration
|
|
29414
|
+
*/
|
|
29415
|
+
interface AssociationSlackChannelArgs {
|
|
29416
|
+
/**
|
|
29417
|
+
* Slack channel ID
|
|
29418
|
+
*/
|
|
29419
|
+
channelId: pulumi.Input<string>;
|
|
29420
|
+
/**
|
|
29421
|
+
* Slack channel name
|
|
29422
|
+
*/
|
|
29423
|
+
channelName?: pulumi.Input<string | undefined>;
|
|
29424
|
+
}
|
|
29425
|
+
/**
|
|
29426
|
+
* Slack workspace integration configuration
|
|
29427
|
+
*/
|
|
29428
|
+
interface AssociationSlackConfigurationArgs {
|
|
29429
|
+
transmissionTarget: pulumi.Input<inputs.devopsagent.AssociationSlackTransmissionTargetArgs>;
|
|
29430
|
+
/**
|
|
29431
|
+
* Associated Slack workspace ID
|
|
29432
|
+
*/
|
|
29433
|
+
workspaceId: pulumi.Input<string>;
|
|
29434
|
+
/**
|
|
29435
|
+
* Associated Slack workspace name
|
|
29436
|
+
*/
|
|
29437
|
+
workspaceName: pulumi.Input<string>;
|
|
29438
|
+
}
|
|
29439
|
+
/**
|
|
29440
|
+
* Transmission targets for agent notifications
|
|
29441
|
+
*/
|
|
29442
|
+
interface AssociationSlackTransmissionTargetArgs {
|
|
29443
|
+
/**
|
|
29444
|
+
* Destination for IncidentResponse agent.
|
|
29445
|
+
*/
|
|
29446
|
+
incidentResponseTarget: pulumi.Input<inputs.devopsagent.AssociationSlackChannelArgs>;
|
|
29447
|
+
}
|
|
29448
|
+
/**
|
|
29449
|
+
* AWS association for 'source' account
|
|
29450
|
+
*/
|
|
29451
|
+
interface AssociationSourceAwsConfigurationArgs {
|
|
29452
|
+
/**
|
|
29453
|
+
* AWS Account Id corresponding to provided resources
|
|
29454
|
+
*/
|
|
29455
|
+
accountId: pulumi.Input<string>;
|
|
29456
|
+
/**
|
|
29457
|
+
* Account Type 'source' for DevOpsAgent monitoring
|
|
29458
|
+
*/
|
|
29459
|
+
accountType: pulumi.Input<enums.devopsagent.AssociationSourceAwsConfigurationAccountType>;
|
|
29460
|
+
/**
|
|
29461
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
29462
|
+
*/
|
|
29463
|
+
assumableRoleArn: pulumi.Input<string>;
|
|
29464
|
+
resources?: pulumi.Input<pulumi.Input<inputs.devopsagent.AssociationAwsResourceArgs>[] | undefined>;
|
|
29465
|
+
tags?: pulumi.Input<pulumi.Input<inputs.devopsagent.AssociationKeyValuePairArgs>[] | undefined>;
|
|
29046
29466
|
}
|
|
29047
29467
|
/**
|
|
29048
29468
|
* The connection configuration, either SelfManaged or ServiceManaged.
|
|
29049
29469
|
*/
|
|
29050
29470
|
interface PrivateConnectionConnectionConfigurationArgs {
|
|
29471
|
+
selfManaged?: pulumi.Input<inputs.devopsagent.PrivateConnectionSelfManagedModeArgs | undefined>;
|
|
29472
|
+
serviceManaged?: pulumi.Input<inputs.devopsagent.PrivateConnectionServiceManagedModeArgs | undefined>;
|
|
29473
|
+
}
|
|
29474
|
+
/**
|
|
29475
|
+
* Configuration for a self-managed Private Connection.
|
|
29476
|
+
*/
|
|
29477
|
+
interface PrivateConnectionSelfManagedModeArgs {
|
|
29478
|
+
/**
|
|
29479
|
+
* The ARN of the Resource Configuration.
|
|
29480
|
+
*/
|
|
29481
|
+
resourceConfigurationId: pulumi.Input<string>;
|
|
29482
|
+
}
|
|
29483
|
+
/**
|
|
29484
|
+
* Configuration for a service-managed Private Connection.
|
|
29485
|
+
*/
|
|
29486
|
+
interface PrivateConnectionServiceManagedModeArgs {
|
|
29487
|
+
/**
|
|
29488
|
+
* DNS resolution mode for the resource gateway. Defaults to PUBLIC when not set.
|
|
29489
|
+
*/
|
|
29490
|
+
dnsResolution?: pulumi.Input<enums.devopsagent.PrivateConnectionServiceManagedModeDnsResolution | undefined>;
|
|
29491
|
+
/**
|
|
29492
|
+
* IP address or DNS name of the target resource.
|
|
29493
|
+
*/
|
|
29494
|
+
hostAddress: pulumi.Input<string>;
|
|
29495
|
+
/**
|
|
29496
|
+
* IP address type of the service-managed Resource Gateway.
|
|
29497
|
+
*/
|
|
29498
|
+
ipAddressType?: pulumi.Input<enums.devopsagent.PrivateConnectionServiceManagedModeIpAddressType | undefined>;
|
|
29499
|
+
/**
|
|
29500
|
+
* Number of IPv4 addresses in each ENI for the service-managed Resource Gateway.
|
|
29501
|
+
*/
|
|
29502
|
+
ipv4AddressesPerEni?: pulumi.Input<number | undefined>;
|
|
29503
|
+
/**
|
|
29504
|
+
* TCP port ranges that a consumer can use to access the resource.
|
|
29505
|
+
*/
|
|
29506
|
+
portRanges?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29507
|
+
/**
|
|
29508
|
+
* Security groups to attach to the service-managed Resource Gateway.
|
|
29509
|
+
*/
|
|
29510
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29511
|
+
/**
|
|
29512
|
+
* Subnets that the service-managed Resource Gateway will span.
|
|
29513
|
+
*/
|
|
29514
|
+
subnetIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29515
|
+
/**
|
|
29516
|
+
* VPC to create the service-managed Resource Gateway in.
|
|
29517
|
+
*/
|
|
29518
|
+
vpcId: pulumi.Input<string>;
|
|
29519
|
+
}
|
|
29520
|
+
/**
|
|
29521
|
+
* API key authentication details
|
|
29522
|
+
*/
|
|
29523
|
+
interface ServiceApiKeyDetailsArgs {
|
|
29524
|
+
/**
|
|
29525
|
+
* HTTP header name to send the API key
|
|
29526
|
+
*/
|
|
29527
|
+
apiKeyHeader: pulumi.Input<string>;
|
|
29528
|
+
/**
|
|
29529
|
+
* User friendly API key name
|
|
29530
|
+
*/
|
|
29531
|
+
apiKeyName: pulumi.Input<string>;
|
|
29532
|
+
/**
|
|
29533
|
+
* API key value
|
|
29534
|
+
*/
|
|
29535
|
+
apiKeyValue: pulumi.Input<string>;
|
|
29536
|
+
}
|
|
29537
|
+
/**
|
|
29538
|
+
* Azure Identity service configuration for federated identity
|
|
29539
|
+
*/
|
|
29540
|
+
interface ServiceAzureIdentityServiceDetailsArgs {
|
|
29541
|
+
/**
|
|
29542
|
+
* Azure AD application client ID
|
|
29543
|
+
*/
|
|
29544
|
+
clientId: pulumi.Input<string>;
|
|
29545
|
+
/**
|
|
29546
|
+
* Azure AD tenant ID
|
|
29547
|
+
*/
|
|
29548
|
+
tenantId: pulumi.Input<string>;
|
|
29549
|
+
/**
|
|
29550
|
+
* ARN of the IAM role for web identity token exchange
|
|
29551
|
+
*/
|
|
29552
|
+
webIdentityRoleArn: pulumi.Input<string>;
|
|
29553
|
+
/**
|
|
29554
|
+
* List of audiences for the web identity token
|
|
29555
|
+
*/
|
|
29556
|
+
webIdentityTokenAudiences: pulumi.Input<pulumi.Input<string>[]>;
|
|
29557
|
+
}
|
|
29558
|
+
/**
|
|
29559
|
+
* Bearer token authentication details
|
|
29560
|
+
*/
|
|
29561
|
+
interface ServiceBearerTokenDetailsArgs {
|
|
29562
|
+
/**
|
|
29563
|
+
* HTTP header name to send the bearer token
|
|
29564
|
+
*/
|
|
29565
|
+
authorizationHeader?: pulumi.Input<string | undefined>;
|
|
29566
|
+
/**
|
|
29567
|
+
* User friendly bearer token name
|
|
29568
|
+
*/
|
|
29569
|
+
tokenName: pulumi.Input<string>;
|
|
29570
|
+
/**
|
|
29571
|
+
* Bearer token value
|
|
29572
|
+
*/
|
|
29573
|
+
tokenValue: pulumi.Input<string>;
|
|
29051
29574
|
}
|
|
29052
29575
|
/**
|
|
29053
29576
|
* Service-specific configuration details - MCPServerSigV4 supports in-place updates; GitLab (TokenValue), MCPServer (ApiKey or BearerToken credential rotation), MCPServerNewRelic (ApiKey rotation), and MCPServerGrafana (BearerToken rotation) support in-place credential rotation; all other service types and fields require replacement when modified
|
|
29054
29577
|
*/
|
|
29055
29578
|
interface ServiceDetailsArgs {
|
|
29579
|
+
azureIdentity?: pulumi.Input<inputs.devopsagent.ServiceAzureIdentityServiceDetailsArgs | undefined>;
|
|
29580
|
+
dynatrace?: pulumi.Input<inputs.devopsagent.ServiceDynatraceServiceDetailsArgs | undefined>;
|
|
29581
|
+
gitLab?: pulumi.Input<inputs.devopsagent.ServiceGitLabDetailsArgs | undefined>;
|
|
29582
|
+
mcpServer?: pulumi.Input<inputs.devopsagent.ServiceMcpServerDetailsArgs | undefined>;
|
|
29583
|
+
mcpServerGrafana?: pulumi.Input<inputs.devopsagent.ServiceMcpServerGrafanaDetailsArgs | undefined>;
|
|
29584
|
+
mcpServerNewRelic?: pulumi.Input<inputs.devopsagent.ServiceNewRelicServiceDetailsArgs | undefined>;
|
|
29585
|
+
mcpServerSigV4?: pulumi.Input<inputs.devopsagent.ServiceMcpServerSigV4DetailsArgs | undefined>;
|
|
29586
|
+
mcpServerSplunk?: pulumi.Input<inputs.devopsagent.ServiceMcpServerSplunkDetailsArgs | undefined>;
|
|
29587
|
+
pagerDuty?: pulumi.Input<inputs.devopsagent.ServicePagerDutyDetailsArgs | undefined>;
|
|
29588
|
+
serviceNow?: pulumi.Input<inputs.devopsagent.ServiceNowServiceDetailsArgs | undefined>;
|
|
29589
|
+
}
|
|
29590
|
+
/**
|
|
29591
|
+
* Dynatrace OAuth authorization configuration
|
|
29592
|
+
*/
|
|
29593
|
+
interface ServiceDynatraceAuthorizationConfigArgs {
|
|
29594
|
+
oAuthClientCredentials?: pulumi.Input<inputs.devopsagent.ServiceOAuthClientDetailsArgs | undefined>;
|
|
29595
|
+
}
|
|
29596
|
+
/**
|
|
29597
|
+
* Dynatrace service configuration
|
|
29598
|
+
*/
|
|
29599
|
+
interface ServiceDynatraceServiceDetailsArgs {
|
|
29600
|
+
/**
|
|
29601
|
+
* Dynatrace resource account URN
|
|
29602
|
+
*/
|
|
29603
|
+
accountUrn: pulumi.Input<string>;
|
|
29604
|
+
authorizationConfig?: pulumi.Input<inputs.devopsagent.ServiceDynatraceAuthorizationConfigArgs | undefined>;
|
|
29605
|
+
}
|
|
29606
|
+
/**
|
|
29607
|
+
* GitLab service configuration
|
|
29608
|
+
*/
|
|
29609
|
+
interface ServiceGitLabDetailsArgs {
|
|
29610
|
+
/**
|
|
29611
|
+
* Optional GitLab group ID for group-level access tokens
|
|
29612
|
+
*/
|
|
29613
|
+
groupId?: pulumi.Input<string | undefined>;
|
|
29614
|
+
/**
|
|
29615
|
+
* GitLab instance URL
|
|
29616
|
+
*/
|
|
29617
|
+
targetUrl: pulumi.Input<string>;
|
|
29618
|
+
/**
|
|
29619
|
+
* Type of GitLab access token
|
|
29620
|
+
*/
|
|
29621
|
+
tokenType: pulumi.Input<enums.devopsagent.ServiceGitLabDetailsTokenType>;
|
|
29622
|
+
/**
|
|
29623
|
+
* GitLab access token value
|
|
29624
|
+
*/
|
|
29625
|
+
tokenValue: pulumi.Input<string>;
|
|
29626
|
+
}
|
|
29627
|
+
/**
|
|
29628
|
+
* MCP server authorization configuration
|
|
29629
|
+
*/
|
|
29630
|
+
interface ServiceMcpServerAuthorizationConfigArgs {
|
|
29631
|
+
apiKey?: pulumi.Input<inputs.devopsagent.ServiceApiKeyDetailsArgs | undefined>;
|
|
29632
|
+
bearerToken?: pulumi.Input<inputs.devopsagent.ServiceBearerTokenDetailsArgs | undefined>;
|
|
29633
|
+
oAuthClientCredentials?: pulumi.Input<inputs.devopsagent.ServiceMcpServerOAuthClientCredentialsConfigArgs | undefined>;
|
|
29634
|
+
}
|
|
29635
|
+
/**
|
|
29636
|
+
* MCP server configuration
|
|
29637
|
+
*/
|
|
29638
|
+
interface ServiceMcpServerDetailsArgs {
|
|
29639
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServiceMcpServerAuthorizationConfigArgs>;
|
|
29640
|
+
/**
|
|
29641
|
+
* Optional description for the MCP server
|
|
29642
|
+
*/
|
|
29643
|
+
description?: pulumi.Input<string | undefined>;
|
|
29644
|
+
/**
|
|
29645
|
+
* MCP server endpoint URL
|
|
29646
|
+
*/
|
|
29647
|
+
endpoint: pulumi.Input<string>;
|
|
29648
|
+
/**
|
|
29649
|
+
* MCP server name
|
|
29650
|
+
*/
|
|
29651
|
+
name: pulumi.Input<string>;
|
|
29652
|
+
}
|
|
29653
|
+
/**
|
|
29654
|
+
* Grafana MCP server authorization configuration
|
|
29655
|
+
*/
|
|
29656
|
+
interface ServiceMcpServerGrafanaAuthorizationConfigArgs {
|
|
29657
|
+
bearerToken?: pulumi.Input<inputs.devopsagent.ServiceBearerTokenDetailsArgs | undefined>;
|
|
29658
|
+
}
|
|
29659
|
+
/**
|
|
29660
|
+
* Grafana MCP server configuration
|
|
29661
|
+
*/
|
|
29662
|
+
interface ServiceMcpServerGrafanaDetailsArgs {
|
|
29663
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServiceMcpServerGrafanaAuthorizationConfigArgs>;
|
|
29664
|
+
/**
|
|
29665
|
+
* Optional description for the MCP server
|
|
29666
|
+
*/
|
|
29667
|
+
description?: pulumi.Input<string | undefined>;
|
|
29668
|
+
/**
|
|
29669
|
+
* MCP server endpoint URL
|
|
29670
|
+
*/
|
|
29671
|
+
endpoint: pulumi.Input<string>;
|
|
29672
|
+
/**
|
|
29673
|
+
* MCP server name
|
|
29674
|
+
*/
|
|
29675
|
+
name: pulumi.Input<string>;
|
|
29676
|
+
}
|
|
29677
|
+
/**
|
|
29678
|
+
* MCP server OAuth client credentials configuration
|
|
29679
|
+
*/
|
|
29680
|
+
interface ServiceMcpServerOAuthClientCredentialsConfigArgs {
|
|
29681
|
+
/**
|
|
29682
|
+
* OAuth client ID
|
|
29683
|
+
*/
|
|
29684
|
+
clientId: pulumi.Input<string>;
|
|
29685
|
+
/**
|
|
29686
|
+
* User friendly OAuth client name
|
|
29687
|
+
*/
|
|
29688
|
+
clientName?: pulumi.Input<string | undefined>;
|
|
29689
|
+
/**
|
|
29690
|
+
* OAuth client secret
|
|
29691
|
+
*/
|
|
29692
|
+
clientSecret: pulumi.Input<string>;
|
|
29693
|
+
/**
|
|
29694
|
+
* OAuth token exchange parameters
|
|
29695
|
+
*/
|
|
29696
|
+
exchangeParameters?: any | undefined;
|
|
29697
|
+
/**
|
|
29698
|
+
* OAuth token exchange URL
|
|
29699
|
+
*/
|
|
29700
|
+
exchangeUrl: pulumi.Input<string>;
|
|
29701
|
+
/**
|
|
29702
|
+
* OAuth scopes
|
|
29703
|
+
*/
|
|
29704
|
+
scopes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29705
|
+
}
|
|
29706
|
+
/**
|
|
29707
|
+
* SigV4 authorization configuration for MCP server
|
|
29708
|
+
*/
|
|
29709
|
+
interface ServiceMcpServerSigV4AuthorizationConfigArgs {
|
|
29710
|
+
/**
|
|
29711
|
+
* Custom headers for the SigV4 MCP server
|
|
29712
|
+
*/
|
|
29713
|
+
customHeaders?: pulumi.Input<{
|
|
29714
|
+
[key: string]: pulumi.Input<string>;
|
|
29715
|
+
} | undefined>;
|
|
29716
|
+
/**
|
|
29717
|
+
* IAM role ARN to assume for SigV4 signing. Optional - when omitted, credentials are resolved at runtime via a monitor account association.
|
|
29718
|
+
*/
|
|
29719
|
+
mcpRoleArn?: pulumi.Input<string | undefined>;
|
|
29720
|
+
/**
|
|
29721
|
+
* AWS region for SigV4 signing. Use '*' for SigV4a multi-region signing.
|
|
29722
|
+
*/
|
|
29723
|
+
region: pulumi.Input<string>;
|
|
29724
|
+
/**
|
|
29725
|
+
* Deprecated - use McpRoleArn instead. IAM role ARN to assume for SigV4 signing
|
|
29726
|
+
*/
|
|
29727
|
+
roleArn?: pulumi.Input<string | undefined>;
|
|
29728
|
+
/**
|
|
29729
|
+
* AWS service name for SigV4 signing
|
|
29730
|
+
*/
|
|
29731
|
+
service: pulumi.Input<string>;
|
|
29732
|
+
}
|
|
29733
|
+
/**
|
|
29734
|
+
* SigV4-authenticated MCP server configuration
|
|
29735
|
+
*/
|
|
29736
|
+
interface ServiceMcpServerSigV4DetailsArgs {
|
|
29737
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServiceMcpServerSigV4AuthorizationConfigArgs>;
|
|
29738
|
+
/**
|
|
29739
|
+
* Optional description for the MCP server
|
|
29740
|
+
*/
|
|
29741
|
+
description?: pulumi.Input<string | undefined>;
|
|
29742
|
+
/**
|
|
29743
|
+
* MCP server endpoint URL
|
|
29744
|
+
*/
|
|
29745
|
+
endpoint: pulumi.Input<string>;
|
|
29746
|
+
/**
|
|
29747
|
+
* MCP server name
|
|
29748
|
+
*/
|
|
29749
|
+
name: pulumi.Input<string>;
|
|
29750
|
+
}
|
|
29751
|
+
/**
|
|
29752
|
+
* MCP server splunk authorization configuration
|
|
29753
|
+
*/
|
|
29754
|
+
interface ServiceMcpServerSplunkAuthorizationConfigArgs {
|
|
29755
|
+
bearerToken?: pulumi.Input<inputs.devopsagent.ServiceBearerTokenDetailsArgs | undefined>;
|
|
29756
|
+
}
|
|
29757
|
+
/**
|
|
29758
|
+
* Splunk MCP server configuration
|
|
29759
|
+
*/
|
|
29760
|
+
interface ServiceMcpServerSplunkDetailsArgs {
|
|
29761
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServiceMcpServerSplunkAuthorizationConfigArgs>;
|
|
29762
|
+
/**
|
|
29763
|
+
* Optional description for the MCP server
|
|
29764
|
+
*/
|
|
29765
|
+
description?: pulumi.Input<string | undefined>;
|
|
29766
|
+
/**
|
|
29767
|
+
* MCP server endpoint URL
|
|
29768
|
+
*/
|
|
29769
|
+
endpoint: pulumi.Input<string>;
|
|
29770
|
+
/**
|
|
29771
|
+
* MCP server name
|
|
29772
|
+
*/
|
|
29773
|
+
name: pulumi.Input<string>;
|
|
29774
|
+
}
|
|
29775
|
+
/**
|
|
29776
|
+
* New Relic API key configuration
|
|
29777
|
+
*/
|
|
29778
|
+
interface ServiceNewRelicApiKeyConfigArgs {
|
|
29779
|
+
/**
|
|
29780
|
+
* New Relic Account ID
|
|
29781
|
+
*/
|
|
29782
|
+
accountId: pulumi.Input<string>;
|
|
29783
|
+
/**
|
|
29784
|
+
* List of alert policy IDs
|
|
29785
|
+
*/
|
|
29786
|
+
alertPolicyIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29787
|
+
/**
|
|
29788
|
+
* New Relic User API Key
|
|
29789
|
+
*/
|
|
29790
|
+
apiKey: pulumi.Input<string>;
|
|
29791
|
+
/**
|
|
29792
|
+
* List of monitored APM application IDs
|
|
29793
|
+
*/
|
|
29794
|
+
applicationIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29795
|
+
/**
|
|
29796
|
+
* List of globally unique IDs for New Relic resources
|
|
29797
|
+
*/
|
|
29798
|
+
entityGuids?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
29799
|
+
/**
|
|
29800
|
+
* New Relic region
|
|
29801
|
+
*/
|
|
29802
|
+
region: pulumi.Input<enums.devopsagent.ServiceNewRelicApiKeyConfigRegion>;
|
|
29803
|
+
}
|
|
29804
|
+
/**
|
|
29805
|
+
* New Relic authorization configuration
|
|
29806
|
+
*/
|
|
29807
|
+
interface ServiceNewRelicAuthorizationConfigArgs {
|
|
29808
|
+
apiKey: pulumi.Input<inputs.devopsagent.ServiceNewRelicApiKeyConfigArgs>;
|
|
29809
|
+
}
|
|
29810
|
+
/**
|
|
29811
|
+
* New Relic service configuration
|
|
29812
|
+
*/
|
|
29813
|
+
interface ServiceNewRelicServiceDetailsArgs {
|
|
29814
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServiceNewRelicAuthorizationConfigArgs>;
|
|
29815
|
+
}
|
|
29816
|
+
/**
|
|
29817
|
+
* ServiceNow OAuth authorization configuration
|
|
29818
|
+
*/
|
|
29819
|
+
interface ServiceNowAuthorizationConfigArgs {
|
|
29820
|
+
oAuthClientCredentials?: pulumi.Input<inputs.devopsagent.ServiceOAuthClientDetailsArgs | undefined>;
|
|
29821
|
+
}
|
|
29822
|
+
/**
|
|
29823
|
+
* ServiceNow service configuration
|
|
29824
|
+
*/
|
|
29825
|
+
interface ServiceNowServiceDetailsArgs {
|
|
29826
|
+
authorizationConfig?: pulumi.Input<inputs.devopsagent.ServiceNowAuthorizationConfigArgs | undefined>;
|
|
29827
|
+
/**
|
|
29828
|
+
* ServiceNow instance URL
|
|
29829
|
+
*/
|
|
29830
|
+
instanceUrl: pulumi.Input<string>;
|
|
29831
|
+
}
|
|
29832
|
+
/**
|
|
29833
|
+
* OAuth client credentials
|
|
29834
|
+
*/
|
|
29835
|
+
interface ServiceOAuthClientDetailsArgs {
|
|
29836
|
+
/**
|
|
29837
|
+
* OAuth client ID
|
|
29838
|
+
*/
|
|
29839
|
+
clientId: pulumi.Input<string>;
|
|
29840
|
+
/**
|
|
29841
|
+
* User friendly OAuth client name
|
|
29842
|
+
*/
|
|
29843
|
+
clientName?: pulumi.Input<string | undefined>;
|
|
29844
|
+
/**
|
|
29845
|
+
* OAuth client secret
|
|
29846
|
+
*/
|
|
29847
|
+
clientSecret: pulumi.Input<string>;
|
|
29848
|
+
/**
|
|
29849
|
+
* OAuth token exchange parameters
|
|
29850
|
+
*/
|
|
29851
|
+
exchangeParameters?: any | undefined;
|
|
29852
|
+
}
|
|
29853
|
+
/**
|
|
29854
|
+
* PagerDuty OAuth authorization configuration
|
|
29855
|
+
*/
|
|
29856
|
+
interface ServicePagerDutyAuthorizationConfigArgs {
|
|
29857
|
+
oAuthClientCredentials?: pulumi.Input<inputs.devopsagent.ServiceOAuthClientDetailsArgs | undefined>;
|
|
29858
|
+
}
|
|
29859
|
+
/**
|
|
29860
|
+
* PagerDuty service configuration
|
|
29861
|
+
*/
|
|
29862
|
+
interface ServicePagerDutyDetailsArgs {
|
|
29863
|
+
authorizationConfig: pulumi.Input<inputs.devopsagent.ServicePagerDutyAuthorizationConfigArgs>;
|
|
29864
|
+
/**
|
|
29865
|
+
* PagerDuty scopes
|
|
29866
|
+
*/
|
|
29867
|
+
scopes: pulumi.Input<pulumi.Input<string>[]>;
|
|
29056
29868
|
}
|
|
29057
29869
|
}
|
|
29058
29870
|
export declare namespace devopsguru {
|
|
@@ -45127,6 +45939,8 @@ export declare namespace greengrassv2 {
|
|
|
45127
45939
|
rateIncreaseCriteria: pulumi.Input<inputs.greengrassv2.DeploymentIoTJobRateIncreaseCriteriaArgs>;
|
|
45128
45940
|
}
|
|
45129
45941
|
interface DeploymentIoTJobRateIncreaseCriteriaArgs {
|
|
45942
|
+
numberOfNotifiedThings?: pulumi.Input<number | undefined>;
|
|
45943
|
+
numberOfSucceededThings?: pulumi.Input<number | undefined>;
|
|
45130
45944
|
}
|
|
45131
45945
|
interface DeploymentIoTJobTimeoutConfigArgs {
|
|
45132
45946
|
/**
|
|
@@ -46942,7 +47756,7 @@ export declare namespace inspectorv2 {
|
|
|
46942
47756
|
interface CisScanConfigurationCisTargetsArgs {
|
|
46943
47757
|
accountIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
46944
47758
|
targetResourceTags: pulumi.Input<{
|
|
46945
|
-
[key: string]:
|
|
47759
|
+
[key: string]: pulumi.Input<pulumi.Input<string>[]>;
|
|
46946
47760
|
}>;
|
|
46947
47761
|
}
|
|
46948
47762
|
interface CisScanConfigurationDailyScheduleArgs {
|
|
@@ -58609,6 +59423,32 @@ export declare namespace m2 {
|
|
|
58609
59423
|
interface ApplicationDefinition1PropertiesArgs {
|
|
58610
59424
|
content: pulumi.Input<string>;
|
|
58611
59425
|
}
|
|
59426
|
+
/**
|
|
59427
|
+
* Defines the storage configuration for an Amazon EFS file system.
|
|
59428
|
+
*/
|
|
59429
|
+
interface EnvironmentEfsStorageConfigurationArgs {
|
|
59430
|
+
/**
|
|
59431
|
+
* The file system identifier.
|
|
59432
|
+
*/
|
|
59433
|
+
fileSystemId: pulumi.Input<string>;
|
|
59434
|
+
/**
|
|
59435
|
+
* The mount point for the file system.
|
|
59436
|
+
*/
|
|
59437
|
+
mountPoint: pulumi.Input<string>;
|
|
59438
|
+
}
|
|
59439
|
+
/**
|
|
59440
|
+
* Defines the storage configuration for an Amazon FSx file system.
|
|
59441
|
+
*/
|
|
59442
|
+
interface EnvironmentFsxStorageConfigurationArgs {
|
|
59443
|
+
/**
|
|
59444
|
+
* The file system identifier.
|
|
59445
|
+
*/
|
|
59446
|
+
fileSystemId: pulumi.Input<string>;
|
|
59447
|
+
/**
|
|
59448
|
+
* The mount point for the file system.
|
|
59449
|
+
*/
|
|
59450
|
+
mountPoint: pulumi.Input<string>;
|
|
59451
|
+
}
|
|
58612
59452
|
/**
|
|
58613
59453
|
* Defines the details of a high availability configuration.
|
|
58614
59454
|
*/
|
|
@@ -58622,6 +59462,8 @@ export declare namespace m2 {
|
|
|
58622
59462
|
* Defines the storage configuration for an environment.
|
|
58623
59463
|
*/
|
|
58624
59464
|
interface EnvironmentStorageConfigurationArgs {
|
|
59465
|
+
efs?: pulumi.Input<inputs.m2.EnvironmentEfsStorageConfigurationArgs | undefined>;
|
|
59466
|
+
fsx?: pulumi.Input<inputs.m2.EnvironmentFsxStorageConfigurationArgs | undefined>;
|
|
58625
59467
|
}
|
|
58626
59468
|
}
|
|
58627
59469
|
export declare namespace macie {
|
|
@@ -58629,6 +59471,18 @@ export declare namespace macie {
|
|
|
58629
59471
|
* The regex or s3 object to use for the AllowList.
|
|
58630
59472
|
*/
|
|
58631
59473
|
interface AllowListCriteriaArgs {
|
|
59474
|
+
/**
|
|
59475
|
+
* The S3 object key for the AllowList.
|
|
59476
|
+
*/
|
|
59477
|
+
regex?: pulumi.Input<string | undefined>;
|
|
59478
|
+
/**
|
|
59479
|
+
* The S3 location for the AllowList.
|
|
59480
|
+
*/
|
|
59481
|
+
s3WordsList?: pulumi.Input<inputs.macie.AllowListS3WordsListArgs | undefined>;
|
|
59482
|
+
}
|
|
59483
|
+
interface AllowListS3WordsListArgs {
|
|
59484
|
+
bucketName: pulumi.Input<string>;
|
|
59485
|
+
objectKey: pulumi.Input<string>;
|
|
58632
59486
|
}
|
|
58633
59487
|
interface FindingsFilterCriterionAdditionalPropertiesArgs {
|
|
58634
59488
|
/**
|
|
@@ -60479,10 +61333,37 @@ export declare namespace medialive {
|
|
|
60479
61333
|
*/
|
|
60480
61334
|
videoSettings?: pulumi.Input<inputs.medialive.MultiplexprogramMultiplexVideoSettingsArgs | undefined>;
|
|
60481
61335
|
}
|
|
61336
|
+
/**
|
|
61337
|
+
* Statmux rate control settings
|
|
61338
|
+
*/
|
|
61339
|
+
interface MultiplexprogramMultiplexStatmuxVideoSettingsArgs {
|
|
61340
|
+
/**
|
|
61341
|
+
* Maximum statmux bitrate.
|
|
61342
|
+
*/
|
|
61343
|
+
maximumBitrate?: pulumi.Input<number | undefined>;
|
|
61344
|
+
/**
|
|
61345
|
+
* Minimum statmux bitrate.
|
|
61346
|
+
*/
|
|
61347
|
+
minimumBitrate?: pulumi.Input<number | undefined>;
|
|
61348
|
+
/**
|
|
61349
|
+
* The purpose of the priority is to use a combination of the\nmultiplex rate control algorithm and the QVBR capability of the\nencoder to prioritize the video quality of some channels in a\nmultiplex over others. Channels that have a higher priority will\nget higher video quality at the expense of the video quality of\nother channels in the multiplex with lower priority.
|
|
61350
|
+
*/
|
|
61351
|
+
priority?: pulumi.Input<number | undefined>;
|
|
61352
|
+
}
|
|
60482
61353
|
/**
|
|
60483
61354
|
* The video configuration for each program in a multiplex.
|
|
60484
61355
|
*/
|
|
60485
61356
|
interface MultiplexprogramMultiplexVideoSettingsArgs {
|
|
61357
|
+
/**
|
|
61358
|
+
* The constant bitrate configuration for the video encode.
|
|
61359
|
+
* When this field is defined, StatmuxSettings must be undefined.
|
|
61360
|
+
*/
|
|
61361
|
+
constantBitrate?: pulumi.Input<number | undefined>;
|
|
61362
|
+
/**
|
|
61363
|
+
* Statmux rate control settings.
|
|
61364
|
+
* When this field is defined, ConstantBitrate must be undefined.
|
|
61365
|
+
*/
|
|
61366
|
+
statmuxSettings?: pulumi.Input<inputs.medialive.MultiplexprogramMultiplexStatmuxVideoSettingsArgs | undefined>;
|
|
60486
61367
|
}
|
|
60487
61368
|
/**
|
|
60488
61369
|
* IP address cidr pool
|
|
@@ -66318,7 +67199,12 @@ export declare namespace pcaconnectorad {
|
|
|
66318
67199
|
}
|
|
66319
67200
|
}
|
|
66320
67201
|
export declare namespace pcaconnectorscep {
|
|
67202
|
+
interface ConnectorIntuneConfigurationArgs {
|
|
67203
|
+
azureApplicationId: pulumi.Input<string>;
|
|
67204
|
+
domain: pulumi.Input<string>;
|
|
67205
|
+
}
|
|
66321
67206
|
interface ConnectorMobileDeviceManagementArgs {
|
|
67207
|
+
intune?: pulumi.Input<inputs.pcaconnectorscep.ConnectorIntuneConfigurationArgs | undefined>;
|
|
66322
67208
|
}
|
|
66323
67209
|
}
|
|
66324
67210
|
export declare namespace pcs {
|
|
@@ -98168,7 +99054,32 @@ export declare namespace redshift {
|
|
|
98168
99054
|
*/
|
|
98169
99055
|
parameterValue: pulumi.Input<string>;
|
|
98170
99056
|
}
|
|
99057
|
+
/**
|
|
99058
|
+
* Describes a pause cluster operation. For example, a scheduled action to run the `PauseCluster` API operation.
|
|
99059
|
+
*/
|
|
99060
|
+
interface ScheduledActionPauseClusterMessageArgs {
|
|
99061
|
+
clusterIdentifier: pulumi.Input<string>;
|
|
99062
|
+
}
|
|
99063
|
+
/**
|
|
99064
|
+
* Describes a resize cluster operation. For example, a scheduled action to run the `ResizeCluster` API operation.
|
|
99065
|
+
*/
|
|
99066
|
+
interface ScheduledActionResizeClusterMessageArgs {
|
|
99067
|
+
classic?: pulumi.Input<boolean | undefined>;
|
|
99068
|
+
clusterIdentifier: pulumi.Input<string>;
|
|
99069
|
+
clusterType?: pulumi.Input<string | undefined>;
|
|
99070
|
+
nodeType?: pulumi.Input<string | undefined>;
|
|
99071
|
+
numberOfNodes?: pulumi.Input<number | undefined>;
|
|
99072
|
+
}
|
|
99073
|
+
/**
|
|
99074
|
+
* Describes a resume cluster operation. For example, a scheduled action to run the `ResumeCluster` API operation.
|
|
99075
|
+
*/
|
|
99076
|
+
interface ScheduledActionResumeClusterMessageArgs {
|
|
99077
|
+
clusterIdentifier: pulumi.Input<string>;
|
|
99078
|
+
}
|
|
98171
99079
|
interface ScheduledActionTypeArgs {
|
|
99080
|
+
pauseCluster?: pulumi.Input<inputs.redshift.ScheduledActionPauseClusterMessageArgs | undefined>;
|
|
99081
|
+
resizeCluster?: pulumi.Input<inputs.redshift.ScheduledActionResizeClusterMessageArgs | undefined>;
|
|
99082
|
+
resumeCluster?: pulumi.Input<inputs.redshift.ScheduledActionResumeClusterMessageArgs | undefined>;
|
|
98172
99083
|
}
|
|
98173
99084
|
}
|
|
98174
99085
|
export declare namespace redshiftserverless {
|
|
@@ -99544,6 +100455,17 @@ export declare namespace rtbfabric {
|
|
|
99544
100455
|
*/
|
|
99545
100456
|
responderErrorMasking?: pulumi.Input<pulumi.Input<inputs.rtbfabric.LinkResponderErrorMaskingForHttpCodeArgs>[] | undefined>;
|
|
99546
100457
|
}
|
|
100458
|
+
interface LinkFilterArgs {
|
|
100459
|
+
criteria: pulumi.Input<pulumi.Input<inputs.rtbfabric.LinkFilterCriterionArgs>[]>;
|
|
100460
|
+
}
|
|
100461
|
+
interface LinkFilterCriterionArgs {
|
|
100462
|
+
path: pulumi.Input<string>;
|
|
100463
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
100464
|
+
}
|
|
100465
|
+
interface LinkHeaderTagActionArgs {
|
|
100466
|
+
name: pulumi.Input<string>;
|
|
100467
|
+
value: pulumi.Input<string>;
|
|
100468
|
+
}
|
|
99547
100469
|
interface LinkLogSettingsArgs {
|
|
99548
100470
|
/**
|
|
99549
100471
|
* Describes the configuration of a link application log.
|
|
@@ -99567,6 +100489,28 @@ export declare namespace rtbfabric {
|
|
|
99567
100489
|
version?: pulumi.Input<string | undefined>;
|
|
99568
100490
|
}
|
|
99569
100491
|
interface LinkModuleParametersArgs {
|
|
100492
|
+
noBid?: pulumi.Input<inputs.rtbfabric.LinkNoBidModuleParametersArgs | undefined>;
|
|
100493
|
+
openRtbAttribute?: pulumi.Input<inputs.rtbfabric.LinkOpenRtbAttributeModuleParametersArgs | undefined>;
|
|
100494
|
+
}
|
|
100495
|
+
interface LinkNoBidActionArgs {
|
|
100496
|
+
noBidReasonCode?: pulumi.Input<number | undefined>;
|
|
100497
|
+
}
|
|
100498
|
+
interface LinkNoBidModuleParametersArgs {
|
|
100499
|
+
passThroughPercentage?: pulumi.Input<number | undefined>;
|
|
100500
|
+
reason?: pulumi.Input<string | undefined>;
|
|
100501
|
+
reasonCode?: pulumi.Input<number | undefined>;
|
|
100502
|
+
}
|
|
100503
|
+
interface LinkOpenRtbAttributeModuleParametersArgs {
|
|
100504
|
+
action: pulumi.Input<inputs.rtbfabric.LinkOpenRtbAttributeModuleParametersAction0PropertiesArgs | inputs.rtbfabric.LinkOpenRtbAttributeModuleParametersAction1PropertiesArgs>;
|
|
100505
|
+
filterConfiguration: pulumi.Input<pulumi.Input<inputs.rtbfabric.LinkFilterArgs>[]>;
|
|
100506
|
+
filterType: pulumi.Input<enums.rtbfabric.LinkOpenRtbAttributeModuleParametersFilterType>;
|
|
100507
|
+
holdbackPercentage: pulumi.Input<number>;
|
|
100508
|
+
}
|
|
100509
|
+
interface LinkOpenRtbAttributeModuleParametersAction0PropertiesArgs {
|
|
100510
|
+
noBid: pulumi.Input<inputs.rtbfabric.LinkNoBidActionArgs>;
|
|
100511
|
+
}
|
|
100512
|
+
interface LinkOpenRtbAttributeModuleParametersAction1PropertiesArgs {
|
|
100513
|
+
headerTag: pulumi.Input<inputs.rtbfabric.LinkHeaderTagActionArgs>;
|
|
99570
100514
|
}
|
|
99571
100515
|
interface LinkResponderErrorMaskingForHttpCodeArgs {
|
|
99572
100516
|
/**
|
|
@@ -99645,10 +100589,35 @@ export declare namespace rtbfabric {
|
|
|
99645
100589
|
loggingTypes: pulumi.Input<pulumi.Input<enums.rtbfabric.OutboundExternalLinkResponderErrorMaskingLoggingType>[]>;
|
|
99646
100590
|
responseLoggingPercentage?: pulumi.Input<number | undefined>;
|
|
99647
100591
|
}
|
|
100592
|
+
interface ResponderGatewayAutoScalingGroupsConfigurationArgs {
|
|
100593
|
+
autoScalingGroupNameList: pulumi.Input<pulumi.Input<string>[]>;
|
|
100594
|
+
healthCheckConfig?: pulumi.Input<inputs.rtbfabric.ResponderGatewayHealthCheckConfigArgs | undefined>;
|
|
100595
|
+
roleArn: pulumi.Input<string>;
|
|
100596
|
+
}
|
|
100597
|
+
interface ResponderGatewayEksEndpointsConfigurationArgs {
|
|
100598
|
+
clusterApiServerCaCertificateChain: pulumi.Input<string>;
|
|
100599
|
+
clusterApiServerEndpointUri: pulumi.Input<string>;
|
|
100600
|
+
clusterName: pulumi.Input<string>;
|
|
100601
|
+
endpointsResourceName: pulumi.Input<string>;
|
|
100602
|
+
endpointsResourceNamespace: pulumi.Input<string>;
|
|
100603
|
+
roleArn: pulumi.Input<string>;
|
|
100604
|
+
}
|
|
100605
|
+
interface ResponderGatewayHealthCheckConfigArgs {
|
|
100606
|
+
healthyThresholdCount?: pulumi.Input<number | undefined>;
|
|
100607
|
+
intervalSeconds?: pulumi.Input<number | undefined>;
|
|
100608
|
+
path: pulumi.Input<string>;
|
|
100609
|
+
port: pulumi.Input<number>;
|
|
100610
|
+
protocol?: pulumi.Input<enums.rtbfabric.ResponderGatewayProtocol | undefined>;
|
|
100611
|
+
statusCodeMatcher?: pulumi.Input<string | undefined>;
|
|
100612
|
+
timeoutMs?: pulumi.Input<number | undefined>;
|
|
100613
|
+
unhealthyThresholdCount?: pulumi.Input<number | undefined>;
|
|
100614
|
+
}
|
|
99648
100615
|
interface ResponderGatewayListenerConfigArgs {
|
|
99649
100616
|
protocols: pulumi.Input<pulumi.Input<enums.rtbfabric.ResponderGatewayProtocol>[]>;
|
|
99650
100617
|
}
|
|
99651
100618
|
interface ResponderGatewayManagedEndpointConfigurationArgs {
|
|
100619
|
+
autoScalingGroupsConfiguration?: pulumi.Input<inputs.rtbfabric.ResponderGatewayAutoScalingGroupsConfigurationArgs | undefined>;
|
|
100620
|
+
eksEndpointsConfiguration?: pulumi.Input<inputs.rtbfabric.ResponderGatewayEksEndpointsConfigurationArgs | undefined>;
|
|
99652
100621
|
}
|
|
99653
100622
|
interface ResponderGatewayTrustStoreConfigurationArgs {
|
|
99654
100623
|
/**
|
|
@@ -100543,6 +101512,19 @@ export declare namespace s3 {
|
|
|
100543
101512
|
*/
|
|
100544
101513
|
objectOwnership?: pulumi.Input<enums.s3.BucketOwnershipControlsRuleObjectOwnership | undefined>;
|
|
100545
101514
|
}
|
|
101515
|
+
/**
|
|
101516
|
+
* Amazon S3 keys for log objects are partitioned in the following format:
|
|
101517
|
+
* ``[DestinationPrefix][SourceAccountId]/[SourceRegion]/[SourceBucket]/[YYYY]/[MM]/[DD]/[YYYY]-[MM]-[DD]-[hh]-[mm]-[ss]-[UniqueString]``
|
|
101518
|
+
* PartitionedPrefix defaults to EventTime delivery when server access logs are delivered.
|
|
101519
|
+
*/
|
|
101520
|
+
interface BucketPartitionedPrefixArgs {
|
|
101521
|
+
/**
|
|
101522
|
+
* Specifies the partition date source for the partitioned prefix. ``PartitionDateSource`` can be ``EventTime`` or ``DeliveryTime``.
|
|
101523
|
+
* For ``DeliveryTime``, the time in the log file names corresponds to the delivery time for the log files.
|
|
101524
|
+
* For ``EventTime``, The logs delivered are for a specific day only. The year, month, and day correspond to the day on which the event occurred, and the hour, minutes and seconds are set to 00 in the key.
|
|
101525
|
+
*/
|
|
101526
|
+
partitionDateSource?: pulumi.Input<enums.s3.BucketPartitionedPrefixPartitionDateSource | undefined>;
|
|
101527
|
+
}
|
|
100546
101528
|
/**
|
|
100547
101529
|
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
|
|
100548
101530
|
*/
|
|
@@ -101032,6 +102014,11 @@ export declare namespace s3 {
|
|
|
101032
102014
|
* Describes the key format for server access log file in the target bucket. You can choose between SimplePrefix and PartitionedPrefix.
|
|
101033
102015
|
*/
|
|
101034
102016
|
interface BucketTargetObjectKeyFormatArgs {
|
|
102017
|
+
partitionedPrefix?: pulumi.Input<inputs.s3.BucketPartitionedPrefixArgs | undefined>;
|
|
102018
|
+
/**
|
|
102019
|
+
* This format defaults the prefix to the given log file prefix for delivering server access log file.
|
|
102020
|
+
*/
|
|
102021
|
+
simplePrefix?: any | undefined;
|
|
101035
102022
|
}
|
|
101036
102023
|
/**
|
|
101037
102024
|
* The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead.
|
|
@@ -101352,6 +102339,11 @@ export declare namespace s3 {
|
|
|
101352
102339
|
* Configures the server-side encryption for Amazon S3 Storage Lens report files with either S3-managed keys (SSE-S3) or KMS-managed keys (SSE-KMS).
|
|
101353
102340
|
*/
|
|
101354
102341
|
interface StorageLensEncryptionArgs {
|
|
102342
|
+
ssekms?: pulumi.Input<inputs.s3.StorageLensSsekmsArgs | undefined>;
|
|
102343
|
+
/**
|
|
102344
|
+
* S3 default server-side encryption.
|
|
102345
|
+
*/
|
|
102346
|
+
sses3?: any | undefined;
|
|
101355
102347
|
}
|
|
101356
102348
|
/**
|
|
101357
102349
|
* Expanded Prefixes Data Export.
|
|
@@ -101566,6 +102558,15 @@ export declare namespace s3 {
|
|
|
101566
102558
|
*/
|
|
101567
102559
|
minStorageBytesPercentage?: pulumi.Input<number | undefined>;
|
|
101568
102560
|
}
|
|
102561
|
+
/**
|
|
102562
|
+
* AWS KMS server-side encryption.
|
|
102563
|
+
*/
|
|
102564
|
+
interface StorageLensSsekmsArgs {
|
|
102565
|
+
/**
|
|
102566
|
+
* The ARN of the KMS key to use for encryption.
|
|
102567
|
+
*/
|
|
102568
|
+
keyId: pulumi.Input<string>;
|
|
102569
|
+
}
|
|
101569
102570
|
/**
|
|
101570
102571
|
* S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.
|
|
101571
102572
|
*/
|
|
@@ -102582,6 +103583,17 @@ export declare namespace sagemaker {
|
|
|
102582
103583
|
*/
|
|
102583
103584
|
waitIntervalInSeconds?: pulumi.Input<number | undefined>;
|
|
102584
103585
|
}
|
|
103586
|
+
/**
|
|
103587
|
+
* Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
|
|
103588
|
+
*/
|
|
103589
|
+
interface ClusterEbsVolumeConfigArgs {
|
|
103590
|
+
rootVolume?: pulumi.Input<boolean | undefined>;
|
|
103591
|
+
volumeKmsKeyId?: pulumi.Input<string | undefined>;
|
|
103592
|
+
/**
|
|
103593
|
+
* The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
|
|
103594
|
+
*/
|
|
103595
|
+
volumeSizeInGb?: pulumi.Input<number | undefined>;
|
|
103596
|
+
}
|
|
102585
103597
|
/**
|
|
102586
103598
|
* The configuration for the restricted instance groups (RIG) environment.
|
|
102587
103599
|
*/
|
|
@@ -102601,6 +103613,19 @@ export declare namespace sagemaker {
|
|
|
102601
103613
|
*/
|
|
102602
103614
|
sizeInGiB: pulumi.Input<number>;
|
|
102603
103615
|
}
|
|
103616
|
+
/**
|
|
103617
|
+
* Configuration for mounting an Amazon FSx OpenZFS file system to the instances in the SageMaker HyperPod cluster instance group.
|
|
103618
|
+
*/
|
|
103619
|
+
interface ClusterFsxOpenZfsConfigArgs {
|
|
103620
|
+
/**
|
|
103621
|
+
* The DNS name of the FSx for OpenZFS file system.
|
|
103622
|
+
*/
|
|
103623
|
+
dnsName: pulumi.Input<string>;
|
|
103624
|
+
/**
|
|
103625
|
+
* The mount path for the FSx for OpenZFS file system.
|
|
103626
|
+
*/
|
|
103627
|
+
mountPath?: pulumi.Input<string | undefined>;
|
|
103628
|
+
}
|
|
102604
103629
|
/**
|
|
102605
103630
|
* Details of an instance group in a SageMaker HyperPod cluster.
|
|
102606
103631
|
*/
|
|
@@ -102654,6 +103679,26 @@ export declare namespace sagemaker {
|
|
|
102654
103679
|
* Defines the configuration for attaching additional storage to the instances in the SageMaker HyperPod cluster instance group.
|
|
102655
103680
|
*/
|
|
102656
103681
|
interface ClusterInstanceStorageConfigArgs {
|
|
103682
|
+
ebsVolumeConfig?: pulumi.Input<inputs.sagemaker.ClusterEbsVolumeConfigArgs | undefined>;
|
|
103683
|
+
fsxLustreConfig?: pulumi.Input<inputs.sagemaker.ClusterInstanceStorageFsxLustreConfigArgs | undefined>;
|
|
103684
|
+
fsxOpenZfsConfig?: pulumi.Input<inputs.sagemaker.ClusterFsxOpenZfsConfigArgs | undefined>;
|
|
103685
|
+
}
|
|
103686
|
+
/**
|
|
103687
|
+
* Configuration for mounting an Amazon FSx Lustre file system to the instances in the SageMaker HyperPod cluster instance group.
|
|
103688
|
+
*/
|
|
103689
|
+
interface ClusterInstanceStorageFsxLustreConfigArgs {
|
|
103690
|
+
/**
|
|
103691
|
+
* The DNS name of the FSx for Lustre file system.
|
|
103692
|
+
*/
|
|
103693
|
+
dnsName: pulumi.Input<string>;
|
|
103694
|
+
/**
|
|
103695
|
+
* The mount name of the FSx for Lustre file system.
|
|
103696
|
+
*/
|
|
103697
|
+
mountName: pulumi.Input<string>;
|
|
103698
|
+
/**
|
|
103699
|
+
* The mount path for the FSx for Lustre file system.
|
|
103700
|
+
*/
|
|
103701
|
+
mountPath?: pulumi.Input<string | undefined>;
|
|
102657
103702
|
}
|
|
102658
103703
|
/**
|
|
102659
103704
|
* Kubernetes configuration for cluster nodes including labels and taints.
|
|
@@ -102716,6 +103761,26 @@ export declare namespace sagemaker {
|
|
|
102716
103761
|
* Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster or Slurm configuration.
|
|
102717
103762
|
*/
|
|
102718
103763
|
interface ClusterOrchestratorArgs {
|
|
103764
|
+
eks?: pulumi.Input<inputs.sagemaker.ClusterOrchestratorEksConfigArgs | undefined>;
|
|
103765
|
+
slurm?: pulumi.Input<inputs.sagemaker.ClusterOrchestratorSlurmConfigArgs | undefined>;
|
|
103766
|
+
}
|
|
103767
|
+
/**
|
|
103768
|
+
* Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,
|
|
103769
|
+
*/
|
|
103770
|
+
interface ClusterOrchestratorEksConfigArgs {
|
|
103771
|
+
/**
|
|
103772
|
+
* The ARN of the EKS cluster, such as arn:aws:eks:us-west-2:123456789012:cluster/my-eks-cluster
|
|
103773
|
+
*/
|
|
103774
|
+
clusterArn: pulumi.Input<string>;
|
|
103775
|
+
}
|
|
103776
|
+
/**
|
|
103777
|
+
* Specifies parameter(s) related to Slurm as orchestrator.
|
|
103778
|
+
*/
|
|
103779
|
+
interface ClusterOrchestratorSlurmConfigArgs {
|
|
103780
|
+
/**
|
|
103781
|
+
* The strategy for managing Slurm configuration on the cluster.
|
|
103782
|
+
*/
|
|
103783
|
+
slurmConfigStrategy?: pulumi.Input<enums.sagemaker.ClusterOrchestratorSlurmConfigSlurmConfigStrategy | undefined>;
|
|
102719
103784
|
}
|
|
102720
103785
|
/**
|
|
102721
103786
|
* The schedule configuration for automatic patching.
|
|
@@ -109292,10 +110357,62 @@ export declare namespace securityhub {
|
|
|
109292
110357
|
interface ConnectorProviderArgs {
|
|
109293
110358
|
azure: pulumi.Input<inputs.securityhub.ConnectorAzureProviderConfigurationArgs>;
|
|
109294
110359
|
}
|
|
110360
|
+
/**
|
|
110361
|
+
* The configuration settings required to establish an integration between AWS Security Hub and Azure
|
|
110362
|
+
*/
|
|
110363
|
+
interface ConnectorV2AzureProviderConfigurationArgs {
|
|
110364
|
+
/**
|
|
110365
|
+
* The ARN of the AWS Config connector used for the Azure integration
|
|
110366
|
+
*/
|
|
110367
|
+
awsConfigConnectorArn: pulumi.Input<string>;
|
|
110368
|
+
/**
|
|
110369
|
+
* The list of Azure regions to include in the connector scope
|
|
110370
|
+
*/
|
|
110371
|
+
azureRegions: pulumi.Input<pulumi.Input<string>[]>;
|
|
110372
|
+
scopeConfiguration: pulumi.Input<inputs.securityhub.ConnectorV2AzureScopeConfigurationArgs>;
|
|
110373
|
+
}
|
|
110374
|
+
/**
|
|
110375
|
+
* The scope configuration for an Azure connector
|
|
110376
|
+
*/
|
|
110377
|
+
interface ConnectorV2AzureScopeConfigurationArgs {
|
|
110378
|
+
/**
|
|
110379
|
+
* The scope type for the Azure connector
|
|
110380
|
+
*/
|
|
110381
|
+
scopeType: pulumi.Input<enums.securityhub.ConnectorV2AzureScopeConfigurationScopeType>;
|
|
110382
|
+
/**
|
|
110383
|
+
* The list of scope values for the Azure connector
|
|
110384
|
+
*/
|
|
110385
|
+
scopeValues?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
110386
|
+
}
|
|
110387
|
+
/**
|
|
110388
|
+
* The initial configuration settings required to establish an integration between Security Hub and Jira Cloud
|
|
110389
|
+
*/
|
|
110390
|
+
interface ConnectorV2JiraCloudProviderConfigurationArgs {
|
|
110391
|
+
/**
|
|
110392
|
+
* The project key for a Jira Cloud instance
|
|
110393
|
+
*/
|
|
110394
|
+
projectKey: pulumi.Input<string>;
|
|
110395
|
+
}
|
|
109295
110396
|
/**
|
|
109296
110397
|
* The third-party provider configuration for the connector
|
|
109297
110398
|
*/
|
|
109298
110399
|
interface ConnectorV2ProviderArgs {
|
|
110400
|
+
azure?: pulumi.Input<inputs.securityhub.ConnectorV2AzureProviderConfigurationArgs | undefined>;
|
|
110401
|
+
jiraCloud?: pulumi.Input<inputs.securityhub.ConnectorV2JiraCloudProviderConfigurationArgs | undefined>;
|
|
110402
|
+
serviceNow?: pulumi.Input<inputs.securityhub.ConnectorV2ServiceNowProviderConfigurationArgs | undefined>;
|
|
110403
|
+
}
|
|
110404
|
+
/**
|
|
110405
|
+
* The initial configuration settings required to establish an integration between Security Hub and ServiceNow ITSM
|
|
110406
|
+
*/
|
|
110407
|
+
interface ConnectorV2ServiceNowProviderConfigurationArgs {
|
|
110408
|
+
/**
|
|
110409
|
+
* The instance name of ServiceNow ITSM
|
|
110410
|
+
*/
|
|
110411
|
+
instanceName: pulumi.Input<string>;
|
|
110412
|
+
/**
|
|
110413
|
+
* The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials
|
|
110414
|
+
*/
|
|
110415
|
+
secretArn: pulumi.Input<string>;
|
|
109299
110416
|
}
|
|
109300
110417
|
/**
|
|
109301
110418
|
* A collection of filters that are applied to all active findings aggregated by AWS Security Hub.
|
|
@@ -113591,6 +114708,8 @@ export declare namespace verifiedpermissions {
|
|
|
113591
114708
|
description?: pulumi.Input<string | undefined>;
|
|
113592
114709
|
statement: pulumi.Input<string>;
|
|
113593
114710
|
}
|
|
114711
|
+
interface PolicyStoreDefaultArgs {
|
|
114712
|
+
}
|
|
113594
114713
|
interface PolicyStoreDeletionProtectionArgs {
|
|
113595
114714
|
/**
|
|
113596
114715
|
* Specifies whether the policy store can be deleted. If enabled, the policy store can't be deleted.
|
|
@@ -113600,6 +114719,14 @@ export declare namespace verifiedpermissions {
|
|
|
113600
114719
|
mode: pulumi.Input<enums.verifiedpermissions.PolicyStoreDeletionMode>;
|
|
113601
114720
|
}
|
|
113602
114721
|
interface PolicyStoreEncryptionSettingsArgs {
|
|
114722
|
+
default?: pulumi.Input<inputs.verifiedpermissions.PolicyStoreDefaultArgs | undefined>;
|
|
114723
|
+
kmsEncryptionSettings?: pulumi.Input<inputs.verifiedpermissions.PolicyStoreKmsEncryptionSettingsArgs | undefined>;
|
|
114724
|
+
}
|
|
114725
|
+
interface PolicyStoreKmsEncryptionSettingsArgs {
|
|
114726
|
+
encryptionContext?: pulumi.Input<{
|
|
114727
|
+
[key: string]: pulumi.Input<string>;
|
|
114728
|
+
} | undefined>;
|
|
114729
|
+
key: pulumi.Input<string>;
|
|
113603
114730
|
}
|
|
113604
114731
|
interface PolicyStoreSchemaDefinitionArgs {
|
|
113605
114732
|
/**
|
|
@@ -117631,6 +118758,10 @@ export declare namespace wisdom {
|
|
|
117631
118758
|
text: pulumi.Input<string>;
|
|
117632
118759
|
}
|
|
117633
118760
|
interface AiPromptAiPromptTemplateConfigurationArgs {
|
|
118761
|
+
textFullAiPromptEditTemplateConfiguration?: pulumi.Input<inputs.wisdom.AiPromptTextFullAiPromptEditTemplateConfigurationArgs | undefined>;
|
|
118762
|
+
}
|
|
118763
|
+
interface AiPromptTextFullAiPromptEditTemplateConfigurationArgs {
|
|
118764
|
+
text: pulumi.Input<string>;
|
|
117634
118765
|
}
|
|
117635
118766
|
interface AssistantAssociationAssociationData0PropertiesArgs {
|
|
117636
118767
|
knowledgeBaseId: pulumi.Input<string>;
|