com.google.cloud.dataform.v1beta1.InvocationConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dataform-v1beta1 Show documentation
Show all versions of proto-google-cloud-dataform-v1beta1 Show documentation
Proto library for google-cloud-dataform
/*
* 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/cloud/dataform/v1beta1/dataform.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dataform.v1beta1;
public interface InvocationConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataform.v1beta1.InvocationConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. The set of action identifiers to include.
*
*
*
* repeated .google.cloud.dataform.v1beta1.Target included_targets = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
java.util.List getIncludedTargetsList();
/**
*
*
*
* Optional. The set of action identifiers to include.
*
*
*
* repeated .google.cloud.dataform.v1beta1.Target included_targets = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.dataform.v1beta1.Target getIncludedTargets(int index);
/**
*
*
*
* Optional. The set of action identifiers to include.
*
*
*
* repeated .google.cloud.dataform.v1beta1.Target included_targets = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
int getIncludedTargetsCount();
/**
*
*
*
* Optional. The set of action identifiers to include.
*
*
*
* repeated .google.cloud.dataform.v1beta1.Target included_targets = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
java.util.List extends com.google.cloud.dataform.v1beta1.TargetOrBuilder>
getIncludedTargetsOrBuilderList();
/**
*
*
*
* Optional. The set of action identifiers to include.
*
*
*
* repeated .google.cloud.dataform.v1beta1.Target included_targets = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.dataform.v1beta1.TargetOrBuilder getIncludedTargetsOrBuilder(int index);
/**
*
*
*
* Optional. The set of tags to include.
*
*
* repeated string included_tags = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return A list containing the includedTags.
*/
java.util.List getIncludedTagsList();
/**
*
*
*
* Optional. The set of tags to include.
*
*
* repeated string included_tags = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The count of includedTags.
*/
int getIncludedTagsCount();
/**
*
*
*
* Optional. The set of tags to include.
*
*
* repeated string included_tags = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param index The index of the element to return.
* @return The includedTags at the given index.
*/
java.lang.String getIncludedTags(int index);
/**
*
*
*
* Optional. The set of tags to include.
*
*
* repeated string included_tags = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param index The index of the value to return.
* @return The bytes of the includedTags at the given index.
*/
com.google.protobuf.ByteString getIncludedTagsBytes(int index);
/**
*
*
*
* Optional. When set to true, transitive dependencies of included actions
* will be executed.
*
*
* bool transitive_dependencies_included = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The transitiveDependenciesIncluded.
*/
boolean getTransitiveDependenciesIncluded();
/**
*
*
*
* Optional. When set to true, transitive dependents of included actions will
* be executed.
*
*
* bool transitive_dependents_included = 4 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The transitiveDependentsIncluded.
*/
boolean getTransitiveDependentsIncluded();
/**
*
*
*
* Optional. When set to true, any incremental tables will be fully refreshed.
*
*
*
* bool fully_refresh_incremental_tables_enabled = 5 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The fullyRefreshIncrementalTablesEnabled.
*/
boolean getFullyRefreshIncrementalTablesEnabled();
/**
*
*
*
* Optional. The service account to run workflow invocations under.
*
*
* string service_account = 6 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The serviceAccount.
*/
java.lang.String getServiceAccount();
/**
*
*
*
* Optional. The service account to run workflow invocations under.
*
*
* string service_account = 6 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for serviceAccount.
*/
com.google.protobuf.ByteString getServiceAccountBytes();
}