shade.polaris.com.google.api.MethodPolicyOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/policy.proto
package com.google.api;
public interface MethodPolicyOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.api.MethodPolicy)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Selects a method to which these policies should be enforced, for example,
* "google.pubsub.v1.Subscriber.CreateSubscription".
*
* Refer to [selector][google.api.DocumentationRule.selector] for syntax
* details.
*
* NOTE: This field must not be set in the proto annotation. It will be
* automatically filled by the service config compiler .
*
*
* string selector = 9;
*
* @return The selector.
*/
java.lang.String getSelector();
/**
*
*
*
* Selects a method to which these policies should be enforced, for example,
* "google.pubsub.v1.Subscriber.CreateSubscription".
*
* Refer to [selector][google.api.DocumentationRule.selector] for syntax
* details.
*
* NOTE: This field must not be set in the proto annotation. It will be
* automatically filled by the service config compiler .
*
*
* string selector = 9;
*
* @return The bytes for selector.
*/
com.google.protobuf.ByteString getSelectorBytes();
/**
*
*
*
* Policies that are applicable to the request message.
*
*
* repeated .google.api.FieldPolicy request_policies = 2;
*/
java.util.List getRequestPoliciesList();
/**
*
*
*
* Policies that are applicable to the request message.
*
*
* repeated .google.api.FieldPolicy request_policies = 2;
*/
com.google.api.FieldPolicy getRequestPolicies(int index);
/**
*
*
*
* Policies that are applicable to the request message.
*
*
* repeated .google.api.FieldPolicy request_policies = 2;
*/
int getRequestPoliciesCount();
/**
*
*
*
* Policies that are applicable to the request message.
*
*
* repeated .google.api.FieldPolicy request_policies = 2;
*/
java.util.List extends com.google.api.FieldPolicyOrBuilder> getRequestPoliciesOrBuilderList();
/**
*
*
*
* Policies that are applicable to the request message.
*
*
* repeated .google.api.FieldPolicy request_policies = 2;
*/
com.google.api.FieldPolicyOrBuilder getRequestPoliciesOrBuilder(int index);
}