
com.azure.resourcemanager.datafactory.implementation.PipelineRunsQueryResponseImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory.implementation;
import com.azure.resourcemanager.datafactory.fluent.models.PipelineRunInner;
import com.azure.resourcemanager.datafactory.fluent.models.PipelineRunsQueryResponseInner;
import com.azure.resourcemanager.datafactory.models.PipelineRun;
import com.azure.resourcemanager.datafactory.models.PipelineRunsQueryResponse;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
public final class PipelineRunsQueryResponseImpl implements PipelineRunsQueryResponse {
private PipelineRunsQueryResponseInner innerObject;
private final com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager;
PipelineRunsQueryResponseImpl(PipelineRunsQueryResponseInner innerObject,
com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public List value() {
List inner = this.innerModel().value();
if (inner != null) {
return Collections.unmodifiableList(
inner.stream().map(inner1 -> new PipelineRunImpl(inner1, this.manager())).collect(Collectors.toList()));
} else {
return Collections.emptyList();
}
}
public String continuationToken() {
return this.innerModel().continuationToken();
}
public PipelineRunsQueryResponseInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.datafactory.DataFactoryManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy