com.google.cloud.managedidentities.v1.TrustOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-managed-identities-v1 Show documentation
Show all versions of proto-google-cloud-managed-identities-v1 Show documentation
Proto library for google-cloud-managed-identities
/*
* Copyright 2023 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/cloud/managedidentities/v1/resource.proto
package com.google.cloud.managedidentities.v1;
public interface TrustOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.managedidentities.v1.Trust)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The fully qualified target domain name which will be in trust with the
* current domain.
*
*
* string target_domain_name = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The targetDomainName.
*/
java.lang.String getTargetDomainName();
/**
*
*
*
* Required. The fully qualified target domain name which will be in trust with the
* current domain.
*
*
* string target_domain_name = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for targetDomainName.
*/
com.google.protobuf.ByteString getTargetDomainNameBytes();
/**
*
*
*
* Required. The type of trust represented by the trust resource.
*
*
*
* .google.cloud.managedidentities.v1.Trust.TrustType trust_type = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The enum numeric value on the wire for trustType.
*/
int getTrustTypeValue();
/**
*
*
*
* Required. The type of trust represented by the trust resource.
*
*
*
* .google.cloud.managedidentities.v1.Trust.TrustType trust_type = 2 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The trustType.
*/
com.google.cloud.managedidentities.v1.Trust.TrustType getTrustType();
/**
*
*
*
* Required. The trust direction, which decides if the current domain is trusted,
* trusting, or both.
*
*
*
* .google.cloud.managedidentities.v1.Trust.TrustDirection trust_direction = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The enum numeric value on the wire for trustDirection.
*/
int getTrustDirectionValue();
/**
*
*
*
* Required. The trust direction, which decides if the current domain is trusted,
* trusting, or both.
*
*
*
* .google.cloud.managedidentities.v1.Trust.TrustDirection trust_direction = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The trustDirection.
*/
com.google.cloud.managedidentities.v1.Trust.TrustDirection getTrustDirection();
/**
*
*
*
* Optional. The trust authentication type, which decides whether the trusted side has
* forest/domain wide access or selective access to an approved set of
* resources.
*
*
* bool selective_authentication = 4 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The selectiveAuthentication.
*/
boolean getSelectiveAuthentication();
/**
*
*
*
* Required. The target DNS server IP addresses which can resolve the remote domain
* involved in the trust.
*
*
* repeated string target_dns_ip_addresses = 5 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return A list containing the targetDnsIpAddresses.
*/
java.util.List getTargetDnsIpAddressesList();
/**
*
*
*
* Required. The target DNS server IP addresses which can resolve the remote domain
* involved in the trust.
*
*
* repeated string target_dns_ip_addresses = 5 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The count of targetDnsIpAddresses.
*/
int getTargetDnsIpAddressesCount();
/**
*
*
*
* Required. The target DNS server IP addresses which can resolve the remote domain
* involved in the trust.
*
*
* repeated string target_dns_ip_addresses = 5 [(.google.api.field_behavior) = REQUIRED];
*
*
* @param index The index of the element to return.
* @return The targetDnsIpAddresses at the given index.
*/
java.lang.String getTargetDnsIpAddresses(int index);
/**
*
*
*
* Required. The target DNS server IP addresses which can resolve the remote domain
* involved in the trust.
*
*
* repeated string target_dns_ip_addresses = 5 [(.google.api.field_behavior) = REQUIRED];
*
*
* @param index The index of the value to return.
* @return The bytes of the targetDnsIpAddresses at the given index.
*/
com.google.protobuf.ByteString getTargetDnsIpAddressesBytes(int index);
/**
*
*
*
* Required. The trust secret used for the handshake with the target domain. This will
* not be stored.
*
*
* string trust_handshake_secret = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The trustHandshakeSecret.
*/
java.lang.String getTrustHandshakeSecret();
/**
*
*
*
* Required. The trust secret used for the handshake with the target domain. This will
* not be stored.
*
*
* string trust_handshake_secret = 6 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for trustHandshakeSecret.
*/
com.google.protobuf.ByteString getTrustHandshakeSecretBytes();
/**
*
*
*
* Output only. The time the instance was created.
*
*
* .google.protobuf.Timestamp create_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The time the instance was created.
*
*
* .google.protobuf.Timestamp create_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The time the instance was created.
*
*
* .google.protobuf.Timestamp create_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The last update time.
*
*
* .google.protobuf.Timestamp update_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The last update time.
*
*
* .google.protobuf.Timestamp update_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The last update time.
*
*
* .google.protobuf.Timestamp update_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Output only. The current state of the trust.
*
*
*
* .google.cloud.managedidentities.v1.Trust.State state = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* Output only. The current state of the trust.
*
*
*
* .google.cloud.managedidentities.v1.Trust.State state = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The state.
*/
com.google.cloud.managedidentities.v1.Trust.State getState();
/**
*
*
*
* Output only. Additional information about the current state of the trust, if available.
*
*
* string state_description = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The stateDescription.
*/
java.lang.String getStateDescription();
/**
*
*
*
* Output only. Additional information about the current state of the trust, if available.
*
*
* string state_description = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for stateDescription.
*/
com.google.protobuf.ByteString getStateDescriptionBytes();
/**
*
*
*
* Output only. The last heartbeat time when the trust was known to be connected.
*
*
*
* .google.protobuf.Timestamp last_trust_heartbeat_time = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the lastTrustHeartbeatTime field is set.
*/
boolean hasLastTrustHeartbeatTime();
/**
*
*
*
* Output only. The last heartbeat time when the trust was known to be connected.
*
*
*
* .google.protobuf.Timestamp last_trust_heartbeat_time = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The lastTrustHeartbeatTime.
*/
com.google.protobuf.Timestamp getLastTrustHeartbeatTime();
/**
*
*
*
* Output only. The last heartbeat time when the trust was known to be connected.
*
*
*
* .google.protobuf.Timestamp last_trust_heartbeat_time = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getLastTrustHeartbeatTimeOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy