forked from aws/amazon-ecs-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssmsecretstatus.go
78 lines (67 loc) · 2.2 KB
/
ssmsecretstatus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
package ssmsecret
import (
"errors"
"strings"
resourcestatus "github.com/aws/amazon-ecs-agent/agent/taskresource/status"
)
type SSMSecretStatus resourcestatus.ResourceStatus
const (
// is the zero state of a task resource
SSMSecretStatusNone SSMSecretStatus = iota
// represents a task resource which has been created
SSMSecretCreated
// represents a task resource which has been cleaned up
SSMSecretRemoved
)
var ssmSecretStatusMap = map[string]SSMSecretStatus{
"NONE": SSMSecretStatusNone,
"CREATED": SSMSecretCreated,
"REMOVED": SSMSecretRemoved,
}
// StatusString returns a human readable string representation of this object
func (as SSMSecretStatus) String() string {
for k, v := range ssmSecretStatusMap {
if v == as {
return k
}
}
return "NONE"
}
// MarshalJSON overrides the logic for JSON-encoding the ResourceStatus type
func (as *SSMSecretStatus) MarshalJSON() ([]byte, error) {
if as == nil {
return nil, errors.New("ssmsecret resource status is nil")
}
return []byte(`"` + as.String() + `"`), nil
}
// UnmarshalJSON overrides the logic for parsing the JSON-encoded ResourceStatus data
func (as *SSMSecretStatus) UnmarshalJSON(b []byte) error {
if strings.ToLower(string(b)) == "null" {
*as = SSMSecretStatusNone
return nil
}
if b[0] != '"' || b[len(b)-1] != '"' {
*as = SSMSecretStatusNone
return errors.New("resource status unmarshal: status must be a string or null; Got " + string(b))
}
strStatus := string(b[1 : len(b)-1])
stat, ok := ssmSecretStatusMap[strStatus]
if !ok {
*as = SSMSecretStatusNone
return errors.New("resource status unmarshal: unrecognized status")
}
*as = stat
return nil
}