feat: Automated regeneration of servicenetworking v1beta client (#2258)
This commit is contained in:
parent
66bab24e15
commit
8fcea6747f
|
@ -144160,6 +144160,7 @@
|
|||
"/servicenetworking:v1beta/Subnetwork/name": name
|
||||
"/servicenetworking:v1beta/Subnetwork/network": network
|
||||
"/servicenetworking:v1beta/Subnetwork/outsideAllocation": outside_allocation
|
||||
"/servicenetworking:v1beta/Subnetwork/region": region
|
||||
"/servicenetworking:v1beta/Subnetwork/secondaryIpRanges": secondary_ip_ranges
|
||||
"/servicenetworking:v1beta/Subnetwork/secondaryIpRanges/secondary_ip_range": secondary_ip_range
|
||||
"/servicenetworking:v1beta/SystemParameter": system_parameter
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Release history for google-apis-servicenetworking_v1beta
|
||||
|
||||
### v0.2.0 (2021-01-08)
|
||||
|
||||
* Regenerated from discovery document revision 20210106
|
||||
|
||||
### v0.1.0 (2021-01-07)
|
||||
|
||||
* Regenerated from discovery document revision 20210105
|
||||
|
|
|
@ -3366,6 +3366,11 @@ module Google
|
|||
attr_accessor :outside_allocation
|
||||
alias_method :outside_allocation?, :outside_allocation
|
||||
|
||||
# GCP region where the subnetwork is located.
|
||||
# Corresponds to the JSON property `region`
|
||||
# @return [String]
|
||||
attr_accessor :region
|
||||
|
||||
# List of secondary IP ranges in this subnetwork.
|
||||
# Corresponds to the JSON property `secondaryIpRanges`
|
||||
# @return [Array<Google::Apis::ServicenetworkingV1beta::SecondaryIpRange>]
|
||||
|
@ -3381,6 +3386,7 @@ module Google
|
|||
@name = args[:name] if args.key?(:name)
|
||||
@network = args[:network] if args.key?(:network)
|
||||
@outside_allocation = args[:outside_allocation] if args.key?(:outside_allocation)
|
||||
@region = args[:region] if args.key?(:region)
|
||||
@secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
|
||||
end
|
||||
end
|
||||
|
@ -3559,7 +3565,11 @@ module Google
|
|||
|
||||
# Requirements that must be satisfied before a consumer project can use the
|
||||
# service. Each requirement is of the form /; for example 'serviceusage.
|
||||
# googleapis.com/billing-enabled'.
|
||||
# googleapis.com/billing-enabled'. For Google APIs, a Terms of Service
|
||||
# requirement must be included here. Google Cloud APIs must include "
|
||||
# serviceusage.googleapis.com/tos/cloud". Other Google APIs should include "
|
||||
# serviceusage.googleapis.com/tos/universal". Additional ToS can be included
|
||||
# based on the business needs.
|
||||
# Corresponds to the JSON property `requirements`
|
||||
# @return [Array<String>]
|
||||
attr_accessor :requirements
|
||||
|
|
|
@ -16,13 +16,13 @@ module Google
|
|||
module Apis
|
||||
module ServicenetworkingV1beta
|
||||
# Version of the google-apis-servicenetworking_v1beta gem
|
||||
GEM_VERSION = "0.1.0"
|
||||
GEM_VERSION = "0.2.0"
|
||||
|
||||
# Version of the code generator used to generate this client
|
||||
GENERATOR_VERSION = "0.1.1"
|
||||
|
||||
# Revision of the discovery document this client was generated from
|
||||
REVISION = "20210105"
|
||||
REVISION = "20210106"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1252,6 +1252,7 @@ module Google
|
|||
property :name, as: 'name'
|
||||
property :network, as: 'network'
|
||||
property :outside_allocation, as: 'outsideAllocation'
|
||||
property :region, as: 'region'
|
||||
collection :secondary_ip_ranges, as: 'secondaryIpRanges', class: Google::Apis::ServicenetworkingV1beta::SecondaryIpRange, decorator: Google::Apis::ServicenetworkingV1beta::SecondaryIpRange::Representation
|
||||
|
||||
end
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"git": {
|
||||
"name": ".",
|
||||
"remote": "https://github.com/googleapis/google-api-ruby-client.git",
|
||||
"sha": "6de8b4ee653db67c0e789203767a89b32fcf8a51"
|
||||
"sha": "c6bbfd62e37cc5a444d49a6576fda907b3bfb9b5"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue