@@ -262,6 +262,7 @@ type DefaultApi interface {
262262 * @param optional nil or *GetByUniqueAttributesOpts - Optional Parameters:
263263 * @param "MinExtInfo" (optional.Bool) - Whether to only populate header and schema attributes
264264 * @param "IgnoreRelationships" (optional.Bool) - Whether to ignore relationships
265+ * @param "IncludeInternalPrefix" (optional.String) - If not null, include internal attributes that start with this prefix
265266 * @return AtlasEntityWithExtInfo
266267 */
267268 GetByUniqueAttributes (ctx _context.Context , typeName string , qualifiedName string , localVarOptionals * GetByUniqueAttributesOpts ) (AtlasEntityWithExtInfo , * _nethttp.Response , error )
@@ -2462,6 +2463,7 @@ func (a *DefaultApiService) GetBusinessMetadataDefByName(ctx _context.Context, b
24622463type GetByUniqueAttributesOpts struct {
24632464 MinExtInfo optional.Bool
24642465 IgnoreRelationships optional.Bool
2466+ IncludeInternalPrefix optional.String
24652467}
24662468
24672469/*
@@ -2475,6 +2477,7 @@ type GetByUniqueAttributesOpts struct {
24752477 * @param optional nil or *GetByUniqueAttributesOpts - Optional Parameters:
24762478 * @param "MinExtInfo" (optional.Bool) - Whether to only populate header and schema attributes
24772479 * @param "IgnoreRelationships" (optional.Bool) - Whether to ignore relationships
2480+ * @param "IncludeInternalPrefix" (optional.String) - If not null, include internal attributes that start with this prefix
24782481 * @return AtlasEntityWithExtInfo
24792482 */
24802483func (a * DefaultApiService ) GetByUniqueAttributes (ctx _context.Context , typeName string , qualifiedName string , localVarOptionals * GetByUniqueAttributesOpts ) (AtlasEntityWithExtInfo , * _nethttp.Response , error ) {
@@ -2503,6 +2506,9 @@ func (a *DefaultApiService) GetByUniqueAttributes(ctx _context.Context, typeName
25032506 if localVarOptionals != nil && localVarOptionals .IgnoreRelationships .IsSet () {
25042507 localVarQueryParams .Add ("ignoreRelationships" , parameterToString (localVarOptionals .IgnoreRelationships .Value (), "" ))
25052508 }
2509+ if localVarOptionals != nil && localVarOptionals .IncludeInternalPrefix .IsSet () {
2510+ localVarQueryParams .Add ("includeInternalPrefix" , parameterToString (localVarOptionals .IncludeInternalPrefix .Value (), "" ))
2511+ }
25062512 // to determine the Content-Type header
25072513 localVarHTTPContentTypes := []string {}
25082514
0 commit comments