-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.go
31 lines (23 loc) · 1.06 KB
/
action.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
// Copyright (c) 2016, 2018, 2021, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Cloud Advisor API
//
// APIs for managing Cloud Advisor. Cloud Advisor provides recommendations that help you maximize cost savings and improve the security posture of your tenancy.
//
package optimizer
import (
"github.com/erikcai/oci-go-sdk/v33/common"
)
// Action Details about the recommended action.
type Action struct {
// The status of the resource action.
Type ActionTypeEnum `mandatory:"true" json:"type"`
// Text describing the recommended action.
Description *string `mandatory:"true" json:"description"`
// The URL path to documentation that explains how to perform the action.
Url *string `mandatory:"true" json:"url"`
}
func (m Action) String() string {
return common.PointerString(m)
}