All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.recoveryservicesbackup.models.SecurityPinBase Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.recoveryservicesbackup.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * Base class for get security pin request body.
 */
@Fluent
public final class SecurityPinBase {
    /*
     * ResourceGuard Operation Requests
     */
    @JsonProperty(value = "resourceGuardOperationRequests")
    private List resourceGuardOperationRequests;

    /**
     * Creates an instance of SecurityPinBase class.
     */
    public SecurityPinBase() {
    }

    /**
     * Get the resourceGuardOperationRequests property: ResourceGuard Operation Requests.
     * 
     * @return the resourceGuardOperationRequests value.
     */
    public List resourceGuardOperationRequests() {
        return this.resourceGuardOperationRequests;
    }

    /**
     * Set the resourceGuardOperationRequests property: ResourceGuard Operation Requests.
     * 
     * @param resourceGuardOperationRequests the resourceGuardOperationRequests value to set.
     * @return the SecurityPinBase object itself.
     */
    public SecurityPinBase withResourceGuardOperationRequests(List resourceGuardOperationRequests) {
        this.resourceGuardOperationRequests = resourceGuardOperationRequests;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy