google-apis-artifactregistry_v1beta2 0.11.0 → 0.12.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: 053ef77893748b0ba3ff4ca9481aa00439341ef28e0dedba796b0c18e9a18738
4
- data.tar.gz: 4cb549a35ae7d2f7c3daa42b1103665a2276026405bb5be29057dfd2c79f28bd
3
+ metadata.gz: d9dadf68362c89246fbcce79898852e3cd6233a87ff70da2638b0756727ad662
4
+ data.tar.gz: 66d71dfb9b7afdac87963f866d7ca7e185a7a25259ba2b650034eac54c71c1b9
5
5
  SHA512:
6
- metadata.gz: c841d7568907ad16e27ebc2972eb72373872a827f3d90a098eed9c7f39c08aafa0300ff389a1cc8e5694a4159eff8724427f8ee0ad98432372623296128125f9
7
- data.tar.gz: 54715850c46b2d583229aa79d65bb7807582df00bb9ab3c45de9f3f4b9e6d622cc5177d43ac05664b72f9be138766b844f90d0f8f8debc6565e9c097f0161f6f
6
+ metadata.gz: 17267180a9615286962d1023ed9cd8c7ffd4764349eecc4c578722ac83cc7c023bd7a6fa4420261cf19aa4897658f6028f9b2dcbd64bbc03dedaafefbff54d52
7
+ data.tar.gz: e96eecc487e39eb034cc9d1d2df74146682f1d1b5c6cba3c7d46ed75ea5a6936aa3ea436ad7f886629fa01f5d06916b9e64ab34b73631d87c4ea8a5d24632e91
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta2
2
2
 
3
+ ### v0.12.0 (2021-10-01)
4
+
5
+ * Regenerated from discovery document revision 20210925
6
+
3
7
  ### v0.11.0 (2021-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210817
@@ -695,6 +695,33 @@ module Google
695
695
  end
696
696
  end
697
697
 
698
+ # MavenRepositoryConfig is maven related repository details. Provides additional
699
+ # configuration details for repositories of the maven format type.
700
+ class MavenRepositoryConfig
701
+ include Google::Apis::Core::Hashable
702
+
703
+ # The repository with this flag will allow publishing the same snapshot versions.
704
+ # Corresponds to the JSON property `allowSnapshotOverwrites`
705
+ # @return [Boolean]
706
+ attr_accessor :allow_snapshot_overwrites
707
+ alias_method :allow_snapshot_overwrites?, :allow_snapshot_overwrites
708
+
709
+ # Version policy defines the versions that the registry will accept.
710
+ # Corresponds to the JSON property `versionPolicy`
711
+ # @return [String]
712
+ attr_accessor :version_policy
713
+
714
+ def initialize(**args)
715
+ update!(**args)
716
+ end
717
+
718
+ # Update properties of this object
719
+ def update!(**args)
720
+ @allow_snapshot_overwrites = args[:allow_snapshot_overwrites] if args.key?(:allow_snapshot_overwrites)
721
+ @version_policy = args[:version_policy] if args.key?(:version_policy)
722
+ end
723
+ end
724
+
698
725
  # This resource represents a long-running operation that is the result of a
699
726
  # network API call.
700
727
  class Operation
@@ -916,6 +943,12 @@ module Google
916
943
  # @return [Hash<String,String>]
917
944
  attr_accessor :labels
918
945
 
946
+ # MavenRepositoryConfig is maven related repository details. Provides additional
947
+ # configuration details for repositories of the maven format type.
948
+ # Corresponds to the JSON property `mavenConfig`
949
+ # @return [Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig]
950
+ attr_accessor :maven_config
951
+
919
952
  # The name of the repository, for example: "projects/p1/locations/us-central1/
920
953
  # repositories/repo1".
921
954
  # Corresponds to the JSON property `name`
@@ -938,6 +971,7 @@ module Google
938
971
  @format = args[:format] if args.key?(:format)
939
972
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
940
973
  @labels = args[:labels] if args.key?(:labels)
974
+ @maven_config = args[:maven_config] if args.key?(:maven_config)
941
975
  @name = args[:name] if args.key?(:name)
942
976
  @update_time = args[:update_time] if args.key?(:update_time)
943
977
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ArtifactregistryV1beta2
18
18
  # Version of the google-apis-artifactregistry_v1beta2 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210817"
25
+ REVISION = "20210925"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class MavenRepositoryConfig
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class Operation
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -446,6 +452,14 @@ module Google
446
452
  end
447
453
  end
448
454
 
455
+ class MavenRepositoryConfig
456
+ # @private
457
+ class Representation < Google::Apis::Core::JsonRepresentation
458
+ property :allow_snapshot_overwrites, as: 'allowSnapshotOverwrites'
459
+ property :version_policy, as: 'versionPolicy'
460
+ end
461
+ end
462
+
449
463
  class Operation
450
464
  # @private
451
465
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -486,6 +500,8 @@ module Google
486
500
  property :format, as: 'format'
487
501
  property :kms_key_name, as: 'kmsKeyName'
488
502
  hash :labels, as: 'labels'
503
+ property :maven_config, as: 'mavenConfig', class: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig::Representation
504
+
489
505
  property :name, as: 'name'
490
506
  property :update_time, as: 'updateTime'
491
507
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-artifactregistry_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.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: 2021-09-06 00:00:00.000000000 Z
11
+ date: 2021-10-04 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/master/generated/google-apis-artifactregistry_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-artifactregistry_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []