forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 16585 in Azure/azure-rest-api-specs
Merge ce4ac3e65cf6bf23461ecfe740f8576bd2ddca35 into d90729bbada2b4f784f2737ab4b4e39693a7aab8
- Loading branch information
SDKAuto
committed
Dec 8, 2021
1 parent
cc7e280
commit e7b66ff
Showing
7 changed files
with
45 additions
and
43 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
sdk/datafactory/azure-resourcemanager-datafactory/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...datafactory/src/main/java/com/azure/resourcemanager/datafactory/models/BlobEventType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.datafactory.models; | ||
|
||
import com.azure.core.util.ExpandableStringEnum; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import java.util.Collection; | ||
|
||
/** Defines values for BlobEventType. */ | ||
public final class BlobEventType extends ExpandableStringEnum<BlobEventType> { | ||
/** Static value Microsoft.Storage.BlobCreated for BlobEventType. */ | ||
public static final BlobEventType MICROSOFT_STORAGE_BLOB_CREATED = fromString("Microsoft.Storage.BlobCreated"); | ||
|
||
/** Static value Microsoft.Storage.BlobDeleted for BlobEventType. */ | ||
public static final BlobEventType MICROSOFT_STORAGE_BLOB_DELETED = fromString("Microsoft.Storage.BlobDeleted"); | ||
|
||
/** | ||
* Creates or finds a BlobEventType from its string representation. | ||
* | ||
* @param name a name to look for. | ||
* @return the corresponding BlobEventType. | ||
*/ | ||
@JsonCreator | ||
public static BlobEventType fromString(String name) { | ||
return fromString(name, BlobEventType.class); | ||
} | ||
|
||
/** @return known BlobEventType values. */ | ||
public static Collection<BlobEventType> values() { | ||
return values(BlobEventType.class); | ||
} | ||
} |
34 changes: 0 additions & 34 deletions
34
...atafactory/src/main/java/com/azure/resourcemanager/datafactory/models/BlobEventTypes.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters