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.
- Loading branch information
SDK Automation
committed
Jun 24, 2020
1 parent
4877b3e
commit 1f802f2
Showing
105 changed files
with
11,769 additions
and
141 deletions.
There are no files selected for viewing
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
38 changes: 38 additions & 0 deletions
38
...01/src/main/java/com/microsoft/azure/management/containerregistry/v2019_04_01/Action.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,38 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.containerregistry.v2019_04_01; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for Action. | ||
*/ | ||
public final class Action extends ExpandableStringEnum<Action> { | ||
/** Static value Allow for Action. */ | ||
public static final Action ALLOW = fromString("Allow"); | ||
|
||
/** | ||
* Creates or finds a Action from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding Action | ||
*/ | ||
@JsonCreator | ||
public static Action fromString(String name) { | ||
return fromString(name, Action.class); | ||
} | ||
|
||
/** | ||
* @return known Action values | ||
*/ | ||
public static Collection<Action> values() { | ||
return values(Action.class); | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
..._01/src/main/java/com/microsoft/azure/management/containerregistry/v2019_04_01/Actor.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,45 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.containerregistry.v2019_04_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* The agent that initiated the event. For most situations, this could be from | ||
* the authorization context of the request. | ||
*/ | ||
public class Actor { | ||
/** | ||
* The subject or username associated with the request context that | ||
* generated the event. | ||
*/ | ||
@JsonProperty(value = "name") | ||
private String name; | ||
|
||
/** | ||
* Get the subject or username associated with the request context that generated the event. | ||
* | ||
* @return the name value | ||
*/ | ||
public String name() { | ||
return this.name; | ||
} | ||
|
||
/** | ||
* Set the subject or username associated with the request context that generated the event. | ||
* | ||
* @param name the name value to set | ||
* @return the Actor object itself. | ||
*/ | ||
public Actor withName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
} |
31 changes: 31 additions & 0 deletions
31
...ain/java/com/microsoft/azure/management/containerregistry/v2019_04_01/CallbackConfig.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,31 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.containerregistry.v2019_04_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.containerregistry.v2019_04_01.implementation.ContainerRegistryManager; | ||
import com.microsoft.azure.management.containerregistry.v2019_04_01.implementation.CallbackConfigInner; | ||
import java.util.Map; | ||
|
||
/** | ||
* Type representing CallbackConfig. | ||
*/ | ||
public interface CallbackConfig extends HasInner<CallbackConfigInner>, HasManager<ContainerRegistryManager> { | ||
/** | ||
* @return the customHeaders value. | ||
*/ | ||
Map<String, String> customHeaders(); | ||
|
||
/** | ||
* @return the serviceUri value. | ||
*/ | ||
String serviceUri(); | ||
|
||
} |
41 changes: 41 additions & 0 deletions
41
...main/java/com/microsoft/azure/management/containerregistry/v2019_04_01/DefaultAction.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,41 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.containerregistry.v2019_04_01; | ||
|
||
import java.util.Collection; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.microsoft.rest.ExpandableStringEnum; | ||
|
||
/** | ||
* Defines values for DefaultAction. | ||
*/ | ||
public final class DefaultAction extends ExpandableStringEnum<DefaultAction> { | ||
/** Static value Allow for DefaultAction. */ | ||
public static final DefaultAction ALLOW = fromString("Allow"); | ||
|
||
/** Static value Deny for DefaultAction. */ | ||
public static final DefaultAction DENY = fromString("Deny"); | ||
|
||
/** | ||
* Creates or finds a DefaultAction from its string representation. | ||
* @param name a name to look for | ||
* @return the corresponding DefaultAction | ||
*/ | ||
@JsonCreator | ||
public static DefaultAction fromString(String name) { | ||
return fromString(name, DefaultAction.class); | ||
} | ||
|
||
/** | ||
* @return known DefaultAction values | ||
*/ | ||
public static Collection<DefaultAction> values() { | ||
return values(DefaultAction.class); | ||
} | ||
} |
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
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
35 changes: 35 additions & 0 deletions
35
..._01/src/main/java/com/microsoft/azure/management/containerregistry/v2019_04_01/Event.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,35 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.containerregistry.v2019_04_01; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.containerregistry.v2019_04_01.implementation.ContainerRegistryManager; | ||
import com.microsoft.azure.management.containerregistry.v2019_04_01.implementation.EventInner; | ||
|
||
/** | ||
* Type representing Event. | ||
*/ | ||
public interface Event extends HasInner<EventInner>, HasManager<ContainerRegistryManager> { | ||
/** | ||
* @return the eventRequestMessage value. | ||
*/ | ||
EventRequestMessage eventRequestMessage(); | ||
|
||
/** | ||
* @return the eventResponseMessage value. | ||
*/ | ||
EventResponseMessage eventResponseMessage(); | ||
|
||
/** | ||
* @return the id value. | ||
*/ | ||
String id(); | ||
|
||
} |
Oops, something went wrong.