com.google.appengine.v1.DomainMappingOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Proto library for google-cloud-appengine-admin
/*
* Copyright 2024 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/appengine/v1/domain_mapping.proto
// Protobuf Java Version: 3.25.5
package com.google.appengine.v1;
public interface DomainMappingOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.DomainMapping)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Full path to the `DomainMapping` resource in the API. Example:
* `apps/myapp/domainMapping/example.com`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Full path to the `DomainMapping` resource in the API. Example:
* `apps/myapp/domainMapping/example.com`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Relative name of the domain serving the application. Example:
* `example.com`.
*
*
* string id = 2;
*
* @return The id.
*/
java.lang.String getId();
/**
*
*
*
* Relative name of the domain serving the application. Example:
* `example.com`.
*
*
* string id = 2;
*
* @return The bytes for id.
*/
com.google.protobuf.ByteString getIdBytes();
/**
*
*
*
* SSL configuration for this domain. If unconfigured, this domain will not
* serve with SSL.
*
*
* .google.appengine.v1.SslSettings ssl_settings = 3;
*
* @return Whether the sslSettings field is set.
*/
boolean hasSslSettings();
/**
*
*
*
* SSL configuration for this domain. If unconfigured, this domain will not
* serve with SSL.
*
*
* .google.appengine.v1.SslSettings ssl_settings = 3;
*
* @return The sslSettings.
*/
com.google.appengine.v1.SslSettings getSslSettings();
/**
*
*
*
* SSL configuration for this domain. If unconfigured, this domain will not
* serve with SSL.
*
*
* .google.appengine.v1.SslSettings ssl_settings = 3;
*/
com.google.appengine.v1.SslSettingsOrBuilder getSslSettingsOrBuilder();
/**
*
*
*
* The resource records required to configure this domain mapping. These
* records must be added to the domain's DNS configuration in order to
* serve the application via this domain mapping.
*
* @OutputOnly
*
*
* repeated .google.appengine.v1.ResourceRecord resource_records = 4;
*/
java.util.List getResourceRecordsList();
/**
*
*
*
* The resource records required to configure this domain mapping. These
* records must be added to the domain's DNS configuration in order to
* serve the application via this domain mapping.
*
* @OutputOnly
*
*
* repeated .google.appengine.v1.ResourceRecord resource_records = 4;
*/
com.google.appengine.v1.ResourceRecord getResourceRecords(int index);
/**
*
*
*
* The resource records required to configure this domain mapping. These
* records must be added to the domain's DNS configuration in order to
* serve the application via this domain mapping.
*
* @OutputOnly
*
*
* repeated .google.appengine.v1.ResourceRecord resource_records = 4;
*/
int getResourceRecordsCount();
/**
*
*
*
* The resource records required to configure this domain mapping. These
* records must be added to the domain's DNS configuration in order to
* serve the application via this domain mapping.
*
* @OutputOnly
*
*
* repeated .google.appengine.v1.ResourceRecord resource_records = 4;
*/
java.util.List extends com.google.appengine.v1.ResourceRecordOrBuilder>
getResourceRecordsOrBuilderList();
/**
*
*
*
* The resource records required to configure this domain mapping. These
* records must be added to the domain's DNS configuration in order to
* serve the application via this domain mapping.
*
* @OutputOnly
*
*
* repeated .google.appengine.v1.ResourceRecord resource_records = 4;
*/
com.google.appengine.v1.ResourceRecordOrBuilder getResourceRecordsOrBuilder(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy