google-apis-networkservices_v1 0.61.0 → 0.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkservices_v1/classes.rb +62 -26
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e27bc3381d30169f440ecb05f7c9c2c0388862a8772775aa31f9957e44b2acf2
|
4
|
+
data.tar.gz: 01e0b1189713b54a3575d991b988ca7a8515013bb78a6ba5ea7b47cab0acf842
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4d57933a421fa37da20ce92be17d4979818bd2c03d924b3a93ec808a4a0a70943b0b1834a4ab8c94c58a44ba6fedc37c62395d9bff3dd654744302a2a80eb2f
|
7
|
+
data.tar.gz: 3ff8582f24d8466b1ab9ce9d121a45c780c4d74298a7d3718e4207a9e69485e77f6a4abb0900bd1e05ecca92214a1b9585e50d89551226c6b7d7f313760b9314
|
data/CHANGELOG.md
CHANGED
@@ -4473,18 +4473,27 @@ module Google
|
|
4473
4473
|
# @return [String]
|
4474
4474
|
attr_accessor :description
|
4475
4475
|
|
4476
|
-
# Output only.
|
4477
|
-
# The
|
4478
|
-
#
|
4479
|
-
#
|
4476
|
+
# Output only. This field holds the digest (usually checksum) value for the
|
4477
|
+
# plugin image. The value is calculated based on the `image_uri` field. If the `
|
4478
|
+
# image_uri` field refers to a container image, the digest value is obtained
|
4479
|
+
# from the container image. If the `image_uri` field refers to a generic
|
4480
|
+
# artifact, the digest value is calculated based on the contents of the file.
|
4480
4481
|
# Corresponds to the JSON property `imageDigest`
|
4481
4482
|
# @return [String]
|
4482
4483
|
attr_accessor :image_digest
|
4483
4484
|
|
4484
|
-
# Optional. URI of the
|
4485
|
-
#
|
4486
|
-
#
|
4487
|
-
#
|
4485
|
+
# Optional. URI of the image containing the Wasm module, stored in Artifact
|
4486
|
+
# Registry. The URI can refer to one of the following repository formats: *
|
4487
|
+
# Container images: the `image_uri` must point to a container that contains a
|
4488
|
+
# single file with the name `plugin.wasm`. When a new `WasmPluginVersion`
|
4489
|
+
# resource is created, the digest of the image is saved in the `image_digest`
|
4490
|
+
# field. When pulling a container image from Artifact Registry, the digest value
|
4491
|
+
# is used instead of an image tag. * Generic artifacts: the `image_uri` must be
|
4492
|
+
# in this format: `projects/`project`/locations/`location`/repositories/`
|
4493
|
+
# repository`/ genericArtifacts/`package`:`version``. The specified package and
|
4494
|
+
# version must contain a file with the name `plugin.wasm`. When a new `
|
4495
|
+
# WasmPluginVersion` resource is created, the checksum of the contents of the
|
4496
|
+
# file is saved in the `image_digest` field.
|
4488
4497
|
# Corresponds to the JSON property `imageUri`
|
4489
4498
|
# @return [String]
|
4490
4499
|
attr_accessor :image_uri
|
@@ -4512,7 +4521,7 @@ module Google
|
|
4512
4521
|
|
4513
4522
|
# Output only. This field holds the digest (usually checksum) value for the
|
4514
4523
|
# plugin configuration. The value is calculated based on the contents of `
|
4515
|
-
# plugin_config_data` or the
|
4524
|
+
# plugin_config_data` field or the image defined by the `plugin_config_uri`
|
4516
4525
|
# field.
|
4517
4526
|
# Corresponds to the JSON property `pluginConfigDigest`
|
4518
4527
|
# @return [String]
|
@@ -4520,9 +4529,18 @@ module Google
|
|
4520
4529
|
|
4521
4530
|
# URI of the plugin configuration stored in the Artifact Registry. The
|
4522
4531
|
# configuration is provided to the plugin at runtime through the `ON_CONFIGURE`
|
4523
|
-
# callback. The
|
4524
|
-
#
|
4525
|
-
#
|
4532
|
+
# callback. The URI can refer to one of the following repository formats: *
|
4533
|
+
# Container images: the `plugin_config_uri` must point to a container that
|
4534
|
+
# contains a single file with the name `plugin.config`. When a new `
|
4535
|
+
# WasmPluginVersion` resource is created, the digest of the image is saved in
|
4536
|
+
# the `plugin_config_digest` field. When pulling a container image from Artifact
|
4537
|
+
# Registry, the digest value is used instead of an image tag. * Generic
|
4538
|
+
# artifacts: the `plugin_config_uri` must be in this format: `projects/`project`/
|
4539
|
+
# locations/`location`/repositories/`repository`/ genericArtifacts/`package`:`
|
4540
|
+
# version``. The specified package and version must contain a file with the name
|
4541
|
+
# `plugin.config`. When a new `WasmPluginVersion` resource is created, the
|
4542
|
+
# checksum of the contents of the file is saved in the `plugin_config_digest`
|
4543
|
+
# field.
|
4526
4544
|
# Corresponds to the JSON property `pluginConfigUri`
|
4527
4545
|
# @return [String]
|
4528
4546
|
attr_accessor :plugin_config_uri
|
@@ -4566,18 +4584,27 @@ module Google
|
|
4566
4584
|
# @return [String]
|
4567
4585
|
attr_accessor :description
|
4568
4586
|
|
4569
|
-
# Output only.
|
4570
|
-
#
|
4571
|
-
# field
|
4572
|
-
#
|
4587
|
+
# Output only. This field holds the digest (usually checksum) value for the
|
4588
|
+
# plugin image. The value is calculated based on the `image_uri` field. If the `
|
4589
|
+
# image_uri` field refers to a container image, the digest value is obtained
|
4590
|
+
# from the container image. If the `image_uri` field refers to a generic
|
4591
|
+
# artifact, the digest value is calculated based on the contents of the file.
|
4573
4592
|
# Corresponds to the JSON property `imageDigest`
|
4574
4593
|
# @return [String]
|
4575
4594
|
attr_accessor :image_digest
|
4576
4595
|
|
4577
|
-
# Optional. URI of the
|
4578
|
-
#
|
4579
|
-
# the
|
4580
|
-
#
|
4596
|
+
# Optional. URI of the image containing the Wasm module, stored in Artifact
|
4597
|
+
# Registry. The URI can refer to one of the following repository formats: *
|
4598
|
+
# Container images: the `image_uri` must point to a container that contains a
|
4599
|
+
# single file with the name `plugin.wasm`. When a new `WasmPluginVersion`
|
4600
|
+
# resource is created, the digest of the image is saved in the `image_digest`
|
4601
|
+
# field. When pulling a container image from Artifact Registry, the digest value
|
4602
|
+
# is used instead of an image tag. * Generic artifacts: the `image_uri` must be
|
4603
|
+
# in this format: `projects/`project`/locations/`location`/repositories/`
|
4604
|
+
# repository`/ genericArtifacts/`package`:`version``. The specified package and
|
4605
|
+
# version must contain a file with the name `plugin.wasm`. When a new `
|
4606
|
+
# WasmPluginVersion` resource is created, the checksum of the contents of the
|
4607
|
+
# file is saved in the `image_digest` field.
|
4581
4608
|
# Corresponds to the JSON property `imageUri`
|
4582
4609
|
# @return [String]
|
4583
4610
|
attr_accessor :image_uri
|
@@ -4597,18 +4624,27 @@ module Google
|
|
4597
4624
|
attr_accessor :plugin_config_data
|
4598
4625
|
|
4599
4626
|
# Output only. This field holds the digest (usually checksum) value for the
|
4600
|
-
# plugin configuration. The value is calculated based on the contents of
|
4601
|
-
# plugin_config_data` field or the
|
4602
|
-
#
|
4627
|
+
# plugin configuration. The value is calculated based on the contents of `
|
4628
|
+
# plugin_config_data` field or the image defined by the `plugin_config_uri`
|
4629
|
+
# field.
|
4603
4630
|
# Corresponds to the JSON property `pluginConfigDigest`
|
4604
4631
|
# @return [String]
|
4605
4632
|
attr_accessor :plugin_config_digest
|
4606
4633
|
|
4607
4634
|
# URI of the plugin configuration stored in the Artifact Registry. The
|
4608
4635
|
# configuration is provided to the plugin at runtime through the `ON_CONFIGURE`
|
4609
|
-
# callback. The
|
4610
|
-
#
|
4611
|
-
#
|
4636
|
+
# callback. The URI can refer to one of the following repository formats: *
|
4637
|
+
# Container images: the `plugin_config_uri` must point to a container that
|
4638
|
+
# contains a single file with the name `plugin.config`. When a new `
|
4639
|
+
# WasmPluginVersion` resource is created, the digest of the image is saved in
|
4640
|
+
# the `plugin_config_digest` field. When pulling a container image from Artifact
|
4641
|
+
# Registry, the digest value is used instead of an image tag. * Generic
|
4642
|
+
# artifacts: the `plugin_config_uri` must be in this format: `projects/`project`/
|
4643
|
+
# locations/`location`/repositories/`repository`/ genericArtifacts/`package`:`
|
4644
|
+
# version``. The specified package and version must contain a file with the name
|
4645
|
+
# `plugin.config`. When a new `WasmPluginVersion` resource is created, the
|
4646
|
+
# checksum of the contents of the file is saved in the `plugin_config_digest`
|
4647
|
+
# field.
|
4612
4648
|
# Corresponds to the JSON property `pluginConfigUri`
|
4613
4649
|
# @return [String]
|
4614
4650
|
attr_accessor :plugin_config_uri
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.62.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|