-
Notifications
You must be signed in to change notification settings - Fork 82
/
update_drg_route_rules_details.go
29 lines (23 loc) · 1.2 KB
/
update_drg_route_rules_details.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
// 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.
// Core Services API
//
// API covering the Networking (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm),
// Compute (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
// Block Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm) services. Use this API
// to manage resources such as virtual cloud networks (VCNs), compute instances, and
// block storage volumes.
//
package core
import (
"github.com/oracle/oci-go-sdk/v47/common"
)
// UpdateDrgRouteRulesDetails Details used to update route rules in a DRG route table.
type UpdateDrgRouteRulesDetails struct {
// The DRG rute rules to update.
RouteRules []UpdateDrgRouteRuleDetails `mandatory:"false" json:"routeRules"`
}
func (m UpdateDrgRouteRulesDetails) String() string {
return common.PointerString(m)
}