Skip to content

Commit 7b014c3

Browse files
committed
Updated resource with version update only
1 parent 342abfa commit 7b014c3

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

dynatrace/api/builtin/dtjavascriptruntime/allowedoutboundconnections/schema.json

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"allowedScopes": [
33
"environment"
44
],
5-
"description": "You can limit the accessibility of public endpoints from functions running in the Dynatrace JavaScript runtime, for example, the backends of apps and functions written in the Dashboards, Notebooks and Automations app.",
5+
"description": "You can limit the accessibility of public endpoints from functions running in the Dynatrace JavaScript Runtime, for example, the backends of apps and functions written in the Dashboards, Notebooks and Automations app.",
66
"displayName": "Limit outbound connections",
77
"documentation": "",
88
"dynatrace": "1",
@@ -29,24 +29,24 @@
2929
"schemaId": "builtin:dt-javascript-runtime.allowed-outbound-connections",
3030
"types": {
3131
"AllowedHostsList": {
32-
"description": "Specifies allowed hosts and if the allow list should be enforced.",
32+
"description": "Specifies allowed hosts and if the allowlist should be enforced.",
3333
"displayName": "AllowedHostsList",
3434
"documentation": "",
3535
"properties": {
3636
"enforced": {
3737
"default": true,
3838
"description": "",
39-
"displayName": "Limit outbound connections to endpoints in the allow-list",
40-
"documentation": "If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.",
39+
"displayName": "Limit outbound connections to endpoints in the allowlist",
40+
"documentation": "If enabled, the Dynatrace JavaScript Runtime will only be able to connect to the specified hosts.",
4141
"maxObjects": 1,
4242
"modificationPolicy": "DEFAULT",
4343
"nullable": false,
4444
"type": "boolean"
4545
},
4646
"hostList": {
4747
"description": "",
48-
"displayName": "Allow-list",
49-
"documentation": "The Dynatrace JavaScript runtime will only be able to connect to these hosts.",
48+
"displayName": "Allowlist",
49+
"documentation": "A host that app backends should be able to connect to.",
5050
"items": {
5151
"constraints": [
5252
{
@@ -55,13 +55,14 @@
5555
"type": "LENGTH"
5656
},
5757
{
58-
"customValidatorId": "allowed-host-validator",
58+
"customValidatorId": "functionproxy.functionproxy.svc.cluster.local/internal/settings-validation/v0.1/validate-property/allowed-hostname",
59+
"skipAsyncValidation": false,
5960
"type": "CUSTOM_VALIDATOR_REF"
6061
}
6162
],
62-
"description": "A Host that app backends should be able to connect to.",
63-
"displayName": "Allowed Host",
64-
"documentation": "Either an IP, or a domain name which may contain a wildcard ('*') as the leftmost label. If a '*' is used, it must be followed by at least two labels.",
63+
"description": "",
64+
"displayName": "Allowed host",
65+
"documentation": "",
6566
"type": "text"
6667
},
6768
"maxObjects": 50,
@@ -76,11 +77,11 @@
7677
"type": "set"
7778
}
7879
},
79-
"summaryPattern": "Allowlist enforced: {enforced}",
80+
"summaryPattern": "",
8081
"type": "object",
8182
"version": "0",
8283
"versionInfo": ""
8384
}
8485
},
85-
"version": "1.0.2"
86+
"version": "1.0.3"
8687
}

dynatrace/api/builtin/dtjavascriptruntime/allowedoutboundconnections/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/settings/services/settings20"
2525
)
2626

27-
const SchemaVersion = "1.0.2"
27+
const SchemaVersion = "1.0.3"
2828
const SchemaID = "builtin:dt-javascript-runtime.allowed-outbound-connections"
2929

3030
func Service(credentials *rest.Credentials) settings.CRUDService[*allowedoutboundconnections.Settings] {

0 commit comments

Comments
 (0)