Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0-beta.1 (2021-10-25)

- Azure Resource Manager Video Analyzer client library for Java. This package contains Microsoft Azure SDK for Video Analyzer Management SDK. Azure Video Analyzer provides a platform for you to build intelligent video applications that span the edge and the cloud. Package tag package-preview-2021-11. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-videoanalyzer</artifactId>
<version>1.0.0-beta.3</version>
<version>1.0.0-beta.4</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
12 changes: 9 additions & 3 deletions sdk/videoanalyzer/azure-resourcemanager-videoanalyzer/SAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public final class EdgeModulesListProvisioningTokenSamples {
"testaccount2",
"edgeModule1",
new ListProvisioningTokenInput()
.withExpirationDate(OffsetDateTime.parse("3021-01-23T11:04:49.0526841-08:00")),
.withExpirationDate(OffsetDateTime.parse("2023-01-23T11:04:49.0526841-08:00")),
Context.NONE);
}
}
Expand Down Expand Up @@ -768,7 +768,8 @@ public final class PipelineJobsCreateOrUpdateSamples {
.asList(
new ParameterDefinition()
.withName("timesequences")
.withValue("[[2020-10-05T03:30:00Z, 2020-10-05T04:30:00Z]]")))
.withValue("[[\"2020-10-05T03:30:00Z\", \"2020-10-05T04:30:00Z\"]]"),
new ParameterDefinition().withName("videoSourceName").withValue("camera001")))
.create();
}
}
Expand Down Expand Up @@ -875,6 +876,7 @@ import com.azure.resourcemanager.videoanalyzer.models.SkuName;
import com.azure.resourcemanager.videoanalyzer.models.UnsecuredEndpoint;
import com.azure.resourcemanager.videoanalyzer.models.UsernamePasswordCredentials;
import com.azure.resourcemanager.videoanalyzer.models.VideoCreationProperties;
import com.azure.resourcemanager.videoanalyzer.models.VideoPublishingOptions;
import com.azure.resourcemanager.videoanalyzer.models.VideoSink;
import java.util.Arrays;

Expand Down Expand Up @@ -934,7 +936,11 @@ public final class PipelineTopologiesCreateOrUpdateSamples {
new VideoCreationProperties()
.withTitle("Parking Lot (Camera 1)")
.withDescription("Parking lot south entrance")
.withSegmentLength("PT30S"))))
.withSegmentLength("PT30S"))
.withVideoPublishingOptions(
new VideoPublishingOptions()
.withDisableArchive("false")
.withDisableRtspPublishing("true"))))
.create();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public VideoAnalyzerManager authenticate(TokenCredential credential, AzureProfil
.append("-")
.append("com.azure.resourcemanager.videoanalyzer")
.append("/")
.append("1.0.0-beta.3");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void generateTheProvisioningTokenForAnEdgeModuleRegistration(
"testaccount2",
"edgeModule1",
new ListProvisioningTokenInput()
.withExpirationDate(OffsetDateTime.parse("3021-01-23T11:04:49.0526841-08:00")),
.withExpirationDate(OffsetDateTime.parse("2023-01-23T11:04:49.0526841-08:00")),
Context.NONE);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public static void createOrUpdateAPipelineJob(
.asList(
new ParameterDefinition()
.withName("timesequences")
.withValue("[[2020-10-05T03:30:00Z, 2020-10-05T04:30:00Z]]")))
.withValue("[[\"2020-10-05T03:30:00Z\", \"2020-10-05T04:30:00Z\"]]"),
new ParameterDefinition().withName("videoSourceName").withValue("camera001")))
.create();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import com.azure.resourcemanager.videoanalyzer.models.UnsecuredEndpoint;
import com.azure.resourcemanager.videoanalyzer.models.UsernamePasswordCredentials;
import com.azure.resourcemanager.videoanalyzer.models.VideoCreationProperties;
import com.azure.resourcemanager.videoanalyzer.models.VideoPublishingOptions;
import com.azure.resourcemanager.videoanalyzer.models.VideoSink;
import java.util.Arrays;

Expand Down Expand Up @@ -74,7 +75,11 @@ public static void createOrUpdateAPipelineTopologyWithAnRtspSourceAndVideoSink(
new VideoCreationProperties()
.withTitle("Parking Lot (Camera 1)")
.withDescription("Parking lot south entrance")
.withSegmentLength("PT30S"))))
.withSegmentLength("PT30S"))
.withVideoPublishingOptions(
new VideoPublishingOptions()
.withDisableArchive("false")
.withDisableRtspPublishing("true"))))
.create();
}
}