Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 123 additions & 0 deletions client/compliance_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions client/echo_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion client/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@
}
}
}
}
},
"apiVersion": "v1_20240408"
},
"Identity": {
"clients": {
Expand Down
3 changes: 3 additions & 0 deletions client/identity_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions client/messaging_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions client/sequence_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions client/testing_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions cmd/gapic-showcase/repeat-data-body-info.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@ var repeatDataBodyInfoInputInfoPString string

var repeatDataBodyInfoInputInfoPInt32 int32

var repeatDataBodyInfoInputInfoPSint32 int32

var repeatDataBodyInfoInputInfoPSfixed32 int32

var repeatDataBodyInfoInputInfoPUint32 uint32

var repeatDataBodyInfoInputInfoPFixed32 uint32

var repeatDataBodyInfoInputInfoPInt64 int64

var repeatDataBodyInfoInputInfoPSint64 int64

var repeatDataBodyInfoInputInfoPSfixed64 int64

var repeatDataBodyInfoInputInfoPUint64 uint64

var repeatDataBodyInfoInputInfoPFixed64 uint64

var repeatDataBodyInfoInputInfoPFloat float32

var repeatDataBodyInfoInputInfoPDouble float64

var repeatDataBodyInfoInputInfoPBool bool
Expand Down Expand Up @@ -151,6 +171,26 @@ func init() {

RepeatDataBodyInfoCmd.Flags().Int32Var(&repeatDataBodyInfoInputInfoPInt32, "info.p_int32", 0, "")

RepeatDataBodyInfoCmd.Flags().Int32Var(&repeatDataBodyInfoInputInfoPSint32, "info.p_sint32", 0, "")

RepeatDataBodyInfoCmd.Flags().Int32Var(&repeatDataBodyInfoInputInfoPSfixed32, "info.p_sfixed32", 0, "")

RepeatDataBodyInfoCmd.Flags().Uint32Var(&repeatDataBodyInfoInputInfoPUint32, "info.p_uint32", 0, "")

RepeatDataBodyInfoCmd.Flags().Uint32Var(&repeatDataBodyInfoInputInfoPFixed32, "info.p_fixed32", 0, "")

RepeatDataBodyInfoCmd.Flags().Int64Var(&repeatDataBodyInfoInputInfoPInt64, "info.p_int64", 0, "")

RepeatDataBodyInfoCmd.Flags().Int64Var(&repeatDataBodyInfoInputInfoPSint64, "info.p_sint64", 0, "")

RepeatDataBodyInfoCmd.Flags().Int64Var(&repeatDataBodyInfoInputInfoPSfixed64, "info.p_sfixed64", 0, "")

RepeatDataBodyInfoCmd.Flags().Uint64Var(&repeatDataBodyInfoInputInfoPUint64, "info.p_uint64", 0, "")

RepeatDataBodyInfoCmd.Flags().Uint64Var(&repeatDataBodyInfoInputInfoPFixed64, "info.p_fixed64", 0, "")

RepeatDataBodyInfoCmd.Flags().Float32Var(&repeatDataBodyInfoInputInfoPFloat, "info.p_float", 0.0, "")

RepeatDataBodyInfoCmd.Flags().Float64Var(&repeatDataBodyInfoInputInfoPDouble, "info.p_double", 0.0, "")

RepeatDataBodyInfoCmd.Flags().BoolVar(&repeatDataBodyInfoInputInfoPBool, "info.p_bool", false, "")
Expand Down Expand Up @@ -276,6 +316,46 @@ var RepeatDataBodyInfoCmd = &cobra.Command{
RepeatDataBodyInfoInput.Info.PInt32 = &repeatDataBodyInfoInputInfoPInt32
}

if cmd.Flags().Changed("info.p_sint32") {
RepeatDataBodyInfoInput.Info.PSint32 = &repeatDataBodyInfoInputInfoPSint32
}

if cmd.Flags().Changed("info.p_sfixed32") {
RepeatDataBodyInfoInput.Info.PSfixed32 = &repeatDataBodyInfoInputInfoPSfixed32
}

if cmd.Flags().Changed("info.p_uint32") {
RepeatDataBodyInfoInput.Info.PUint32 = &repeatDataBodyInfoInputInfoPUint32
}

if cmd.Flags().Changed("info.p_fixed32") {
RepeatDataBodyInfoInput.Info.PFixed32 = &repeatDataBodyInfoInputInfoPFixed32
}

if cmd.Flags().Changed("info.p_int64") {
RepeatDataBodyInfoInput.Info.PInt64 = &repeatDataBodyInfoInputInfoPInt64
}

if cmd.Flags().Changed("info.p_sint64") {
RepeatDataBodyInfoInput.Info.PSint64 = &repeatDataBodyInfoInputInfoPSint64
}

if cmd.Flags().Changed("info.p_sfixed64") {
RepeatDataBodyInfoInput.Info.PSfixed64 = &repeatDataBodyInfoInputInfoPSfixed64
}

if cmd.Flags().Changed("info.p_uint64") {
RepeatDataBodyInfoInput.Info.PUint64 = &repeatDataBodyInfoInputInfoPUint64
}

if cmd.Flags().Changed("info.p_fixed64") {
RepeatDataBodyInfoInput.Info.PFixed64 = &repeatDataBodyInfoInputInfoPFixed64
}

if cmd.Flags().Changed("info.p_float") {
RepeatDataBodyInfoInput.Info.PFloat = &repeatDataBodyInfoInputInfoPFloat
}

if cmd.Flags().Changed("info.p_double") {
RepeatDataBodyInfoInput.Info.PDouble = &repeatDataBodyInfoInputInfoPDouble
}
Expand Down
Loading
Loading