Skip to content

Commit

Permalink
feat: Initial release of generated google-cloud-storage-control-v2 cl…
Browse files Browse the repository at this point in the history
…ient (#25743)
  • Loading branch information
bajajneha27 committed Apr 22, 2024
1 parent eadd662 commit 405f718
Show file tree
Hide file tree
Showing 56 changed files with 8,277 additions and 0 deletions.
3 changes: 3 additions & 0 deletions google-cloud-storage-control-v2/.OwlBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deep-copy-regex:
- source: /google/storage/control/v2/[^/]+-ruby/(.*)
dest: /owl-bot-staging/google-cloud-storage-control-v2/$1
22 changes: 22 additions & 0 deletions google-cloud-storage-control-v2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Ignore bundler lockfiles
Gemfile.lock
gems.locked

# Ignore documentation output
doc/*
.yardoc/*

# Ignore test output
coverage/*

# Ignore build artifacts
pkg/*

# Ignore files commonly present in certain dev environments
.vagrant
.DS_STORE
.idea
*.iml

# Ignore synth output
__pycache__
61 changes: 61 additions & 0 deletions google-cloud-storage-control-v2/.owlbot-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"generated": [
".gitignore",
".repo-metadata.json",
".rubocop.yml",
".toys.rb",
".yardopts",
"AUTHENTICATION.md",
"CHANGELOG.md",
"Gemfile",
"LICENSE.md",
"README.md",
"Rakefile",
"gapic_metadata.json",
"google-cloud-storage-control-v2.gemspec",
"lib/google-cloud-storage-control-v2.rb",
"lib/google/cloud/storage/control/v2.rb",
"lib/google/cloud/storage/control/v2/storage_control.rb",
"lib/google/cloud/storage/control/v2/storage_control/client.rb",
"lib/google/cloud/storage/control/v2/storage_control/credentials.rb",
"lib/google/cloud/storage/control/v2/storage_control/operations.rb",
"lib/google/cloud/storage/control/v2/storage_control/paths.rb",
"lib/google/cloud/storage/control/v2/version.rb",
"lib/google/storage/control/v2/storage_control_pb.rb",
"lib/google/storage/control/v2/storage_control_services_pb.rb",
"proto_docs/README.md",
"proto_docs/google/api/client.rb",
"proto_docs/google/api/field_behavior.rb",
"proto_docs/google/api/field_info.rb",
"proto_docs/google/api/launch_stage.rb",
"proto_docs/google/api/resource.rb",
"proto_docs/google/api/routing.rb",
"proto_docs/google/longrunning/operations.rb",
"proto_docs/google/protobuf/any.rb",
"proto_docs/google/protobuf/duration.rb",
"proto_docs/google/protobuf/empty.rb",
"proto_docs/google/protobuf/timestamp.rb",
"proto_docs/google/rpc/status.rb",
"proto_docs/google/storage/control/v2/storage_control.rb",
"snippets/Gemfile",
"snippets/snippet_metadata_google.storage.control.v2.json",
"snippets/storage_control/create_folder.rb",
"snippets/storage_control/create_managed_folder.rb",
"snippets/storage_control/delete_folder.rb",
"snippets/storage_control/delete_managed_folder.rb",
"snippets/storage_control/get_folder.rb",
"snippets/storage_control/get_managed_folder.rb",
"snippets/storage_control/get_storage_layout.rb",
"snippets/storage_control/list_folders.rb",
"snippets/storage_control/list_managed_folders.rb",
"snippets/storage_control/rename_folder.rb",
"test/google/cloud/storage/control/v2/storage_control_operations_test.rb",
"test/google/cloud/storage/control/v2/storage_control_paths_test.rb",
"test/google/cloud/storage/control/v2/storage_control_test.rb",
"test/helper.rb"
],
"static": [
".OwlBot.yaml",
".owlbot.rb"
]
}
25 changes: 25 additions & 0 deletions google-cloud-storage-control-v2/.owlbot.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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.

# Fix a camel cased pattern variable name.
# See https://github.com/googleapis/gapic-generator-ruby/issues/894
paths = [
"lib/google/cloud/storage/control/v2/storage_control/paths.rb",
"test/google/cloud/storage/control/v2/storage_control_paths_test.rb"
]
OwlBot.modifier path: paths do |content|
content.gsub(/managedFolder(?=[^s])/, "managed_folder")
end

OwlBot.move_files
17 changes: 17 additions & 0 deletions google-cloud-storage-control-v2/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"api_id": "storage.googleapis.com",
"api_shortname": "storage",
"client_documentation": "https://cloud.google.com/ruby/docs/reference/google-cloud-storage-control-v2/latest",
"distribution_name": "google-cloud-storage-control-v2",
"is_cloud": true,
"language": "ruby",
"name": "storage",
"name_pretty": "Storage Control V2 API",
"product_documentation": "https://cloud.google.com/storage/docs/overview",
"release_level": "unreleased",
"repo": "googleapis/google-cloud-ruby",
"requires_billing": true,
"ruby-cloud-description": "The Google Cloud Storage API allows applications to read and write data through the abstractions of buckets and objects, which are similar to directories and files except that buckets cannot contain other buckets, and directory-level operations (like directory rename) are not supported. Buckets share a single global namespace, and each bucket belongs to a specific project that has an associated owner that pays for the data stored in the bucket. This API is accessed using standard gRPC requests. Note that google-cloud-storage-control-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-storage-control instead. See the readme for more details.",
"ruby-cloud-product-url": "https://cloud.google.com/storage/docs/overview",
"library_type": "GAPIC_AUTO"
}
33 changes: 33 additions & 0 deletions google-cloud-storage-control-v2/.rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
inherit_gem:
google-style: google-style.yml

AllCops:
Exclude:
- "google-cloud-storage-control-v2.gemspec"
- "lib/**/*_pb.rb"
- "proto_docs/**/*"
- "test/**/*"
- "acceptance/**/*"
- "samples/acceptance/**/*"
- "Rakefile"

Layout/LineLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Naming/AccessorMethodName:
Exclude:
- "snippets/**/*.rb"
Naming/FileName:
Exclude:
- "lib/google-cloud-storage-control-v2.rb"
28 changes: 28 additions & 0 deletions google-cloud-storage-control-v2/.toys.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# frozen_string_literal: true

# 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.

# Auto-generated by gapic-generator-ruby. DO NOT EDIT!

toys_version! ">= 0.15.3"

if ENV["RUBY_COMMON_TOOLS"]
common_tools_dir = File.expand_path ENV["RUBY_COMMON_TOOLS"]
load File.join(common_tools_dir, "toys", "gapic")
else
load_git remote: "https://github.com/googleapis/ruby-common-tools.git",
path: "toys/gapic",
update: true
end
12 changes: 12 additions & 0 deletions google-cloud-storage-control-v2/.yardopts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--no-private
--title="Storage Control V2 API"
--exclude _pb\.rb$
--markup markdown
--markup-provider redcarpet

./lib/**/*.rb
./proto_docs/**/*.rb
-
README.md
LICENSE.md
AUTHENTICATION.md
122 changes: 122 additions & 0 deletions google-cloud-storage-control-v2/AUTHENTICATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# Authentication

The recommended way to authenticate to the google-cloud-storage-control-v2 library is to use
[Application Default Credentials (ADC)](https://cloud.google.com/docs/authentication/application-default-credentials).
To review all of your authentication options, see [Credentials lookup](#credential-lookup).

## Quickstart

The following example shows how to set up authentication for a local development
environment with your user credentials.

**NOTE:** This method is _not_ recommended for running in production. User credentials
should be used only during development.

1. [Download and install the Google Cloud CLI](https://cloud.google.com/sdk).
2. Set up a local ADC file with your user credentials:

```sh
gcloud auth application-default login
```

3. Write code as if already authenticated.

For more information about setting up authentication for a local development environment, see
[Set up Application Default Credentials](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-dev).

## Credential Lookup

The google-cloud-storage-control-v2 library provides several mechanisms to configure your system.
Generally, using Application Default Credentials to facilitate automatic
credentials discovery is the easist method. But if you need to explicitly specify
credentials, there are several methods available to you.

Credentials are accepted in the following ways, in the following order or precedence:

1. Credentials specified in method arguments
2. Credentials specified in configuration
3. Credentials pointed to or included in environment variables
4. Credentials found in local ADC file
5. Credentials returned by the metadata server for the attached service account (GCP)

### Configuration

You can configure a path to a JSON credentials file, either for an individual client object or
globally, for all client objects. The JSON file can contain credentials created for
[workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
[workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
[service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).

Note: Service account keys are a security risk if not managed correctly. You should
[choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
whenever possible.

To configure a credentials file for an individual client initialization:

```ruby
require "google/cloud/storage/control/v2"

client = ::Google::Cloud::Storage::Control::V2::StorageControl::Client.new do |config|
config.credentials = "path/to/credentialfile.json"
end
```

To configure a credentials file globally for all clients:

```ruby
require "google/cloud/storage/control/v2"

::Google::Cloud::Storage::Control::V2::StorageControl::Client.configure do |config|
config.credentials = "path/to/credentialfile.json"
end

client = ::Google::Cloud::Storage::Control::V2::StorageControl::Client.new
```

### Environment Variables

You can also use an environment variable to provide a JSON credentials file.
The environment variable can contain a path to the credentials file or, for
environments such as Docker containers where writing files is not encouraged,
you can include the credentials file itself.

The JSON file can contain credentials created for
[workload identity federation](https://cloud.google.com/iam/docs/workload-identity-federation),
[workforce identity federation](https://cloud.google.com/iam/docs/workforce-identity-federation), or a
[service account key](https://cloud.google.com/docs/authentication/provide-credentials-adc#local-key).

Note: Service account keys are a security risk if not managed correctly. You should
[choose a more secure alternative to service account keys](https://cloud.google.com/docs/authentication#auth-decision-tree)
whenever possible.

The environment variables that google-cloud-storage-control-v2
checks for credentials are:

* `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
* `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file

```ruby
require "google/cloud/storage/control/v2"

ENV["GOOGLE_APPLICATION_CREDENTIALS"] = "path/to/credentialfile.json"

client = ::Google::Cloud::Storage::Control::V2::StorageControl::Client.new
```

### Local ADC file

You can set up a local ADC file with your user credentials for authentication during
development. If credentials are not provided in code or in environment variables,
then the local ADC credentials are discovered.

Follow the steps in [Quickstart](#quickstart) to set up a local ADC file.

### Google Cloud Platform environments

When running on Google Cloud Platform (GCP), including Google Compute Engine
(GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud
Functions (GCF) and Cloud Run, credentials are retrieved from the attached
service account automatically. Code should be written as if already authenticated.

For more information, see
[Set up ADC for Google Cloud services](https://cloud.google.com/docs/authentication/provide-credentials-adc#attached-sa).
2 changes: 2 additions & 0 deletions google-cloud-storage-control-v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Release History

11 changes: 11 additions & 0 deletions google-cloud-storage-control-v2/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source "https://rubygems.org"

gemspec

gem "google-style", "~> 1.27.1"
gem "minitest", "~> 5.22"
gem "minitest-focus", "~> 1.4"
gem "minitest-rg", "~> 5.3"
gem "rake", ">= 13.0"
gem "redcarpet", "~> 3.6"
gem "yard", "~> 0.9"

0 comments on commit 405f718

Please sign in to comment.