hsdp.DicomGatewayConfig
Explore with Pulumi AI
This resource manages DICOM Gateway configuration for Store and QueryRetrieve services using HSDP provisioned DICOM Store configuration service.
Example Usage
The following example demonstrates the basic configuration of a DICOM Gateway
import * as pulumi from "@pulumi/pulumi";
import * as hsdp from "@pulumi/hsdp";
const dicomGateway = new hsdp.DicomGatewayConfig("dicomGateway", {
configUrl: _var.config_url,
organizationId: _var.site_id,
storeService: {
title: "Store title",
isSecure: false,
port: 104,
pduLength: 65535,
artimTimeout: 3000,
associationIdleTimeout: 4500,
applicationEntities: [{
allowAny: true,
aeTitle: "Foo",
organizationId: "aaa-bbb-ccc-ddd",
}],
},
queryRetrieveService: {
title: "Query Retrieve Title",
isSecure: false,
port: 108,
applicationEntities: [{
allowAny: true,
aeTitle: "Foo",
organizationId: "aaa-bbb-ccc-ddd",
}],
},
});
import pulumi
import pulumi_hsdp as hsdp
dicom_gateway = hsdp.DicomGatewayConfig("dicomGateway",
config_url=var["config_url"],
organization_id=var["site_id"],
store_service={
"title": "Store title",
"is_secure": False,
"port": 104,
"pdu_length": 65535,
"artim_timeout": 3000,
"association_idle_timeout": 4500,
"application_entities": [{
"allow_any": True,
"ae_title": "Foo",
"organization_id": "aaa-bbb-ccc-ddd",
}],
},
query_retrieve_service={
"title": "Query Retrieve Title",
"is_secure": False,
"port": 108,
"application_entities": [{
"allow_any": True,
"ae_title": "Foo",
"organization_id": "aaa-bbb-ccc-ddd",
}],
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/hsdp/hsdp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hsdp.NewDicomGatewayConfig(ctx, "dicomGateway", &hsdp.DicomGatewayConfigArgs{
ConfigUrl: pulumi.Any(_var.Config_url),
OrganizationId: pulumi.Any(_var.Site_id),
StoreService: &hsdp.DicomGatewayConfigStoreServiceArgs{
Title: pulumi.String("Store title"),
IsSecure: pulumi.Bool(false),
Port: pulumi.Float64(104),
PduLength: pulumi.Float64(65535),
ArtimTimeout: pulumi.Float64(3000),
AssociationIdleTimeout: pulumi.Float64(4500),
ApplicationEntities: hsdp.DicomGatewayConfigStoreServiceApplicationEntityArray{
&hsdp.DicomGatewayConfigStoreServiceApplicationEntityArgs{
AllowAny: pulumi.Bool(true),
AeTitle: pulumi.String("Foo"),
OrganizationId: pulumi.String("aaa-bbb-ccc-ddd"),
},
},
},
QueryRetrieveService: &hsdp.DicomGatewayConfigQueryRetrieveServiceArgs{
Title: pulumi.String("Query Retrieve Title"),
IsSecure: pulumi.Bool(false),
Port: pulumi.Float64(108),
ApplicationEntities: hsdp.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArray{
&hsdp.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs{
AllowAny: pulumi.Bool(true),
AeTitle: pulumi.String("Foo"),
OrganizationId: pulumi.String("aaa-bbb-ccc-ddd"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Hsdp = Pulumi.Hsdp;
return await Deployment.RunAsync(() =>
{
var dicomGateway = new Hsdp.DicomGatewayConfig("dicomGateway", new()
{
ConfigUrl = @var.Config_url,
OrganizationId = @var.Site_id,
StoreService = new Hsdp.Inputs.DicomGatewayConfigStoreServiceArgs
{
Title = "Store title",
IsSecure = false,
Port = 104,
PduLength = 65535,
ArtimTimeout = 3000,
AssociationIdleTimeout = 4500,
ApplicationEntities = new[]
{
new Hsdp.Inputs.DicomGatewayConfigStoreServiceApplicationEntityArgs
{
AllowAny = true,
AeTitle = "Foo",
OrganizationId = "aaa-bbb-ccc-ddd",
},
},
},
QueryRetrieveService = new Hsdp.Inputs.DicomGatewayConfigQueryRetrieveServiceArgs
{
Title = "Query Retrieve Title",
IsSecure = false,
Port = 108,
ApplicationEntities = new[]
{
new Hsdp.Inputs.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs
{
AllowAny = true,
AeTitle = "Foo",
OrganizationId = "aaa-bbb-ccc-ddd",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hsdp.DicomGatewayConfig;
import com.pulumi.hsdp.DicomGatewayConfigArgs;
import com.pulumi.hsdp.inputs.DicomGatewayConfigStoreServiceArgs;
import com.pulumi.hsdp.inputs.DicomGatewayConfigQueryRetrieveServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dicomGateway = new DicomGatewayConfig("dicomGateway", DicomGatewayConfigArgs.builder()
.configUrl(var_.config_url())
.organizationId(var_.site_id())
.storeService(DicomGatewayConfigStoreServiceArgs.builder()
.title("Store title")
.isSecure(false)
.port(104)
.pduLength(65535)
.artimTimeout(3000)
.associationIdleTimeout(4500)
.applicationEntities(DicomGatewayConfigStoreServiceApplicationEntityArgs.builder()
.allowAny(true)
.aeTitle("Foo")
.organizationId("aaa-bbb-ccc-ddd")
.build())
.build())
.queryRetrieveService(DicomGatewayConfigQueryRetrieveServiceArgs.builder()
.title("Query Retrieve Title")
.isSecure(false)
.port(108)
.applicationEntities(DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs.builder()
.allowAny(true)
.aeTitle("Foo")
.organizationId("aaa-bbb-ccc-ddd")
.build())
.build())
.build());
}
}
resources:
dicomGateway:
type: hsdp:DicomGatewayConfig
properties:
configUrl: ${var.config_url}
organizationId: ${var.site_id}
storeService:
title: Store title
isSecure: false
port: 104
pduLength: 65535
artimTimeout: 3000
associationIdleTimeout: 4500
applicationEntities:
- allowAny: true
aeTitle: Foo
organizationId: aaa-bbb-ccc-ddd
queryRetrieveService:
title: Query Retrieve Title
isSecure: false
port: 108
applicationEntities:
- allowAny: true
aeTitle: Foo
organizationId: aaa-bbb-ccc-ddd
Create DicomGatewayConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DicomGatewayConfig(name: string, args: DicomGatewayConfigArgs, opts?: CustomResourceOptions);
@overload
def DicomGatewayConfig(resource_name: str,
args: DicomGatewayConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DicomGatewayConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_url: Optional[str] = None,
organization_id: Optional[str] = None,
dicom_gateway_config_id: Optional[str] = None,
query_retrieve_service: Optional[DicomGatewayConfigQueryRetrieveServiceArgs] = None,
store_service: Optional[DicomGatewayConfigStoreServiceArgs] = None)
func NewDicomGatewayConfig(ctx *Context, name string, args DicomGatewayConfigArgs, opts ...ResourceOption) (*DicomGatewayConfig, error)
public DicomGatewayConfig(string name, DicomGatewayConfigArgs args, CustomResourceOptions? opts = null)
public DicomGatewayConfig(String name, DicomGatewayConfigArgs args)
public DicomGatewayConfig(String name, DicomGatewayConfigArgs args, CustomResourceOptions options)
type: hsdp:DicomGatewayConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DicomGatewayConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DicomGatewayConfigArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DicomGatewayConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DicomGatewayConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DicomGatewayConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dicomGatewayConfigResource = new Hsdp.DicomGatewayConfig("dicomGatewayConfigResource", new()
{
ConfigUrl = "string",
OrganizationId = "string",
DicomGatewayConfigId = "string",
QueryRetrieveService = new Hsdp.Inputs.DicomGatewayConfigQueryRetrieveServiceArgs
{
IsSecure = false,
Title = "string",
ApplicationEntities = new[]
{
new Hsdp.Inputs.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs
{
AeTitle = "string",
AllowAny = false,
OrganizationId = "string",
},
},
ArtimTimeout = 0,
AssociationIdleTimeout = 0,
CertificateId = "string",
Description = "string",
PduLength = 0,
Port = 0,
},
StoreService = new Hsdp.Inputs.DicomGatewayConfigStoreServiceArgs
{
IsSecure = false,
Title = "string",
ApplicationEntities = new[]
{
new Hsdp.Inputs.DicomGatewayConfigStoreServiceApplicationEntityArgs
{
AeTitle = "string",
AllowAny = false,
OrganizationId = "string",
},
},
ArtimTimeout = 0,
AssociationIdleTimeout = 0,
CertificateId = "string",
Description = "string",
PduLength = 0,
Port = 0,
},
});
example, err := hsdp.NewDicomGatewayConfig(ctx, "dicomGatewayConfigResource", &hsdp.DicomGatewayConfigArgs{
ConfigUrl: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
DicomGatewayConfigId: pulumi.String("string"),
QueryRetrieveService: &hsdp.DicomGatewayConfigQueryRetrieveServiceArgs{
IsSecure: pulumi.Bool(false),
Title: pulumi.String("string"),
ApplicationEntities: hsdp.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArray{
&hsdp.DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs{
AeTitle: pulumi.String("string"),
AllowAny: pulumi.Bool(false),
OrganizationId: pulumi.String("string"),
},
},
ArtimTimeout: pulumi.Float64(0),
AssociationIdleTimeout: pulumi.Float64(0),
CertificateId: pulumi.String("string"),
Description: pulumi.String("string"),
PduLength: pulumi.Float64(0),
Port: pulumi.Float64(0),
},
StoreService: &hsdp.DicomGatewayConfigStoreServiceArgs{
IsSecure: pulumi.Bool(false),
Title: pulumi.String("string"),
ApplicationEntities: hsdp.DicomGatewayConfigStoreServiceApplicationEntityArray{
&hsdp.DicomGatewayConfigStoreServiceApplicationEntityArgs{
AeTitle: pulumi.String("string"),
AllowAny: pulumi.Bool(false),
OrganizationId: pulumi.String("string"),
},
},
ArtimTimeout: pulumi.Float64(0),
AssociationIdleTimeout: pulumi.Float64(0),
CertificateId: pulumi.String("string"),
Description: pulumi.String("string"),
PduLength: pulumi.Float64(0),
Port: pulumi.Float64(0),
},
})
var dicomGatewayConfigResource = new DicomGatewayConfig("dicomGatewayConfigResource", DicomGatewayConfigArgs.builder()
.configUrl("string")
.organizationId("string")
.dicomGatewayConfigId("string")
.queryRetrieveService(DicomGatewayConfigQueryRetrieveServiceArgs.builder()
.isSecure(false)
.title("string")
.applicationEntities(DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs.builder()
.aeTitle("string")
.allowAny(false)
.organizationId("string")
.build())
.artimTimeout(0)
.associationIdleTimeout(0)
.certificateId("string")
.description("string")
.pduLength(0)
.port(0)
.build())
.storeService(DicomGatewayConfigStoreServiceArgs.builder()
.isSecure(false)
.title("string")
.applicationEntities(DicomGatewayConfigStoreServiceApplicationEntityArgs.builder()
.aeTitle("string")
.allowAny(false)
.organizationId("string")
.build())
.artimTimeout(0)
.associationIdleTimeout(0)
.certificateId("string")
.description("string")
.pduLength(0)
.port(0)
.build())
.build());
dicom_gateway_config_resource = hsdp.DicomGatewayConfig("dicomGatewayConfigResource",
config_url="string",
organization_id="string",
dicom_gateway_config_id="string",
query_retrieve_service={
"is_secure": False,
"title": "string",
"application_entities": [{
"ae_title": "string",
"allow_any": False,
"organization_id": "string",
}],
"artim_timeout": 0,
"association_idle_timeout": 0,
"certificate_id": "string",
"description": "string",
"pdu_length": 0,
"port": 0,
},
store_service={
"is_secure": False,
"title": "string",
"application_entities": [{
"ae_title": "string",
"allow_any": False,
"organization_id": "string",
}],
"artim_timeout": 0,
"association_idle_timeout": 0,
"certificate_id": "string",
"description": "string",
"pdu_length": 0,
"port": 0,
})
const dicomGatewayConfigResource = new hsdp.DicomGatewayConfig("dicomGatewayConfigResource", {
configUrl: "string",
organizationId: "string",
dicomGatewayConfigId: "string",
queryRetrieveService: {
isSecure: false,
title: "string",
applicationEntities: [{
aeTitle: "string",
allowAny: false,
organizationId: "string",
}],
artimTimeout: 0,
associationIdleTimeout: 0,
certificateId: "string",
description: "string",
pduLength: 0,
port: 0,
},
storeService: {
isSecure: false,
title: "string",
applicationEntities: [{
aeTitle: "string",
allowAny: false,
organizationId: "string",
}],
artimTimeout: 0,
associationIdleTimeout: 0,
certificateId: "string",
description: "string",
pduLength: 0,
port: 0,
},
});
type: hsdp:DicomGatewayConfig
properties:
configUrl: string
dicomGatewayConfigId: string
organizationId: string
queryRetrieveService:
applicationEntities:
- aeTitle: string
allowAny: false
organizationId: string
artimTimeout: 0
associationIdleTimeout: 0
certificateId: string
description: string
isSecure: false
pduLength: 0
port: 0
title: string
storeService:
applicationEntities:
- aeTitle: string
allowAny: false
organizationId: string
artimTimeout: 0
associationIdleTimeout: 0
certificateId: string
description: string
isSecure: false
pduLength: 0
port: 0
title: string
DicomGatewayConfig Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DicomGatewayConfig resource accepts the following input properties:
- Config
Url string - The base config URL of the DICOM Store
- Organization
Id string - The site organization ID
- Dicom
Gateway stringConfig Id - Query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- Store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- Config
Url string - The base config URL of the DICOM Store
- Organization
Id string - The site organization ID
- Dicom
Gateway stringConfig Id - Query
Retrieve DicomService Gateway Config Query Retrieve Service Args - the FHIR store configuration
- Store
Service DicomGateway Config Store Service Args - Details of the DICOM Store SCP
- config
Url String - The base config URL of the DICOM Store
- organization
Id String - The site organization ID
- dicom
Gateway StringConfig Id - query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- config
Url string - The base config URL of the DICOM Store
- organization
Id string - The site organization ID
- dicom
Gateway stringConfig Id - query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- config_
url str - The base config URL of the DICOM Store
- organization_
id str - The site organization ID
- dicom_
gateway_ strconfig_ id - query_
retrieve_ Dicomservice Gateway Config Query Retrieve Service Args - the FHIR store configuration
- store_
service DicomGateway Config Store Service Args - Details of the DICOM Store SCP
- config
Url String - The base config URL of the DICOM Store
- organization
Id String - The site organization ID
- dicom
Gateway StringConfig Id - query
Retrieve Property MapService - the FHIR store configuration
- store
Service Property Map - Details of the DICOM Store SCP
Outputs
All input properties are implicitly available as output properties. Additionally, the DicomGatewayConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Query
Retrieve stringService Id - Store
Service stringId
- Id string
- The provider-assigned unique ID for this managed resource.
- Query
Retrieve stringService Id - Store
Service stringId
- id String
- The provider-assigned unique ID for this managed resource.
- query
Retrieve StringService Id - store
Service StringId
- id string
- The provider-assigned unique ID for this managed resource.
- query
Retrieve stringService Id - store
Service stringId
- id str
- The provider-assigned unique ID for this managed resource.
- query_
retrieve_ strservice_ id - store_
service_ strid
- id String
- The provider-assigned unique ID for this managed resource.
- query
Retrieve StringService Id - store
Service StringId
Look up Existing DicomGatewayConfig Resource
Get an existing DicomGatewayConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DicomGatewayConfigState, opts?: CustomResourceOptions): DicomGatewayConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_url: Optional[str] = None,
dicom_gateway_config_id: Optional[str] = None,
organization_id: Optional[str] = None,
query_retrieve_service: Optional[DicomGatewayConfigQueryRetrieveServiceArgs] = None,
query_retrieve_service_id: Optional[str] = None,
store_service: Optional[DicomGatewayConfigStoreServiceArgs] = None,
store_service_id: Optional[str] = None) -> DicomGatewayConfig
func GetDicomGatewayConfig(ctx *Context, name string, id IDInput, state *DicomGatewayConfigState, opts ...ResourceOption) (*DicomGatewayConfig, error)
public static DicomGatewayConfig Get(string name, Input<string> id, DicomGatewayConfigState? state, CustomResourceOptions? opts = null)
public static DicomGatewayConfig get(String name, Output<String> id, DicomGatewayConfigState state, CustomResourceOptions options)
resources: _: type: hsdp:DicomGatewayConfig get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Config
Url string - The base config URL of the DICOM Store
- Dicom
Gateway stringConfig Id - Organization
Id string - The site organization ID
- Query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- Query
Retrieve stringService Id - Store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- Store
Service stringId
- Config
Url string - The base config URL of the DICOM Store
- Dicom
Gateway stringConfig Id - Organization
Id string - The site organization ID
- Query
Retrieve DicomService Gateway Config Query Retrieve Service Args - the FHIR store configuration
- Query
Retrieve stringService Id - Store
Service DicomGateway Config Store Service Args - Details of the DICOM Store SCP
- Store
Service stringId
- config
Url String - The base config URL of the DICOM Store
- dicom
Gateway StringConfig Id - organization
Id String - The site organization ID
- query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- query
Retrieve StringService Id - store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- store
Service StringId
- config
Url string - The base config URL of the DICOM Store
- dicom
Gateway stringConfig Id - organization
Id string - The site organization ID
- query
Retrieve DicomService Gateway Config Query Retrieve Service - the FHIR store configuration
- query
Retrieve stringService Id - store
Service DicomGateway Config Store Service - Details of the DICOM Store SCP
- store
Service stringId
- config_
url str - The base config URL of the DICOM Store
- dicom_
gateway_ strconfig_ id - organization_
id str - The site organization ID
- query_
retrieve_ Dicomservice Gateway Config Query Retrieve Service Args - the FHIR store configuration
- query_
retrieve_ strservice_ id - store_
service DicomGateway Config Store Service Args - Details of the DICOM Store SCP
- store_
service_ strid
- config
Url String - The base config URL of the DICOM Store
- dicom
Gateway StringConfig Id - organization
Id String - The site organization ID
- query
Retrieve Property MapService - the FHIR store configuration
- query
Retrieve StringService Id - store
Service Property Map - Details of the DICOM Store SCP
- store
Service StringId
Supporting Types
DicomGatewayConfigQueryRetrieveService, DicomGatewayConfigQueryRetrieveServiceArgs
- Is
Secure bool - Is secure. Default
false
- Title string
- Store Device Title
- Application
Entities List<DicomGateway Config Query Retrieve Service Application Entity> - Application entity
- Artim
Timeout double - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- Association
Idle doubleTimeout - Association idle timeout.
4500 ms
- Certificate
Id string - Certificate ID. Only needed for secure connections.
- Description string
- Pdu
Length double - PDU length. Default
65535
- Port double
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
- Is
Secure bool - Is secure. Default
false
- Title string
- Store Device Title
- Application
Entities []DicomGateway Config Query Retrieve Service Application Entity - Application entity
- Artim
Timeout float64 - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- Association
Idle float64Timeout - Association idle timeout.
4500 ms
- Certificate
Id string - Certificate ID. Only needed for secure connections.
- Description string
- Pdu
Length float64 - PDU length. Default
65535
- Port float64
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
- is
Secure Boolean - Is secure. Default
false
- title String
- Store Device Title
- application
Entities List<DicomGateway Config Query Retrieve Service Application Entity> - Application entity
- artim
Timeout Double - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle DoubleTimeout - Association idle timeout.
4500 ms
- certificate
Id String - Certificate ID. Only needed for secure connections.
- description String
- pdu
Length Double - PDU length. Default
65535
- port Double
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
- is
Secure boolean - Is secure. Default
false
- title string
- Store Device Title
- application
Entities DicomGateway Config Query Retrieve Service Application Entity[] - Application entity
- artim
Timeout number - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle numberTimeout - Association idle timeout.
4500 ms
- certificate
Id string - Certificate ID. Only needed for secure connections.
- description string
- pdu
Length number - PDU length. Default
65535
- port number
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
- is_
secure bool - Is secure. Default
false
- title str
- Store Device Title
- application_
entities Sequence[DicomGateway Config Query Retrieve Service Application Entity] - Application entity
- artim_
timeout float - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association_
idle_ floattimeout - Association idle timeout.
4500 ms
- certificate_
id str - Certificate ID. Only needed for secure connections.
- description str
- pdu_
length float - PDU length. Default
65535
- port float
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
- is
Secure Boolean - Is secure. Default
false
- title String
- Store Device Title
- application
Entities List<Property Map> - Application entity
- artim
Timeout Number - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle NumberTimeout - Association idle timeout.
4500 ms
- certificate
Id String - Certificate ID. Only needed for secure connections.
- description String
- pdu
Length Number - PDU length. Default
65535
- port Number
- Port. Default
108
for Non-Secure and109
for Secure. Don't change this.
DicomGatewayConfigQueryRetrieveServiceApplicationEntity, DicomGatewayConfigQueryRetrieveServiceApplicationEntityArgs
- Ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- Allow
Any bool - Allow any. Value can be
true
orfalse
- Organization
Id string - The site organization ID
- Ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- Allow
Any bool - Allow any. Value can be
true
orfalse
- Organization
Id string - The site organization ID
- ae
Title String - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- allow
Any Boolean - Allow any. Value can be
true
orfalse
- organization
Id String - The site organization ID
- ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- allow
Any boolean - Allow any. Value can be
true
orfalse
- organization
Id string - The site organization ID
- ae_
title str - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- allow_
any bool - Allow any. Value can be
true
orfalse
- organization_
id str - The site organization ID
- ae
Title String - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomQueryRetrieveScp
- allow
Any Boolean - Allow any. Value can be
true
orfalse
- organization
Id String - The site organization ID
DicomGatewayConfigStoreService, DicomGatewayConfigStoreServiceArgs
- Is
Secure bool - Is secure. Default
false
- Title string
- Store Device Title
- Application
Entities List<DicomGateway Config Store Service Application Entity> - Application entity
- Artim
Timeout double - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- Association
Idle doubleTimeout - Association idle timeout.
4500 ms
- Certificate
Id string - Certificate ID. Only needed for secure connections.
- Description string
- Pdu
Length double - PDU length. Default
65535
- Port double
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
- Is
Secure bool - Is secure. Default
false
- Title string
- Store Device Title
- Application
Entities []DicomGateway Config Store Service Application Entity - Application entity
- Artim
Timeout float64 - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- Association
Idle float64Timeout - Association idle timeout.
4500 ms
- Certificate
Id string - Certificate ID. Only needed for secure connections.
- Description string
- Pdu
Length float64 - PDU length. Default
65535
- Port float64
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
- is
Secure Boolean - Is secure. Default
false
- title String
- Store Device Title
- application
Entities List<DicomGateway Config Store Service Application Entity> - Application entity
- artim
Timeout Double - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle DoubleTimeout - Association idle timeout.
4500 ms
- certificate
Id String - Certificate ID. Only needed for secure connections.
- description String
- pdu
Length Double - PDU length. Default
65535
- port Double
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
- is
Secure boolean - Is secure. Default
false
- title string
- Store Device Title
- application
Entities DicomGateway Config Store Service Application Entity[] - Application entity
- artim
Timeout number - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle numberTimeout - Association idle timeout.
4500 ms
- certificate
Id string - Certificate ID. Only needed for secure connections.
- description string
- pdu
Length number - PDU length. Default
65535
- port number
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
- is_
secure bool - Is secure. Default
false
- title str
- Store Device Title
- application_
entities Sequence[DicomGateway Config Store Service Application Entity] - Application entity
- artim_
timeout float - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association_
idle_ floattimeout - Association idle timeout.
4500 ms
- certificate_
id str - Certificate ID. Only needed for secure connections.
- description str
- pdu_
length float - PDU length. Default
65535
- port float
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
- is
Secure Boolean - Is secure. Default
false
- title String
- Store Device Title
- application
Entities List<Property Map> - Application entity
- artim
Timeout Number - Time-out waiting for A-ASSOCIATE RQ PDU on open TCP/IP connection (Artim timeout). Default
3000 ms
- association
Idle NumberTimeout - Association idle timeout.
4500 ms
- certificate
Id String - Certificate ID. Only needed for secure connections.
- description String
- pdu
Length Number - PDU length. Default
65535
- port Number
- Port. Default
104
for Non-Secure and105
for Secure. Don't change this.
DicomGatewayConfigStoreServiceApplicationEntity, DicomGatewayConfigStoreServiceApplicationEntityArgs
- Ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- Allow
Any bool - Allow any. Value can be
true
orfalse
- Organization
Id string - The site organization ID
- Ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- Allow
Any bool - Allow any. Value can be
true
orfalse
- Organization
Id string - The site organization ID
- ae
Title String - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- allow
Any Boolean - Allow any. Value can be
true
orfalse
- organization
Id String - The site organization ID
- ae
Title string - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- allow
Any boolean - Allow any. Value can be
true
orfalse
- organization
Id string - The site organization ID
- ae_
title str - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- allow_
any bool - Allow any. Value can be
true
orfalse
- organization_
id str - The site organization ID
- ae
Title String - AE title. Allowed characters for aetitle are
A-Za-z0-9\\s/+=_-
. Eg.DicomStoreScp
- allow
Any Boolean - Allow any. Value can be
true
orfalse
- organization
Id String - The site organization ID
Package Details
- Repository
- hsdp philips-software/terraform-provider-hsdp
- License
- Notes
- This Pulumi package is based on the
hsdp
Terraform Provider.