Skip to content

Commit

Permalink
feat: Automated regeneration of netapp v1 client (#21121)
Browse files Browse the repository at this point in the history
Auto-created at 2024-12-22 10:13:50 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Dec 22, 2024
1 parent 7f1a4b2 commit 39d2cf9
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
4 changes: 4 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268919,6 +268919,8 @@
"/netapp:v1/Backup/labels": labels
"/netapp:v1/Backup/labels/label": label
"/netapp:v1/Backup/name": name
"/netapp:v1/Backup/satisfiesPzi": satisfies_pzi
"/netapp:v1/Backup/satisfiesPzs": satisfies_pzs
"/netapp:v1/Backup/sourceSnapshot": source_snapshot
"/netapp:v1/Backup/sourceVolume": source_volume
"/netapp:v1/Backup/state": state
Expand Down Expand Up @@ -269240,6 +269242,8 @@
"/netapp:v1/StoragePool/network": network
"/netapp:v1/StoragePool/psaRange": psa_range
"/netapp:v1/StoragePool/replicaZone": replica_zone
"/netapp:v1/StoragePool/satisfiesPzi": satisfies_pzi
"/netapp:v1/StoragePool/satisfiesPzs": satisfies_pzs
"/netapp:v1/StoragePool/serviceLevel": service_level
"/netapp:v1/StoragePool/state": state
"/netapp:v1/StoragePool/stateDetails": state_details
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-netapp_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-netapp_v1

### v0.4.0 (2024-12-22)

* Regenerated from discovery document revision 20241209

### v0.3.0 (2024-12-15)

* Regenerated from discovery document revision 20241203
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,18 @@ class Backup
# @return [String]
attr_accessor :name

# Output only. Reserved for future use
# Corresponds to the JSON property `satisfiesPzi`
# @return [Boolean]
attr_accessor :satisfies_pzi
alias_method :satisfies_pzi?, :satisfies_pzi

# Output only. Reserved for future use
# Corresponds to the JSON property `satisfiesPzs`
# @return [Boolean]
attr_accessor :satisfies_pzs
alias_method :satisfies_pzs?, :satisfies_pzs

# If specified, backup will be created from the given snapshot. If not specified,
# there will be a new snapshot taken to initiate the backup creation. Format: `
# projects/`project_id`/locations/`location`/volumes/`volume_id`/snapshots/`
Expand Down Expand Up @@ -255,6 +267,8 @@ def update!(**args)
@description = args[:description] if args.key?(:description)
@labels = args[:labels] if args.key?(:labels)
@name = args[:name] if args.key?(:name)
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
@source_volume = args[:source_volume] if args.key?(:source_volume)
@state = args[:state] if args.key?(:state)
Expand Down Expand Up @@ -1956,6 +1970,18 @@ class StoragePool
# @return [String]
attr_accessor :replica_zone

# Output only. Reserved for future use
# Corresponds to the JSON property `satisfiesPzi`
# @return [Boolean]
attr_accessor :satisfies_pzi
alias_method :satisfies_pzi?, :satisfies_pzi

# Output only. Reserved for future use
# Corresponds to the JSON property `satisfiesPzs`
# @return [Boolean]
attr_accessor :satisfies_pzs
alias_method :satisfies_pzs?, :satisfies_pzs

# Required. Service level of the storage pool
# Corresponds to the JSON property `serviceLevel`
# @return [String]
Expand Down Expand Up @@ -2006,6 +2032,8 @@ def update!(**args)
@network = args[:network] if args.key?(:network)
@psa_range = args[:psa_range] if args.key?(:psa_range)
@replica_zone = args[:replica_zone] if args.key?(:replica_zone)
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@service_level = args[:service_level] if args.key?(:service_level)
@state = args[:state] if args.key?(:state)
@state_details = args[:state_details] if args.key?(:state_details)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module NetappV1
# Version of the google-apis-netapp_v1 gem
GEM_VERSION = "0.3.0"
GEM_VERSION = "0.4.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20241203"
REVISION = "20241209"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :description, as: 'description'
hash :labels, as: 'labels'
property :name, as: 'name'
property :satisfies_pzi, as: 'satisfiesPzi'
property :satisfies_pzs, as: 'satisfiesPzs'
property :source_snapshot, as: 'sourceSnapshot'
property :source_volume, as: 'sourceVolume'
property :state, as: 'state'
Expand Down Expand Up @@ -827,6 +829,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :network, as: 'network'
property :psa_range, as: 'psaRange'
property :replica_zone, as: 'replicaZone'
property :satisfies_pzi, as: 'satisfiesPzi'
property :satisfies_pzs, as: 'satisfiesPzs'
property :service_level, as: 'serviceLevel'
property :state, as: 'state'
property :state_details, as: 'stateDetails'
Expand Down

0 comments on commit 39d2cf9

Please sign in to comment.