google-apis-cloudfunctions_v2beta 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20c02c4ee25f29b17366c0b27bf800be70031b8cbb60507d5dcb3ee0d727b327
|
4
|
+
data.tar.gz: 77d56521d31012a63ee05ca760e84a43fb778abad5aa849ec05d79860f4ec305
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e5bc59f361a7e37623493c9bea4e14135db26172d90adb495e135bfacf527f706a70d2d0069d9b0c8e5c1754b4156de0bbfb1315191b69883da164d1d3a99a5
|
7
|
+
data.tar.gz: 4c947e41ecb18eac6c16c8b82cabf34f07a5406fc4cea40f6f36950907ec53c0042b1119cfdcb843fe82d75ec076ab00ea9eb5767d838e0bc97c30994388e22b
|
data/CHANGELOG.md
CHANGED
@@ -1386,6 +1386,82 @@ module Google
|
|
1386
1386
|
end
|
1387
1387
|
end
|
1388
1388
|
|
1389
|
+
# Configuration for a single version.
|
1390
|
+
class SecretVersion
|
1391
|
+
include Google::Apis::Core::Hashable
|
1392
|
+
|
1393
|
+
# Relative path of the file under the mount path where the secret value for this
|
1394
|
+
# version will be fetched and made available. For example, setting the
|
1395
|
+
# mount_path as '/etc/secrets' and path as `secret_foo` would mount the secret
|
1396
|
+
# value file at `/etc/secrets/secret_foo`.
|
1397
|
+
# Corresponds to the JSON property `path`
|
1398
|
+
# @return [String]
|
1399
|
+
attr_accessor :path
|
1400
|
+
|
1401
|
+
# Version of the secret (version number or the string 'latest'). It is
|
1402
|
+
# preferable to use `latest` version with secret volumes as secret value changes
|
1403
|
+
# are reflected immediately.
|
1404
|
+
# Corresponds to the JSON property `version`
|
1405
|
+
# @return [String]
|
1406
|
+
attr_accessor :version
|
1407
|
+
|
1408
|
+
def initialize(**args)
|
1409
|
+
update!(**args)
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
# Update properties of this object
|
1413
|
+
def update!(**args)
|
1414
|
+
@path = args[:path] if args.key?(:path)
|
1415
|
+
@version = args[:version] if args.key?(:version)
|
1416
|
+
end
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
# Configuration for a secret volume. It has the information necessary to fetch
|
1420
|
+
# the secret value from secret manager and make it available as files mounted at
|
1421
|
+
# the requested paths within the application container.
|
1422
|
+
class SecretVolume
|
1423
|
+
include Google::Apis::Core::Hashable
|
1424
|
+
|
1425
|
+
# The path within the container to mount the secret volume. For example, setting
|
1426
|
+
# the mount_path as `/etc/secrets` would mount the secret value files under the `
|
1427
|
+
# /etc/secrets` directory. This directory will also be completely shadowed and
|
1428
|
+
# unavailable to mount any other secrets. Recommended mount path: /etc/secrets
|
1429
|
+
# Corresponds to the JSON property `mountPath`
|
1430
|
+
# @return [String]
|
1431
|
+
attr_accessor :mount_path
|
1432
|
+
|
1433
|
+
# Project identifier (preferably project number but can also be the project ID)
|
1434
|
+
# of the project that contains the secret. If not set, it is assumed that the
|
1435
|
+
# secret is in the same project as the function.
|
1436
|
+
# Corresponds to the JSON property `projectId`
|
1437
|
+
# @return [String]
|
1438
|
+
attr_accessor :project_id
|
1439
|
+
|
1440
|
+
# Name of the secret in secret manager (not the full resource name).
|
1441
|
+
# Corresponds to the JSON property `secret`
|
1442
|
+
# @return [String]
|
1443
|
+
attr_accessor :secret
|
1444
|
+
|
1445
|
+
# List of secret versions to mount for this secret. If empty, the `latest`
|
1446
|
+
# version of the secret will be made available in a file named after the secret
|
1447
|
+
# under the mount point.
|
1448
|
+
# Corresponds to the JSON property `versions`
|
1449
|
+
# @return [Array<Google::Apis::CloudfunctionsV2beta::SecretVersion>]
|
1450
|
+
attr_accessor :versions
|
1451
|
+
|
1452
|
+
def initialize(**args)
|
1453
|
+
update!(**args)
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
# Update properties of this object
|
1457
|
+
def update!(**args)
|
1458
|
+
@mount_path = args[:mount_path] if args.key?(:mount_path)
|
1459
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
1460
|
+
@secret = args[:secret] if args.key?(:secret)
|
1461
|
+
@versions = args[:versions] if args.key?(:versions)
|
1462
|
+
end
|
1463
|
+
end
|
1464
|
+
|
1389
1465
|
# Describes the Service being deployed. Currently Supported : Cloud Run (fully
|
1390
1466
|
# managed).
|
1391
1467
|
class ServiceConfig
|
@@ -1450,6 +1526,11 @@ module Google
|
|
1450
1526
|
# @return [Array<Google::Apis::CloudfunctionsV2beta::SecretEnvVar>]
|
1451
1527
|
attr_accessor :secret_environment_variables
|
1452
1528
|
|
1529
|
+
# Secret volumes configuration.
|
1530
|
+
# Corresponds to the JSON property `secretVolumes`
|
1531
|
+
# @return [Array<Google::Apis::CloudfunctionsV2beta::SecretVolume>]
|
1532
|
+
attr_accessor :secret_volumes
|
1533
|
+
|
1453
1534
|
# Output only. Name of the service associated with a Function. The format of
|
1454
1535
|
# this field is `projects/`project`/locations/`region`/services/`service``
|
1455
1536
|
# Corresponds to the JSON property `service`
|
@@ -1500,6 +1581,7 @@ module Google
|
|
1500
1581
|
@min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
|
1501
1582
|
@revision = args[:revision] if args.key?(:revision)
|
1502
1583
|
@secret_environment_variables = args[:secret_environment_variables] if args.key?(:secret_environment_variables)
|
1584
|
+
@secret_volumes = args[:secret_volumes] if args.key?(:secret_volumes)
|
1503
1585
|
@service = args[:service] if args.key?(:service)
|
1504
1586
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
1505
1587
|
@timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV2beta
|
18
18
|
# Version of the google-apis-cloudfunctions_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220511"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,18 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class SecretVersion
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class SecretVolume
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
199
211
|
class ServiceConfig
|
200
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
213
|
|
@@ -564,6 +576,25 @@ module Google
|
|
564
576
|
end
|
565
577
|
end
|
566
578
|
|
579
|
+
class SecretVersion
|
580
|
+
# @private
|
581
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
582
|
+
property :path, as: 'path'
|
583
|
+
property :version, as: 'version'
|
584
|
+
end
|
585
|
+
end
|
586
|
+
|
587
|
+
class SecretVolume
|
588
|
+
# @private
|
589
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
590
|
+
property :mount_path, as: 'mountPath'
|
591
|
+
property :project_id, as: 'projectId'
|
592
|
+
property :secret, as: 'secret'
|
593
|
+
collection :versions, as: 'versions', class: Google::Apis::CloudfunctionsV2beta::SecretVersion, decorator: Google::Apis::CloudfunctionsV2beta::SecretVersion::Representation
|
594
|
+
|
595
|
+
end
|
596
|
+
end
|
597
|
+
|
567
598
|
class ServiceConfig
|
568
599
|
# @private
|
569
600
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -576,6 +607,8 @@ module Google
|
|
576
607
|
property :revision, as: 'revision'
|
577
608
|
collection :secret_environment_variables, as: 'secretEnvironmentVariables', class: Google::Apis::CloudfunctionsV2beta::SecretEnvVar, decorator: Google::Apis::CloudfunctionsV2beta::SecretEnvVar::Representation
|
578
609
|
|
610
|
+
collection :secret_volumes, as: 'secretVolumes', class: Google::Apis::CloudfunctionsV2beta::SecretVolume, decorator: Google::Apis::CloudfunctionsV2beta::SecretVolume::Representation
|
611
|
+
|
579
612
|
property :service, as: 'service'
|
580
613
|
property :service_account_email, as: 'serviceAccountEmail'
|
581
614
|
property :timeout_seconds, as: 'timeoutSeconds'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|