Skip to content

Commit

Permalink
feat(videointelligence/v1): generate libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Feb 5, 2025
1 parent b16c218 commit 15d1c14
Show file tree
Hide file tree
Showing 15 changed files with 4,148 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ permamently = "permamently"
revison = "revison"
# src/generated/cloud/sql/v1 has a typo, needs to be fixed upstream.
corresponsing = "corresponsing"
# src/generated/cloud/videointelligence/v1 has typos, they need to be fixed upstream.
coordindate = "coordindate"
trignometric = "trignometric"
# src/generated/datastore/admin/v1 has a typo, needs to be fixed upstream.
Ths = "Ths"
# src/generated/devtools/cloudbuild/v2 has a typo, needs to be fixed upstream.
Expand Down
20 changes: 20 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ members = [
"src/generated/cloud/secretmanager/v1",
"src/generated/cloud/tasks/v2",
"src/generated/cloud/translate/v3",
"src/generated/cloud/videointelligence/v1",
"src/generated/cloud/vpcaccess/v1",
"src/generated/cloud/webrisk/v1",
"src/generated/cloud/workflows/v1",
Expand Down
11 changes: 11 additions & 0 deletions src/generated/cloud/videointelligence/v1/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"api_id": "videointelligence.googleapis.com",
"api_shortname": "videointelligence",
"client_documentation": "https://docs.rs/google-cloud-videointelligence-v1/latest",
"distribution_name": "google-cloud-rust",
"language": "rust",
"library_type": "GAPIC_AUTO",
"name_pretty": "Cloud Video Intelligence API",
"release_level": "preview",
"repo": "googleapis/google-cloud-rust"
}
21 changes: 21 additions & 0 deletions src/generated/cloud/videointelligence/v1/.sidekick.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2025 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.

[general]
language = 'rust'
specification-source = 'google/cloud/videointelligence/v1'
service-config = 'google/cloud/videointelligence/v1/videointelligence_v1.yaml'

[codec]
copyright-year = '2025'
47 changes: 47 additions & 0 deletions src/generated/cloud/videointelligence/v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright 2025 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.
#
# Code generated by sidekick. DO NOT EDIT.

[package]
name = "google-cloud-videointelligence-v1"
version = "0.2.0"
description = "Google Cloud Client Libraries for Rust - Cloud Video Intelligence API"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
async-trait = { version = "0.1" }
bytes = { version = "1", features = ["serde"] }
gax = { version = "0.2", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
lazy_static = { version = "1" }
longrunning = { version = "0.2", path = "../../../../../src/generated/longrunning", package = "gcp-sdk-longrunning" }
lro = { version = "0.1", path = "../../../../../src/lro", package = "gcp-sdk-lro" }
reqwest = { version = "0.12", features = ["json"] }
rpc = { version = "0.2", path = "../../../../../src/generated/rpc/types", package = "gcp-sdk-rpc" }
serde = { version = "1", features = ["serde_derive"] }
serde_json = { version = "1" }
serde_with = { version = "3", default-features = false, features = ["base64", "macros", "std"] }
tracing = { version = "0.1" }
wkt = { version = "0.1.1", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" }

[features]
unstable-stream = ["gax/unstable-stream", "longrunning/unstable-stream"]

[dev-dependencies]
tokio = { version = "1", features = ["time"] }
22 changes: 22 additions & 0 deletions src/generated/cloud/videointelligence/v1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Google Cloud Client Libraries for Rust - Cloud Video Intelligence API

<!-- Code generated by sidekick. DO NOT EDIT. -->

**WARNING:** this crate is under active development. We expect multiple breaking
changes in the upcoming releases. Testing is also incomplete, we do **not**
recommend that you use this crate in production. We welcome feedback about the
APIs, documentation, missing features, bugs, etc.

Detects objects, explicit content, and scene changes in videos. It also
specifies the region for annotation and transcribes speech to text.
Supports both asynchronous API and streaming API.

## Quickstart

The main types to work with this crate are the clients:

* [VideoIntelligenceService](https://docs.rs/google-cloud-videointelligence-v1/latest/google_cloud_videointelligence_v1/client/struct.VideoIntelligenceService.html)

## More Information

* Read the [crate's documentation](https://docs.rs/google-cloud-videointelligence-v1/latest/google-cloud-videointelligence-v1)
Loading

0 comments on commit 15d1c14

Please sign in to comment.