
com.amazonaws.auth.policy.actions.DevicefarmActions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-devicefarm Show documentation
Show all versions of aws-java-sdk-devicefarm Show documentation
The AWS Java SDK for AWS Device Farm module holds the client classes that are used for communicating with AWS Device Farm
The newest version!
/*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.auth.policy.actions;
import com.amazonaws.auth.policy.Action;
/**
* The available AWS access control policy actions for AWS Device Farm.
*/
public enum DevicefarmActions implements Action {
/** Represents any action executed on AWS Device Farm. */
AllDevicefarmActions("devicefarm:*"),
/** Action for the CreateDevicePool operation. */
CreateDevicePool("devicefarm:CreateDevicePool"),
/** Action for the CreateProject operation. */
CreateProject("devicefarm:CreateProject"),
/** Action for the CreateUpload operation. */
CreateUpload("devicefarm:CreateUpload"),
/** Action for the DeleteDevicePool operation. */
DeleteDevicePool("devicefarm:DeleteDevicePool"),
/** Action for the DeleteProject operation. */
DeleteProject("devicefarm:DeleteProject"),
/** Action for the DeleteRun operation. */
DeleteRun("devicefarm:DeleteRun"),
/** Action for the DeleteUpload operation. */
DeleteUpload("devicefarm:DeleteUpload"),
/** Action for the GetAccountSettings operation. */
GetAccountSettings("devicefarm:GetAccountSettings"),
/** Action for the GetDevice operation. */
GetDevice("devicefarm:GetDevice"),
/** Action for the GetDevicePool operation. */
GetDevicePool("devicefarm:GetDevicePool"),
/** Action for the GetDevicePoolCompatibility operation. */
GetDevicePoolCompatibility("devicefarm:GetDevicePoolCompatibility"),
/** Action for the GetJob operation. */
GetJob("devicefarm:GetJob"),
/** Action for the GetOfferingStatus operation. */
GetOfferingStatus("devicefarm:GetOfferingStatus"),
/** Action for the GetProject operation. */
GetProject("devicefarm:GetProject"),
/** Action for the GetRun operation. */
GetRun("devicefarm:GetRun"),
/** Action for the GetSuite operation. */
GetSuite("devicefarm:GetSuite"),
/** Action for the GetTest operation. */
GetTest("devicefarm:GetTest"),
/** Action for the GetUpload operation. */
GetUpload("devicefarm:GetUpload"),
/** Action for the ListArtifacts operation. */
ListArtifacts("devicefarm:ListArtifacts"),
/** Action for the ListDevicePools operation. */
ListDevicePools("devicefarm:ListDevicePools"),
/** Action for the ListDevices operation. */
ListDevices("devicefarm:ListDevices"),
/** Action for the ListJobs operation. */
ListJobs("devicefarm:ListJobs"),
/** Action for the ListOfferingTransactions operation. */
ListOfferingTransactions("devicefarm:ListOfferingTransactions"),
/** Action for the ListOfferings operation. */
ListOfferings("devicefarm:ListOfferings"),
/** Action for the ListProjects operation. */
ListProjects("devicefarm:ListProjects"),
/** Action for the ListRuns operation. */
ListRuns("devicefarm:ListRuns"),
/** Action for the ListSamples operation. */
ListSamples("devicefarm:ListSamples"),
/** Action for the ListSuites operation. */
ListSuites("devicefarm:ListSuites"),
/** Action for the ListTests operation. */
ListTests("devicefarm:ListTests"),
/** Action for the ListUniqueProblems operation. */
ListUniqueProblems("devicefarm:ListUniqueProblems"),
/** Action for the ListUploads operation. */
ListUploads("devicefarm:ListUploads"),
/** Action for the PurchaseOffering operation. */
PurchaseOffering("devicefarm:PurchaseOffering"),
/** Action for the RenewOffering operation. */
RenewOffering("devicefarm:RenewOffering"),
/** Action for the ScheduleRun operation. */
ScheduleRun("devicefarm:ScheduleRun"),
/** Action for the StopRun operation. */
StopRun("devicefarm:StopRun"),
/** Action for the UpdateDevicePool operation. */
UpdateDevicePool("devicefarm:UpdateDevicePool"),
/** Action for the UpdateProject operation. */
UpdateProject("devicefarm:UpdateProject"),
;
private final String action;
private DevicefarmActions(String action) {
this.action = action;
}
public String getActionName() {
return this.action;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy