// Copyright (c) 2016, 2018, 2020, 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. // LogAnalytics API // // The LogAnalytics API for the LogAnalytics service. // package loganalytics import ( "github.com/oracle/oci-go-sdk/common" ) // AddEntityAssociationDetails Information about the associations to be added between log analytics entity and other existing entities. type AddEntityAssociationDetails struct { // Destination entities OCIDs with which associations are to be added. AssociationEntities []string `mandatory:"true" json:"associationEntities"` } func (m AddEntityAssociationDetails) String() string { return common.PointerString(m) }