1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// 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.
3// Code generated. DO NOT EDIT.
4
5// Blockchain Platform Control Plane API
6//
7// Blockchain Platform Control Plane API
8//
9
10package blockchain
11
12import (
13	"github.com/oracle/oci-go-sdk/common"
14)
15
16// UpdateBlockchainPlatformDetails Blockchain Platform details for updating a service.
17type UpdateBlockchainPlatformDetails struct {
18
19	// Platform Description
20	Description *string `mandatory:"false" json:"description"`
21
22	// Storage size in TBs
23	StorageSizeInTBs *float64 `mandatory:"false" json:"storageSizeInTBs"`
24
25	Replicas *ReplicaDetails `mandatory:"false" json:"replicas"`
26
27	// Number of total OCPUs to allocate
28	TotalOcpuCapacity *int `mandatory:"false" json:"totalOcpuCapacity"`
29
30	// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
31	// Example: `{"bar-key": "value"}`
32	FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
33
34	// Defined tags for this resource. Each key is predefined and scoped to a namespace.
35	// Example: `{"foo-namespace": {"bar-key": "value"}}`
36	DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
37}
38
39func (m UpdateBlockchainPlatformDetails) String() string {
40	return common.PointerString(m)
41}
42