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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39ebefe40b218202fe79beb27bdee81147e747555ec783085afe3409e4f6c901
4
- data.tar.gz: 1eefef7c7983ec92e7c7a57c8b5e357e8a69941b4b7d09e7d2cbd693f8c1df4a
3
+ metadata.gz: e27bc3381d30169f440ecb05f7c9c2c0388862a8772775aa31f9957e44b2acf2
4
+ data.tar.gz: 01e0b1189713b54a3575d991b988ca7a8515013bb78a6ba5ea7b47cab0acf842
5
5
  SHA512:
6
- metadata.gz: 88428016ccf79a92ccb652d1461a08789155ea1274140cedca9803d63f52b644b2eec4a54dd050468e6185abcc9f09f4d31a7bee77aeb1964a63bf5614314c2a
7
- data.tar.gz: 5ebbd454fed5e0cfdb37d7df73935f91ab2b23e3d0883e748dfb0d5c7f5e6834336d454b0aa3c3dc26ed4e18e0e0748d29dcfe90b1c4c9c5b4083ea198e56ccd
6
+ metadata.gz: c4d57933a421fa37da20ce92be17d4979818bd2c03d924b3a93ec808a4a0a70943b0b1834a4ab8c94c58a44ba6fedc37c62395d9bff3dd654744302a2a80eb2f
7
+ data.tar.gz: 3ff8582f24d8466b1ab9ce9d121a45c780c4d74298a7d3718e4207a9e69485e77f6a4abb0900bd1e05ecca92214a1b9585e50d89551226c6b7d7f313760b9314
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.62.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250723
6
+
3
7
  ### v0.61.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250709
@@ -4473,18 +4473,27 @@ module Google
4473
4473
  # @return [String]
4474
4474
  attr_accessor :description
4475
4475
 
4476
- # Output only. The resolved digest for the image specified in the `image` field.
4477
- # The digest is resolved during the creation of `WasmPluginVersion` resource.
4478
- # This field holds the digest value, regardless of whether a tag or digest was
4479
- # originally specified in the `image` field.
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 container image containing the plugin, stored in the
4485
- # Artifact Registry. When a new `WasmPluginVersion` resource is created, the
4486
- # digest of the container image is saved in the `image_digest` field. When
4487
- # downloading an image, the digest value is used instead of an image tag.
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 container image defined by the `plugin_config_uri`
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 container image must contain only a single file with the name `
4524
- # plugin.config`. When a new `WasmPluginVersion` resource is created, the digest
4525
- # of the container image is saved in the `plugin_config_digest` field.
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. The resolved digest for the image specified in `image`. The
4570
- # digest is resolved during the creation of a `WasmPluginVersion` resource. This
4571
- # field holds the digest value regardless of whether a tag or digest was
4572
- # originally specified in the `image` field.
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 container image containing the Wasm module, stored in the
4578
- # Artifact Registry. The container image must contain only a single file with
4579
- # the name `plugin.wasm`. When a new `WasmPluginVersion` resource is created,
4580
- # the URI gets resolved to an image digest and saved in the `image_digest` field.
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 the `
4601
- # plugin_config_data` field or the container image defined by the `
4602
- # plugin_config_uri` field.
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 container image must contain only a single file with the name `
4610
- # plugin.config`. When a new `WasmPluginVersion` resource is created, the digest
4611
- # of the container image is saved in the `plugin_config_digest` field.
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.61.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 = "20250709"
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.61.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.61.0
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: