Skip to content

Commit c8af200

Browse files
committed
Updated resources with version update only
1 parent 5500a4e commit c8af200

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

dynatrace/api/app/dynatrace/hub/manage/permissions/schema.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"allowedScopes": [
33
"environment"
44
],
5-
"description": "Privileged user can manage permissions in the Hub App",
6-
"displayName": "Manage Permissions",
5+
"description": "Please add at least one admin with all necessary permissions to fulfill the requests.\n\nYou can either enter individual or team email addresses to receive request notifications.",
6+
"displayName": "Installation Requests",
77
"documentation": "",
88
"dynatrace": "1",
99
"enums": {},
@@ -24,7 +24,7 @@
2424
],
2525
"default": "",
2626
"description": "",
27-
"displayName": "Description",
27+
"displayName": "Name",
2828
"documentation": "",
2929
"maxObjects": 1,
3030
"modificationPolicy": "DEFAULT",
@@ -51,7 +51,7 @@
5151
],
5252
"default": "",
5353
"description": "",
54-
"displayName": "Email",
54+
"displayName": "Contact Email",
5555
"documentation": "",
5656
"maxObjects": 1,
5757
"modificationPolicy": "DEFAULT",
@@ -71,5 +71,5 @@
7171
],
7272
"schemaId": "app:dynatrace.hub:manage.permissions",
7373
"types": {},
74-
"version": "0.0.4"
74+
"version": "0.0.6"
7575
}

dynatrace/api/app/dynatrace/hub/manage/permissions/service.go

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

26-
const SchemaVersion = "0.0.4"
26+
const SchemaVersion = "0.0.6"
2727
const SchemaID = "app:dynatrace.hub:manage.permissions"
2828

2929
func Service(credentials *settings.Credentials) settings.CRUDService[*permissions.Settings] {

dynatrace/api/app/dynatrace/hub/manage/permissions/settings/settings.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
)
2424

2525
type Settings struct {
26-
Description string `json:"description"` // Description
27-
Email string `json:"email"` // Email
26+
Description string `json:"description"` // Name
27+
Email string `json:"email"` // Contact Email
2828
}
2929

3030
func (me *Settings) Name() string {
@@ -35,12 +35,12 @@ func (me *Settings) Schema() map[string]*schema.Schema {
3535
return map[string]*schema.Schema{
3636
"description": {
3737
Type: schema.TypeString,
38-
Description: "Description",
38+
Description: "Name",
3939
Required: true,
4040
},
4141
"email": {
4242
Type: schema.TypeString,
43-
Description: "Email",
43+
Description: "Contact Email",
4444
Required: true,
4545
},
4646
}

dynatrace/api/builtin/appsec/runtimevulnerabilitydetection/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,5 +272,5 @@
272272
]
273273
}
274274
},
275-
"version": "3.5.2"
275+
"version": "3.5.3"
276276
}

dynatrace/api/builtin/appsec/runtimevulnerabilitydetection/service.go

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

26-
const SchemaVersion = "3.5.2"
26+
const SchemaVersion = "3.5.3"
2727
const SchemaID = "builtin:appsec.runtime-vulnerability-detection"
2828

2929
func Service(credentials *settings.Credentials) settings.CRUDService[*runtimevulnerabilitydetection.Settings] {

dynatrace/api/builtin/davis/anomalydetectors/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,5 @@
378378
"versionInfo": ""
379379
}
380380
},
381-
"version": "1.0.1"
381+
"version": "1.0.2"
382382
}

dynatrace/api/builtin/davis/anomalydetectors/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
"golang.org/x/oauth2/clientcredentials"
4040
)
4141

42-
const SchemaVersion = "1.0.1"
42+
const SchemaVersion = "1.0.2"
4343
const SchemaID = "builtin:davis.anomaly-detectors"
4444

4545
func Service(credentials *settings.Credentials) settings.CRUDService[*anomalydetectors.Settings] {

0 commit comments

Comments
 (0)