
com.google.api.ads.admanager.axis.v202408.LiveStreamEventServiceInterface Maven / Gradle / Ivy
// 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
//
// http://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.
/**
* LiveStreamEventServiceInterface.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4.1-SNAPSHOT Mar 20, 2024 (11:59:10 PDT) WSDL2Java emitter.
*/
package com.google.api.ads.admanager.axis.v202408;
public interface LiveStreamEventServiceInterface extends java.rmi.Remote {
/**
* Creates new {@link LiveStreamEvent} objects.
*
* The following fields are required:
*
*
* - {@link LiveStreamEvent#name}
*
- {@link LiveStreamEvent#startDateTime}
*
- {@link LiveStreamEvent#endDateTime}
*
- {@link LiveStreamEvent#contentUrls}
*
- {@link LiveStreamEvent#adTags}
*
*/
public com.google.api.ads.admanager.axis.v202408.LiveStreamEvent[] createLiveStreamEvents(com.google.api.ads.admanager.axis.v202408.LiveStreamEvent[] liveStreamEvents) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Create new slates.
*
* A slate creative is served as backup content in a live
* stream event when no other creatives
* are eligible to be served.
*/
public com.google.api.ads.admanager.axis.v202408.Slate[] createSlates(com.google.api.ads.admanager.axis.v202408.Slate[] slates) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Gets a {@link LiveStreamEventPage} of {@link LiveStreamEvent}
* objects that satisfy the given
* {@link Statement#query}. The following fields are supported
* for filtering:
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link LiveStreamEvent#id}
*
*
* {@code slateCreativeId}
* {@link LiveStreamEvent#slateCreativeId}
*
*
* {@code assetKey}
* {@link LiveStreamEvent#assetKey}
*
*
* {@code streamCreateDaiAuthenticationKeyIds}
* {@link LiveStreamEvent#streamCreateDaiAuthenticationKeyIds}
*
*
* {@code dynamicAdInsertionType}
* {@link LiveStreamEvent#dynamicAdInsertionType}
*
*
* {@code streamingFormat}
* {@link LiveStreamEvent#streamingFormat}
*
*
* {@code customAssetKey}
* {@link LiveStreamEvent#customAssetKey}
*
*
* {@code daiEncodingProfileIds}
* {@link LiveStreamEvent#daiEncodingProfileIds}
*
*
* {@code segmentUrlAuthenticationKeyIds}
* {@link LiveStreamEvent#segmentUrlAuthenticationKeyIds}
*
*
*/
public com.google.api.ads.admanager.axis.v202408.LiveStreamEventPage getLiveStreamEventsByStatement(com.google.api.ads.admanager.axis.v202408.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Gets a {@link SlatePage} of {@link Slate} objects that satisfy
* the given {@link
* Statement#query}. The following fields are supported for filtering:
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link Slate#id}
*
*
* {@code name}
* {@link Slate#name}
*
*
* {@code lastModifiedDateTime}
* {@link Slate#lastModifiedDateTime}
*
*
*/
public com.google.api.ads.admanager.axis.v202408.SlatePage getSlatesByStatement(com.google.api.ads.admanager.axis.v202408.Statement statement) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Performs actions on {@link LiveStreamEvent} objects that match
* the given {@link
* Statement#query}.
*/
public com.google.api.ads.admanager.axis.v202408.UpdateResult performLiveStreamEventAction(com.google.api.ads.admanager.axis.v202408.LiveStreamEventAction liveStreamEventAction, com.google.api.ads.admanager.axis.v202408.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Performs actions on slates that match the given {@link Statement}.
*/
public com.google.api.ads.admanager.axis.v202408.UpdateResult performSlateAction(com.google.api.ads.admanager.axis.v202408.SlateAction slateAction, com.google.api.ads.admanager.axis.v202408.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Updates the specified {@link LiveStreamEvent} objects.
*/
public com.google.api.ads.admanager.axis.v202408.LiveStreamEvent[] updateLiveStreamEvents(com.google.api.ads.admanager.axis.v202408.LiveStreamEvent[] liveStreamEvents) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
/**
* Update existing slates.
*
* Only the slateName is editable.
*/
public com.google.api.ads.admanager.axis.v202408.Slate[] updateSlates(com.google.api.ads.admanager.axis.v202408.Slate[] slates) throws java.rmi.RemoteException, com.google.api.ads.admanager.axis.v202408.ApiException;
}