From 2369a1b9df0895452ad5e6828129261a6a3fbfaa Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 20 Jun 2023 07:39:12 +0000 Subject: automatic import of python-pulumi-yandex --- .gitignore | 1 + python-pulumi-yandex.spec | 297 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 299 insertions(+) create mode 100644 python-pulumi-yandex.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..8443aec 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/pulumi_yandex-0.13.0.tar.gz diff --git a/python-pulumi-yandex.spec b/python-pulumi-yandex.spec new file mode 100644 index 0000000..5d922e1 --- /dev/null +++ b/python-pulumi-yandex.spec @@ -0,0 +1,297 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pulumi-yandex +Version: 0.13.0 +Release: 1 +Summary: A Pulumi package for creating and managing yandex cloud resources. +License: Apache-2.0 +URL: https://pulumi.io +Source0: https://mirrors.aliyun.com/pypi/web/packages/da/5c/1a46e692b9c55be968d3cd2dcd49756200f6d43e714a622e0c7cab380a8b/pulumi_yandex-0.13.0.tar.gz +BuildArch: noarch + + +%description +[![Actions Status](https://github.com/pulumi/pulumi-yandex/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-yandex/actions) +[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) +[![NPM version](https://badge.fury.io/js/%40pulumi%2Fyandex.svg)](https://www.npmjs.com/package/@pulumi/yandex) +[![Python version](https://badge.fury.io/py/pulumi-yandex.svg)](https://pypi.org/project/pulumi-yandex) +[![NuGet version](https://badge.fury.io/nu/pulumi.yandex.svg)](https://badge.fury.io/nu/pulumi.yandex) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-yandex/sdk/go)](https://pkg.go.dev/github.com/pulumi/pulumi-yandex/sdk/go) +[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-yandex/blob/master/LICENSE) + +# Yandex Cloud Provider + +The Yandex Cloud Resource Provider lets you manage Yandex Cloud resources. + +## Installing + +This package is available in many languages in the standard packaging formats. + +### Node.js (Java/TypeScript) + +To use from JavaScript or TypeScript in Node.js, install using either `npm`: + + $ npm install @pulumi/yandex + +or `yarn`: + + $ yarn add @pulumi/yandex + +### Python + +To use from Python, install using `pip`: + + $ pip install pulumi_yandex + +### Go + +To use from Go, use `go get` to grab the latest version of the library + + $ go get github.com/pulumi/pulumi-yandex/sdk + +### .NET + +To use from .NET, install using `dotnet add package`: + + $ dotnet add package Pulumi.Yandex + +## Configuration + +The following configuration points are available: + +- `yandex:token` - (Optional) Security token or IAM token used for authentication in Yandex.Cloud. This can also be + specified using environment variable `YC_TOKEN`. [Learn how to create an IAM token](https://cloud.yandex.ru/docs/iam/operations/iam-token/create). +- `yandex:serviceAccountKeyFile` - (Optional) Contains either a path to or the contents of the Service Account file in + JSON format. This can also be specified using environment variable `YC_SERVICE_ACCOUNT_KEY_FILE`. + [learn how to create a service account key file](https://cloud.yandex.com/docs/iam/operations/iam-token/create-for-sa#keys-create) +- `yandex:cloudId` - (Required) The ID of the cloud to apply any resources to. This can also be specified using + environment variable `YC_CLOUD_ID`. +- `yandex:folderId` - (Required) The ID of the folder to operate under, if not specified by a given resource. This can + also be specified using environment variable `YC_FOLDER_ID`. +- `yandex:zone` - (Optional) The default availability zone to operate under, if not specified by a given resource. This +can also be specified using environment variable `YC_ZONE`. +- `yandex:maxRetries` - (Optional) This is the maximum number of times an API call is retried, in the case where requests + are being throttled or experiencing transient failures. The delay between the subsequent API calls increases exponentially. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:storageSecretKey` - (Optional) Yandex.Cloud storage service secret key, which is used when a storage data/resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_STORAGE_SECRET_KEY`. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:ymqAccessKey` - (Optional) Yandex.Cloud Message Queue service access key, which is used when a YMQ queue resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_ACCESS_KEY`. +- `yandex:ymqSecretKey` - (Optional) Yandex.Cloud Message Queue service secret key, which is used when a YMQ queue resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_SECRET_KEY`. + +## Reference + +For further information, please visit [the yandex provider docs](https://www.pulumi.com/docs/intro/cloud-providers/yandex) +or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/yandex). + +%package -n python3-pulumi-yandex +Summary: A Pulumi package for creating and managing yandex cloud resources. +Provides: python-pulumi-yandex +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pulumi-yandex +[![Actions Status](https://github.com/pulumi/pulumi-yandex/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-yandex/actions) +[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) +[![NPM version](https://badge.fury.io/js/%40pulumi%2Fyandex.svg)](https://www.npmjs.com/package/@pulumi/yandex) +[![Python version](https://badge.fury.io/py/pulumi-yandex.svg)](https://pypi.org/project/pulumi-yandex) +[![NuGet version](https://badge.fury.io/nu/pulumi.yandex.svg)](https://badge.fury.io/nu/pulumi.yandex) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-yandex/sdk/go)](https://pkg.go.dev/github.com/pulumi/pulumi-yandex/sdk/go) +[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-yandex/blob/master/LICENSE) + +# Yandex Cloud Provider + +The Yandex Cloud Resource Provider lets you manage Yandex Cloud resources. + +## Installing + +This package is available in many languages in the standard packaging formats. + +### Node.js (Java/TypeScript) + +To use from JavaScript or TypeScript in Node.js, install using either `npm`: + + $ npm install @pulumi/yandex + +or `yarn`: + + $ yarn add @pulumi/yandex + +### Python + +To use from Python, install using `pip`: + + $ pip install pulumi_yandex + +### Go + +To use from Go, use `go get` to grab the latest version of the library + + $ go get github.com/pulumi/pulumi-yandex/sdk + +### .NET + +To use from .NET, install using `dotnet add package`: + + $ dotnet add package Pulumi.Yandex + +## Configuration + +The following configuration points are available: + +- `yandex:token` - (Optional) Security token or IAM token used for authentication in Yandex.Cloud. This can also be + specified using environment variable `YC_TOKEN`. [Learn how to create an IAM token](https://cloud.yandex.ru/docs/iam/operations/iam-token/create). +- `yandex:serviceAccountKeyFile` - (Optional) Contains either a path to or the contents of the Service Account file in + JSON format. This can also be specified using environment variable `YC_SERVICE_ACCOUNT_KEY_FILE`. + [learn how to create a service account key file](https://cloud.yandex.com/docs/iam/operations/iam-token/create-for-sa#keys-create) +- `yandex:cloudId` - (Required) The ID of the cloud to apply any resources to. This can also be specified using + environment variable `YC_CLOUD_ID`. +- `yandex:folderId` - (Required) The ID of the folder to operate under, if not specified by a given resource. This can + also be specified using environment variable `YC_FOLDER_ID`. +- `yandex:zone` - (Optional) The default availability zone to operate under, if not specified by a given resource. This +can also be specified using environment variable `YC_ZONE`. +- `yandex:maxRetries` - (Optional) This is the maximum number of times an API call is retried, in the case where requests + are being throttled or experiencing transient failures. The delay between the subsequent API calls increases exponentially. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:storageSecretKey` - (Optional) Yandex.Cloud storage service secret key, which is used when a storage data/resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_STORAGE_SECRET_KEY`. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:ymqAccessKey` - (Optional) Yandex.Cloud Message Queue service access key, which is used when a YMQ queue resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_ACCESS_KEY`. +- `yandex:ymqSecretKey` - (Optional) Yandex.Cloud Message Queue service secret key, which is used when a YMQ queue resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_SECRET_KEY`. + +## Reference + +For further information, please visit [the yandex provider docs](https://www.pulumi.com/docs/intro/cloud-providers/yandex) +or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/yandex). + +%package help +Summary: Development documents and examples for pulumi-yandex +Provides: python3-pulumi-yandex-doc +%description help +[![Actions Status](https://github.com/pulumi/pulumi-yandex/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-yandex/actions) +[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) +[![NPM version](https://badge.fury.io/js/%40pulumi%2Fyandex.svg)](https://www.npmjs.com/package/@pulumi/yandex) +[![Python version](https://badge.fury.io/py/pulumi-yandex.svg)](https://pypi.org/project/pulumi-yandex) +[![NuGet version](https://badge.fury.io/nu/pulumi.yandex.svg)](https://badge.fury.io/nu/pulumi.yandex) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-yandex/sdk/go)](https://pkg.go.dev/github.com/pulumi/pulumi-yandex/sdk/go) +[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-yandex/blob/master/LICENSE) + +# Yandex Cloud Provider + +The Yandex Cloud Resource Provider lets you manage Yandex Cloud resources. + +## Installing + +This package is available in many languages in the standard packaging formats. + +### Node.js (Java/TypeScript) + +To use from JavaScript or TypeScript in Node.js, install using either `npm`: + + $ npm install @pulumi/yandex + +or `yarn`: + + $ yarn add @pulumi/yandex + +### Python + +To use from Python, install using `pip`: + + $ pip install pulumi_yandex + +### Go + +To use from Go, use `go get` to grab the latest version of the library + + $ go get github.com/pulumi/pulumi-yandex/sdk + +### .NET + +To use from .NET, install using `dotnet add package`: + + $ dotnet add package Pulumi.Yandex + +## Configuration + +The following configuration points are available: + +- `yandex:token` - (Optional) Security token or IAM token used for authentication in Yandex.Cloud. This can also be + specified using environment variable `YC_TOKEN`. [Learn how to create an IAM token](https://cloud.yandex.ru/docs/iam/operations/iam-token/create). +- `yandex:serviceAccountKeyFile` - (Optional) Contains either a path to or the contents of the Service Account file in + JSON format. This can also be specified using environment variable `YC_SERVICE_ACCOUNT_KEY_FILE`. + [learn how to create a service account key file](https://cloud.yandex.com/docs/iam/operations/iam-token/create-for-sa#keys-create) +- `yandex:cloudId` - (Required) The ID of the cloud to apply any resources to. This can also be specified using + environment variable `YC_CLOUD_ID`. +- `yandex:folderId` - (Required) The ID of the folder to operate under, if not specified by a given resource. This can + also be specified using environment variable `YC_FOLDER_ID`. +- `yandex:zone` - (Optional) The default availability zone to operate under, if not specified by a given resource. This +can also be specified using environment variable `YC_ZONE`. +- `yandex:maxRetries` - (Optional) This is the maximum number of times an API call is retried, in the case where requests + are being throttled or experiencing transient failures. The delay between the subsequent API calls increases exponentially. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:storageSecretKey` - (Optional) Yandex.Cloud storage service secret key, which is used when a storage data/resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_STORAGE_SECRET_KEY`. +- `yandex:storageAccessKey` - (Optional) Yandex.Cloud storage service access key, which is used when a storage data/resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_STORAGE_ACCESS_KEY`. +- `yandex:ymqAccessKey` - (Optional) Yandex.Cloud Message Queue service access key, which is used when a YMQ queue resource + doesn't have an access key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_ACCESS_KEY`. +- `yandex:ymqSecretKey` - (Optional) Yandex.Cloud Message Queue service secret key, which is used when a YMQ queue resource + doesn't have a secret key explicitly specified. This can also be specified using environment variable `YC_MESSAGE_QUEUE_SECRET_KEY`. + +## Reference + +For further information, please visit [the yandex provider docs](https://www.pulumi.com/docs/intro/cloud-providers/yandex) +or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/yandex). + +%prep +%autosetup -n pulumi_yandex-0.13.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-pulumi-yandex -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot - 0.13.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..ebdcea8 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +ed685947531905589c2b96696a94f1e9 pulumi_yandex-0.13.0.tar.gz -- cgit v1.2.3